@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

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

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

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

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@font-face{font-family:"swiper-icons";src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size: 44px}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev:after,.swiper-button-next:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:"next"}.swiper-button-prev.swiper-button-white,.swiper-button-next.swiper-button-white{--swiper-navigation-color: #ffffff}.swiper-button-prev.swiper-button-black,.swiper-button-next.swiper-button-black{--swiper-navigation-color: #000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-container-horizontal>.swiper-pagination-bullets{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none !important}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:200ms transform,200ms top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform,200ms left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform,200ms right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color: #ffffff}.swiper-pagination-black{--swiper-pagination-color: #000000}.swiper-pagination-lock{display:none}.preloader{position:fixed;z-index:999999;height:100%;width:100%;top:0;left:0;background:#fff;display:flex;align-items:center;justify-content:center}.preloader-spinner{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);height:35px;width:35px}.preloader-spinner::after{content:"";position:absolute;left:0;top:0;height:100%;width:100%;background-image:url("/images/load.svg");background-size:100%;background-repeat:no-repeat;background-position:0 0;animation:rotate 1s linear infinite}.preloader-spinner_basket{width:20px;height:20px;position:absolute;z-index:100}.preloader-boundary{position:relative}.preloader-boundary .preloader{position:absolute}.preloader-fix .preloader{background-color:#fff;background-color:rgba(255,255,255,.5)}.preloader-fix .preloader-boundary{position:absolute;top:0;left:0;right:0;bottom:0}.preloader-fix__transparent .preloader{background-color:transparent}@keyframes rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.modal{display:none;position:fixed;z-index:99999;width:100%;height:100%;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}.modal--open{display:block}.modal--wide .modal__container{width:690px}.modal--p{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.24px;line-height:1.5}.modal--mb-36{margin-bottom:36px}.modal--mb-82{margin-bottom:83px !important}.modal--overflow-x-hidden .modal__container{overflow-x:hidden}@media screen and (max-width: 767px){.modal--white .modal__overlay{background:#fff}}@media screen and (max-width: 767px){.modal--transparent .modal__wrapper{padding:64px 0;background:transparent !important}.modal--transparent .modal__container{background:transparent}.modal--transparent .modal__container .modal__close{width:18px;height:18px;color:#fff;z-index:3}.modal--transparent .modal__container .modal__title{padding:0 32px;border:none}.modal--transparent .modal__content{padding:40px 0 24px 0 !important;background:#fff;top:64px;border-radius:8px;width:calc(100% - 32px);right:16px;left:16px;z-index:2}.modal--transparent .modal__body{max-width:none;padding-bottom:0 !important}.modal--transparent .modal__overlay{z-index:1;pointer-events:auto;display:block}}@media screen and (min-width: 768px){.modal--transparent .modal__content{padding:60px 60px 30px 60px !important}}.modal--small-padding .modal__content{padding:40px 30px}.modal--small-padding .modal__body{max-width:none}.modal--promo .modal__container{position:absolute;min-height:auto;top:calc(50% - 128px)}.modal__overlay{position:fixed;width:100%;height:100%;min-height:100%;top:0;bottom:0;left:0;right:0;border:none;background:rgba(219,219,219,.68);outline:none}@media screen and (min-width: 768px){.modal__overlay{position:absolute}}.modal__overlay--ios{margin:-50%;width:200%;height:200%;min-height:200%}.modal__wrapper{width:100%;position:relative;min-height:100%;top:0;padding:100px 0}.modal__container{position:relative;width:100%;margin:0 auto;background:#fff}@media screen and (max-width: 767px){.modal__container{min-height:100vh}}@media screen and (min-width: 768px){.modal__container{border-radius:10px;max-width:592px}}.modal__content{width:100%;position:relative;padding:60px 50px}.modal__body{margin:0 auto}@media screen and (min-width: 768px){.modal__body{max-width:384px}}.modal__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;margin-bottom:15px;text-align:center}@media screen and (min-width: 768px){.modal__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}}.modal--locations .modal__desc{border-bottom:1px solid #e0e7e9;padding-bottom:13px}.modal__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-align:center;margin-bottom:15px}@media screen and (min-width: 768px){.modal__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:20px}}.modal__title--red{color:#f9694a}.modal__image{height:155px;width:100%;text-align:center;margin-bottom:32px}.modal__image img{height:100%;width:auto}.modal__top-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;letter-spacing:.02em;line-height:15px;color:#777c83;margin-bottom:25px;margin-top:-15px;text-align:center}@media screen and (min-width: 768px){.modal__top-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:19px;margin-top:-25px;margin-bottom:25px}}.modal .modal__close{width:24px;height:24px;right:0;top:auto;z-index:2}@media screen and (max-width: 767px){.modal .modal__close{color:#777c83;width:16px;height:16px;top:20px;right:16px;z-index:2}}.modal .modal__close__wrapper{position:absolute;right:0;top:auto;bottom:calc(100% + 16px)}@media screen and (max-width: 767px){.modal .modal__close__wrapper{top:0;right:0;padding:24px}}.modal .modal__close__carousel{bottom:calc(100% + 16px)}.modal__qr{width:176px;height:176px;margin:0 auto 32px}.modal__qr img{width:100%;height:100%}.modal--vacancy .subtitle{text-align:center;margin-bottom:24px}.modal--bonuses .modal__content{padding:14px}@media screen and (max-width: 767px){.modal--bonuses .modal__title{border-bottom:unset !important;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.modal--bonuses .modal__body{padding:0}.modal--bonuses .modal__qr{background-color:#fff;padding:6px;border-radius:8px;width:203px;height:203px}}@media screen and (max-width: 767px){.modal .modal__wrapper{background:#fff;padding:0}.modal .modal__content{padding:0}.modal .modal__content .delivery-time{background-color:#eaf2f2;padding:2px 10px;border-radius:50px;margin-right:10px}.modal .modal__content .delivery-time-row{color:#000;margin-top:10px;display:flex;align-items:center;justify-content:flex-start;margin-bottom:8px}.modal .modal__content .delivery-time-row span{margin-right:10px}.modal .modal__content .delivery-time-row .courier-delay{background:#ffefd6}.modal .modal__content .text--level-1:last-of-type{margin-bottom:53px}.modal .modal__body{padding:0 16px 16px}.modal .modal__title{border-bottom:1px solid #ebf2f4;padding:14px 40px 14px 30px;margin:0 0 18px;font-size:21px;z-index:2;display:flex;align-items:center;justify-content:center}}.modal--delivery-mob{display:flex}.modal--delivery-mob .modal__wrapper{display:flex}.modal--delivery-mob .modal__title{margin-bottom:0}.modal--delivery-mob .modal__container{display:flex;min-height:initial}.modal--delivery-mob .modal__content{display:flex;flex-direction:column;flex-grow:1}.modal--delivery-mob .modal__body{flex-grow:1;width:100%;max-width:100%;display:flex;flex-direction:column;position:relative;padding:0 16px}.modal--delivery-mob .modal__body .form-select__menu-list{position:absolute;left:16px;right:0;overflow-y:auto;width:calc(100% + 16px);height:calc(100vh - 110px);margin:0 -16px}.modal--delivery-mob .modal__body .form-select__option{width:calc(100% - 16px)}.modal--delivery-mob .modal__body .delivery-mob__body{background-color:#fff;padding:22px 0 32px}.modal--delivery-mob .modal__body .delivery-mob__map{flex-grow:1;width:calc(100% + 32px);margin:0 -16px;position:relative}.modal--delivery-mob .modal__body .delivery-mob__map .map,.modal--delivery-mob .modal__body .delivery-mob__map .map>*{position:absolute;left:0;right:0;top:0;bottom:0;max-height:100%}.modal--order .modal__body{padding:0}.modal--order .modal__body .orders-table-mobile,.modal--order .modal__body .subtitle,.modal--order .modal__body .text--level-1{padding:0 16px 16px}.modal--order .modal__title{flex-direction:column;gap:4px}.modal--order .modal__title-text{display:flex;align-items:center;gap:5px;padding-bottom:4px}.modal--order .modal__subtitle{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}#app{transition:.3s}body.modal-open{overflow:hidden;left:0;right:0;overscroll-behavior-y:contain;touch-action:none}body.modal-open #app{filter:blur(5px)}body.pseudo-modal{overflow:hidden}@supports(-webkit-overflow-scrolling: touch){body.pseudo-modal{-webkit-overflow-scrolling:touch;position:fixed}}@media screen and (min-width: 768px){.modal_ingredients .modal__content{padding:60px 40px}}@media screen and (max-width: 767px){.modal_ingredients .modal__content .modal__body{padding-top:50px}}@media screen and (min-width: 768px){.modal_ingredients .modal__content .modal__body{max-width:512px}}.modal_ingredients .modal__content .modal__body .product__body{padding:0}.modal_ingredients .modal__content .modal__body .product__body .product__info{margin-bottom:15px}@media screen and (min-width: 768px){.modal_ingredients .modal__content .modal__body .product__body .product__info{margin-bottom:24px}}.modal_ingredients .dish-inline-card__quantity_outer{position:relative;top:auto;right:auto;padding:16px 0;border-bottom:1px solid #e0e7e9}.modal_ingredients .submitIngredientsBtn .clear__text{display:block;order:2}.modal_ingredients .submitIngredientsBtn .icon{margin-left:0;margin-right:10px}.dish-inline-card{position:relative;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.dish-inline-card__img{flex-basis:100%;overflow:hidden;margin-bottom:10px}.dish-inline-card__img>.product__image{width:205px;height:123px;border-radius:6px;overflow:hidden}@media screen and (max-width: 767px){.dish-inline-card__img>.product__image{width:100%;padding:32%;position:relative}.dish-inline-card__img>.product__image>img{position:absolute;top:0;bottom:0;right:0;left:0}}.dish-inline-card__img>.product__image img{-o-object-fit:cover;object-fit:cover}.dish-inline-card__description{font-family:Raleway;font-size:18px;line-height:140%;display:flex;justify-content:space-between;align-items:center;font-feature-settings:"pnum" on,"lnum" on;color:#282929;width:100%}.dish-inline-card__name{font-family:Raleway;font-weight:bold;font-size:24px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.dish-inline-card__variation-name{font-family:Raleway;margin-top:6px}.dish-inline-card__tags{margin-top:15px;display:flex;flex-wrap:wrap-reverse}.dish-inline-card__quantity{font-family:Roboto;font-size:16px;line-height:19px;letter-spacing:.02em;color:#777c83;margin-left:10px}.dish-inline-card__variation-selector{margin:10px 0 15px}.dish-inline-card__variation-selector-title{margin-bottom:7px;font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#000}.border-line{border-bottom:1px solid #e0e7e9;width:100%;margin-bottom:25px}.modal--product .modal__overlay{display:block}.modal--product .modal__container{background:transparent;max-width:none;min-height:auto}@media screen and (min-width: 768px){.modal--product .modal__container{max-width:1216px}}.modal--product .modal__container>.modal__close__wrapper .close{display:none}.modal--product .modal__content{padding:0}.modal--product .modal__body{max-width:none}@media screen and (max-width: 1023px){.modal--product .modal__wrapper{padding:64px 0;height:auto;background:none}.modal--product .modal__body{padding:0}.modal--product .modal__close{color:#fff;width:18px;height:18px;top:auto;right:0;bottom:calc(100% + 22px)}}.modal--product .product__basket{text-decoration:none;left:auto;bottom:auto}.modal--product .product__basket{top:16px;right:16px}@media screen and (min-width: 1024px){.modal--product .product__image{height:480px}.modal--product .product__label{top:24px;left:32px}.modal--product .product__basket{top:24px;right:32px}.modal--product .product__body{padding:56px 72px}.modal--product .product__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.modal--product .product__sum{font-size:24px}.modal--product .product__total .count{margin-left:45px;margin-right:auto}.modal--product .product .btn{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-width:208px;min-height:48px}}.dish-block .product__image .product__basket{top:16px;right:16px;left:auto;text-decoration:none}@media screen and (max-width: 767px){.dish-block .product__title h1{font-size:18px}}@media screen and (max-width: 767px){.dish-block .product__weight{font-size:14px}}.modal--restaurant .modal__container{max-width:800px;background:transparent}@media screen and (max-width: 767px){.modal--restaurant .modal__container{padding-bottom:64px}}.modal--restaurant .modal__content{padding:0 !important;z-index:2}.modal--restaurant .modal__body{max-width:none}.modal--restaurant .modal__overlay{display:block;z-index:1}@media screen and (max-width: 767px){.modal--restaurant .modal__wrapper{padding:64px 0;background:transparent !important}.modal--restaurant .modal__close{width:18px;height:18px;top:calc(-24px - 18px);color:#fff;z-index:2}}@media screen and (max-width: 767px){.modal--restaurant .restaurant__top{display:none}}.modal_dish .float-close{top:24px;right:8px;display:none;position:fixed}@media screen and (max-width: 1023px){.modal_dish .float-close{display:flex}}@media screen and (max-width: 767px){.modal_dish .float-close{right:24px;top:12px}}.modal_dish .modal__content{padding:0}.modal_dish .modal__container{background-color:transparent;max-width:1217px}@media screen and (max-width: 1439px){.modal_dish .modal__container{max-width:960px}}@media screen and (max-width: 1023px){.modal_dish .modal__container{max-width:736px}}@media screen and (max-width: 767px){.modal_dish .modal__container{max-width:544px;min-height:unset}}@media screen and (max-width: 767px){.modal_dish .modal__wrapper{background:transparent;padding:60px 0}}@media screen and (max-width: 767px)and (max-width: 767px){.modal_dish .modal__wrapper{padding-bottom:20px}}.modal_dish .modal__body{width:100%;max-width:unset}@media screen and (max-width: 767px){.modal_dish .modal__body{padding-bottom:0}}@media screen and (max-width: 767px){.modal_dish .modal__close__wrapper{position:absolute;right:0;top:auto;bottom:calc(100%)}}@media screen and (max-width: 767px){.modal_dish .modal__close{width:24px;height:24px;right:16px;top:auto;color:#fff;z-index:2}}.dish__container{border-radius:16px}.dish__container:not(:first-of-type){margin-top:20px}.dish__container-top{display:flex;flex-direction:row;align-items:flex-start}.dish__container-top .product__additions{margin-bottom:24px}@media screen and (max-width: 1023px){.dish__container-top{flex-direction:column;align-items:unset}}.dish__container-bottom{background-color:#ffffffb2;display:flex;flex-direction:column;padding:20.5px 30px;gap:30px}@media screen and (max-width: 575px){.dish__container-bottom{padding:20.5px 16px}}.dish__container-bottom-unradius{border-radius:0}.dish__sticky-row{display:flex;background:linear-gradient(93.53deg, rgba(249, 105, 74, 0.85) -11.32%, rgba(255, 85, 85, 0.85) 106.34%);height:56px;padding:0 16px;align-items:center;justify-content:space-between;position:sticky;bottom:0px;z-index:3;backdrop-filter:blur(4px)}.dish__sticky-row:hover{background:linear-gradient(93.53deg, #f9694a -11.32%, #ff5555 106.34%)}.dish__sticky-row .rub,.dish__sticky-row .product__sum{color:#fff}.dish__sticky-row__bottom{border-bottom-left-radius:16px;border-bottom-right-radius:16px;background:linear-gradient(93.53deg, #f9694a -11.32%, #ff5555 106.34%)}.dish__sticky-row__disabled{background:#d4d4d4f2}.dish__sticky-row__disabled:hover{background:#d4d4d4f2}.dish__sticky-row__disabled .product__text{color:#fff}.dish__sticky-row__disabled .product__sum{color:#282929}.dish__sticky-row__disabled .rub{color:#282929}.dish__sticky-row .count.basket-item__card{background-color:transparent}.dish__sticky-row .count__btn{color:#fff}.dish__sticky-row .count__btn:hover{color:#fff}.dish__sticky-row .count__num{color:#fff}.dish__sticky-row .count.basket-item__card .count__btn:hover{color:#fff}.dish__sticky-row .dish-card__count.count{background-color:transparent}@media screen and (max-width: 767px){.dish__sticky-row .dish-card__count.count{width:-moz-min-content;width:min-content;margin:0}}.dish__sticky-btn{background-color:transparent;border:1px solid #fff;color:#fff;transition:all .3s ease;padding:0 20px;height:40px;display:flex;align-items:center;border-radius:24px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.dish__sticky-btn:active,.dish__sticky-btn:hover{background-color:#fff;color:#f9694a}.dish__sticky-btn:disabled{background-color:transparent;color:#fff;cursor:auto}.dish__btn-call-center{background-color:transparent;padding:0px 20px;display:flex;align-items:center;border:1px solid #777c83;height:40px;font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#282929;border-radius:24px;transition:all .3s ease}.dish__btn-call-center:hover{background-color:#fff;border:1px solid #fff;cursor:pointer}.dish__header{margin-bottom:14px}.dish__composition{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media screen and (max-width: 767px){.dish__composition{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}}.dish__comment{margin-top:16px;display:none}.dish__comment-active{display:block}.dish__content{display:flex;gap:10px}.dish__weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;line-height:18.75px;color:#777c83}.dish__btns{display:flex;flex-direction:row;gap:10px;margin-top:16px}.dish__info{background-color:#fff;display:flex;flex-direction:column;justify-content:space-between;border-top-right-radius:16px;border-bottom-right-radius:16px;max-width:417px;min-width:417px;min-height:500px}@media screen and (max-width: 1439px){.dish__info{max-width:317px;min-width:317px}}@media screen and (max-width: 1023px){.dish__info{max-width:unset;border-radius:0;border-bottom-right-radius:16px;border-bottom-left-radius:16px;min-height:unset;min-width:unset}}.dish__info-top{padding:32px 24px}.dish__info-unradius{border-radius:0}.dish__info-bottom{border-top:1px solid #d7dfe1;padding:24px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:4px}@media screen and (max-width: 767px){.dish__info-bottom{display:flex}.dish__info-bottom .dish-card__count.count{width:-moz-min-content;width:min-content;margin:0}}@media screen and (max-width: 575px){.dish__info-bottom{display:none}}.dish__info-bottom .btn__to-basket{min-height:48px;min-width:208px}.dish__info-bottom .count.basket-item__card{min-height:48px}.dish__info-bottom .btn--disabled-black:disabled{background-color:#d4d4d4;color:#fff}.dish__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:4px}@media screen and (max-width: 767px){.dish__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.dish__subtitle{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.dish__labels{position:absolute;width:100%}.dish__labels .label--basket{text-transform:unset;top:24px;right:24px}.dish__labels .product__basket,.dish__labels .product__labels{top:24px;left:24px}.dish__labels .product__basket{right:24px;left:unset}.dish__img-container{position:relative;border-top-left-radius:16px;border-bottom-left-radius:16px;overflow:hidden;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:95px 75px;background-repeat:no-repeat;width:100%}@media screen and (max-width: 1023px){.dish__img-container{border-radius:0;border-top-left-radius:16px;border-top-right-radius:16px;height:440px}}@media screen and (max-width: 575px){.dish__img-container{height:250px}}.dish__img-container img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.dish__fade{position:absolute;bottom:0;left:0;background:linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(31, 31, 31, 0.4) 43.79%);background-blend-mode:multiply;width:100%;height:203px;z-index:1;filter:blur(3px)}.dish__description{position:absolute;color:#fff;font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.7;bottom:20px;left:20px;max-width:600px;z-index:2;max-height:123px;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4}@media screen and (max-width: 1023px){.dish__description{color:#777c83;margin-bottom:16px;position:relative;bottom:unset;left:unset;max-width:unset;max-height:unset;overflow:hidden;display:block;-webkit-box-orient:unset;-webkit-line-clamp:unset}}@media screen and (max-width: 767px){.dish__description{padding-bottom:16px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;border-bottom:1px solid #e0e7e9}}.dish__subheader{margin-bottom:16px;display:flex;justify-content:space-between}.dish__share .share{display:block}.dish__share .share-blue{display:none}.dish__share:hover .share{display:none}.dish__share:hover .share-blue{display:block;cursor:pointer}.dish__list{display:flex;flex-wrap:wrap;gap:8px}.dish--small__container{display:flex;align-items:stretch;flex-basis:calc((100% - 64px) / 9);max-width:calc((100% - 64px) / 9);position:relative}@media screen and (max-width: 1023px){.dish--small__container{flex-basis:calc((100% - 40px) / 6);max-width:calc((100% - 40px) / 6)}}@media screen and (max-width: 767px){.dish--small__container{flex-basis:calc((100% - 32px) / 4);max-width:calc((100% - 32px) / 4)}}@media screen and (max-width: 575px){.dish--small__container{flex-basis:calc((100% - 16px) / 3);max-width:calc((100% - 16px) / 3)}}.dish--small__container-disabled{opacity:.4;pointer-events:none}.dish--small__wrapper{display:flex;flex-direction:column;flex-basis:100%}.dish--small__img{max-height:80px;height:80px;border-top-right-radius:8px;border-top-left-radius:8px;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:45px 35px;background-repeat:no-repeat;width:100%;overflow:hidden}.dish--small__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.dish--small__info{background-color:#fff;padding:8px;border-bottom-left-radius:16px;border-bottom-right-radius:16px;flex-grow:1;display:flex;flex-direction:column;justify-content:space-between;gap:8px}.dish--small__info .btn{width:100%}.dish--small__info .count__btn{width:32px}.dish--small__info .count__btn--minus::before{left:12px}.dish--small__info .count__btn--plus::before{left:unset;right:12px}.dish--small__info .count.dish-card__count{width:100%;padding:3px 0px;min-width:unset;height:auto}@media screen and (max-width: 767px){.dish--small__info .dish-card__count.count{margin:0;width:auto}}.dish--small__title{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;max-height:34px;line-height:12.68px;word-wrap:break-word;hyphens:auto}.dish--small__popup{position:absolute;max-width:310px;background-color:#fff;border-radius:8px;box-shadow:0px 0px 18px 0px #75808161;display:flex;flex-direction:column;padding:8px;padding-bottom:12px;z-index:3;bottom:105%;min-width:310px;transition:transform .2s ease-out;will-change:transform;display:none;opacity:0;transition:all .3s ease-in-out}.dish--small__popup-head{display:flex;justify-content:space-between;margin-bottom:4px}.dish--small__popup-title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:1.4;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.dish--small__popup-weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:21px;color:#777c83}.dish--small__popup-composition{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:21px;color:#777c83;margin-bottom:16px}.dish--small__popup-bottom{display:flex;justify-content:space-between;align-items:center}.dish--small__popup .dish-card__count.count{height:32px;min-width:99px}@media screen and (max-width: 767px){.dish--small__popup .dish-card__count.count{width:125px;margin:0}}.dish--horizontal__container{display:flex;flex-basis:calc((100% - 8px) / 2);transition:all .3s ease;align-items:flex-start}@media screen and (max-width: 575px){.dish--horizontal__container{flex-basis:100%}}.dish--horizontal__wrapper{display:flex;transition:all .3s ease;width:100%}@media screen and (max-width: 1023px){.dish--horizontal__wrapper{flex-direction:column}}.dish--horizontal__annotation{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;margin-bottom:8px}.dish--horizontal__img{position:relative;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:45px 35px;background-repeat:no-repeat;max-width:239px;width:100%;min-height:152px;border-top-left-radius:8px;border-bottom-left-radius:8px;overflow:hidden}@media screen and (max-width: 1023px){.dish--horizontal__img{border-radius:0;height:160px;border-top-left-radius:8px;border-top-right-radius:8px;max-width:unset;min-height:160px}}.dish--horizontal__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.dish--horizontal__content{background-color:#fff;display:flex;flex-direction:column;justify-content:space-between;border-top-right-radius:8px;border-bottom-right-radius:8px;flex-basis:100%;padding:8px;min-height:152px;height:-moz-min-content;height:min-content}@media screen and (max-width: 1023px){.dish--horizontal__content{border-radius:0;border-bottom-left-radius:8px;border-bottom-right-radius:8px;min-height:155px}}.dish--horizontal__content-full{border-radius:8px}.dish--horizontal__header{display:flex;justify-content:space-between;gap:8px;margin-bottom:8px}.dish--horizontal__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.dish--horizontal__bottom{margin-top:18px}.dish--horizontal__bottom-row{display:flex;justify-content:space-between;gap:8px;align-items:center}.dish--horizontal__bottom .btn-group:not(:last-child){margin-bottom:unset}.dish--horizontal__bottom .btn--transparent-2{min-height:32px}.dish--horizontal__bottom .count.dish-card__count{width:99px;padding:3px 12px;height:auto}@media screen and (max-width: 767px){.dish--horizontal__bottom .count.dish-card__count{margin:0}}.dish--horizontal__weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}.dish--horizontal__composition{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;margin-bottom:8px}.dish--horizontal__labels{display:flex;justify-content:space-between;position:absolute;width:calc(100% - 16px);top:8px;left:8px}.dish--horizontal__tags{display:flex;gap:9px;flex-wrap:wrap;justify-content:flex-start}.dish--horizontal__tags:last-of-type{justify-content:flex-end;flex-wrap:nowrap}.dish--horizontal__tags .label--basket{max-height:24px}.dish--horizontal__tags .menu-item__label{margin:0}.btn.dish--horizontal__composition-btn{text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.btn.dish--horizontal__composition-btn:active,.btn.dish--horizontal__composition-btn:hover{color:#31bbbb}.btn.dish--horizontal__close-btn{color:#b1b9bd}.float-close{position:fixed;border:unset;padding:unset;top:31px;right:31px;width:40px;height:40px;background-color:#ffffffb2;display:flex;align-items:center;justify-content:center;border-radius:50%;z-index:1}.float-close svg{display:flex}.float-close:hover{cursor:pointer}@media screen and (max-width: 1023px){.float-close{top:16px;right:16px}}@media screen and (max-width: 767px){.float-close{top:16px;right:18px}}.modal__ingredients .modal__content{padding:0px}.modal__ingredients .modal__container{max-width:800px;border-radius:10px}@media screen and (max-width: 1023px){.modal__ingredients .modal__container{max-width:544px}}@media screen and (max-width: 767px){.modal__ingredients .modal__container{max-width:344px;min-height:unset;border-radius:10px}}@media screen and (max-width: 767px){.modal__ingredients .modal__wrapper{background:transparent;padding:60px 0}}@media screen and (max-width: 767px)and (max-width: 767px){.modal__ingredients .modal__wrapper{padding-bottom:20px}}.modal__ingredients .modal__body{width:100%;max-width:unset;transform:translateZ(0);position:relative}@media screen and (max-width: 767px){.modal__ingredients .modal__body{padding:0}}@media screen and (max-width: 767px){.modal__ingredients .modal__close__wrapper{position:absolute;right:0;top:auto;bottom:calc(100%)}}@media screen and (max-width: 767px){.modal__ingredients .modal__close{width:24px;height:24px;right:16px;top:auto;color:#fff;z-index:2}}.modal__ingredients__header{display:flex;flex-direction:row;gap:10px}@media screen and (max-width: 767px){.modal__ingredients__header{flex-direction:column-reverse}}.modal__ingredients__content{flex-basis:100%}.modal__ingredients__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:12px}@media screen and (max-width: 767px){.modal__ingredients__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.modal__ingredients__tags{display:flex;gap:9px;margin-bottom:15px;flex-wrap:wrap}.modal__ingredients__tags .menu-item__label{margin:0}.modal__ingredients__weight{color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.modal__ingredients__img{position:relative;border-radius:8px;overflow:hidden;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:95px 75px;background-repeat:no-repeat;max-width:300px;max-height:190px;min-width:300px;min-height:190px}.modal__ingredients__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media screen and (max-width: 1023px){.modal__ingredients__img{max-width:180px;max-height:140px;height:140px;width:100%;min-height:140px;min-width:180px}}.modal__ingredients__info{margin-top:16px;border-top:1px solid #e0e7e9}.modal__ingredients__composition{padding:17px 0px;color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3;line-height:150%}.modal__ingredients__comment{padding-top:40px}.modal__ingredients__comment-title{margin-bottom:17px;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 767px){.modal__ingredients__comment-title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}}.modal__ingredients__list{padding-top:40px;display:flex;flex-direction:column;gap:15px}.modal__ingredients__list:first-of-type{border-top:1px solid #e0e7e9;margin-top:40px}.modal__ingredients__ingredients-header{display:flex;justify-content:space-between}.modal__ingredients__ingredients-list{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap}.modal__ingredients__ingredients-list .dish--small__container{flex-basis:calc((100% - 40px) / 6);max-width:calc((100% - 40px) / 6)}@media screen and (max-width: 1023px){.modal__ingredients__ingredients-list .dish--small__container{flex-basis:calc((100% - 24px) / 4);max-width:calc((100% - 24px) / 4)}}@media screen and (max-width: 767px){.modal__ingredients__ingredients-list .dish--small__container{flex-basis:calc((100% - 16px) / 3);max-width:calc((100% - 16px) / 3)}}.modal__ingredients__ingredients-list .dish--small__info{background-color:#fafbfc;padding-bottom:0}.modal__ingredients__ingredients-list .btn.btn--gray-3{width:calc(100% + 14px);margin:0 -6px}.modal__ingredients__ingredients-list .dish-card__count.count{width:calc(100% + 14px);margin:0 -6px}.modal__ingredients__dishes-header{display:flex;justify-content:space-between}.modal__ingredients__dishes-list{display:flex;flex-direction:row;gap:16px;flex-wrap:wrap}.modal__ingredients__dishes-list .dish--horizontal__container{flex-basis:calc((100% - 32px) / 3)}@media screen and (max-width: 1023px){.modal__ingredients__dishes-list .dish--horizontal__container{flex-basis:100%}}.modal__ingredients__dishes-list .dish--horizontal__wrapper{flex-direction:column}@media screen and (max-width: 1023px){.modal__ingredients__dishes-list .dish--horizontal__wrapper{flex-direction:row}}@media screen and (max-width: 767px){.modal__ingredients__dishes-list .dish--horizontal__wrapper{flex-direction:column}}.modal__ingredients__dishes-list .dish--horizontal__img{width:100%;height:160px;border-radius:0;border-top-right-radius:8px;border-top-left-radius:8px}@media screen and (max-width: 1023px){.modal__ingredients__dishes-list .dish--horizontal__img{min-width:256px;width:100%;min-height:174px;border-radius:0;border-top-left-radius:8px;border-bottom-left-radius:8px;height:100%}}@media screen and (max-width: 767px){.modal__ingredients__dishes-list .dish--horizontal__img{width:100%;height:160px;border-radius:0;border-top-right-radius:8px;border-top-left-radius:8px;min-height:160px;max-width:unset;min-width:unset}}.modal__ingredients__dishes-list .dish--horizontal__content{background-color:#fafbfc;border-bottom-right-radius:8px;border-bottom-left-radius:8px}@media screen and (max-width: 1023px){.modal__ingredients__dishes-list .dish--horizontal__content{border-radius:0;border-top-right-radius:8px;border-bottom-right-radius:8px;min-height:174px}}@media screen and (max-width: 767px){.modal__ingredients__dishes-list .dish--horizontal__content{border-radius:0;border-bottom-right-radius:8px;border-bottom-left-radius:8px;min-height:160px}}.modal__ingredients__subtitle{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.modal__ingredients__bottom{margin-top:40px;display:flex;flex-direction:row;justify-content:space-between;border-top:1px solid #e0e7e9;padding-top:24px;align-items:center}.modal__ingredients__bottom .btn.btn__to-basket{min-width:250px}@media screen and (max-width: 1023px){.modal__ingredients__bottom .btn.btn__to-basket{min-width:unset}}.modal__ingredients__bottom-sticky{position:sticky;bottom:0;background-color:#ffffffd9;padding:24px 40px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;z-index:3}.modal__ingredients__bottom-sticky .btn.btn__to-basket{min-width:250px}@media screen and (max-width: 1023px){.modal__ingredients__bottom-sticky .btn.btn__to-basket{min-width:unset}}@media screen and (max-width: 1023px){.modal__ingredients__bottom-sticky{padding:16px}}.modal__ingredients__container{padding:40px}@media screen and (max-width: 1023px){.modal__ingredients__container{padding:16px}}.modal--stories .modal__container{max-width:unset;background-color:transparent}.modal--stories .modal__wrapper{padding:0;background:transparent}.modal--stories .modal__body{max-width:unset;padding-top:20px;padding-bottom:20px}@media screen and (max-width: 767px){.modal--stories .modal__body{padding:0;padding-top:8px;padding-bottom:0px}}.modal--stories .modal__content{padding:0}.modal--stories .modal__overlay{position:absolute;background:unset;background-color:rgba(0,0,0,.3)}.modal--stories .modal__overlay--ios{width:100%;height:100%;min-height:100%;margin:0}.modal--stories .modal__overlay::before{content:"";position:fixed;top:-45px;left:-45px;right:-45px;bottom:-45px;background:var(--overlay-background) no-repeat center/cover;filter:blur(40px);z-index:-1;transition:background .3s ease}@media screen and (max-width: 767px){.modal--stories .modal__overlay::before{transition:unset}}.stories__modal-container .swiper-wrapper{display:flex;padding-bottom:12px}.stories__modal-container .swiper-pagination{gap:5px;bottom:0}.stories__modal-container .swiper-pagination-bullet{width:4px;height:4px;border-color:transparent;background-color:#ffffff4d;margin:0 !important}.stories__modal-container .swiper-pagination-bullet-active{background-color:#ffffffe5}.stories__modal-container .swiper-slide-prev,.stories__modal-container .swiper-slide-next{opacity:.3}.stories__modal-container .swiper-button-prev,.stories__modal-container .swiper-button-next{max-width:50px;width:100%;height:100%;top:20px;min-width:50px}.stories__modal-container .swiper-button-prev{left:calc(100vw / 2 - ((100vh - 40px) * 0.44))}@media screen and (max-width: 767px){.stories__modal-container .swiper-button-prev{left:8px}}.stories__modal-container .swiper-button-next{right:calc(100vw / 2 - ((100vh - 40px) * 0.44))}@media screen and (max-width: 767px){.stories__modal-container .swiper-button-next{right:8px}}.animate-bullet{position:absolute;background-color:#000000b2;left:0;top:0;width:100%;height:100%;border-radius:999px;transform:translateX(-100%)}.animated-bullet{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:999px;background-color:#000000b2}.story-close{background-color:transparent;border:unset;padding:12px;position:absolute;top:0;right:-53px;z-index:1000}@media screen and (max-width: 767px){.story-close{top:0;right:8px}}.story-wrapper{max-height:calc(100vh - 40px);max-width:calc((100vh - 40px) * 0.44)}@media screen and (max-width: 767px){.story-wrapper{max-height:calc(100svh - 32px);height:100%;max-width:calc(100vw - 66px * 2)}}.story-wrapper .swiper-wrapper{padding:0}@media screen and (max-width: 767px){.story-wrapper .swiper-wrapper{padding:0px}}.story-wrapper .swiper-pagination{gap:5px;top:16px;bottom:unset;width:100%;padding:0 16px}.story-wrapper .swiper-pagination-bullet{width:100%;height:4px;margin:0;flex-shrink:10;width:100%;border-radius:999px;position:relative;background-color:#0000004d;overflow:hidden;border:unset}.story-wrapper .swiper-pagination-bullet-active{background-color:#0000004d}.story-wrapper .swiper-button-prev,.story-wrapper .swiper-button-next{max-width:50%;width:100%;height:calc(100% - 36px);top:unset;bottom:0;min-width:50%}.story-wrapper .swiper-button-prev::after,.story-wrapper .swiper-button-next::after{content:""}.story-wrapper .swiper-button-prev{left:0}.story-wrapper .swiper-button-next{right:0}.story-wrapper .swiper-pagination-bullet:only-child{display:block !important}.story-light .swiper-pagination-bullet{background-color:rgba(255,255,255,.3)}.story-light .swiper-pagination-bullet-active{background-color:rgba(255,255,255,.3)}.story-light .animate-bullet{background-color:rgba(255,255,255,.9)}.story-light .animated-bullet{background-color:rgba(255,255,255,.9)}.story-container{height:100%;border-radius:16px;overflow:hidden;height:calc(100vh - 54px)}@media screen and (max-width: 767px){.story-container{height:calc(100svh - 32px);min-height:426px;max-height:calc(100svh - 32px)}}.story-container img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.story-buttons{bottom:32px;display:flex;justify-content:center;position:absolute;width:100%}.story-buttons .btn{width:calc(100% - 32px);font-size:13px;z-index:1000}@media screen and (max-width: 767px){.story-buttons .btn{font-size:11px}}.story-button{width:calc(100% - 32px);font-size:13px;min-height:40px}@media screen and (max-width: 767px){.story-button{font-size:11px}}.swiper-pagination-bullet-active span.animate-bullet{animation:bullet 5s linear;animation-play-state:running}@keyframes bullet{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}.modal--horizontal .modal__body{padding-bottom:8px}.modal--horizontal .story-wrapper{max-height:calc(426px);max-width:228px}.header{box-shadow:-7px 0px 16px rgba(112,115,116,.13);position:sticky;z-index:999;top:0;background:#fff;width:100%}@media screen and (min-width: 768px){.header{z-index:40001}}.header__basket{position:relative;display:flex;flex-direction:column;z-index:1;justify-content:center;text-decoration:unset;min-height:100%;cursor:pointer}@media screen and (max-width: 768px){.header__basket{order:7}}.header__basket:hover svg,.header__basket:focus svg{fill:#56c4c4}.header__basket:hover .header-basket__count,.header__basket:focus .header-basket__count{background:#4cbbbb}.header__basket:hover~.popup--basket,.header__basket:focus~.popup--basket{display:block !important}.header__basket:hover~.popup--basket::before,.header__basket:focus~.popup--basket::before{left:100%}@media screen and (max-width: 768px){.header__basket:hover~.popup--basket,.header__basket:focus~.popup--basket{display:none !important}}.header__basket--is-checkout~.popup--basket,.header__basket--is-checkout:hover~.popup--basket{display:none !important}@media screen and (max-width: 767px){.header__basket:hover .popup--basket,.header__basket:focus .popup--basket{display:none}}.header-parent{height:134px;max-height:118px;transition:max-height .5s}@media screen and (min-width: 768px){.header-parent{height:134px;max-height:none}}@media screen and (max-width: 767px){.header-parent{height:108px}}@media screen and (max-width: 767px){.header-parent_with-banner{height:164px;max-height:164px;min-height:164px}.header-parent_with-banner.small{min-height:44px;height:auto;max-height:44px}.header-parent_with-banner.small.up{max-height:200px;min-height:88px;height:auto}}.header.js-is-sticky{position:fixed}.header .popup{z-index:5}@media screen and (min-width: 768px){.header.small .header-top{height:48px;transition:height .3s}.header.small .header-bottom{height:40px;transition:height .3s}.header.small .header-basket__count{bottom:6px}.header.small .burger-menu__top{height:48px}.header.small .filter{height:48px;transition:height .3s;align-items:center}.header.small .filter-list{padding:0}.header.small .filter-item{margin-top:0}.header.small .logo{min-height:unset}.header.small .logo>a{width:37px;height:37px}}.header-icons{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;order:5;gap:10px;position:relative}@media screen and (min-width: 1024px){.header-icons{order:4}}@media screen and (max-width: 768px){.header-icons{order:3}}.header-auth{position:relative;display:flex;align-self:stretch;align-items:center;flex-shrink:0;cursor:pointer;transition:all .5s ease-out}.header-auth a{width:28px;height:27px}.header-auth .profile a{height:auto}.burger-menu__top>.header-auth{display:none}.list>.header-auth{order:0;margin-bottom:16px}.header-auth:hover,.header-auth:focus{cursor:pointer}.header-auth:hover .popup,.header-auth:focus .popup{display:block}.header-auth:hover .user-icon,.header-auth:focus .user-icon{fill:#56c4c4}@media screen and (max-width: 1023px){.header-auth{min-width:104px;justify-content:flex-end}}.header-auth-hidden{display:none}@media screen and (max-width: 768px){.header-auth{order:4}}@media screen and (max-width: 767px){.header-auth{min-width:unset}}@media screen and (max-width: 576px){.header-auth{order:3}.header-top__container-with-auth>.header-auth{order:4}}.logo{display:flex;align-items:center;align-self:center;transition:.3s;position:relative;z-index:5;height:100%;min-height:75px}@media screen and (max-width: 1023px){.logo{width:100%;display:flex;justify-content:center}}@media screen and (max-width: 767px){.logo{justify-content:flex-end}}.logo-favorites{padding-right:18px}.logo>a{display:flex;transition:.3s;height:63px;width:63px;min-width:100%}@media screen and (max-width: 1023px){.logo>a{justify-content:center;margin-left:-44px}.burger-open>.logo>a{margin-left:unset;justify-content:unset}}@media screen and (max-width: 768px){.logo>a{height:48px;width:auto;justify-content:center;margin-left:-60px}}@media screen and (max-width: 767px){.logo>a{height:48px;width:auto;justify-content:flex-end;margin-left:-44px}}@media screen and (min-width: 1024px){.logo{order:0}}@media screen and (max-width: 1023px){.logo{order:2;min-height:63px}}@media screen and (max-width: 576px){.logo{order:1}.header-top__container-with-auth>.logo{order:2}}.header-top{height:79px;border-bottom:1px solid #ebf2f4;transition:height .3s;position:relative}@media screen and (max-width: 767px){.header-top{height:63px;position:unset}}.header-top__container{display:grid;align-items:stretch;height:100%;grid-template-columns:82px 221px 130px .3fr 1fr .5fr;gap:12px;max-width:calc(1280px);margin:0 auto;justify-content:space-between;position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto}@media screen and (min-width: 768px){.header-top__container{padding:0 32px}}@media screen and (min-width: 1024px){.header-top__container{padding:0 40px}}@media screen and (max-width: 1199px){.header-top__container{grid-template-columns:64px 200px 130px 360px 1fr}}@media screen and (max-width: 1023px){.header-top__container{grid-template-columns:36px 1fr 1fr 1fr}}@media screen and (max-width: 767px){.header-top__container{grid-template-columns:36px 1fr 1fr;gap:0px}}.header-top__container-with-auth{grid-template-columns:64px 221px 130px 94px 360px 200px}@media screen and (max-width: 1199px){.header-top__container-with-auth{grid-template-columns:64px 200px 130px 220px 200px}.header-top__container-with-auth .header-icons{gap:15px}}@media screen and (max-width: 1023px){.header-top__container-with-auth{grid-template-columns:64px 1fr 1fr 1fr}}@media screen and (max-width: 767px){.header-top__container-with-auth{grid-template-columns:36px 1fr 1fr;gap:0px}}@media screen and (max-width: 767px){.header-top__container-with-favorites{grid-template-columns:36px 36px 1fr 1fr;gap:0px}}.header-top__container.burger-open{grid-template-columns:286px 1fr 40px;gap:30px}@media screen and (max-width: 1199px){.header-top__container.burger-open{grid-template-columns:82px 221px 1fr 40px}}@media screen and (max-width: 767px){.header-top__container.burger-open{grid-template-columns:1fr 1fr}}.header-top__menu{display:none;align-self:stretch;align-items:stretch;flex-grow:1;flex-shrink:1;overflow:hidden}@media screen and (min-width: 1024px){.header-top__menu{display:flex;margin-right:30px}}.header-top__burger{align-self:center;position:relative;z-index:4;min-height:100%;display:flex;align-items:center;justify-content:center}@media screen and (max-width: 1023px){.header-top__burger{order:0;justify-content:flex-start}}.burger-open>.header-top__burger{order:0}@media screen and (max-width: 575px){.burger-open>.header-top__burger{order:3}}@media screen and (max-width: 767px){.header-top__burger{order:0;justify-content:flex-start}}.header-top__burger--button{display:flex;align-items:center;justify-content:center;cursor:pointer;color:#4cbbbb;transition:all .5s ease}.header-top__burger--button svg{fill:transparent}.header-top__burger--button:hover{color:#fff}.header-top__burger--button:hover svg{fill:#4cbbbb}.header-top__burger.active .header-top__burger--button{z-index:5;border:unset}.header-top__burger.active .header-top__burger--button svg{fill:transparent}.header-top__burger.active .header-top__burger--button svg path{stroke:#4cbbbb}.header-top .link{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;font-size:12px}@media screen and (min-width: 768px){.header-top .link{font-size:12px}}@media screen and (min-width: 1024px){.header-top .link{font-size:12px}}@media screen and (min-width: 1200px){.header-top .link{font-size:14px}}.header-top .mobile-scroll{width:100%;height:63px;position:fixed}.header-top__visible{display:none}.header-top__short{height:44px}@media screen and (max-width: 768px){.header-top__short .logo a{height:39px}}@media screen and (max-width: 768px){.header-top__short .logo{min-height:43px}}.header-top__short .header-basket__count{bottom:6px}.header-bottom{height:55px;position:relative}@media screen and (max-width: 767px){.header-bottom{height:44px}}.header-bottom__container{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;display:flex;align-items:center;height:100%;justify-content:space-between}@media screen and (min-width: 768px){.header-bottom__container{padding:0 32px}}@media screen and (min-width: 1024px){.header-bottom__container{padding:0 40px}}@media screen and (max-width: 767px){.header-bottom__container{padding-right:0}}.header-bottom__menu{display:flex;align-self:stretch;flex-grow:1;flex-shrink:1;overflow:hidden}@media screen and (max-width: 767px){.header-bottom .popup{min-width:calc(100% - 26px)}}@media screen and (min-width: 768px){.header-bottom .popup:after{top:-20px;height:20px}}.header-menu{position:relative;max-width:100%;display:flex;align-items:stretch;flex-grow:1;flex-shrink:1;justify-content:space-between}.header-menu__hidden{position:absolute;opacity:0;z-index:-10;visibility:hidden}.header-menu__container{display:flex;max-width:100%;flex-grow:0;flex-shrink:0;flex-basis:100%}@media screen and (max-width: 767px){.header-menu__container{min-height:44px}}.header-menu__list{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:flex;flex-grow:1;align-items:stretch;overflow:hidden;justify-content:space-between;max-width:100%}@media screen and (max-width: 767px){.header-menu__list{gap:12px}}@media screen and (max-width: 767px){.header-menu__list{overflow:auto;min-height:44px}.header-menu__list::-webkit-scrollbar-thumb{background-color:#fff;border-radius:100px;border:8px solid #fff}.header-menu__list::-webkit-scrollbar-track{background:transparent}.header-menu__list::-webkit-scrollbar{width:0px;display:none}}.header-menu__item{display:flex;align-items:stretch;white-space:nowrap;padding:0 7px;flex-basis:auto;flex-grow:0;flex-shrink:0}@media screen and (max-width: 767px){.header-menu__item{height:44px;padding:0}.header-menu__item:last-of-type{padding-right:16px}}.header-menu__item .link{display:flex;align-items:center;white-space:nowrap;transition:.3s;font-weight:500}.header-menu__item .link.link--with-icon.link_bonus{color:#ff8827}.header-menu__item .link.link--with-icon.link_bonus>.icon:last-child{margin-right:3px}.header-menu__item .link.link--with-icon.link_play{color:#6aa1e0}.header-menu__item .link.link--with-icon.link_play>.icon:last-child{margin-right:3px}.header-menu--section .header-menu__list{justify-content:flex-start}.header-menu--section .header-menu__list_more{justify-content:space-between;padding-right:16px}.header-menu--section .header-menu__item{--link-color-link: #282929;--link-color-hover: #4cbbbb;--link-color-active: #4cbbbb}@media screen and (max-width: 767px){.header-menu--section .header-menu__item{padding:0}}.header-menu--section .header-menu__item:first-child{padding-left:0}.header-menu--section .header-menu__item .link{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:var(--link-color-link);position:relative}.header-menu--section .header-menu__item .link:hover,.header-menu--section .header-menu__item .link:focus{color:var(--link-color-hover)}.header-menu--section .header-menu__item .link:hover::before,.header-menu--section .header-menu__item .link:focus::before{content:"";display:block;position:absolute;bottom:0;left:0;width:100%;height:4px;background:#4cbbbb;background:var(--link-color-hover)}.header-menu--section .header-menu__item.active .link{color:var(--link-color-active)}.header-menu--section .header-menu__item.active .link::before{content:"";display:block;position:absolute;bottom:0;left:0;width:100%;height:4px;background:#4cbbbb;background:var(--link-color-active)}.header-menu--section .header-menu-more>.link{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.header-menu-more{display:flex;align-items:stretch;flex-basis:auto;flex-shrink:0;flex-grow:0;padding:0 7px;color:#282929}@media screen and (max-width: 767px){.header-menu-more{height:44px}}@media screen and (max-width: 767px){.header-menu-more{padding:0}}.header-menu-more .link{text-transform:none;color:#777c83;font-weight:500}.header-bottom .header-menu-more .link{color:#282929}.header-menu-more.active{position:relative}.header-menu-more.active .icon{transform:rotate(180deg)}@media screen and (max-width: 767px){.header-menu-more.active .icon{color:#fff !important}}@media screen and (max-width: 767px){.header-menu-more.active{background-color:#56c4c4;color:#fff}.header-menu-more.active .link{color:#fff}}@media screen and (max-width: 767px){.header-menu-more.active{background-color:transparent;color:#282929}.header-menu-more.active .link{color:#282929}}.header-menu-more__icon{display:flex;margin:auto;margin-left:5px;width:8px;height:8px}.header-bottom .header-menu-more__icon{color:#282929}.header-menu-more>.link--with-icon:hover,.header-menu-more>.link--with-icon:focus{background-color:unset}@media screen and (min-width: 768px){.header-menu-more>.link--with-icon:hover,.header-menu-more>.link--with-icon:focus{color:#282929}}.link.link_frozen{color:#5eb1cc;font-weight:600;display:inline-flex}.link.link_frozen>.icon:last-child{margin-right:5px;width:12px;height:12px}.link.link_frozen>.icon:last-child:hover,.link.link_frozen>.icon:last-child:active,.link.link_frozen>.icon:last-child:focus{fill:#fff !important}.link.link_frozen:hover,.link.link_frozen:active,.link.link_frozen:focus{color:#fff !important;background-color:#56c4c4}.link.link_frozen:hover>.icon:last-child,.link.link_frozen:active>.icon:last-child,.link.link_frozen:focus>.icon:last-child{fill:#fff !important;color:#fff !important}.link.link_covid{color:#f9694a}.link.link_covid:hover,.link.link_covid:active,.link.link_covid:focus{color:#f9694a !important;background-color:transparent}.active-all{font-weight:700 !important}.header-phone{display:flex;flex-shrink:0;font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;font-size:15.78px;line-height:100%;letter-spacing:-0.316px;order:2}.header-phone:hover{cursor:pointer;color:#31bbbb}.burger-open>.header-phone{order:0;z-index:5}@media screen and (max-width: 1024px){.header-phone{width:147px;order:1}}@media screen and (max-width: 767px){.header-phone{display:none}.burger-open>.header-phone{display:flex;margin-bottom:24px}}.header-basket{position:relative;display:flex;flex-direction:column;outline:none;cursor:pointer;z-index:10;text-decoration:none;justify-content:center;text-decoration:unset;align-items:center}.header-basket svg{fill:transparent;transition:fill .3s ease-out;width:28px;height:27px}.header-basket__icon{color:inherit;width:100%;display:flex;height:24px;align-items:center;justify-content:center;width:28px;height:27px;transition:all .3s ease-out}@media screen and (min-width: 768px){.header-basket__icon{height:28px}}@media screen and (min-width: 1024px){.header-basket__icon{height:24px}}.header-basket__icon-full{width:23px;height:18px;margin-bottom:4px;align-items:center;justify-content:center}.header-basket__icon-full svg{fill:#56c4c4}.header-basket__count{display:flex;justify-content:center;align-items:center;bottom:11px;left:11px;min-width:20px;height:20px;margin:0;padding:0 2px;position:absolute;color:#fff;background:#e97d65;border:2px solid #fff;border-radius:22px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;transition:bottom .3s;bottom:10px;position:absolute;left:50%}@media screen and (min-width: 768px){.header-basket__count{bottom:10px;position:absolute;left:50%}}@media screen and (min-width: 1024px){.header-basket__count{bottom:10px;position:absolute;left:50%}}.header-basket__count span{padding-top:1px}.header-basket__text{color:#777c83;font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;font-size:12px;margin:0 auto}.header-basket__text_loading{color:transparent !important}@media screen and (min-width: 768px){.header-basket__text{font-size:12px}}@media screen and (min-width: 1200px){.header-basket__text{font-size:14px}}.header-basket__text--rub{font-family:Roboto;font-style:normal;font-weight:normal;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;margin:0;color:#777c83;white-space:nowrap}.bonus_card{position:relative;display:flex;align-self:stretch;align-items:center;flex-shrink:0;cursor:pointer}@media screen and (max-width: 768px){.bonus_card{display:flex;order:6}}.bonus_card-wrapper{max-height:28px;min-height:28px;max-width:38px;min-width:38px;padding:0 4px;border-radius:4px;display:flex;flex-direction:column;justify-content:flex-end;padding-bottom:1px}.bonus_card-wrapper:hover{background:#31bbbb;color:#fff}.bonus_card-general{background:linear-gradient(129deg, #ffc876 0%, #fecf56 100%)}.bonus_card-general{background:linear-gradient(129deg, #ffc876 0%, #fecf56 100%);color:#282929}.bonus_card-3{background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%);color:#fff}.bonus_card-5{background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%);color:#fff}.bonus_card-10{background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%);color:#fff}.bonus_card-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:6px;letter-spacing:.01em;line-height:1.4;text-transform:uppercase}.bonus_card-number{font-family:Roboto;font-style:normal;font-weight:bold;font-size:12px;letter-spacing:0;line-height:1.3;letter-spacing:.12px}.header__links{display:flex;flex-direction:row;align-items:center;order:4;gap:12px}.header__links a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}.burger-open>.header__links{display:none}@media screen and (max-width: 1023px){.header__links{display:none}}.header__link{display:flex;flex-direction:row;align-items:center;justify-content:center;text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;cursor:pointer;color:#777c83;white-space:nowrap;transition:all .3s ease}.header__link .restaurant-icon{color:#56c4c4;transition:all .3s ease}.header__link .delivery-icon{color:#56c4c4;transition:all .3s ease}.header__link:hover{color:#56c4c4}.header__link:hover .restaurant-icon{color:#56c4c4;fill:#56c4c4}.header__link:hover .restaurant-icon ellipse{fill:transparent}.header__link:hover .bonus-icon{fill:#56c4c4;color:#fff}.header__link:hover .bonus-icon rect:first-of-type{color:#56c4c4}.header__link:hover .delivery-icon{fill:#56c4c4;color:#fff}.header__link:hover .delivery-icon path:nth-child(1),.header__link:hover .delivery-icon path:nth-child(2),.header__link:hover .delivery-icon path:nth-child(3),.header__link:hover .delivery-icon path:nth-child(4){color:#56c4c4}.header__link svg{margin-right:4px}@media screen and (max-width: 1199px){.header-top__container-with-auth .header__link:nth-last-child(1){display:none}}.header-social{display:flex;align-items:center;order:3}.header-social-item{padding:0 8px;cursor:pointer;align-items:center;display:flex}.header-social-item:hover svg path{fill:#56c4c4}.burger-open>.header-social{display:none;padding:0 27px}@media screen and (max-width: 1199px){.header-social{display:none}}.header__favorites{display:flex;align-items:center;justify-content:center;cursor:pointer}.header__favorites:hover .favorite-icon{fill:#31bbbb}.header__favorites:hover .favorite-icon path{stroke:#31bbbb}@media screen and (max-width: 768px){.header__favorites{order:5}}@media screen and (max-width: 767px){.header__favorites{order:1;padding-left:24px}}.location{position:relative;flex-shrink:0}.location__link{flex-grow:1;text-align:left;position:relative;z-index:4}@media screen and (hover: hover)and (min-width: 768px){.location__link:hover+.popup{display:block}}@media(hover: hover){.location__link:hover .location__link__gray{color:#31bbbb}}@media(hover: hover){.location__link:hover .location__icon{background-color:#31bbbb;color:#fff}}@media(hover: hover){.location__link:hover .location__address{color:#31bbbb}}@media(hover: hover){.location__link:hover .location__address-row{color:#31bbbb}}@media screen and (min-width: 768px){.location__link:focus+.popup,.location__link.active+.popup{display:block}}.location__link:focus .location__link__gray,.location__link.active .location__link__gray{color:#31bbbb}.location__link:focus .location__icon,.location__link.active .location__icon{background-color:#31bbbb;color:#fff}.location__link:focus .location__address,.location__link.active .location__address{color:#31bbbb}.location__link:focus .location__address-row,.location__link.active .location__address-row{color:#31bbbb}.location__link__current{background-color:transparent !important;border-radius:unset !important;padding:0 !important}.location__link__unhover-gray{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;letter-spacing:.33px;text-transform:uppercase;color:#777c83}.location__link__gray{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;letter-spacing:.33px;text-transform:uppercase;color:#777c83;transition:all .1s ease-out}.location__link__gray-link{color:#4cbbbb}@media(hover: hover){.location__link-city:hover{color:#31bbbb}}.location__link-city:focus,.location__link-city.active{color:#31bbbb}.location__link-city__current{display:flex;align-items:center}@media(hover: hover){.location__link-city__current:hover{color:#31bbbb}}.location__link-city__current:focus,.location__link-city__current.active{color:#31bbbb}.location__link-city__row{flex-wrap:wrap;gap:2px}.location__link-city__row .location__link-text__current{white-space:nowrap;margin:0}.location__link-text{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;letter-spacing:.22px;color:#4cbbbb;line-height:140%;text-transform:uppercase}.location__link-text__current{color:#777c83;font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.location__address{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;display:inline;align-items:center;letter-spacing:.03em;vertical-align:middle;line-height:16px;transition:all .1s ease-out;font-weight:700}.location__address svg{fill:transparent;margin-right:4px;vertical-align:text-bottom;margin-right:4px}.location__address-row{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;display:inline;color:#777c83;letter-spacing:.03em;vertical-align:middle;line-height:16px;transition:all .1s ease-out}.location__address-row svg{color:#4cbbbb;fill:transparent;min-width:16px;height:16px;vertical-align:text-bottom}.location__address-current{vertical-align:bottom;display:inline;line-height:16px}.location__text{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;border-color:inherit;transition:.3s;color:#282929;font-weight:500;flex-grow:1;line-height:16px}@media screen and (min-width: 1024px){.location__text{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;cursor:pointer;text-decoration:none}}.location__icon{display:flex;flex-direction:row;align-items:center;justify-content:center;color:#4cbbbb;background-color:#f1f6f6;min-width:40px;min-height:40px;margin-right:8px;transition:all .3s;border-radius:38px;max-height:40px;transition:all .1s ease-out}.location__icon svg{fill:transparent}.location__icon-with-text{max-width:unset;padding:12px;gap:6px;text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;letter-spacing:.03em}@media screen and (min-width: 1024px){.location{display:flex;align-self:stretch}}.location__hidden{display:none}.location__disabled .location__text,.location__disabled .link,.location__disabled button{cursor:unset;opacity:.8}.burger-open>.location{z-index:5}@media screen and (max-width: 1199px){.burger-open>.location{display:flex}}.new-address{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;display:flex;align-items:flex-start;margin-bottom:8px}.location-list{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;-moz-column-count:2;column-count:2;padding:10px 0}.location-list__text{pointer-events:none}.location-list__item{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;color:#777c83;margin-bottom:20px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;cursor:pointer}.location-list__item.active{color:#4cbbbb}.city-selector{position:absolute;z-index:2147483001 !important;top:calc(100% + 7px);background:#fff;box-shadow:0px 0px 18px rgba(117,128,129,.38);border-radius:8px;padding:24px 16px;left:8px;right:8px;width:360px;display:flex;flex-direction:column;gap:20px}@media screen and (max-width: 375px){.city-selector{left:0}}.city-selector span{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on}.city-selector:before{content:"";display:block;position:absolute;top:-14px;left:24px;border:7px solid transparent;border-bottom-color:#fff}@media screen and (max-width: 767px){.city-selector{left:0px;right:0px;padding:16px;bottom:0;top:auto;position:fixed;width:100vw;border-radius:0px;border-top-right-radius:8px;border-top-left-radius:8px}.city-selector:before{display:none}}.city-selector__close{position:absolute;top:-40px;right:0px;width:44px;height:44px;padding:16px;cursor:pointer}.city-selector__close .close{right:16px;top:16px}@media(hover: hover){.city-selector__close .close:hover{opacity:.5}}.city-selector__close .close:active{opacity:.5}.city-selector__container{display:flex;flex-direction:column;gap:12px}.city-selector__texts{display:flex;flex-direction:column;gap:4px}@media screen and (max-width: 767px){.city-selector__texts .form-select{z-index:2}}.city-selector__text{position:relative;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#282929}.city-selector__subtext{position:relative;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}.city-selector__subtext-warning{display:flex;gap:4px;flex-direction:row;color:#f29200;align-items:flex-start}.city-selector__subtext-warning svg{min-width:14px;min-height:14px}.city-selector__subtext-warning svg path{fill:#f29200}.city-selector .form-input__message{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}.city-selector__delivery{display:flex;align-items:center;border-radius:40px;background-color:#f1f6f6;transition:all .3s ease;position:relative}.city-selector__delivery-button{display:flex;align-items:center;gap:4px;height:40px;color:#777c83;background-color:transparent;font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;border-radius:40px;border:none;cursor:pointer;flex:1;justify-content:center;position:relative;z-index:2}.city-selector__delivery-button:last-of-type{transition:padding-left .3s ease,padding-right 0s}@media(hover: hover){.city-selector__delivery-button:hover{color:#31bbbb}}.city-selector__delivery-button:active{color:#31bbbb}.city-selector__delivery-button svg{width:16px;height:16px;fill:transparent;opacity:0;display:none;transition:opacity .3s linear;min-width:16px}.city-selector__delivery-button__48{height:48px}.city-selector__delivery-active{color:#fff;padding:0 12px;min-width:121px}.city-selector__delivery-active svg{opacity:1;display:block;transition:opacity .3s linear}@media(hover: hover){.city-selector__delivery-active:hover{color:#fff}}.city-selector__delivery-active:active{color:#fff}.city-selector__delivery-indicator{position:absolute;height:100%;top:0;background-color:#56c4c4;border-radius:40px;z-index:1;transition:all .3s ease}.city-selector__buttons{gap:8px;display:flex;transition:all .3s ease}.city-selector__buttons button{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;margin:0;white-space:nowrap;height:40px;flex:1}.burger-open .city-selector{display:none}.phone{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.phone__link{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.header .phone{font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;font-size:15.78px;line-height:100%;letter-spacing:-0.316px;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 768px){.header .phone{font-size:14px}}.footer .phone{margin-bottom:16px;color:#282929}@media screen and (max-width: 1023px){.footer .phone{font-size:14px}}.phone__icon{display:flex;width:24px;height:24px;color:#56c4c4;margin-right:8px}.reserve-page .phone__icon{width:32px;height:32px}.footer .phone__icon{margin-right:15px;color:#b6c6cb}.phone__text::before{color:#282929;margin-right:5px}.reserve-page .phone__text::before{content:"Тел.:"}.burger{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:relative;font-size:0;color:#56c4c4;width:33px;height:33px;cursor:pointer;display:flex;border:2px solid #56c4c4;border-radius:50%}.header-top__burger.active .burger{z-index:5;border:unset}.burger::before{content:"";display:block;position:absolute;width:33px;height:33px;left:50%;top:50%}.burger__line{position:absolute;top:50%}.header-top__burger.active .burger__line{background:transparent}.burger__line,.burger__line::before,.burger__line::after{display:block;position:absolute;color:inherit;left:50%;width:4px;height:4px;background:currentColor;transform:translate(-50%, -50%);transition:.2s;border-radius:50%}.burger__line::before,.burger__line::after{content:"";width:80%;height:2px}.header-top__burger.active .burger__line::before,.header-top__burger.active .burger__line::after{border-radius:1px}.burger__line::before{left:-6px;transform:translate(-50%, 0);width:4px;height:4px;border-radius:50%}.header-top__burger.active .burger__line::before{top:50%;transform:translate(50%, -50%) rotate(-45deg);width:2px;height:24px;left:0}.burger__line::after{left:10px;transform:translate(-50%, 0);width:4px;height:4px;border-radius:50%}.header-top__burger.active .burger__line::after{top:50%;transform:translate(50%, -50%) rotate(45deg);width:2px;height:24px;left:0}.burger:hover,.burger:active{outline:none;background:#56c4c4;color:#fff}.burger-open{padding:0 27px}.burger-open .header__favorites{display:none}.burger-open .bonus_card{display:none}.burger-open .header__basket{display:none}@media screen and (max-width: 1023px){.burger-open{padding:0 16px}.burger-open .logo{order:unset}.burger-open .header-top__burger{order:4}.burger-open .header-icons{display:none}}@media screen and (max-width: 768px){.burger-open .burger-menu__phone{display:none}.burger-open .burger-menu__location{display:none}.burger-open .header-icons{display:none}}@media screen and (max-width: 767px){.burger-open{padding:0 8px}.burger-open .burger-menu__phone{padding:0;display:flex;align-items:center;margin-bottom:24px}.burger-open .burger-menu__location{display:block;padding:0}.burger-open .logo{display:none}.burger-open .header-icons{display:flex;order:1;z-index:5}.burger-open .location{display:none}.burger-open .burger-menu__location>.location{display:flex;padding-bottom:12px}.burger-open .header-phone{display:none}.burger-open .header-top__burger{order:0}.burger-open .bonus_card{display:flex;order:0}.burger-open .header-auth{display:none;order:1;cursor:pointer}.burger-open .btn--auth--menu{width:156px;justify-content:center;margin-bottom:0}.burger-open .btn--auth--menu.active+.popup{display:block}.burger-open .header-icons{display:flex}.burger-open .header-icons .header-auth{display:flex;cursor:pointer}}.burger-menu{display:block;position:fixed;left:0;top:0;right:0;bottom:0;background:#fff;padding:0;opacity:0;visibility:hidden;z-index:-30;max-width:calc(1280px);max-height:auto;margin:0 auto;box-shadow:0px 0px 19px 0px rgba(159,204,207,.3)}.header-top__burger.active .burger-menu{z-index:4;opacity:1;visibility:visible;max-height:-moz-max-content;max-height:max-content;border-bottom-left-radius:8px;border-bottom-right-radius:8px;padding-bottom:46px}@media screen and (max-width: 767px){.header-top__burger.active .burger-menu{max-height:100%;padding-bottom:0}}.burger-menu__body{display:grid;grid-template-columns:286px 1fr 1fr 1fr 1fr;gap:32px;padding:0px 40px 0 27px}@media screen and (max-width: 1199px){.burger-menu__body{grid-template-columns:1fr 1fr 1fr 1fr;padding:0px 16px}}@media screen and (max-width: 1024px){.burger-menu__body{grid-template-columns:1fr 1fr 1fr}}@media screen and (max-width: 767px){.burger-menu__body{display:block;overflow-y:scroll;max-height:calc(100% - 79px);padding:0px 8px}}.burger-menu__top{display:flex;justify-content:flex-end;height:79px;position:relative;z-index:5;flex-shrink:0;padding:10px 40px 10px 27px}@media screen and (max-width: 767px){.burger-menu__top{height:63px;padding:10px 8px}.burger-menu__top .header-icons{display:none}}.burger-menu__location{display:flex;flex-direction:column;justify-content:space-between;gap:10px}@media screen and (max-width: 575px){.burger-menu__location{padding:0 16px}}.burger-menu__location .location{padding:16px 0}.burger-menu__map{border-radius:8px;overflow:hidden}.burger-menu__advantages{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-top:26px}.burger-menu__address{background-color:#56c4c4;padding:6px;color:#fff;border-radius:8px;font-size:11px;font-weight:600;line-height:140%;letter-spacing:.22px;text-transform:uppercase;cursor:pointer;margin-bottom:9px;width:-moz-fit-content;width:fit-content}.burger-menu__address svg{margin-right:8px;width:10px}.burger-menu__address svg ellipse{fill:#56c4c4}.burger-menu__text{font-size:14px;font-family:Roboto;line-height:150%}.burger-menu__phone{padding:0 16px}.burger-menu__phone .header-phone{display:flex}.burger-menu__phone .header-phone svg{margin-right:4px}@media screen and (max-width: 767px){.burger-menu__phone{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;font-size:20.125px;font-style:normal;font-weight:500;line-height:100%;letter-spacing:-0.402px}}.burger-menu__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 767px){.burger-menu__title{margin-bottom:16px}}.burger-menu__menu{padding:16px 12px}@media screen and (max-width: 768px){.burger-menu__menu div:nth-child(4){display:none}}@media screen and (max-width: 767px){.burger-menu__menu{display:grid;grid-template-columns:1fr 1fr;padding:0;gap:20px}.burger-menu__menu div:nth-child(1){grid-column:1/1}.burger-menu__menu div:nth-child(2){grid-column:2/2}.burger-menu__menu div:nth-child(3){grid-column:1/3}.burger-menu__menu div:nth-child(4){display:none}}.burger-menu__menu-with-border{border:1px solid #f6f8f8;border-radius:8px}.burger-menu__menu-with-bg{background-color:#f6f8f8;border-radius:8px}.burger-menu__menu .list{padding-top:10px;padding-bottom:10px;justify-content:flex-start;flex-direction:column;font-size:16px;line-height:170%;letter-spacing:.16px;display:grid;grid-template-columns:1fr}@media screen and (max-width: 767px){.burger-menu__menu .list{padding:0}}.burger-menu__menu .list__item{margin-bottom:16px}@media screen and (max-width: 767px){.burger-menu__menu .list__item{padding:0;margin-right:auto}}.burger-menu__menu .list__item svg{min-width:24px;min-height:24px;transition:all .3s ease;fill:transparent}.burger-menu__menu .list__item a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}.burger-menu__body>.burger-menu__menu .list__item{color:#777c83}@media screen and (max-width: 575px){.burger-menu__menu .list__item{display:block;padding:0}.burger-menu__menu .list__item:last-child{margin-right:0}}.burger-menu__menu .list__item:hover{color:#31bbbb}.burger-menu__menu .list__item:hover .delivery-icon{color:#56c4c4}.burger-menu__menu .list__item:hover .sk-icon path,.burger-menu__menu .list__item:hover .sk-icon rect,.burger-menu__menu .list__item:hover .like-icon path,.burger-menu__menu .list__item:hover .like-icon rect,.burger-menu__menu .list__item:hover .pay-bill-icon path,.burger-menu__menu .list__item:hover .pay-bill-icon rect,.burger-menu__menu .list__item:hover .reserve-icon path,.burger-menu__menu .list__item:hover .reserve-icon rect{stroke:#31bbbb}.burger-menu__menu .list__item:hover .children_club path{fill:#31bbbb;stroke:#31bbbb}.burger-menu__menu .list__item:hover .children_club path:first-of-type{fill:none}.burger-menu__menu .list__item:hover .children_club path:nth-child(4),.burger-menu__menu .list__item:hover .children_club path:nth-child(3){stroke:none}.burger-menu__menu .list__item:hover .restaurant-icon:hover{color:#31bbbb}.burger-menu__menu .list__item:hover .contact-icon ellipse,.burger-menu__menu .list__item:hover .contact-icon path,.burger-menu__menu .list__item:hover .banquet-icon ellipse,.burger-menu__menu .list__item:hover .banquet-icon path,.burger-menu__menu .list__item:hover .restaurant-icon ellipse,.burger-menu__menu .list__item:hover .restaurant-icon path{stroke:#31bbbb}.burger-menu__menu .list__item:hover .sk-icon path{fill:#31bbbb}.burger-menu__menu .list__item:hover .sk-icon path,.burger-menu__menu .list__item:hover .sk-icon rect{stroke:#31bbbb}.burger-menu__menu .list__item-text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.burger-menu__menu .list__item-text:hover{color:#777c83}.burger-menu__menu .list__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;display:flex;align-items:flex-start;padding:0;color:#777c83;transition:all .3s ease}.burger-menu__menu .list__link svg{color:#b1b9bd;transition:all .3s ease}@media screen and (max-width: 575px){.burger-menu__menu .list__link{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:8px 16px;margin:0;text-align:left;border:none;line-height:22.4px}}.burger-menu__menu .list__link:hover,.burger-menu__menu .list__link:focus,.burger-menu__menu .list__link:active{color:#56c4c4;background-color:transparent}.burger-menu__menu .list__link:hover svg,.burger-menu__menu .list__link:focus svg,.burger-menu__menu .list__link:active svg{color:#56c4c4}.burger-menu__menu .list__link.link--with-icon{align-items:flex-start;display:grid;grid-template-columns:36px 1fr}@media screen and (max-width: 575px){.burger-menu__menu .list__link.link--with-icon{align-items:center}}.burger-menu__menu .list__link.link--with-icon.link_bonus{color:#ff8827;align-items:center}.burger-menu__menu .list__link.link--with-icon.link_bonus>.icon:last-child{margin-right:3px}.burger-menu__menu .list__link.link--with-icon.link_play{color:#6aa1e0}.burger-menu__menu .list__link.link--with-icon.link_play>.icon:last-child{margin-right:3px}.burger-menu__menu:nth-last-child(4){padding:16px 12px 16px 0px}@media screen and (max-width: 768px){.burger-menu__menu:nth-last-child(4){padding:16px 12px 16px 12px}}@media screen and (max-width: 768px){.burger-menu__menu:nth-last-child(5){padding:16px 12px 16px 0px}}@media screen and (max-width: 1024px){.burger-menu__menu:nth-last-child(2){display:none}}@media screen and (max-width: 767px){.burger-menu__menu:nth-last-child(2){display:grid}}.burger-menu__feedback{padding:0 16px}.burger-menu__feedback .btn-group{padding:24px 0;border-top:1px solid #e0e7e9}.burger-menu__footer{background:#e6ecee;text-align:left;padding:24px 0}.burger-menu__footer .footer-applications{text-align:left}.burger-menu__footer .footer-social__container{text-align:left}.burger-menu .popup--profile::after{content:none}.profile>.burger-menu__menu{display:grid;grid-template-columns:1fr;padding:16px 12px}.profile>.burger-menu__menu .link--with-icon{display:flex;width:100%;gap:16px;text-align:start;padding:0}.profile>.burger-menu__menu ul li:nth-child(1) a{font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:.01em;line-height:1.7}.profile>.burger-menu__menu .user-icon{transition:all .5s ease-out}.profile>.burger-menu__menu .user-icon path{fill:#31bbbb;stroke:#31bbbb}.popup--profile .list__link svg,.burger-menu__menu-with-bg .list__link svg{color:#56c3c3}.form-input{border:0;padding:0;margin:0 0 24px;position:relative}.form-input:last-child{margin-bottom:0}.form-input_auth{margin:0 0 8px}.form-input--is-invalid .form-input__input,.form-input--invalid .form-input__input{border-color:#faecec;background:#faecec}.form-input--is-invalid .form-input__message,.form-input--invalid .form-input__message{color:#e97d65}.form-input--is--success .form-input__input{border-color:#c1e7c1;background:#e9f9e9}.form-input--is--success .form-input__message{color:#5f935f}@media screen and (min-width: 768px){.form-input--empty{padding-top:16px}}.form-input--disabled .form-input__label{color:#d4d4d4}.form-input__message{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;margin-top:4px;line-height:15.47px}.form-input__message--time{color:#b1b9bd;line-height:12.68px}.form-input__message--row{display:flex;flex-direction:row;gap:10px;align-items:center}.form-input__message button{font-size:inherit;font-weight:500;color:#4cbbbb}.form-input__message--with-icon{display:flex;flex-direction:row;gap:4px;align-items:center}.form-input__message--link{cursor:pointer}.form-input__message--icon{width:14px;height:14px}.form-input__message--small{font-family:Roboto;font-style:normal;font-weight:normal;font-size:10px;line-height:128.91%;letter-spacing:.03em}.form-input__message-link{margin-top:16px}.form-input__message-bot{font-size:inherit;font-weight:500;color:#4cbbbb;text-decoration:none}@media screen and (max-width: 767px){.form-input__message-bot{max-width:none}}.form-input__message-bot .error{color:#e97d65}.form-input__message--error{font-family:"Raleway";color:#f55;font-style:normal;font-weight:700;font-size:12px;line-height:130%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;margin-top:4px}.form-input__bank{width:96px;height:24px}.form-input__label-container{display:flex}.form-input__required{color:#e97d65;font-size:32px;vertical-align:middle;line-height:0}@media screen and (max-width: 767px){.form-input__required{font-size:18px}}.form-input__label{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;display:block;padding-bottom:4px;color:#777c83}.form-input__label--is-invalid,.form-input__label--invalid{color:#d4d4d4}.form-input__label--picker{pointer-events:none}.form-input__checklist{margin-bottom:30px}.form-input__checklist .radio-check-box input[type=radio]+label,.form-input__checklist .radio-check-box input[type=checkbox]+label{padding:5px 0 5px 25px}.form-input__checklist .radio-check-box input[type=radio]+label:before,.form-input__checklist .radio-check-box input[type=radio]+label:after,.form-input__checklist .radio-check-box input[type=checkbox]+label:before,.form-input__checklist .radio-check-box input[type=checkbox]+label:after{top:5px}.form-input__checklist .radio-check-box input[type=radio]+label:after,.form-input__checklist .radio-check-box input[type=radio]:checked+label:after{top:9px}.form-input__checklist .link--pseudo{margin-top:5px}.form-input__textarea{min-height:50px;resize:vertical}.form-input__clear{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:absolute;right:0;top:0;width:56px;height:56px;z-index:2}.form-input__back{display:none;position:absolute;top:0;left:0;width:56px;height:56px;z-index:2;margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}.form-input__back .icon{height:23px;width:24px;color:#777c83}.form-input__control--fixed .form-input__back{display:block}.form-input:disabled *{color:#d7dfe1;cursor:default}@media screen and (min-width: 768px){.form-input--age{max-width:50%}}.form-input--right .DayPickerInput-Overlay{left:auto;right:0}.form-input--phone .form-input__pseudomask{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;border:1px solid transparent;padding:18px 16px;background:transparent;color:#424242;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;line-height:1.3;font-size:inherit}.form-input--phone .form-input__input{background:transparent}.form-input--phone .form-input__input--phone{padding-left:34px}@media screen and (min-width: 768px){.form-input--phone .form-input__input--cert{max-width:200px}}@media screen and (max-width: 767px){.block-checkbox .form-input:not(:last-child){margin-bottom:10px}}.form-input-mb-8{margin-bottom:8px}.form-input-token{min-width:336px}.form-input--invalid.form-input--phone{background:transparent}.form-input__message:disabled:hover{color:#777c83;cursor:auto}.form-input__message:disabled{color:#777c83;cursor:auto}.text-error{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;line-height:150%;color:#e97d65}.label__flex{display:flex}.form-input__control{display:flex;flex-flow:row nowrap;position:relative}.form-row:last-child .form-input__control:last-child{margin-bottom:0}.form-input__control>*{flex:1}.form-input__control_request-auth-confirm{min-height:57px;display:flex;border-radius:5px;margin-bottom:8px}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm{flex-direction:column}}.form-input__control_request-auth-confirm>*:first-child{border-radius:5px 0 0 5px;overflow:hidden}.form-input__control_request-auth-confirm>*:not(:last-child){border-right:none}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm>*:not(:last-child){border:1px solid #d7dfe1}}.form-input__control_request-auth-confirm>*:last-child{border-radius:0 5px 5px 0}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm>*:first-child{border-radius:5px 5px 0 0;overflow:hidden}.form-input__control_request-auth-confirm>*:not(:last-child){border:1px solid #d7dfe1;border-bottom:0}.form-input__control_request-auth-confirm>*:last-child{border-radius:0 0 5px 5px}}@media screen and (max-width: 767px){.form-input__control_request-auth-confirm .auth-form-radio-telegram{min-width:71px}}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm .auth-form-radio-telegram{min-width:71px}.form-input__control_request-auth-confirm .auth-form-radio-telegram label span{font-size:10px}}@media screen and (max-width: 374px)and (max-width: 374px){.form-input__control_request-auth-confirm .auth-form-radio-telegram label span{font-size:11px}}.form-input__control_request-auth-confirm .auth-form-radio-telegram span{margin-top:6px}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm .auth-form-radio-telegram span{margin-top:0}}.form-input__control_request-auth-confirm .auth-form-radio .unibell-voice span{margin-top:7px}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm .auth-form-radio .unibell-voice span{margin-top:0}}.form-input__control_request-auth-confirm .auth-form-radio .unibell span{margin-top:6px}@media screen and (max-width: 374px){.form-input__control_request-auth-confirm .auth-form-radio .unibell span{margin-top:0}}.form-input__control--with-btn .btn{height:auto;border-radius:0 5px 5px 0;flex-grow:0;flex-shrink:0;flex-basis:auto;white-space:nowrap}.form-input__control--with-btn .form-input__input{border-radius:5px 0 0 5px;border-right:0;height:100%}.form-input__control--with-icon input{position:relative}@media screen and (min-width: 768px){.form-input__control--with-icon input{padding-right:40px}}.form-input__control--with-icon .form-input__input{padding-right:35px}.form-input__control--with-icon .icon{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:#777c83;z-index:1;width:12px;height:12px}.form-input__control--with-arrow input{position:relative}@media screen and (min-width: 768px){.form-input__control--with-arrow input{padding-right:40px}}.form-input__control--with-arrow .form-input__input{padding-right:35px}.form-input__control--with-arrow .icon{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:#777c83;z-index:1;width:12px;height:12px}.form-input__control--without-arrow>.icon{display:none}.form-input__control--file{display:block}.form-input__control--file>label{display:flex;align-items:center;position:relative}.form-input__control--file>label input[type=file]{position:absolute;z-index:-10;opacity:0}.form-input__control--file>label input[type=file]:hover+span,.form-input__control--file>label input[type=file]:focus+span{color:#d7dfe1}.form-input__control--file>label input[type=file]:active+span{color:#d7dfe1}.form-input__control--images{flex-wrap:wrap;margin-bottom:0}.form-input__control--images>*{flex:0 0 100px;margin-left:calc((100% - 500px) / (5 - 1));margin-bottom:30px}.form-input__control--images>*:nth-child(5n+1){margin-left:0}.form-input__control--dl{margin-bottom:10px}.form-row:last-child .form-input__control--dl:last-child{margin-bottom:0}.form-input__control--dl .dl-row{margin-bottom:3px}.form-input__control--dl .dl-title{color:#d7dfe1}.form-input__control--dl .dl-list{display:inline;list-style-type:none;padding:0}.form-input__control--dl .dl-list li{display:inline}.form-input__control--dl .dl-list li:after{content:", "}.form-input__control--dl .dl-list li:last-child:after{display:none}.form-input__control-line{align-items:center}.form-input__control-line .form-input__label{margin:0;flex:0 0 240px}.form-input__control--show-pass{position:relative}.form-input__control--show-pass .show-pass{position:absolute;right:20px;top:50%;transform:translateY(-50%);margin:0;padding:0;background-color:transparent;border:0;z-index:3;cursor:pointer}.form-input__control--show-pass .show-pass:focus{outline:none}.form-input__control--fixed{position:fixed;width:100vw;top:0;left:0;z-index:40002}.form-input__control--fixed:before{position:absolute;content:"";left:16px;bottom:2px;height:1px;width:calc(100% - 32px);background:#d7dfe1;z-index:99999}.form-input__control--fixed:after{content:"";position:fixed;top:0;left:0;bottom:0;right:0;width:100%;height:100%;max-height:100vh;background:#fff;z-index:-1;-webkit-overflow-scrolling:touch}.form-input__control--fixed .form-input__input{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;border:none;border-radius:0;padding-left:53px !important;z-index:40001 !important}.form-input__control--fixed .form-input__back,.form-input__control--fixed .form-input__clear{z-index:40002}.form-input__control--picker{flex-flow:column nowrap}.controll-clear-btn{position:absolute;right:6px;top:7px;bottom:7px;display:flex;align-items:center;cursor:pointer;padding:10px;z-index:1;background-color:#fff}.datepicker .form-input__control>*{flex:none;flex-basis:100%}.react-datepicker-wrapper input,.form-input__input{flex-grow:1;width:100%;max-width:100%;min-width:0;padding:18px 16px;background:#fff;color:#424242;border:1px solid #d7dfe1;border-radius:5px;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;line-height:1;font-size:inherit;resize:none;padding-right:46px;overflow:hidden;text-overflow:ellipsis;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-group--transparent .react-datepicker-wrapper input,.form-group--transparent .form-input__input{background:transparent}.form-input__input_success{border-color:#31bbbb;background:rgba(86,196,196,.15)}.form-input__input_warning{background-color:#faecec;border-color:#faecec}.form-input__input[type=date]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-input__input::-ms-clear{display:none}.form-input__input:disabled{cursor:default;pointer-events:none;border:0px solid #e3eaec;background:#e3eaec}.form-input__input:focus{outline:none;border-color:#31bbbb;z-index:1}.form-input__input::-moz-placeholder{color:#c0cbd2 !important}.form-input__input::placeholder{color:#c0cbd2 !important}.form-input__input-wrap{display:flex;flex-direction:column}.form-input__input-wrap--modal-search{flex-grow:0;flex-shrink:0;flex-basis:auto}.form-input__input-wrap .form-input__input{border-radius:0;border-left:0}.form-input__input-wrap .form-input__input:hover,.form-input__input-wrap .form-input__input:focus{outline:none;z-index:1}.form-input__input-wrap:first-of-type .form-input__input{border-top-left-radius:2px;border-bottom-left-radius:2px;border-left:1px solid #d7dfe1}.form-input__input-wrap:first-of-type .form-input__input:hover,.form-input__input-wrap:first-of-type .form-input__input:focus{outline:none;z-index:1}.form-input__input-wrap:last-of-type .form-input__input{border-top-right-radius:2px;border-bottom-right-radius:2px}.form-input__input-wrap:last-of-type .btn{border-top-left-radius:0;border-bottom-left-radius:0}.form-input__input--is-invalid,.form-input__input--invalid{border-color:#d7dfe1}.form-input__input.form-column--2-3{display:flex;flex-basis:100%;height:100%;flex-shrink:0;width:calc(100% / 3 * 2 - 30px)}.form-input__input[type=password]{letter-spacing:.16em;padding:10px 16px 9px}.form-input__input--select{margin-bottom:20px}.form-input__input--ios{padding-top:17px}.form-input-icon{position:absolute;z-index:1;width:24px;height:24px;color:#c0cbd2;right:15px;top:50%;transform:translateY(-50%);pointer-events:none}@media {.form-input-icon__special{top:28px}}.form-input__input:focus+.form-input-icon{color:#31bbbb}.form-input--select .form-input-icon{width:12px;height:12px;color:#777c83}.form-input-icon--btn{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;width:16px;height:16px;pointer-events:initial;cursor:pointer}.form-select{max-width:100%;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;line-height:1}.form-select__control{padding:0;background:#fff;color:#424242;border:1px solid #d7dfe1;border-radius:5px;font-size:inherit;align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between;outline:0 !important;position:relative;transition:all 100ms;min-height:57px}.form-select__control:hover{border:1px solid #d7dfe1}.form-select__control--menu-is-open{border-radius:5px 5px 0 0;z-index:1}.form-group--transparent .form-select__control{background-color:transparent}.form-select__indicator{display:flex;padding:16px;color:#777c83;transition:color 150ms}.form-select__indicator .icon{width:12px;height:12px}.form-select__value-container{padding:0 !important;position:static !important}.form-select__input input,.form-select__placeholder,.form-select__single-value{padding:18px 16px !important}.form-select__indicator-separator{display:none}.form-select__single-value{cursor:pointer;max-width:100%;overflow-x:hidden;text-overflow:ellipsis;white-space:pre;padding-right:0 !important}.form-select__single-value+input{position:absolute;text-indent:-99999999em}.form-select__menu{position:absolute;z-index:4;top:100%;width:100%;margin:0;padding-right:3px;border-radius:0 0 5px 5px;background:#fff;border-width:0 1px 1px 1px;border-style:solid;border-color:#d7dfe1}.form-select__menu-list{max-height:300px;overflow-y:auto;padding-bottom:4px;padding-top:4px;position:relative;-webkit-overflow-scrolling:touch;box-sizing:border-box;border-radius:5px}.form-select__menu-list::-webkit-scrollbar{width:4px}.form-select__menu-list::-webkit-scrollbar-track{background:#fff}.form-select__menu-list::-webkit-scrollbar-thumb{background:#e3eaec;border-radius:4px}.form-select__option{display:block;text-align:left;width:100%;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:12px 30px;color:#777c83;background:#fff;cursor:pointer}.form-select__option:hover,.form-select__option:focus{color:#fff;background:#56c4c4}.form-select__option--is-selected{color:#4cbbbb}.form-select--mobile .form-select__control{border-radius:0;border:0;border-bottom:1px solid #e0e7e9}.form-select--mobile .form-select__input input,.form-select--mobile .form-select__placeholder,.form-select--mobile .form-select__single-value{padding-left:0 !important}.form-select--mobile .form-select__menu{border:0;border-radius:0}.form-select--mobile .form-select__menu-list{max-height:none;border-radius:0}.form-select--mobile .form-select__option{border-bottom:1px solid #e0e7e9;padding-left:0}.form-select--mobile .form-select__indicator{padding-right:0}.form-select--mobile .close{position:relative;width:14px;height:14px;color:#c0cbd2;right:0;top:auto}.label--row{display:flex;justify-content:space-between;gap:8px}.label--text{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.label--gray{opacity:.7}.label--icons{display:flex;align-items:center;gap:4px}.label--icon{width:16px;height:16px}.label--icon img{display:flex}.city-selector .label--text{font-size:16px;font-weight:500}.form-group{margin-bottom:24px}.block-checkbox .form-group{margin-bottom:10px}.form-group:last-child{margin-bottom:0}.form-group__label{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;color:#c0cbd2;line-height:150%}.form-group--checkbox{margin-bottom:16px}.form-group--colum{display:flex;align-items:flex-start;flex-direction:column}.form-group--colum .form-input--phone{width:330px}@media screen and (max-width: 767px){.form-group--colum .form-input--phone{width:100%}}.form-group-mb-8{margin-bottom:8px}@media screen and (min-width: 768px){.form-group--row{display:flex;align-items:flex-start}.form-group--row .form-group--checkbox{padding:3px 0}.form-group--row>*{margin-right:10px;flex:1}.form-group--row>*:last-child{margin-right:0}.form-group--row .form-input{margin-bottom:0}}.form-group--row-mobile{display:flex;align-items:flex-start}.form-group--row-mobile>*{margin-right:12px;flex:1}@media screen and (min-width: 768px){.form-group--row-mobile>*{margin-right:16px}}.form-group--row-mobile>*:last-child{margin-right:0}.form-group--row-mobile .form-input{margin-bottom:0}.form-group--card .form-input{flex:0 1 auto;flex-basis:385px}@media screen and (min-width: 768px){.form-group--card{margin-bottom:47px !important}}.form-group--promo{margin-bottom:0 !important}@media screen and (min-width: 500px){.form-group--promo{display:flex}}.form-group--promo .form-input{width:auto}.form-group--promo .form-input__message{font-family:"Roboto";margin-top:15px;min-height:48px;background:#faecec;border-radius:8px;display:flex;align-items:center;padding:8px 15px;margin-bottom:14px;line-height:150%;font-style:normal;font-weight:300;font-size:14px}.form-group--promo .form-input__message .icon{width:32px;height:32px;margin-right:15px}.form-group--promo .form-input__message:last-of-type{padding:17px 15px}.form-group--promo .form-input__input:focus{border:1px solid #d7dfe1}.form-group--promo .form-input .btn--code-promo{background:#e3eaec;color:#777c83;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.form-group--promo .form-input .btn--code-promo-active{background:linear-gradient(104.96deg, #f9694a -11.32%, #ff5555 106.34%);color:#fff}.form-group--pay .radio-check-box{margin-bottom:16px}.form-group--pay .radio-check-box:last-child{margin-bottom:0}.form-group--time{display:flex;align-items:flex-start;margin-bottom:16px}.form-group--time>*{margin-right:17px;flex:1}.form-group--time>*:last-child{margin-right:0}@media screen and (min-width: 375px){.form-group--time .form-input{margin-bottom:0}}@media screen and (max-width: 374px){.form-group--time{display:flex;flex-wrap:wrap}.form-group--time>*{flex-basis:100%}.form-group--time>*:first-child{margin-right:0}}.form-group-auth{width:535px;margin-bottom:8px}@media screen and (max-width: 767px){.form-group-auth{width:100%;margin-bottom:0}}.form-group-auth .btn--code{max-width:180px;margin-top:0;min-width:165px;padding:21px 16px}@media screen and (max-width: 767px){.form-group-auth .btn--code{margin-top:8px;width:100%;max-width:none;min-width:auto}}.form-group-auth .buttons{width:370px}@media screen and (max-width: 767px){.form-group-auth .buttons{width:auto}}.form-group__disabled{color:#d4d4d4;transition:all .3s ease}.form-group__disabled .form-input__label{color:inherit}.form-group__disabled input:disabled{background-color:transparent;border:1px solid #d4d4d4}.cheсkout-page .form-group-auth{margin-bottom:0}.cheсkout-page .form-input__control_request-auth-confirm{margin-bottom:0}.form-file{margin-bottom:28px}.form-file__load{display:inline-flex;align-items:center;cursor:pointer}.form-file__icon{width:32px;height:32px;color:#56c4c4;margin-right:8px}.form-file input[type=file]{position:absolute;opacity:0;z-index:-10}.form-file input[type=file]~.fs-btn2{color:#777c83}.form-file input[type=file]:hover~.fs-btn2,.form-file input[type=file]:focus~.fs-btn2{color:#56c4c4}.form-file__loaded{display:flex;align-items:center;font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.form-file__loaded::before{content:"";width:12px;height:8px;margin-right:10px;background-position:0 0;background-size:100%;background-repeat:no-repeat;background-image:url("/images/check.svg")}.form-file__loaded-text{color:#282929;margin-right:8px}.error .form-file__loaded-text{color:#d4d4d4}.form-file__loaded-weight{color:#777c83;margin-right:8px}.error .form-file__loaded-weight{color:#e97d65}.form-file__loaded-delete{position:relative;width:8px;height:8px;top:auto;right:auto;color:#c0cbd2}.form-file__loaded.error::before{display:none}@media screen and (max-width: 767px){.hall-page .form{padding-top:27px;border-top:1px solid #e0e7e9}.hall-page .form .btn{width:100%}.hall-page .form .form-group--row{display:block}.hall-page .form .form-group--row>*{margin-right:0;margin-bottom:40px}}.form-privacy-policy{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;margin-bottom:20px;color:#777c83}.form-privacy-policy a{color:#4cbbbb}.form-add__icon{color:#56c4c4;width:32px;height:32px;margin:0 8px}.form-add__icon:last-child{margin-right:0}.form-add__icon:first-child{margin-left:0}.auth-form-radio{flex-basis:25%;border:1px solid #d7dfe1;display:flex;justify-content:center;align-items:center;min-width:74px}@media screen and (max-width: 767px){.auth-form-radio{min-width:68px}.auth-form-radio label span{font-size:10px}}@media screen and (max-width: 374px){.auth-form-radio{flex-direction:column;min-height:44px;height:44px}.auth-form-radio label{display:flex;flex-direction:row;justify-content:flex-start;padding:0 0 0 13px;margin:0;height:100%}.auth-form-radio label span{margin:0 0 0 13px;font-size:11px}}.auth-form-radio .btn{width:100%;height:100%;border-radius:0}@media screen and (max-width: 374px){.auth-form-radio .btn{height:44px;transition:color .3s}}.auth-form-radio input[type=radio]{display:none}.auth-form-radio input[type=radio]:checked~.btn{color:#4cbbbb;background-color:#f1f6f6}@media screen and (max-width: 374px){.auth-form-radio input[type=radio]:checked~.btn{height:44px}}.phone__container{width:100%}.phone__container .form-input-token{min-width:unset;width:160px}.phone__container .form-input__message{line-height:1.0566}.phone__container .form-input__input:disabled{border:1px solid #d4d4d4}.password__container{position:relative;margin:0 0 40px}.password__container .form-input{width:100%}.password__container input{min-height:56px;max-height:56px;padding-right:68px !important}.checkout-page .password__container{width:330px}.password__icon{position:absolute;top:calc(100% / 2 - 16px);right:0;background-color:transparent;border:unset;padding:0;padding-right:18px;color:#777c83;z-index:1}.password__icon svg{fill:transparent}.password__icon:hover{cursor:pointer}.password__icon:disabled{color:#d4d4d4;cursor:unset}.input--with-button .form-input--phone input{border-top-right-radius:0;border-bottom-right-radius:0;border-right:unset}.input--with-button .btn--code{border-top-left-radius:0;border-bottom-left-radius:0}.input--with-code{display:flex}.input--with-code .form-input--phone input{border-top-right-radius:0;border-bottom-right-radius:0;border-right:unset}.input--with-code #token{border-bottom-left-radius:0;border-top-left-radius:0;max-width:160px;min-width:160px}.input--with-code input{max-height:56px}.input--with-code .form-input__message{margin-top:0}.input--with-code .form-input{margin-bottom:0}.input--with-code .form-input--invalid input{border-color:#d7dfe1}.icon__token{width:32;height:32}.footer{display:flex;flex-wrap:wrap;margin-top:auto;background:#e3eaec;padding-top:20px}.footer__container{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}@media screen and (min-width: 768px){.footer__container{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto}}@media screen and (min-width: 768px)and (min-width: 768px){.footer__container{padding:0 32px}}@media screen and (min-width: 768px)and (min-width: 1024px){.footer__container{padding:0 40px}}.footer__top{flex-basis:100%}.footer__top-container{display:flex;justify-content:center}@media screen and (min-width: 768px){.footer__top{padding-bottom:20px;margin-bottom:24px;border-bottom:1px solid #b6c6cb}}.footer__bottom{flex-basis:100%;order:2}@media screen and (min-width: 768px){.footer__bottom{display:flex;justify-content:space-between;margin-bottom:28px}}@media screen and (min-width: 1200px){.footer__bottom{align-items:flex-end}}@media screen and (min-width: 768px){.footer{padding-top:40px}}.footer-links{display:flex;flex-direction:column;gap:12px;padding-top:13px;padding-bottom:32px;align-items:center;border-top:1px solid #d1d6d8;border-bottom:1px solid #d1d6d8}.footer-links svg{fill:transparent}.footer-links .link--with-icon{gap:12px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:21px}.footer-link-application{display:flex;justify-content:space-between;width:100%;max-width:450px}@media screen and (max-width: 1023px){.footer-link-application{max-width:270px}}@media screen and (max-width: 767px){.footer-link-application{justify-content:center;flex-wrap:wrap;max-width:100%}}.footer-menu{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:grid;grid-template-columns:1fr 1fr 1fr;gap:30px}.footer-menu__item{margin-bottom:14px}.footer-menu__item svg{min-width:24px;min-height:24px;fill:transparent}.footer-menu__item a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}.burger-menu__body>.footer-menu__item{color:#777c83}.footer-menu .header-menu__item svg{margin-right:15px}.footer-menu .link,.footer-menu__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;display:flex;align-items:flex-start;line-height:120%;color:#282929;transition:color .3s}.footer-menu .link:hover,.footer-menu .link:focus,.footer-menu__link:hover,.footer-menu__link:focus{color:#31bbbb}.footer-menu .link:hover .delivery-icon,.footer-menu .link:focus .delivery-icon,.footer-menu__link:hover .delivery-icon,.footer-menu__link:focus .delivery-icon{color:#31bbbb}.footer-menu .link:hover .sk-icon path,.footer-menu .link:hover .sk-icon rect,.footer-menu .link:hover .like-icon path,.footer-menu .link:hover .like-icon rect,.footer-menu .link:hover .pay-bill-icon path,.footer-menu .link:hover .pay-bill-icon rect,.footer-menu .link:hover .reserve-icon path,.footer-menu .link:hover .reserve-icon rect,.footer-menu .link:focus .sk-icon path,.footer-menu .link:focus .sk-icon rect,.footer-menu .link:focus .like-icon path,.footer-menu .link:focus .like-icon rect,.footer-menu .link:focus .pay-bill-icon path,.footer-menu .link:focus .pay-bill-icon rect,.footer-menu .link:focus .reserve-icon path,.footer-menu .link:focus .reserve-icon rect,.footer-menu__link:hover .sk-icon path,.footer-menu__link:hover .sk-icon rect,.footer-menu__link:hover .like-icon path,.footer-menu__link:hover .like-icon rect,.footer-menu__link:hover .pay-bill-icon path,.footer-menu__link:hover .pay-bill-icon rect,.footer-menu__link:hover .reserve-icon path,.footer-menu__link:hover .reserve-icon rect,.footer-menu__link:focus .sk-icon path,.footer-menu__link:focus .sk-icon rect,.footer-menu__link:focus .like-icon path,.footer-menu__link:focus .like-icon rect,.footer-menu__link:focus .pay-bill-icon path,.footer-menu__link:focus .pay-bill-icon rect,.footer-menu__link:focus .reserve-icon path,.footer-menu__link:focus .reserve-icon rect{stroke:#31bbbb}.footer-menu .link:hover .children_club path,.footer-menu .link:focus .children_club path,.footer-menu__link:hover .children_club path,.footer-menu__link:focus .children_club path{fill:#31bbbb;stroke:#31bbbb}.footer-menu .link:hover .children_club path:first-of-type,.footer-menu .link:focus .children_club path:first-of-type,.footer-menu__link:hover .children_club path:first-of-type,.footer-menu__link:focus .children_club path:first-of-type{fill:none}.footer-menu .link:hover .children_club path:nth-child(4),.footer-menu .link:hover .children_club path:nth-child(3),.footer-menu .link:focus .children_club path:nth-child(4),.footer-menu .link:focus .children_club path:nth-child(3),.footer-menu__link:hover .children_club path:nth-child(4),.footer-menu__link:hover .children_club path:nth-child(3),.footer-menu__link:focus .children_club path:nth-child(4),.footer-menu__link:focus .children_club path:nth-child(3){stroke:none}.footer-menu .link:hover .contact-icon ellipse,.footer-menu .link:hover .contact-icon path,.footer-menu .link:hover .banquet-icon ellipse,.footer-menu .link:hover .banquet-icon path,.footer-menu .link:hover .restaurant-icon ellipse,.footer-menu .link:hover .restaurant-icon path,.footer-menu .link:focus .contact-icon ellipse,.footer-menu .link:focus .contact-icon path,.footer-menu .link:focus .banquet-icon ellipse,.footer-menu .link:focus .banquet-icon path,.footer-menu .link:focus .restaurant-icon ellipse,.footer-menu .link:focus .restaurant-icon path,.footer-menu__link:hover .contact-icon ellipse,.footer-menu__link:hover .contact-icon path,.footer-menu__link:hover .banquet-icon ellipse,.footer-menu__link:hover .banquet-icon path,.footer-menu__link:hover .restaurant-icon ellipse,.footer-menu__link:hover .restaurant-icon path,.footer-menu__link:focus .contact-icon ellipse,.footer-menu__link:focus .contact-icon path,.footer-menu__link:focus .banquet-icon ellipse,.footer-menu__link:focus .banquet-icon path,.footer-menu__link:focus .restaurant-icon ellipse,.footer-menu__link:focus .restaurant-icon path{stroke:#31bbbb}.footer-menu .link:hover .sk-icon path,.footer-menu .link:focus .sk-icon path,.footer-menu__link:hover .sk-icon path,.footer-menu__link:focus .sk-icon path{fill:#31bbbb}.footer-menu .link:hover .sk-icon path,.footer-menu .link:hover .sk-icon rect,.footer-menu .link:focus .sk-icon path,.footer-menu .link:focus .sk-icon rect,.footer-menu__link:hover .sk-icon path,.footer-menu__link:hover .sk-icon rect,.footer-menu__link:focus .sk-icon path,.footer-menu__link:focus .sk-icon rect{stroke:#31bbbb}.footer-menu .link.link_frozen,.footer-menu__link.link_frozen{color:#5eb1cc;font-weight:500}.footer-menu .link.link_frozen:hover,.footer-menu .link.link_frozen:focus,.footer-menu__link.link_frozen:hover,.footer-menu__link.link_frozen:focus{color:#31bbbb}.footer-menu .link.link_covid,.footer-menu__link.link_covid{color:#f9694a}.footer-menu .link.link_covid:hover,.footer-menu .link.link_covid:focus,.footer-menu__link.link_covid:hover,.footer-menu__link.link_covid:focus{color:#f9694a}@media screen and (max-width: 767px){.footer-menu{display:none}}.footer-delivery{flex-basis:100%}.footer-delivery__title{font-family:Raleway;font-style:normal;font-weight:SemiBold;color:#282929;font-size:18px;line-height:129.14%;letter-spacing:.01em;margin-bottom:10px}@media screen and (min-width: 768px){.footer-delivery__title{font-family:Raleway;font-style:normal;font-weight:bold}}@media screen and (min-width: 1024px){.footer-delivery__title{margin-bottom:20px}}@media screen and (min-width: 768px){.footer-delivery{flex-basis:25%}}@media screen and (min-width: 1200px){.footer-delivery{flex-basis:25%}}@media screen and (max-width: 767px){.footer-delivery{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;text-align:center}}@media screen and (max-width: 767px)and (min-width: 768px){.footer-delivery{padding:0 32px}}@media screen and (max-width: 767px)and (min-width: 1024px){.footer-delivery{padding:0 40px}}@media screen and (max-width: 767px){.footer-delivery__container{border-bottom:1px solid #d1d6d8;padding-bottom:16px;margin-bottom:13px}}@media screen and (max-width: 767px){.footer-delivery .clock{justify-content:center}}.footer-feedback{display:none;max-height:184px;display:flex;order:1;flex-basis:25%;text-align:center}.footer-feedback__title{font-family:Raleway;font-style:normal;font-weight:bold;color:#282929;font-size:14px;line-height:129.14%;letter-spacing:.01em;margin-right:24px}@media screen and (min-width: 1024px){.footer-feedback__title{margin-right:28px}}@media screen and (min-width: 1200px){.footer-feedback__title{margin-right:0;margin-bottom:15px;font-size:18px}}.footer-feedback__container{padding:12px 24px;border:1px solid #b6c6cb;border-radius:6px;display:flex;align-items:center;justify-content:space-between}.footer-feedback__container .btn-group{flex-basis:calc((100% - 48px) / 4);max-width:calc((100% - 48px) / 4);margin-left:auto}.footer-feedback__container .btn-group .btn{padding:10px}.footer-feedback__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;text-align:center}.footer__container>.footer-feedback{display:none}.footer-feedback__text{margin-bottom:10px;padding:0 24px}.footer-feedback .btn-group{width:100%;max-width:calc(100% - 80px);margin:0 auto}.footer-feedback__container{display:block;width:100%;padding:24px 0}@media screen and (max-width: 1199px){.footer-feedback{display:block;order:3;flex-basis:100%;margin-bottom:23px}.footer__top-container>.footer-feedback{display:none}}.footer-applications__title{font-family:Raleway;font-style:normal;font-weight:500;color:#282929;font-size:14px;line-height:129.14%;letter-spacing:.01em;margin-bottom:15px}@media screen and (max-width: 767px){.footer-applications{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;display:flex;flex-direction:column;align-items:center;margin-bottom:24px}}@media screen and (max-width: 767px)and (min-width: 768px){.footer-applications{padding:0 32px}}@media screen and (max-width: 767px)and (min-width: 1024px){.footer-applications{padding:0 40px}}.footer-payment__title{font-family:Raleway;font-style:normal;font-weight:bold;color:#282929;font-size:14px;line-height:129.14%;letter-spacing:.01em;margin-bottom:15px}.footer-payment__list{display:flex;justify-content:space-between;align-items:center;flex-grow:1;min-height:32px}@media screen and (min-width: 1024px){.footer-payment__list{min-height:40px}}@media screen and (max-width: 767px){.footer-payment__list{justify-content:center}}.footer-payment__img{flex-shrink:0;align-items:center;display:flex}.footer-payment__item--card .footer-payment__img{width:29px;margin-right:10px}.footer-payment__item--apple .footer-payment__img{width:53px}.footer-payment__item--google .footer-payment__img{width:60px}.footer-payment__item--sbp .footer-payment__img{height:20px;margin-right:12px}@media screen and (max-width: 767px){.footer-payment__item--sbp .footer-payment__img{margin-left:12px}}.footer-payment__item--yandex-pay .footer-payment__img{height:20px}@media screen and (max-width: 767px){.footer-payment__item--yandex-pay .footer-payment__img{margin-left:20px}}.footer-payment__item--card{font-family:Raleway;font-style:normal;font-weight:500;display:flex;max-width:112px;align-items:center;font-size:12px;line-height:11px;color:#282929}@media screen and (min-width: 768px){.footer-payment__item--card{font-weight:400;color:#282929}}@media screen and (max-width: 767px){.footer-payment__item--card{color:#99b3ba}}@media screen and (min-width: 768px){.footer-payment{flex-basis:280px;padding:0 16px}}@media screen and (min-width: 1200px){.footer-payment{flex-basis:auto}.footer-payment__container{display:flex;align-items:center}.footer-payment__title{font-family:Raleway;font-style:normal;font-weight:normal;margin-bottom:0;margin-right:16px}.footer-payment__list{justify-content:flex-start}.footer-payment__item{margin-right:10px}.footer-payment__item:last-child{margin-right:0}}@media screen and (max-width: 767px){.footer-payment{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;padding-top:20px;padding-bottom:20px;background:#e6ecee}}@media screen and (max-width: 767px)and (min-width: 768px){.footer-payment{padding:0 32px}}@media screen and (max-width: 767px)and (min-width: 1024px){.footer-payment{padding:0 40px}}@media screen and (max-width: 767px){.footer-payment__container{width:100%;border-bottom:1px solid #d1d6d8;padding-bottom:20px}}.footer-social{flex-basis:100%}.footer-social__title{font-family:Raleway;font-style:normal;font-weight:bold;color:#282929;font-size:14px;line-height:129.14%;letter-spacing:.01em;margin-bottom:15px}.footer-social__list{display:flex;justify-content:space-between;max-width:230px}.footer-social__item,.page-content .footer-social__item{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:inline-block;width:40px;height:40px;transition:.3s;background-repeat:no-repeat;background-size:40px 40px}.footer-social__item:last-child,.page-content .footer-social__item:last-child{margin-right:0}.footer-social__item--vkontakte,.page-content .footer-social__item--vkontakte{background-image:url("/images/social/vkontakte.svg")}.footer-social__item--vkontakte:hover,.footer-social__item--vkontakte:focus,.page-content .footer-social__item--vkontakte:hover,.page-content .footer-social__item--vkontakte:focus{background-image:url("/images/social/vkontakte-color.svg")}.footer-social__item--instagram,.page-content .footer-social__item--instagram{background-image:url("/images/social/instagram.svg")}.footer-social__item--instagram:hover,.footer-social__item--instagram:focus,.page-content .footer-social__item--instagram:hover,.page-content .footer-social__item--instagram:focus{background-image:url("/images/social/instagram-color.svg")}.footer-social__item--facebook,.page-content .footer-social__item--facebook{background-image:url("/images/social/facebook.svg")}.footer-social__item--facebook:hover,.footer-social__item--facebook:focus,.page-content .footer-social__item--facebook:hover,.page-content .footer-social__item--facebook:focus{background-image:url("/images/social/facebook-color.svg")}.footer-social__item--telegramm,.page-content .footer-social__item--telegramm{background-image:url("/images/social/telegramm.svg")}.footer-social__item--telegramm:hover,.footer-social__item--telegramm:focus,.page-content .footer-social__item--telegramm:hover,.page-content .footer-social__item--telegramm:focus{background-image:url("/images/social/telegramm-color.svg")}@media screen and (min-width: 768px)and (max-width: 1023px){.footer-social__item,.page-content .footer-social__item{width:32px;height:32px;background-size:32px 32px}}@media screen and (min-width: 768px){.footer-social{flex-basis:calc(100% / 4)}.footer-social__container{max-width:128px}.footer-social__list{justify-content:flex-start}.footer-social__item,.page-content .footer-social__item{margin-right:16px}}@media screen and (min-width: 1024px){.footer-social__container{max-width:200px}.footer-social__item,.page-content .footer-social__item{margin-right:20px}}@media screen and (min-width: 1200px){.footer-social{flex-basis:auto}.footer-social__item,.page-content .footer-social__item{margin-right:24px}.footer-social__item:last-child,.page-content .footer-social__item:last-child{margin-right:0}.footer-social__list{flex-grow:1}.footer-social__container{display:flex;align-items:center;max-width:none}.footer-social__title{font-family:Raleway;font-style:normal;font-weight:normal;margin-bottom:0;margin-right:16px}}@media screen and (max-width: 767px){.footer-social{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;background:#e6ecee}}@media screen and (max-width: 767px)and (min-width: 768px){.footer-social{padding:0 32px}}@media screen and (max-width: 767px)and (min-width: 1024px){.footer-social{padding:0 40px}}@media screen and (max-width: 767px){.footer-social__list{max-width:none;justify-content:center;gap:8px}}@media screen and (max-width: 767px){.footer-social__container{width:100%;border-bottom:1px solid #d1d6d8;padding-bottom:20px}}.burger-socials{display:flex;flex-direction:row}@media screen and (max-width: 767px){.burger-socials{margin-top:16px}.burger-menu__location>.burger-socials{display:none}}.burger-social{width:34px;height:34px;max-width:34px;max-height:34px;display:flex;align-items:center;background-color:#f1f6f6;border-radius:50%;cursor:pointer;margin-right:16px}.burger-social svg{margin:0 auto}.burger-social__telegramm svg{margin-left:18%}.burger-social__telegramm:hover{background-color:#34aadf}.burger-social__telegramm:hover svg path{fill:#fff}.burger-social__vkontakte:hover{background-color:#07f}.burger-social__vkontakte:hover svg path{fill:#fff}.burger-social__instagram:hover{background:radial-gradient(111.63% 95.52% at 32.5% 95%, #e7d297 0%, #f4733e 36.02%, #d63d6f 50.97%, #c63095 62.83%, #983ba8 79.19%, #6a45be 100%)}.burger-social__instagram:hover svg path{fill:#fff}.footer-copyright{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;flex-basis:100%;order:3;background:#d7dfe1;color:#282929;padding:12px 0}.footer-copyright__container{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;display:flex;flex-direction:column;align-items:center;justify-content:center;flex-wrap:wrap}@media screen and (min-width: 768px){.footer-copyright__container{padding:0 32px}}@media screen and (min-width: 1024px){.footer-copyright__container{padding:0 40px}}@media screen and (min-width: 768px){.footer-copyright__container{justify-content:space-between;flex-direction:row}}.footer-dev{display:flex;align-items:center;min-width:250px;margin-top:15px}@media screen and (max-width: 767px){.footer-dev{justify-content:center}}@media screen and (min-width: 768px){.footer-dev{margin-top:0;justify-content:flex-end}}.footer-dev__text{margin-right:10px}.footer-dev__logo-container{width:44px;height:29px;min-width:44px;min-height:29px;margin-bottom:5px}.footer-dev__logo{display:flex;justify-content:flex-end;align-items:center;font-size:12px;letter-spacing:.0125em;opacity:.5}.footer-dev__logo:hover,.footer-dev__logo:focus{opacity:1}.clock{display:flex}.clock__time{white-space:nowrap}.clock__icon{width:24px;height:24px;margin-right:15px;flex-shrink:0;color:#56c4c4}.clock__text{color:#777c83;line-height:25px}.footer .clock__text{color:#282929;font-weight:300}.footer .clock__text .c-txt_black{color:#282929}.footer .clock__text .link{transition:color .3s}.footer .clock__text .link:hover,.footer .clock__text .link:focus{color:#31bbbb}@media screen and (max-width: 1023px){.footer .clock{font-size:14px}}.basket{color:#282929}.basket__head{margin-bottom:22px;padding:0 24px}.popup .basket__head{margin-right:-8px}.basket__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#333536}@media screen and (min-width: 768px){.basket__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.basket__info{padding:32px 8px 10px}.basket__total{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}.basket__container{border-top:1px solid #e3eaec;padding:22px 32px 28px 32px;display:flex;flex-direction:column}.basket__container .cart-total__text{color:#777c83}.basket__clear{cursor:pointer}.basket--checkout{background:#fafbfc;border-radius:8px}.basket-item{position:relative;padding:15px 0 8px;border-top:1px solid #e3eaec}.basket-item__container{display:flex;flex-direction:column}.basket-item__head{display:flex;justify-content:space-between;margin-bottom:8px}.basket-item__alert .alert-text{max-width:100% !important}.basket-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px;display:block;align-items:center;letter-spacing:.01em;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:5px}.basket-item__title:hover{color:#56c4c4}.basket-item__title:hover.offline-order{color:inherit;cursor:auto}.basket-item__title-text{margin:0 8px}.basket-item__title-text:first-child{margin-left:0}.basket-item__title-text:last-child{margin-right:0}.basket-item__title-weight{color:#777c83;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;white-space:nowrap}@media screen and (min-width: 768px){.basket-item__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:0;line-height:1.4;font-feature-settings:"pnum" on,"lnum" on}}.basket-item__with-free{flex-direction:row !important;gap:30px}@media screen and (max-width: 767px){.basket-item__with-free{gap:unset}}.basket-item__addition{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;line-height:1.5;display:flex;cursor:pointer}.basket-item__addition-content{display:flex;flex-direction:column;align-items:flex-start}.basket-item__addition-content>.basket-item__sum{order:unset !important;flex-basis:unset !important;margin-left:unset !important;margin-bottom:4px}.basket-item__addition-free{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}.basket-item__addition-icon{margin:0 8px;width:24px;height:24px;flex-shrink:0}.basket-item__addition-icon:first-child{margin-left:0}.basket-item__addition-icon:last-child{margin-right:0}@media screen and (min-width: 768px){.basket-item__addition-icon{width:18px;height:18px}}.basket-item__addition .basket-item__addition-text:hover{color:#56c4c4}.basket-item__info{flex:1;padding-right:10px;align-self:center}.basket-item__image{width:48px;height:48px !important;flex-shrink:0;margin-right:18px;border-radius:3px;overflow:hidden;position:relative;background-color:#dfe8ea;background-image:url("/images/dish.png");background-position:center center;background-size:auto 75%;background-repeat:no-repeat}.basket-item__image img{position:relative;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.header__basket .basket-item__image img{left:50% !important;top:50% !important;transform:translate(-50%, -50%) !important}.basket-item__delete{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:absolute;color:#777c83;width:20px;height:20px;top:9px;right:-6px;cursor:pointer}.basket-item__delete .close{top:0;right:16px;color:inherit;width:12px;height:12px}@media screen and (min-width: 768px){.basket-item__delete .close{right:0;width:16px;height:16px}}.basket-item__delete .close:hover,.basket-item__delete .close:before{opacity:1}.basket-item__delete .close::before,.basket-item__delete .close::after{height:2px}.popup .basket-item__delete .close{top:6px;right:6px;width:8px;height:8px}.basket-item__delete:hover,.basket-item__delete:focus{color:#282929;background-color:#f1f6f6;border-radius:50%;overflow:hidden}.basket-item__total{display:flex;align-items:center;justify-content:space-between}.basket-item__total .btn--secondary{padding:17px 20px}@media screen and (max-width: 1024px){.basket-item__total .btn--secondary{font-size:11px;line-height:13.2px;padding:14px 20px}}.basket-item__total-empty{justify-content:flex-end;flex-direction:row !important}@media screen and (max-width: 1024px){.basket-item__total-empty{align-items:flex-start}}.basket-item__sum{font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;color:#424242}.basket-item--disabled .basket-item__image{opacity:.5}.basket-item--disabled .basket-item__title,.basket-item--disabled .basket-item__addition,.basket-item--disabled .basket-item__total,.basket-item--disabled .basket-item__sum{color:#d4d4d4 !important}.basket-item--disabled .rub,.basket-item--disabled .count__num,.basket-item--disabled .count__btn{color:#d4d4d4 !important}.basket-item--disabled .basket-item__image:hover,.basket-item--disabled .basket-item__title:hover{cursor:default !important}.basket-item--disabled .count__btn:active,.basket-item--disabled .count__btn:hover{background:unset !important;cursor:default}.basket-item__canceled .basket-item__title{text-decoration-line:line-through}.basket-item__canceled .basket-item__image{opacity:.2}.basket-item__canceled .basket-item__sum{color:#e97d65 !important;text-decoration-line:line-through;font-weight:500;letter-spacing:.03em}@media screen and (max-width: 1024px){.basket-item .btn--grey-2{padding:11px 12px;max-height:40px}}.basket-item__inactive{margin-left:128px;display:flex;flex-direction:row;gap:8px;align-items:center;color:#e97d65;font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.basket-item__inactive--header{display:grid;grid-template-columns:26px 1fr;margin-left:unset;gap:0px}.basket-item__inactive--text{display:flex;flex-direction:row;gap:8px;align-items:center;color:#e97d65}@media screen and (max-width: 1023px){.basket-item__inactive--text{display:grid;grid-template-columns:26px 1fr;align-items:flex-start;gap:0px}}@media screen and (max-width: 767px){.basket-item__inactive{flex-direction:column;align-items:flex-start;margin-left:64px}.basket-item__inactive .btn--bordered__gray{margin-left:26px}}.basket-list{max-height:calc(100vh - 42px - 22px - 23px - 76px - 50px - 87px - 7px)}.basket--checkout .basket-list{max-height:calc(100vh - 42px - 22px - 23px - 76px - 50px - 144px)}.basket-list__container{padding:0 24px;max-height:calc(100vh - 42px - 22px - 23px - 76px - 50px - 87px - 7px)}.basket--checkout .basket-list__container{max-height:calc(100vh - 42px - 22px - 23px - 76px - 50px - 144px)}.basket-total{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:14px;color:#424242;display:flex;align-items:baseline}.basket-total__capt{margin:0 8px}.basket-total__capt:first-child{margin-left:0}.basket-total__capt:last-child{margin-right:0}.basket-total__num{font-family:Roboto;font-style:normal;font-weight:900;font-size:16px;color:#424242}.btn__to-basket--pointer::before{cursor:pointer !important;pointer-events:auto !important;background:#e3eaec !important}.profile__head{padding:34px 30px 16px;background:linear-gradient(180deg, #ffffff 0%, #fcfeff 0.02%, #e1ecf0 171.57%)}.profile__head .btn--with-icon{padding:0 16px}.profile__block{border-top:1px solid #e0e7e9;border-bottom:1px solid #e0e7e9;padding:24px 0;margin-top:34px}.profile__children{grid-template-columns:1fr .7fr 32px;display:grid;gap:22px}@media screen and (max-width: 1023px){.profile__children{display:flex;flex-direction:column}}@media screen and (max-width: 576px){.profile__children{gap:0}}.profile__remove{display:flex;justify-content:center;height:72px;position:relative}@media screen and (max-width: 1023px){.profile__remove{height:auto;justify-content:flex-start}}.profile__remove-button{border:unset;width:32px;height:32px;max-width:32px;max-height:32px;background-color:#e3eaec;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .5s ease;position:absolute;bottom:12px}@media screen and (max-width: 1023px){.profile__remove-button{position:relative;width:auto;height:auto;min-height:32px;display:flex;white-space:nowrap;max-width:unset;max-height:unset;border-radius:48px;padding:4px 24px}}.profile__remove-button svg{width:12px;height:12px}.profile__remove-button svg path{transition:all .5s ease}@media(hover: hover){.profile__remove-button:hover{cursor:pointer;background-color:#31bbbb}.profile__remove-button:hover svg path{stroke:#fff}}@media(hover: none){.profile__remove-button:active{cursor:pointer;background-color:#31bbbb}.profile__remove-button:active svg path{stroke:#fff}}.profile__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:20px;text-align:left}.profile__title-link a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;color:#282929;text-decoration:underline}.profile__title:last-child{margin-bottom:0}.profile__title-desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}@media screen and (min-width: 768px){.profile__title-desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}}@media screen and (min-width: 768px){.profile__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (max-width: 767px){.profile__title{display:flex;flex-direction:column;align-items:flex-start}}.profile__title-name{position:relative}.profile__title-btn{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-transform:none;text-align:left}.profile__title-btn .icon{transition:transform .3s;display:inline-block;align-self:center}.profile__title-btn--opened .icon{transform:rotate(180deg)}.profile__body{padding:20px 30px 24px}.profile__out{padding-top:16px}.profile__image{width:73px;height:64px;flex-shrink:0;margin-right:15px}@media screen and (min-width: 768px){.profile__image{margin-right:20px}}.profile--cabinet .profile__head{padding:24px 16px;display:flex;align-items:center;background:#eff5f7;border-radius:8px 8px 0 0}@media screen and (min-width: 768px){.profile--cabinet .profile__head{padding:32px}}.profile--cabinet .profile__body{padding:24px 32px;border-radius:0 0 8px 8px;border-width:0 1px 1px 1px;border-style:solid;border-color:#d7dfe1}.profile--subscriptions{margin-top:32px;margin-bottom:24px}.profile--subscriptions .radio-check-box input[type=radio]:checked+.radio-check-box__label,.profile--subscriptions .radio-check-box input[type=radio]:checked+label,.profile--subscriptions .radio-check-box input[type=checkbox]:checked+.radio-check-box__label,.profile--subscriptions .radio-check-box input[type=checkbox]:checked+label{color:#777c83;line-height:106%;letter-spacing:0}.profile--subscriptions .form-privacy-policy{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;padding-left:32px}.profile--buttons{display:flex;flex-direction:row;align-items:center;gap:13px}@media screen and (max-width: 767px){.profile--buttons{flex-direction:column;align-items:unset}}.profile--buttons .form-privacy-policy{margin-bottom:0}.profile--buttons .btn-group:not(:last-child){margin-bottom:0}.profile-out{display:flex;color:#777c83;outline:none;border-radius:0;font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.profile-out__icon{width:32px;height:32px;margin-right:8px;color:inherit}.profile-out__text{align-self:center}.profile-out:hover,.profile-out:focus{color:#4cbbbb}.profile-birthday-info{display:flex;align-items:center;align-content:center;font-family:Raleway;font-weight:normal;font-size:14px;line-height:105.66%;letter-spacing:.02em;font-style:normal;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}@media screen and (min-width: 768px){.profile-birthday-info{margin:15px 0;font-weight:500;font-size:16px;line-height:19px}}.profile-menu{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;border-bottom:1px solid #e0e7e9}.profile-menu__item{margin-bottom:16px}.profile-menu__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:inline-flex;align-items:center;cursor:pointer;flex-grow:0}.profile-menu__link.active .profile-menu__icon,.profile-menu__link.active .profile-menu__text,.profile-menu__link:hover .profile-menu__icon,.profile-menu__link:hover .profile-menu__text,.profile-menu__link:focus .profile-menu__icon,.profile-menu__link:focus .profile-menu__text{color:#4cbbbb}.profile--cabinet .profile-menu__link.active .profile-menu__text{color:#282929}.profile-menu__icon{width:24px;height:24px;color:#c0cbd2;margin-right:24px}@media screen and (max-width: 1023px){.popup--profile .profile-menu__icon{color:#4cbbbb}}.profile-menu__text{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.cabinet-page{margin-bottom:72px !important}.cabinet-page .delivery-time{background-color:#eaf2f2;padding:2px 10px;border-radius:50px;margin-right:10px}.cabinet-page .delivery-time-row{color:#000;margin-top:10px;display:flex;align-items:center;justify-content:flex-start}.cabinet-page .delivery-time-row span{margin-right:10px}.cabinet-page .delivery-time-row .courier-delay{background:#ffefd6}.cabinet-page .delivery-time-row svg{transform:rotate(359deg)}@media screen and (max-width: 767px){.cabinet-page .page__breadcrumbs,.cabinet-page .title--level-1{background-color:#eff5f7;margin:0 -16px;padding:0 16px}.cabinet-page .page__breadcrumbs{padding:24px 16px}.cabinet-page .column--1-3{margin:0 -16px;max-width:none;margin-bottom:23px}.cabinet-page .profile__head{border-radius:0}.cabinet-page .profile__title{margin-bottom:0}.cabinet-page .profile__title-name{margin-right:10px}.cabinet-page .popup--cabinet{max-width:none;width:auto;padding:24px 24px 40px 24px;top:calc(100% - 15px);left:16px;right:16px}}@media screen and (min-width: 768px){.cabinet-page{margin-bottom:128px !important}}.cabinet-page-empty{margin-top:24px}.radio-check-box{padding:3px 0;display:block}.radio-check-box input[type=radio],.radio-check-box input[type=checkbox]{position:absolute;z-index:-10;opacity:0}.radio-check-box input[type=radio]+label,.radio-check-box input[type=radio]+.radio-check-box__label,.radio-check-box input[type=checkbox]+label,.radio-check-box input[type=checkbox]+.radio-check-box__label{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;position:relative;display:inline-block;padding:0 0 0 32px;min-height:16px;cursor:pointer;padding-top:1px;margin-bottom:16px}.radio-check-box input[type=radio]+label:last-child,.radio-check-box input[type=radio]+.radio-check-box__label:last-child,.radio-check-box input[type=checkbox]+label:last-child,.radio-check-box input[type=checkbox]+.radio-check-box__label:last-child{margin-bottom:0}.radio-check-box input[type=radio]+label::before,.radio-check-box input[type=radio]+label::after,.radio-check-box input[type=radio]+.radio-check-box__label::before,.radio-check-box input[type=radio]+.radio-check-box__label::after,.radio-check-box input[type=checkbox]+label::before,.radio-check-box input[type=checkbox]+label::after,.radio-check-box input[type=checkbox]+.radio-check-box__label::before,.radio-check-box input[type=checkbox]+.radio-check-box__label::after{content:"";position:absolute;left:0;top:0;box-sizing:border-box}.radio-check-box input[type=radio]+label::before,.radio-check-box input[type=radio]+.radio-check-box__label::before,.radio-check-box input[type=checkbox]+label::before,.radio-check-box input[type=checkbox]+.radio-check-box__label::before{width:16px;height:16px;background:transparent;border:2px solid #777c83;border-radius:3px}.radio-check-box input[type=radio]:not(:checked):hover+.radio-check-box__label::before,.radio-check-box input[type=radio]:not(:checked):hover+label::before,.radio-check-box input[type=radio]:not(:checked):focus+.radio-check-box__label::before,.radio-check-box input[type=radio]:not(:checked):focus+label::before,.radio-check-box input[type=checkbox]:not(:checked):hover+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:not(:checked):hover+label::before,.radio-check-box input[type=checkbox]:not(:checked):focus+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:not(:checked):focus+label::before{border-color:#777c83}.radio-check-box input[type=radio]:checked+.radio-check-box__label,.radio-check-box input[type=radio]:checked+label,.radio-check-box input[type=checkbox]:checked+.radio-check-box__label,.radio-check-box input[type=checkbox]:checked+label{color:#282929}.radio-check-box input[type=checkbox]:checked+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:checked+label::before{border-color:#4cbbbb;background:#4cbbbb}.radio-check-box input[type=checkbox]:checked+.radio-check-box__label::after,.radio-check-box input[type=checkbox]:checked+label::after{width:9px;height:5px;transform:translate(40%, 80%) rotate(-45deg);border-top:0;border-right:0;border-left:1px solid #fff;border-bottom:1px solid #fff}.radio-check-box input[type=checkbox]:checked:hover+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:checked:hover+label::before,.radio-check-box input[type=checkbox]:checked:focus+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:checked:focus+label::before{border-color:#31bbbb;background-color:#31bbbb}.radio-check-box input[type=checkbox]:disabled+.radio-check-box__label,.radio-check-box input[type=checkbox]:disabled+label{cursor:default}.radio-check-box input[type=checkbox]:disabled+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:disabled+label::before{border-color:#bdbdbd;background:#f8f8f8}.radio-check-box input[type=checkbox]:disabled:checked+.radio-check-box__label,.radio-check-box input[type=checkbox]:disabled:checked+label{cursor:default}.radio-check-box input[type=checkbox]:disabled:checked+.radio-check-box__label::before,.radio-check-box input[type=checkbox]:disabled:checked+label::before{border-color:#777c83;background:#bdbdbd}.radio-check-box input[type=radio]+.radio-check-box__label::before,.radio-check-box input[type=radio]+label::before{border-radius:50%}.radio-check-box input[type=radio]:checked+.radio-check-box__label::before,.radio-check-box input[type=radio]:checked+label::before{border-color:#e97d65}.radio-check-box input[type=radio]:checked+.radio-check-box__label::after,.radio-check-box input[type=radio]:checked+label::after{border-radius:50%;top:4px;left:4px;width:8px;height:8px;background:#e97d65}.radio-check-box input[type=radio]:checked:hover+.radio-check-box__label::before,.radio-check-box input[type=radio]:checked:hover+label::before,.radio-check-box input[type=radio]:checked:focus+.radio-check-box__label::before,.radio-check-box input[type=radio]:checked:focus+label::before{border-color:#fd1414}.radio-check-box input[type=radio]:checked:hover+.radio-check-box__label::after,.radio-check-box input[type=radio]:checked:hover+label::after,.radio-check-box input[type=radio]:checked:focus+.radio-check-box__label::after,.radio-check-box input[type=radio]:checked:focus+label::after{background:#fd1414}.radio-check-box input[type=radio]:disabled+.radio-check-box__label,.radio-check-box input[type=radio]:disabled+label{cursor:default}.radio-check-box input[type=radio]:disabled+.radio-check-box__label::before,.radio-check-box input[type=radio]:disabled+label::before{border-color:#bdbdbd;background:none}.radio-check-box input[type=radio]:disabled:checked+.radio-check-box__label::before,.radio-check-box input[type=radio]:disabled:checked+label::before{border-color:#bdbdbd;background:transparent}.radio-check-box input[type=radio]:disabled:checked+.radio-check-box__label::after,.radio-check-box input[type=radio]:disabled:checked+label::after{background:#bdbdbd}.radio-check-box--center input[type=radio]+.radio-check-box__label::before,.radio-check-box--center input[type=radio]+.radio-check-box__label::after,.radio-check-box--center input[type=radio]+label::before,.radio-check-box--center input[type=radio]+label::after{top:50%;transform:translateY(-50%)}.radio-check-box--center input[type=radio]:checked+.radio-check-box__label::after,.radio-check-box--center input[type=radio]:checked+label::after{top:50%;transform:translateY(-50%)}.radio-check-box--block input[type=radio]+.radio-check-box__label,.radio-check-box--block input[type=radio]+label,.radio-check-box--block input[type=checkbox]+.radio-check-box__label,.radio-check-box--block input[type=checkbox]+label{display:block}.radio-check-box__data{color:#777c83;margin-left:30px}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label,.radio-check-box--toggle input[type=checkbox]+label{display:inline-flex;align-items:center;padding-left:0}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label::before,.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label::after,.radio-check-box--toggle input[type=checkbox]+label::before,.radio-check-box--toggle input[type=checkbox]+label::after{display:none}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon{position:relative;display:block;width:28px;height:16px;border-radius:24px;border:1px solid #e0e7e9;background:#fafbfc;margin:0 10px}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon::before{content:"";position:absolute;top:1px;left:1px;display:block;width:12px;height:12px;border-radius:50%;background:#c0cbd2;transition:background-color .3s,left .3s}@media screen and (max-width: 767px){.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon{width:42px;height:24px}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon::before{width:18px;height:18px;left:2px;top:2px}}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon:first-child,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon:first-child{margin-left:0}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__icon:last-child,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__icon:last-child{margin-right:0}.radio-check-box--toggle input[type=checkbox]+.radio-check-box__label .radio-check-box__right,.radio-check-box--toggle input[type=checkbox]+label .radio-check-box__right{color:#777c83}.radio-check-box--toggle input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--toggle input[type=checkbox]:checked+label .radio-check-box__icon::before{background-color:#56c4c4;left:13px}@media screen and (max-width: 767px){.radio-check-box--toggle input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--toggle input[type=checkbox]:checked+label .radio-check-box__icon::before{left:20px}}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__icon,.radio-check-box--two input[type=checkbox]+label .radio-check-box__icon{width:42px;height:24px}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]+label .radio-check-box__icon::before{width:18px;height:18px;left:2px;top:2px;background-color:#56c4c4}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]+label .radio-check-box__left,.radio-check-box--two input[type=checkbox]+label .radio-check-box__right{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;transition:color .3s;pointer-events:none;font-size:16px}@media screen and (min-width: 768px){.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]+label .radio-check-box__left,.radio-check-box--two input[type=checkbox]+label .radio-check-box__right{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]+label .radio-check-box__left{color:#4cbbbb}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]+label .radio-check-box__right{color:#777c83}.radio-check-box--two input[type=checkbox]+.radio-check-box__label .radio-check-box__text,.radio-check-box--two input[type=checkbox]+label .radio-check-box__text{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.radio-check-box--two input[type=checkbox]:hover+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:hover+label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:focus+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:focus+label .radio-check-box__icon::before{background-color:#31bbbb}.radio-check-box--two input[type=checkbox]:hover+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]:hover+label .radio-check-box__left,.radio-check-box--two input[type=checkbox]:focus+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]:focus+label .radio-check-box__left{color:#31bbbb}.radio-check-box--two input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:checked+label .radio-check-box__icon::before{left:20px;background-color:#56c4c4}.radio-check-box--two input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__left,.radio-check-box--two input[type=checkbox]:checked+label .radio-check-box__left{color:#777c83}.radio-check-box--two input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]:checked+label .radio-check-box__right{color:#4cbbbb}.radio-check-box--two input[type=checkbox]:checked:hover+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:checked:hover+label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:checked:focus+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--two input[type=checkbox]:checked:focus+label .radio-check-box__icon::before{background-color:#31bbbb}.radio-check-box--two input[type=checkbox]:checked:hover+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]:checked:hover+label .radio-check-box__right,.radio-check-box--two input[type=checkbox]:checked:focus+.radio-check-box__label .radio-check-box__right,.radio-check-box--two input[type=checkbox]:checked:focus+label .radio-check-box__right{color:#31bbbb}.radio-check-box--grey-icon input[type=checkbox]+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--grey-icon input[type=checkbox]+label .radio-check-box__icon::before{background-color:#b1b9bd}.radio-check-box--grey-icon input[type=checkbox]:hover+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--grey-icon input[type=checkbox]:hover+label .radio-check-box__icon::before,.radio-check-box--grey-icon input[type=checkbox]:focus+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--grey-icon input[type=checkbox]:focus+label .radio-check-box__icon::before{background-color:#b1b9bd}.radio-check-box--grey-icon input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__icon::before,.radio-check-box--grey-icon input[type=checkbox]:checked+label .radio-check-box__icon::before{background-color:#31bbbb}.radio-check-box--grey-icon input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__right,.radio-check-box--grey-icon input[type=checkbox]:checked+.radio-check-box__label .radio-check-box__left,.radio-check-box--grey-icon input[type=checkbox]:checked+label .radio-check-box__right,.radio-check-box--grey-icon input[type=checkbox]:checked+label .radio-check-box__left{color:#777c83}.radio-check-box--small-text input[type=checkbox]+.radio-check-box__label .radio-check-box__left,.radio-check-box--small-text input[type=checkbox]+.radio-check-box__label .radio-check-box__right,.radio-check-box--small-text input[type=checkbox]+label .radio-check-box__left,.radio-check-box--small-text input[type=checkbox]+label .radio-check-box__right{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on}.radio-check-box--mr8{margin-right:8px}.radio-check-box--icon{width:16px;height:16px;vertical-align:middle}.radio-check-box--icon img{width:16px;height:16px}.radio-check-box .radio-check-box--sk_auto{display:inline;line-height:22.4px}.checkbox{cursor:pointer}.custom-checkbox>input{position:absolute;z-index:-1;opacity:0}.custom-checkbox>span{display:inline-flex;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;position:relative;font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;transition:color .3s ease}.custom-checkbox>span::after{content:"";position:absolute;left:0;top:0;box-sizing:border-box}.custom-checkbox>span::before{content:"";display:inline-block;width:12px;height:12px;background:transparent;border:2px solid #777c83;border-radius:3px;margin-right:16px;min-width:12px;min-height:12px}.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before{cursor:pointer;border-color:#777c83}.custom-checkbox>input:not(:disabled):active+span::before{border-color:#4cbbbb;background:#4cbbbb}.custom-checkbox>input:checked+span{color:#282929}.custom-checkbox>input:checked+span::after{width:9px;height:5px;transform:translate(40%, 80%) rotate(-45deg);border-top:0;border-right:0;border-left:1px solid #fff;border-bottom:1px solid #fff;top:calc(50% - 8px)}.custom-checkbox>input:checked+span::before{border-color:#4cbbbb;background:#4cbbbb}.custom-checkbox>input:disabled+span::before{background-color:#e9ecef}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label{display:flex;align-items:center;gap:8px}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label svg{fill:transparent}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label::before{top:calc(100% / 2 - 8px)}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label::after{top:calc(100% / 2 - 8px)}@media screen and (max-width: 1023px){.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label{align-items:unset}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label::before{top:0}.radio-check-box--middle.radio-check-box input[type=checkbox]+.radio-check-box__label::after{top:0}}.product--modal{position:relative}@media screen and (max-width: 767px){.product--modal .product__total{height:56px;margin:0 -16px;padding:0 10px;z-index:1;background:linear-gradient(104.96deg, #f9694a -11.32%, #ff5555 106.34%);border-bottom-right-radius:8px;border-bottom-left-radius:8px}.product--modal .product__total_offline{background:#e3eaec}.product--modal .product__total_offline span{color:#424242}.product--modal .product__total_offline .product__text,.product--modal .product__total_offline .rub{color:#777c83}.product--modal .product__total .count>*{color:#fff}.product--modal .product__composition_offline{border-bottom:0}.product--modal .product__sum{margin-right:10px}.product--modal .product__sum>*{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px;color:#fff}.product--modal .product__image .notice-copy-dish-mobile{padding:15px 23px;position:absolute;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s;display:flex;text-align:center;justify-content:center}.product--modal .product__image .notice-copy-dish-mobile span{background-color:#fff;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;width:100%}.product--modal .product__image .notice-copy-dish-mobile__end{opacity:0}.product--modal .btn{padding-right:0;padding-left:8px;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;background:none;color:#fff}.product--modal .btn:before{content:none}.product--modal .btn__allergic{color:inherit;min-width:170px;padding-right:8px}}.product-list .product{display:flex;flex-direction:column}@media(min-width: 375px)and (max-width: 767px){.product-list .product-item{border-radius:8px;overflow:hidden}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__info .product__head{margin-left:4px}}@media screen and (max-width: 767px){.product-list .product__info{display:flex;flex-direction:column;height:100%}}.product-list .product__body{flex-grow:1;display:flex;flex-direction:column}@media(min-width: 375px)and (max-width: 767px){.product-list .product__body{padding:8px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__body .ingredients__row .click-area{padding:0 0 0 20px}}.product-list .product__body .ingredients__btn span:before{content:"Дополнения и ингредиенты"}@media(min-width: 375px)and (max-width: 767px){.product-list .product__body .ingredients__btn span:before{content:"Дополнения"}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__text{max-width:150px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__head{flex-direction:column;align-items:flex-start;margin-left:4px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__head .ingredients__row_offline{display:flex;justify-content:space-between;width:100%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__head .ingredients__row{width:100%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__labels{top:8px;left:8px;min-height:18px;max-width:50%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__labels .label{padding:7px 5px 6px 5px;font-style:normal;font-weight:600;font-size:9px;display:flex;align-items:center;text-align:center;letter-spacing:.07em}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__labels .menu-item__label{margin-right:4px;margin-bottom:4px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__basket{top:8px;right:8px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__basket .add-to-favorites{padding:0;top:3px;width:23px;padding-right:2px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__basket .add-to-favorites>.icon{top:8px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__basket .label--basket{padding:6px 5px;max-height:22px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__total{flex-direction:column;align-items:flex-start}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__total .btn-group{width:100%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__total .btn-group .btn__to-basket{width:100%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__total .btn-group .basket-item__count{width:100%}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__sum{margin-bottom:12px;margin-left:4px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__weight{margin-top:0px}}.product-list .product .short__title{max-width:200px}@media(min-width: 375px)and (max-width: 767px){.product-list .product__image{height:164px}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__image .notice-copy-dish{padding:8px;text-align:center}}@media(min-width: 375px)and (max-width: 767px){.product-list .product__additions .radio-check-box input[type=radio]+label{padding:0 0 0 24px}}.product .without-ingredients .click-area{padding:9px 0px 11px 20px}@media screen and (max-width: 767px){.product .without-ingredients .click-area{padding:10px 0px 11px 20px}}.product__body{padding:13px 16px;background:#fff}@media screen and (min-width: 768px){.product__body{padding:16px 24px;border-bottom-right-radius:8px;border-bottom-left-radius:8px}}.product--modal .product__body{border-bottom-left-radius:8px;border-bottom-right-radius:8px}@media screen and (max-width: 767px){.product--modal .product__body{padding-bottom:0}}.product__body .notice-copy-dish{padding:11px 0 0 0;margin-top:-50px;position:relative;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s;min-width:209px;display:flex;text-align:center;justify-content:flex-end}.product__body .notice-copy-dish span{background-color:#f6f8f8;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;padding:0 11px}.product__body .notice-copy-dish__end{opacity:0}.product__head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:14px}.product__head__row{display:flex;height:40px}.product__head__row .click-area{padding:8px 0px 11px 20px}.product__head .ingredients__row{display:flex;align-items:center;justify-content:space-between;height:37px;width:auto}.product__head .ingredients__row .product__weight{margin-top:0}.product__head .click-area{width:31px;justify-content:flex-end;cursor:pointer;padding:9px 0px 11px 20px}@media screen and (max-width: 767px){.product__head .click-area .click-area{padding:10px 0px 11px 20px}}.product__head .click-area svg{width:11px;height:17px}.product__head .click-area .share-blue{display:none}.product__head .click-area:hover{margin:0}.product__head .click-area:hover .share-blue{display:block}.product__head .click-area:hover svg:first-child{display:none}@media screen and (max-width: 767px){.product__head .click-area{display:flex;padding:10px 0px 11px 20px}.product__head .click-area svg{width:11px;height:17px}.product__head .click-area svg:first-child{display:block}.product__head .click-area:hover .share-blue{display:none}.product__head .click-area:hover svg:first-child{display:block}}.product__head:last-child{margin-bottom:0}.product__title,.product__title h1{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;text-decoration:none;padding-right:8px}.product--business .product__title,.product--business .product__title h1{cursor:initial}@media screen and (max-width: 767px){.product__title,.product__title h1{font-size:14px;font-weight:600}}.product__image{position:relative;height:280px;background-color:#dfe8ea;background-image:url("/images/dish.png");background-position:center center;background-size:95px 75px;background-repeat:no-repeat}.product__image .notice-copy-dish{padding:15px 23px;position:absolute;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s}.product__image .notice-copy-dish span{background-color:#fff;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center}.product__image .notice-copy-dish__end{opacity:0}@media screen and (max-width: 767px){.product__image .notice-copy-dish{padding:15px 23px;position:absolute;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s;z-index:100}.product__image .notice-copy-dish span{background-color:#fff;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;z-index:100}.product__image .notice-copy-dish__end{opacity:0;z-index:100}}@media screen and (min-width: 768px){.product__image{height:264px;border-top-right-radius:8px;border-top-left-radius:8px}.product__image img{border-top-right-radius:8px;border-top-left-radius:8px}}@media screen and (min-width: 1200px){.product__image{height:336px}}.product__image>a,.product__image>.product__image-container{position:absolute;top:0;bottom:0;right:0;left:0}.product__image img{-o-object-fit:cover;object-fit:cover;max-width:none;width:100%;height:100%;font-size:0;pointer-events:none}.product--business .product__image{height:137px}.product--business-with-photo .product__image{height:168px}@media screen and (min-width: 768px){.product--business-with-photo .product__image{height:224px;border-top-right-radius:8px;border-top-left-radius:8px}.product--business-with-photo .product__image img{border-top-right-radius:8px;border-top-left-radius:8px}}.product--modal .product__image{border-top-left-radius:8px;border-top-right-radius:8px}.product--modal .product__image img{border-top-left-radius:8px;border-top-right-radius:8px}.product__weight{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;margin-top:8px}@media screen and (max-width: 767px){.product__weight{font-size:10px}}.product__labels{position:absolute;top:16px;left:16px;display:flex;flex-wrap:wrap;max-width:75%}.product__label{margin-right:8px;margin-bottom:8px}.product__basket{position:absolute;top:16px;right:16px;display:flex;align-items:center}.product__additions{margin-bottom:10px}.product--static .product__additions,.product--modal .product__additions{padding-bottom:23px;border-bottom:1px solid #e0e7e9;margin-bottom:16px}.product__additions .fs-subtitle{margin-bottom:14px}.product__additions .radio-check-box input[type=radio]:not(:checked):hover:disabled+label::before{border-color:#bdbdbd}.product__total{display:flex;align-items:center;justify-content:space-between;margin-top:auto}.product__total_offline{margin-bottom:24px}.product__sum{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;color:#424242}@media screen and (max-width: 767px){.product__sum{font-size:16px}}.product__text{font-family:Raleway;font-style:normal;font-weight:500;color:#777c83;font-style:normal;font-weight:400;font-size:14px;line-height:105.66%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on}.product__composition{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;margin-bottom:20px;white-space:pre-line}@media(min-width: 375px)and (max-width: 767px){.product__composition{margin-bottom:8px}}.product--modal .product__composition{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.product__composition_offline{border-bottom:0}@media(min-width: 375px)and (max-width: 767px){.product__description__container{margin-left:4px}}.product__description__container span{display:none}@media screen and (max-width: 1023px){.product__description__container span{display:block;color:#56c4c4;cursor:pointer}}.product__description__container__body{display:block;transition:1s}.product__description__container__body-hidden{display:none}.product__macronutrients{display:block;transition:1s}@media(min-width: 375px)and (max-width: 767px){.product__macronutrients{margin-left:4px}}.product__macronutrients-hidden{display:none}.product--business a{cursor:initial}.product--business .btn-group,.product--business .btn{cursor:pointer !important}@media screen and (max-width: 1023px){.modal--product .product-item{width:100%}}.product-item:hover .click-area{display:flex;padding:9px 0 11px 20px}@media screen and (max-width: 767px){.product-item:hover .click-area{padding:10px 0 11px 20px}}.product-list{display:flex;flex-wrap:wrap;margin:-8px 0}@media screen and (min-width: 1024px){.product-list{margin:-8px}}@media screen and (min-width: 1200px){.product-list{margin:-8px -16px}}@media screen and (min-width: 768px){.listing-page .product-list{margin:-8px -16px}}@media(min-width: 375px)and (max-width: 767px){.product-list{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin:0}}@media screen and (max-width: 374px){.listing-page .product-list{margin:-8px -16px}}.product-list .product-item{flex-basis:100%;margin:8px 0;display:flex;align-items:stretch;box-shadow:0 0 10px #e9f1f1;border-radius:8px}@media screen and (max-width: 767px){.product-list .product-item{overflow:unset;border-bottom-right-radius:21px;border-bottom-left-radius:21px}.product-list .product-item:hover{border-bottom-right-radius:21px !important;border-bottom-left-radius:21px !important}}.product-list .product-item .product{flex-basis:100%;align-self:stretch;justify-self:stretch}.product-list .product-item:hover{box-shadow:0px 0px 21px rgba(129,165,167,.34);border-radius:8px}.product-list .product-item:hover .product__body{border-color:transparent}@media screen and (min-width: 768px){.product-list .product-item{flex-basis:calc((100% - 17px * 4) / 2);margin:8px 16px}}@media screen and (min-width: 1024px){.product-list .product-item{flex-basis:calc((100% - 9px * 6) / 3);margin:8px}}@media screen and (min-width: 1200px){.product-list .product-item{flex-basis:calc((100% - 17px * 6) / 3);margin:8px 16px}}.product-top{position:absolute;bottom:calc(100% + 20px);left:50%;transform:translateX(-50%);font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;line-height:21px;text-align:center;color:#fff}.product-preview{position:relative;top:392px;width:176px;flex-basis:176px;margin:0 32px;flex-shrink:0;transition:transform .3s;cursor:pointer}.product-preview:hover{transform:scale(1.1)}.product-preview:first-of-type{margin-left:0}.product-preview:last-of-type{margin-right:0}.product-preview__img{width:112px;height:88px;border-radius:6px;overflow:hidden;margin:0 auto 16px}.product-preview__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.product-preview__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;text-align:center;color:#fff;padding:0 10px;text-shadow:0px 0px 20px rgba(28,27,32,.39)}@media screen and (max-width: 1023px){.product-preview{display:none}}.dish-slide .product__total_offline{margin-bottom:0}.dish-slide .product__composition{border-bottom:1px solid #e0e7e9;padding-bottom:20px}.dish-slide .product__composition_offline{border-bottom:0}.product-item_disabled .product .ingredients__btn--list span{color:#d4d4d4 !important}.product-item_disabled .product img{opacity:.5}.product-suggestions{display:block;margin:30px 0}.product-suggestions__header{font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:12px}.product-suggestions__list{display:flex;gap:8px;transition:all .3s ease;flex-wrap:wrap}.product-suggestions__list .dish--small__info{background-color:#fafbfc}.product-suggestions__button{display:flex;align-items:stretch;position:relative;background-color:#f1f6f6;display:flex;justify-content:center;align-items:center;gap:8px;color:#4cbbbb;transition:all .3s ease;border-radius:8px;border:unset;text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;flex-basis:calc((100% - 64px) / 9)}@media screen and (max-width: 1023px){.product-suggestions__button{flex-basis:calc((100% - 40px) / 6)}}@media screen and (max-width: 767px){.product-suggestions__button{flex-basis:calc((100% - 32px) / 4)}}@media screen and (max-width: 575px){.product-suggestions__button{flex-basis:calc((100% - 16px) / 3)}}.product-suggestions__button:hover{background-color:#31bbbb;color:#fff;cursor:pointer}.product__legacy-dish{margin-top:10px;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.product__legacy-dish .link--btn{font-family:Roboto;font-weight:300;font-style:normal;font-size:14px;line-height:150%}.product--static .product__basket .label--basket{text-transform:unset;text-decoration:unset}@media screen and (max-width: 767px){.product--static{margin:0 -16px}.product--static .product__payment{margin-top:24px;padding:24px 0 0;border-top:1px solid #e0e7e9;background:transparent;text-align:left}.product--static .product__payment .footer-payment__container{border:0}}@media screen and (min-width: 1024px){.product--static{display:flex}.product--static .product__image{height:336px;flex-basis:336px;flex-shrink:0;margin-right:36px;border-radius:8px;overflow:hidden}.product--static .product__image img{border-radius:8px}.product--static .product__body{padding:0;border:0;margin-top:-7px;flex-basis:calc(100% - 336px - 36px);max-width:calc(100% - 336px - 36px)}.product--static .product__title,.product--static .product__title h1{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;padding-right:10px}.product--static .product__payment{margin-top:24px;padding-top:23px;border-top:1px solid #e0e7e9}.product--static .btn{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-width:208px;min-height:48px}}@media screen and (min-width: 1200px){.product--static .product__image{height:416px;flex-basis:416px;margin-right:72px}.product--static .product__body{flex-basis:calc(100% - 416px - 72px);max-width:calc(100% - 416px - 72px)}.product--static .product__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;padding-right:10px}.product--static .product__payment{margin-top:24px;padding-top:23px;border-top:1px solid #e0e7e9}}@media screen and (max-width: 1023px){.product--static .product__image .notice-copy-dish-mobile{padding:15px 23px;position:absolute;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s;display:flex;text-align:center;justify-content:center;z-index:1000}.product--static .product__image .notice-copy-dish-mobile span{background-color:#fff;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;width:100%}.product--static .product__image .notice-copy-dish-mobile__end{opacity:0}}@media screen and (max-width: 767px){.product--static .dish-card__count.count{width:auto;margin:0}}.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent;cursor:pointer;max-width:calc(1280px - 32px * 2);margin:0 auto}.modal--restaurant .slick-slider{height:100%}.slick-list{overflow:hidden;margin:0;padding:0}.modal--restaurant .slick-list{height:100%}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translate3d(0, 0, 0)}.slick-track{top:0;left:0;display:flex;margin:0 auto}.slick-track:after,.slick-track:before{display:table;content:""}.slick-track:after{clear:both}.slick-slide{display:none;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block;outline:none}.slick-initialized .slick-slide *{outline:none}.modal--restaurant .slick-initialized .slick-slide{display:block;width:100%}.modal--product .slick-initialized .slick-slide{display:flex;max-width:1216px}.modal--product .slick-initialized .slick-slide>div{width:100%}@media screen and (max-width: 1023px){.modal--product .slick-initialized .slick-slide{margin:0 4px}}.modal--product .slick-initialized .slick-slide:not([class*=slick-current]) .modal__close{display:none}.modal--product .slick-initialized .slick-slide:not([class*=slick-current]) .modal__close__wrapper{display:none}.modal--product .slick-initialized .slick-slide .dish-slide{display:flex !important;align-items:flex-start}.modal--product .slick-initialized .slick-slide .dish-slide .product-item{flex-basis:auto;flex-shrink:1;flex-grow:1}@media screen and (min-width: 1024px){.modal--product .slick-initialized .slick-slide .dish-slide .product-item{flex-shrink:0;flex-grow:0;flex-basis:calc(100% - (176px * 2) - (32px * 2));max-width:calc(100% - (176px * 2) - (32px * 2))}}.modal--product .slick-initialized .slick-slide .dish-slide .product-item .click-area{padding:8px 0px 11px 20px}@media screen and (max-width: 767px){.modal--product .slick-initialized .slick-slide .dish-slide .product-item .click-area{padding:9px 0px 11px 20px}}.modal--product .slick-initialized .slick-slide .dish-slide .product-item:hover .click-area{padding:8px 0px 11px 20px}@media screen and (max-width: 767px){.modal--product .slick-initialized .slick-slide .dish-slide .product-item:hover .click-area{padding:9px 0px 11px 20px}}@media screen and (max-width: 767px){.modal--product .slick-initialized .slick-slide .dish-slide .product__title{font-size:18px}}@media screen and (max-width: 767px){.modal--product .slick-initialized .slick-slide .dish-slide .product__weight{font-size:14px}}.modal--product .slick-initialized .slick-list{padding-top:40px !important;margin-top:-40px !important}.slick-arrow.slick-hidden{display:none}.slick-arrow.slick-disabled{opacity:0;visibility:hidden}.modal--product .slick-arrow{top:464px;transform:none}.slick-dots{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:absolute;bottom:16px;left:50%;transform:translateX(-50%)}.slick-dots li{margin-right:8px;float:left}.slick-dots li:last-child{margin-right:0}.slick-dots li button{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-size:0;color:transparent;width:8px;height:8px;border-radius:50%;background:#fff;opacity:.5;cursor:pointer}.slick-dots li.slick-active button{opacity:1}.slick-next,.slick-prev{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:absolute;display:block;z-index:2;font-size:0;line-height:0;top:50%;transform:translate(0, -50%);width:24px;height:24px;color:transparent;outline:none;cursor:pointer;background-position:0 0;background-color:transparent;background-repeat:no-repeat;background-size:100%}.slick-next:hover,.slick-next:focus,.slick-prev:hover,.slick-prev:focus{opacity:.8}.slick-prev{left:0;background-image:url("/images/arrow-left.svg")}.slick-next{right:0;background-image:url("/images/arrow-right.svg")}.slider-hall{height:272px;margin:0 -16px;width:calc(100% + 32px);margin-bottom:25px}@media screen and (min-width: 768px){.slider-hall{height:184px;margin:30px -16px 0;width:calc(100% + 32px)}}.slider-hall .slick-slider{height:100%;max-width:none}.slider-hall .slick-list{height:100%}.slider-hall .slick-track{display:flex;align-items:stretch;height:100%}.slider-hall .slick-slide{align-self:stretch;flex:0;flex-basis:calc((100% - 32px * 2) / 3);margin:0}@media screen and (min-width: 768px){.slider-hall .slick-slide{margin:0;padding:0 16px}}.slider-hall .slick-slide>div{height:100%}.slider-hall .slick-arrow{width:18px;height:18px}.slider-hall .slick-prev{background-image:url("/images/arrow-left-gray.svg");transform:translate(-15px, -50%)}.slider-hall .slick-next{background-image:url("/images/arrow-right-gray.svg");transform:translate(15px, -50%)}.slider-hall__slide{outline:none;height:100%;overflow:hidden}@media screen and (min-width: 768px){.slider-hall__slide{border-radius:6px}}.slider-hall__slide img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}.slider-hall-block{display:flex;flex-direction:column;margin-bottom:28px}@media screen and (min-width: 768px){.slider-hall-block{margin-bottom:60px}}@media screen and (max-width: 767px){.slider-hall-block__text{order:2}}.ingredients{border-bottom:1px solid #e0e7e9;margin-bottom:24px}.ingredients__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}.ingredients__btn{display:flex;align-items:center;cursor:pointer}.ingredients__btn span{margin:0 8px;font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:17px;color:#282929}.ingredients__btn span::before{content:"Дополнения и ингредиенты"}.ingredients__btn::before,.ingredients__btn::after{content:"";background-repeat:no-repeat;background-position:0 0;background-size:100%}.ingredients__btn::before{width:32px;height:32px;background-image:url("/images/plus_blue.svg")}.ingredients__btn::after{width:11px;height:6px;background-image:url("/images/arrow-down.svg")}.ingredients__btn--list{margin-bottom:10px}.ingredients__btn--list::before{width:17px;height:17px}.ingredients__btn--list::after{content:none}.ingredients__btn--list:hover span,.ingredients__btn--list:focus span{display:inline-block;border-bottom:1px solid #d7dfe1}.ingredients__btn--list button{cursor:pointer}.ingredients__btn--list span{font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.ingredients__row{display:flex;align-items:center;width:100%;justify-content:space-between;height:37px}.ingredients__row .ingredients__btn--list{margin-bottom:0px}.ingredients__row .click-area{width:31px;height:37px;display:none;align-items:center;justify-content:flex-end;cursor:pointer;padding:9px 0px 11px 20px}.ingredients__row .click-area svg{width:11px;height:17px}.ingredients__row .click-area .share-blue{display:none}.ingredients__row_offline .click-area{display:block}@media screen and (max-width: 767px){.ingredients__row .click-area{padding:10px 0px 11px 20px}}@media(min-width: 375px)and (max-width: 767px){.ingredients__row .click-area{padding:0 0 0 20px}}.ingredients__row .click-area:hover .share-blue{display:block}.ingredients__row .click-area:hover svg:first-child{display:none}@media screen and (max-width: 1023px){.ingredients__row .click-area{display:flex;padding:10px 0px 11px 20px}.ingredients__row .click-area svg{width:11px;height:17px}.ingredients__row .click-area svg:first-child{display:block}.ingredients__row .click-area:hover .share-blue{display:none}.ingredients__row .click-area:hover svg:first-child{display:block}}.ingredients-item{padding:15px 0;border-bottom:1px solid #e0e7e9}.ingredients-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px;letter-spacing:.01em;color:#282929}.ingredients-item__weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;line-height:140.62%;letter-spacing:.01em;color:#777c83}.ingredients-item__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;letter-spacing:.01em;line-height:19px;padding:7px 0 0;color:#282929}.ingredients-item__image{position:relative;width:40px;height:40px;border-radius:3px;overflow:hidden;margin-right:15px;flex-shrink:0;background-color:#ebf2f4;background-image:url("/images/dish-small.svg");background-position:center center;background-size:30px 30px;background-repeat:no-repeat}.ingredients-item__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ingredients-modal-item{margin:26px 0}.ingredients-modal-item__title{font-family:Raleway;font-weight:600;font-size:18px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:16px}.ingredients-modal__description{margin-top:0;padding-bottom:22px;border-bottom:1px solid #e0e7e9;font-family:Roboto;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83}.ingredients-modal__variation{margin-top:12px;padding-bottom:22px;border-bottom:1px solid #e0e7e9;font-family:Raleway;font-weight:500;font-size:16px;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.dish-slide .ingredients-modal-item{padding-bottom:20px;margin-top:10}@media screen and (max-width: 767px){.dish-slide .ingredients,.dish-slide .ingredients-item:last-child{border-bottom:none}}.dish-block .ingredients{border-bottom:none}.restaurant__top{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#fff;position:absolute;bottom:calc(100% + 16px);left:50%;transform:translateX(-50%)}@media screen and (min-width: 768px){.restaurant__top{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.restaurant__row{display:flex;flex-direction:row;justify-content:space-between;margin-top:24px;margin-bottom:16px;align-items:flex-end}@media screen and (max-width: 767px){.restaurant__row{flex-direction:column-reverse;gap:16px;align-items:unset;margin-top:unset}}.restaurant__image{width:100%;height:480px;position:relative}.restaurant__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.restaurant__image::after{content:"";background:linear-gradient(180deg, rgba(255, 255, 255, 0) -3.68%, rgba(45, 54, 86, 0.5) -3.67%, rgba(28, 30, 34, 0.32) 51.4%, rgba(58, 57, 60, 0.06) 94%, rgba(58, 57, 60, 0) 100%);position:absolute;width:100%;height:285px;top:0;left:0;border-top-left-radius:10px;border-top-right-radius:10px;pointer-events:none}.restaurant__image .slick-list{border-top-left-radius:10px;border-top-right-radius:10px}.restaurant__image .slick-track{height:100%}.restaurant__image .slick-arrow{width:26px;height:26px}.restaurant__image .slick-prev{left:auto;right:calc(100% + 24px)}.restaurant__image .slick-next{right:auto;left:calc(100% + 24px)}.restaurant__image .slick-slide div{height:100%}@media screen and (max-width: 1023px){.restaurant__image{height:248px}.restaurant__image::after{height:240px}}.restaurant__label{position:absolute;top:33px;left:28px;font-family:Raleway;font-style:normal;font-weight:600;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#fff;z-index:2}@media screen and (max-width: 767px){.restaurant__label{top:12px;left:8px}}.restaurant__contacts{display:flex;align-items:flex-start;margin-bottom:24px;gap:12px}.restaurant__contacts .phone__icon,.restaurant__contacts .clock__icon{width:32px;height:32px;flex-shrink:0;color:#e6efee}.restaurant__contacts .phone{min-width:223px}.restaurant__contacts .clock{min-width:223px}@media screen and (max-width: 768px){.restaurant__contacts{flex-wrap:wrap}}@media screen and (max-width: 767px){.restaurant__contacts{display:block}.restaurant__contacts .phone{display:flex;margin:0 0 12px;padding-bottom:16px;border-bottom:1px solid #e0e7e9}.restaurant__contacts .clock{margin:0 0 16px;flex-direction:column}.restaurant__contacts .clock::before{content:"Часы работы";font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:8px}.restaurant__contacts .clock__icon{display:none}}@media screen and (max-width: 767px){.restaurant__booking{padding-bottom:16px;border-bottom:1px solid #e0e7e9}.restaurant__booking .btn{width:-moz-min-content;width:min-content}}@media screen and (max-width: 768px){.restaurant__booking-map{position:absolute;top:-70px;left:calc(50% - 190px / 2)}.restaurant__booking-map .btn.btn--booking{margin-top:0;display:flex;width:-moz-min-content;width:min-content}}.restaurant__body{background:#fff;padding:40px 72px 64px;border-radius:0 0 10px 10px}@media screen and (max-width: 767px){.restaurant__body{padding:15px 15px 40px}}.restaurant__info{border:1px solid #e0e7e9;border-radius:8px;padding:32px}@media screen and (max-width: 767px){.restaurant__info{padding:0;border:0}}.restaurant__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:17px}@media screen and (min-width: 768px){.restaurant__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.restaurant__advantages{margin-bottom:24px;border-bottom:1px solid #e0e7e9}.restaurant__advantages:last-child{border-bottom:0;margin-bottom:0}.restaurant__advantages .title{margin-bottom:20px}.restaurant__advantages-items{margin-top:8px;flex-direction:column;display:flex;width:-moz-max-content;width:max-content}.restaurant__advantages-item{text-align:start}.restaurant__description .title{margin-bottom:16px}.restaurant__description .text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;white-space:pre-line}.restaurant-advantages{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:flex;flex-wrap:wrap;margin:-12px -12px 0;padding-bottom:10px}.restaurant-advantages__item{flex-basis:calc(100% / 3);flex-grow:0;flex-shrink:0;display:flex;align-items:center;padding:12px;font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.restaurant-advantages__icon{width:48px;height:48px;margin-right:8px;flex-shrink:0}@media screen and (max-width: 767px){.restaurant-advantages__icon{width:40px;height:40px}}.restaurant-advantages__icon img{max-width:none;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media screen and (max-width: 767px){.restaurant-advantages{margin:-12px 0}.restaurant-advantages__item{flex-basis:calc(100% / 2);padding:12px 20px 12px 12px;max-width:50%}}.restaurant-list{display:flex;flex-direction:column}.restaurant-list .ps__rail-y,.restaurant-list .track{right:12px}.restaurant-list .ps__rail-y::before,.restaurant-list .track::before{content:"";display:block;position:absolute;top:0;bottom:0;left:-8px;right:-8px}.restaurant-list .ps__rail-y:hover,.restaurant-list .track:hover{background-color:#fafbfc}.restaurant-list .ps__rail-y:hover .ps__thumb-y,.restaurant-list .ps__rail-y:hover .bar,.restaurant-list .track:hover .ps__thumb-y,.restaurant-list .track:hover .bar{background-color:#777c83}@media screen and (min-width: 1024px){.restaurant-list .ps__rail-y,.restaurant-list .track{right:25px}}.restaurant-list__body{flex-basis:100%}@media screen and (max-width: 1023px){.restaurant-list__body,.restaurant-list__body .scrollarea-content{overflow:visible !important}}@media screen and (min-width: 1024px){.restaurant-list{border:1px solid #d7dfe1;border-radius:8px;flex-direction:row;height:600px}.restaurant-list__body{max-height:600px;height:598px;overflow-y:auto !important}.restaurant-list__map{border:0;display:flex;height:598px;overflow:hidden;margin-left:-16px;flex-shrink:0;flex-grow:0;flex-basis:calc(100% - 630px + 16px);max-width:calc(100% - 630px + 16px);border-radius:0 8px 8px 0}.restaurant-list__container.scrollarea-content{padding-right:16px;width:100%;min-width:100% !important;max-width:100% !important}.restaurant-list__wrapper{padding:0;max-height:100%;position:relative;flex-basis:632px;max-width:632px;flex-grow:0;flex-shrink:0}}@media screen and (max-width: 1023px)and (min-width: 600px){.restaurant-list__container{display:flex;flex-wrap:wrap}.restaurant-list-item{flex-basis:calc((100% - 16px) / 2);max-width:calc((100% - 16px) / 2)}.restaurant-list-item:nth-child(2n){margin-left:16px}}.restaurant-list-item{position:static;outline:none}.restaurant-list-item__container{position:relative}@media screen and (max-width: 1023px){.restaurant-list-item{box-shadow:0 0 19px rgba(159,204,207,.27);margin-bottom:16px;border-radius:8px}}@media screen and (min-width: 1024px){.restaurant-list-item{padding:0 32px;margin-top:-1px}.restaurant-list-item:first-child .restaurant-list-item__container{border-top:0}.restaurant-list-item:last-child .restaurant-list-item__container{border-bottom:0}.restaurant-list-item__container{display:flex;padding:16px 0;border-bottom:1px solid #e0e7e9;border-top:1px solid #e0e7e9}.restaurant-list-item.is-selected .restaurant-list-item__container::before{content:"";position:absolute;width:0;height:0;z-index:2;background:transparent;right:-52px;top:50%;border-radius:5px;transform:rotate(45deg) translate(-50%, 0);border-width:14px;border-style:solid;border-color:#f6f8f8 #f6f8f8 transparent transparent}.restaurant-list-item:hover,.restaurant-list-item:focus,.restaurant-list-item.is-selected{background:#f6f8f8;z-index:1}.restaurant-list-item:hover .restaurant-list-item__container,.restaurant-list-item:focus .restaurant-list-item__container,.restaurant-list-item.is-selected .restaurant-list-item__container{border-color:#f6f8f8}.restaurant-list-item:hover+.restaurant-list-item .restaurant-list-item__container,.restaurant-list-item:focus+.restaurant-list-item .restaurant-list-item__container,.restaurant-list-item.is-selected+.restaurant-list-item .restaurant-list-item__container{border-color:#f6f8f8}}.restaurant-list-item__image{position:relative;display:flex;border-radius:8px 8px 0 0;flex-shrink:0}.restaurant-list-item__image::after{content:"";position:absolute;width:100%;height:100%;left:0;top:0;background:linear-gradient(rgba(31, 30, 35, 0.34), rgba(255, 255, 255, 0));pointer-events:none;border-radius:8px 8px 0 0}.restaurant-list-item__image picture{width:100%}.restaurant-list-item__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-width:none;border-radius:8px 8px 0 0}@media screen and (max-width: 1023px){.restaurant-list-item__image{height:152px}}@media screen and (min-width: 1024px){.restaurant-list-item__image{width:144px;height:114px;margin-right:30px}.restaurant-list-item__image,.restaurant-list-item__image::after,.restaurant-list-item__image img{border-radius:6px}}.restaurant-list-item__body{display:flex;flex-direction:column;align-items:flex-start;max-width:100%}.restaurant-list-item__body .link--btn{order:3}.restaurant-list-item__body .link--btn:not(first-of-type){margin-right:16px}@media screen and (max-width: 1023px){.restaurant-list-item__body .link--btn{margin-bottom:7px}}.restaurant-list-item__body .jsb{margin-bottom:15px}@media screen and (max-width: 1023px){.restaurant-list-item__body .jsb{display:flex;flex-direction:column}}@media screen and (max-width: 1023px){.restaurant-list-item__body{padding:20px 16px 16px}.restaurant-list-item__body .clock{order:1;margin-bottom:10px}}@media screen and (min-width: 1024px){.restaurant-list-item__body{flex-basis:calc(100% - 144px - 30px);max-width:calc(100% - 144px - 30px)}.restaurant-list-item__body .link--btn{margin-top:auto}}.restaurant-list-item__body .phone{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media screen and (min-width: 1024px){.restaurant-list-item__body .phone{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.restaurant-list-item__body .phone__icon{display:none}.restaurant-list-item__body .phone::before{content:"Тел:";color:#282929;margin-right:5px}}.restaurant-list-item__body .clock__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}@media screen and (min-width: 1024px){.restaurant-list-item__body .clock__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}}.restaurant-list-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:8px;width:100%;max-width:100%}.restaurant-list-item__info{margin-bottom:12px}@media screen and (min-width: 1024px){.restaurant-list-item__info{margin-bottom:16px}}.restaurant-list-item__works{position:absolute;z-index:1;top:12px;left:8px;font-family:Raleway;font-style:normal;font-weight:800;font-size:9px;line-height:11px;letter-spacing:.08em;color:#fff;text-transform:uppercase}@media screen and (min-width: 1024px){.restaurant-list-item__works{top:8px}}.star-rating__checkbox{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.rating{margin-bottom:22px;display:flex;align-items:center}.rating__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-right:10px}.star-rating{display:flex}.star-rating__star{color:#c0cbd2;transition:color .2s;padding:4px;cursor:pointer}.star-rating__star.is-selected{color:#4cbbbb}.star-rating__star.is-disabled:hover{cursor:default}.star-rating__icon{color:inherit;width:16px;height:16px;pointer-events:none}.card{display:flex;justify-content:space-between;align-items:center;font-family:Roboto;font-style:normal;font-weight:normal;border-radius:6px;padding:16px;border:1px solid #d7dfe1;color:#777c83;font-feature-settings:"pnum" on,"lnum" on}.card__bank{display:flex;align-items:center}.card__bank .form-input__bank{margin-right:8px}.new-card{display:none}input[type=radio]:checked~.new-card{display:block}#dish-carousel .count.basket-item__card{background-color:transparent;padding:0;width:104px}#dish-carousel .count.basket-item__card_mobile{color:#fff}#dish-carousel .count.basket-item__card_mobile:hover,#dish-carousel .count.basket-item__card_mobile:active{color:#fff}@media screen and (min-width: 768px){#dish-carousel .count.basket-item__card{background-color:#f1f6f6;min-width:208px;padding:8px 33px;border-radius:48px}}.dish-block .count.basket-item__card{min-width:130px;padding:4px 15px}@media screen and (min-width: 768px){.dish-block .count.basket-item__card{background-color:#f1f6f6;min-width:208px;padding:8px 33px;border-radius:48px}}.count{display:flex;align-items:center;justify-content:space-between;width:104px;flex-shrink:0;position:relative}.count_warning{background-color:#faecec;border-radius:13px;padding:0 5px}.count_warning .count__num{color:#f55}.count_warning .count__num input{color:#f55}.count_warning .count__num input::-webkit-input-placeholder,.count_warning .count__num input:-moz-placeholder,.count_warning .count__num input::-moz-placeholder,.count_warning .count__num input:-ms-input-placeholder,.count_warning .count__num input::-ms-input-placeholder,.count_warning .count__num input::placeholder{color:#f55}.count_warning .count__btn:hover,.count_warning .count__btn:active{background:transparent}.count_with-bg{background:#f1f6f6;border-radius:20px;padding:7px 25px}@media screen and (min-width: 768px){.count_with-bg{padding:3px 15px}}.count_with-bg .count__btn:hover,.count_with-bg .count__btn:active,.count_with-bg .count__btn:focus{background:transparent}.count_with-bg .count__btn:hover{color:#282929}.count_w-150{width:150px}@media screen and (min-width: 768px){.count_tablet-w-120{width:120px}}.count.basket-item__card{background-color:#f1f6f6;border-radius:20px;width:130px;padding:4px 15px}@media screen and (min-width: 768px){.count.basket-item__card{padding:3px 15px}}.count.basket-item__card .count__btn:hover,.count.basket-item__card .count__btn:active,.count.basket-item__card .count__btn:focus{background:transparent}.count.basket-item__card .count__btn:hover{color:#282929}.count__num{flex-grow:1;color:#282929}.count__num input{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;color:inherit;text-align:center}.count__num input::-webkit-outer-spin-button,.count__num input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.count__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.03em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;text-align:center}.count__btn{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:relative;width:26px;height:26px;cursor:pointer;border-radius:50%;flex-shrink:0;color:#777c83}.count__btn:hover,.count__btn:active{background:#dfe8ea}.count__btn::before,.count__btn::after{position:absolute;color:inherit;background:currentColor;border-radius:2px;transform:rotate(360deg)}.count__btn::before{width:14px;height:2px;top:12px;left:calc(12px / 2)}.count__btn::after{width:2px;height:14px;left:12px;top:calc(12px / 2)}.count__btn--minus::before{content:""}.count__btn--plus::before,.count__btn--plus::after{content:""}.modal .cutlery .count:not(.count_warning){background-color:#f6f8f8;border-radius:13px;padding:0 5px}.page{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin-bottom:50px}@media screen and (min-width: 768px){.page{padding:0 32px}}@media screen and (min-width: 1024px){.page{padding:0 40px}}.page__breadcrumbs{margin-top:24px;margin-bottom:8px}@media screen and (min-width: 768px){.page__breadcrumbs{margin-top:46px;margin-bottom:12px}}.page__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;max-width:510px;margin-bottom:20px}.page__desc-mw-0{max-width:unset}.page__desc-black{color:#282929}.page__desc-400{font-weight:400}.page__back{margin-bottom:10px}.page .title--level-1{display:flex;align-items:flex-end;justify-content:space-between}.page__links{background-color:#f6f8f8;padding:16px;border-radius:8px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}@media screen and (max-width: 767px){.page__links{font-family:Roboto;font-style:normal;font-weight:normal;font-size:15px;letter-spacing:0;line-height:1.5}}.page__links a{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}@media screen and (max-width: 767px){.page__links a{font-family:Roboto;font-style:normal;font-weight:normal;font-size:15px;letter-spacing:0;line-height:1.5}}.page-header{position:relative;min-height:296px;padding:24px;display:flex;align-items:center;justify-content:center}.page-header::before{content:"";opacity:0}.page-header__image{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:0 0 10px 10px;overflow:hidden;pointer-events:none;z-index:-1}.page-header__image::after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(180deg, rgba(64, 64, 64, 0) -3.68%, rgba(255, 255, 255, 0) -3.68%, rgba(125, 137, 144, 0.5) -3.67%, rgba(15, 15, 15, 0.32) 99.98%, rgba(169, 169, 169, 0.114495) 99.99%, rgba(255, 255, 255, 0) 100%)}.promo-page .page-header__image::after{height:90px;background:linear-gradient(180deg, rgba(255, 255, 255, 0) -3.68%, rgba(125, 137, 144, 0.5) -3.67%, rgba(168, 188, 200, 0.32) 41.14%, rgba(255, 255, 255, 0) 100%)}.page-header__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.page-header__image.object-fit-polyfill img{height:100% !important;bottom:0 !important}.page-header__image_unset_bg::after{background:unset}.page-header__tag{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;opacity:.5;color:#fff;text-align:center;margin-bottom:10px}@media screen and (max-width: 1023px){.page-header__tag{display:none}}.page-header__breadcrumbs{position:absolute;top:24px;left:16px;right:16px;z-index:1;max-width:100%}@media screen and (min-width: 768px){.page-header__breadcrumbs{left:24px;right:24px}}.page-header__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#fff;margin-bottom:15px;text-align:center;max-width:895px}.page-header__title:last-child{margin-bottom:0}@media screen and (min-width: 768px){.page-header__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:46px;letter-spacing:.02em;line-height:1.2;font-feature-settings:"pnum" on,"lnum" on;text-shadow:0 0 19px rgba(66,69,140,.07)}}.page-header__desc{font-family:Roboto;font-style:normal;font-weight:normal;font-size:21px;line-height:150%;color:#fff;text-align:center}.page-header__desc .btn{margin-top:33px}@media screen and (max-width: 767px){.page-header{width:calc(100% + 32px);margin-left:-16px;margin-right:-16px}.page-header__image{border-radius:0}}.promo-page .page-header{margin-bottom:20px}@media screen and (max-width: 767px){.promo-page .page-header{padding-top:82px;padding-bottom:52px}}@media screen and (min-width: 768px){.promo-page .page-header{margin-bottom:36px}}.promo-page .page-header__content{text-align:center;display:flex;flex-direction:column;align-items:center}.promo-page .page-header__desc{margin-bottom:28px}.page-content{border-radius:8px;margin:40px 0 40px;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media screen and (min-width: 768px){.page-content{border:1px solid #e0e7e9;padding:72px}}.page-content__columns{max-width:840px}@media screen and (min-width: 768px){.page-content__columns{-moz-column-count:2;column-count:2;-moz-column-gap:50px;column-gap:50px}}.seo-text__content a:not(.btn),.page-content a:not(.btn){margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;color:#4cbbbb}.seo-text__content a:not(.btn):hover,.seo-text__content a:not(.btn):focus,.page-content a:not(.btn):hover,.page-content a:not(.btn):focus{color:#31bbbb}.seo-text__content .btn,.page-content .btn{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-width:250px;min-height:48px}.seo-text__content .btn__span,.page-content .btn__span{margin:12px 0}.seo-text__content .btn--min-content,.page-content .btn--min-content{min-width:-moz-min-content;min-width:min-content;width:-moz-min-content;width:min-content;white-space:nowrap}@media screen and (max-width: 1023px){.seo-text__content .btn--min-content,.page-content .btn--min-content{white-space:unset;width:100%}}.seo-text__content h1,.page-content h1{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.seo-text__content h2,.page-content h2{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.seo-text__content h3,.page-content h3{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.seo-text__content h4,.page-content h4{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.seo-text__content h5,.page-content h5{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on}.seo-text__content h1,.seo-text__content h2,.seo-text__content h3,.seo-text__content h4,.seo-text__content h5,.seo-text__content h6,.page-content h1,.page-content h2,.page-content h3,.page-content h4,.page-content h5,.page-content h6{color:#282929}.seo-text__content h1,.page-content h1{margin:0 0 25px}.seo-text__content h2,.page-content h2{margin:0 0 18px}.seo-text__content h3,.page-content h3{margin:0 0 23px}.seo-text__content h4,.page-content h4{margin:0 0 24px}.seo-text__content p,.page-content p{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:28px}.seo-text__content ol,.seo-text__content ul,.page-content ol,.page-content ul{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83;margin-bottom:36px}.seo-text__content ul li,.page-content ul li{margin-bottom:5px;display:block}.seo-text__content ul li::before,.page-content ul li::before{content:"";display:inline-flex;flex-shrink:0;width:8px;height:8px;margin-right:8px;margin-top:8px;border-radius:50%;background:#4cbbbb}.seo-text__content ol,.page-content ol{counter-reset:count}.seo-text__content ol li,.page-content ol li{counter-increment:count;margin-bottom:16px;position:relative;margin-left:32px}.seo-text__content ol li::before,.page-content ol li::before{content:counter(count);display:inline-flex;position:absolute;left:-32px;top:0;flex-shrink:0;margin-right:8px;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:#e3eaec;font-family:Roboto;font-style:normal;font-weight:normal;font-size:15px;line-height:18px;text-align:center;letter-spacing:.03em}.seo-text__content ol li div,.page-content ol li div{margin-top:10px;margin-bottom:10px}.seo-text__content table,.page-content table{float:none;border:none;border-collapse:collapse}.seo-text__content table caption,.page-content table caption{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-align:left}.seo-text__content table thead th,.page-content table thead th{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#c0cbd2;white-space:nowrap}.seo-text__content table tbody th,.page-content table tbody th{font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;letter-spacing:.02em;line-height:15px;line-height:1.7;font-weight:500}@media screen and (min-width: 768px){.seo-text__content table tbody th,.page-content table tbody th{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:19px}}.seo-text__content table tbody td,.page-content table tbody td{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}@media screen and (min-width: 768px){.seo-text__content table tbody td,.page-content table tbody td{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}}.seo-text__content table td,.seo-text__content table th,.page-content table td,.page-content table th{min-width:150px;text-align:left;padding:10px 25px 10px 0;border:none;border-bottom:1px solid #e0e7e9}@media screen and (min-width: 768px){.seo-text__content table td,.seo-text__content table th,.page-content table td,.page-content table th{padding:20px 55px 20px 0}}.seo-text__content table strong,.page-content table strong{color:#282929;font-weight:500}.seo-text__content table .rub,.page-content table .rub{color:#777c83;font-weight:500;margin:0}.seo-text__content h1:last-child,.seo-text__content h2:last-child,.seo-text__content h3:last-child,.seo-text__content h4:last-child,.seo-text__content p:last-child,.seo-text__content ol:last-child,.seo-text__content ul:last-child,.seo-text__content ul li:last-child,.seo-text__content ol li:last-child,.page-content h1:last-child,.page-content h2:last-child,.page-content h3:last-child,.page-content h4:last-child,.page-content p:last-child,.page-content ol:last-child,.page-content ul:last-child,.page-content ul li:last-child,.page-content ol li:last-child{margin-bottom:0}.seo-text__content .subtitle,.page-content .subtitle{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;line-height:24px;display:flex}.seo-text__content .clock,.page-content .clock{margin-bottom:20px}.seo-text__content .df-body .df,.page-content .df-body .df{display:flex;flex-direction:row;width:100%}@media screen and (max-width: 767px){.seo-text__content .df-body .df,.page-content .df-body .df{flex-direction:column}}@media screen and (max-width: 767px){.seo-text__content .df-body .df a,.page-content .df-body .df a{margin-bottom:18px}}.seo-text__content .df-body .app-row-icons,.page-content .df-body .app-row-icons{display:flex}@media screen and (max-width: 767px){.seo-text__content .df-body .app-row-icons,.page-content .df-body .app-row-icons{display:none}}.seo-text__content .df-body .app-row-icons a img,.page-content .df-body .app-row-icons a img{margin-right:10px;min-height:60px;max-height:60px}@media screen and (max-width: 799px){.seo-text__content .df-body .app-row-icons a img,.page-content .df-body .app-row-icons a img{width:180px;max-height:54px;min-height:unset}}@media screen and (max-width: 449px){.seo-text__content .df-body .app-row-icons a img,.page-content .df-body .app-row-icons a img{width:180px;max-height:60px;min-height:unset}}.seo-text__content .f-column,.page-content .f-column{display:block}.seo-text__content .app-column,.page-content .app-column{width:488px}@media screen and (max-width: 767px){.seo-text__content .app-column,.page-content .app-column{width:auto}}.seo-text__content .app-column h4,.page-content .app-column h4{margin:24px 0 24px 0}.seo-text__content .app-column .app-row-icons,.page-content .app-column .app-row-icons{display:none}@media screen and (max-width: 767px){.seo-text__content .app-column .app-row-icons,.page-content .app-column .app-row-icons{display:block}}@media screen and (max-width: 767px){.seo-text__content .app-column>.df,.page-content .app-column>.df{flex-direction:row}}@media screen and (max-width: 767px){.seo-text__content .app-column:first-child,.page-content .app-column:first-child{margin-top:35px}}@media screen and (max-width: 767px){.seo-text__content .row-icons,.page-content .row-icons{flex-direction:row}}.seo-text__content .row-icons>img,.page-content .row-icons>img{margin-right:10px}@media screen and (max-width: 767px){.seo-text__content .row-icons>img,.page-content .row-icons>img{max-width:61px}}.seo-text__content .block,.page-content .block{margin-right:32px}@media screen and (max-width: 767px){.seo-text__content .block,.page-content .block{margin-right:16px}}.seo-text__content .block p,.page-content .block p{margin-top:5px;max-width:176px}@media screen and (min-width: 768px){.promo-page .seo-text__content,.promo-page .page-content{padding-bottom:78px}}.seo-text__content .table-scroll,.page-content .table-scroll{overflow-x:auto}.page-info-item{display:flex}.page-info-item__icon{width:40px;height:40px;flex-shrink:0;margin-right:16px}.page-info-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:6px}.page-info-item__body{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media screen and (max-width: 767px){.page-info-item{border-top:1px solid #e0e7e9;padding:20px 0}.page-info-item:last-child{border-bottom:1px solid #e0e7e9}}@media screen and (min-width: 768px){.page-info-item{flex-basis:calc(100% / 2);margin-bottom:14px}}@media screen and (min-width: 1024px){.page-info-item{flex-basis:calc(100% / 4);margin-bottom:0}.hall-page .page-info-item{flex-basis:auto}}@media screen and (min-width: 768px){.page-info{display:flex;flex-wrap:wrap;border-radius:8px;padding:50px 32px;min-height:260px}.hall-page .page-info{padding:45px 0;justify-content:space-between}.delivery .page-info{background:#f6f8f8;margin-bottom:40px}}@media screen and (max-width: 767px){.hall-page .page-info{margin-bottom:26px}}.breadcrumbs{overflow-x:auto;overflow-y:hidden}.breadcrumbs::-webkit-scrollbar{height:0}.breadcrumbs__list{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:flex}.breadcrumbs__item{font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;flex-shrink:0;margin-bottom:5px}.breadcrumbs__item:not(:last-child)::after{content:"/";margin:0 3px}.breadcrumbs__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;color:inherit}.breadcrumbs__link:hover,.breadcrumbs__link:focus{color:#4cbbbb}.breadcrumbs__current{color:#282929}.breadcrumbs--light .breadcrumbs__item{color:#e3eaec}.breadcrumbs--light .breadcrumbs__current{color:#fff}.banner{height:334px;margin-top:44px !important;margin-bottom:45px !important}@media screen and (max-width: 1024px){.banner{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;padding:0 16px}}@media screen and (max-width: 1024px)and (min-width: 768px){.banner{padding:0 32px}}@media screen and (max-width: 1024px)and (min-width: 1024px){.banner{padding:0 40px}}@media screen and (max-width: 1368px){.banner{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;padding:0 !important;margin-top:0 !important}}@media screen and (max-width: 1368px)and (min-width: 768px){.banner{padding:0 32px}}@media screen and (max-width: 1368px)and (min-width: 1024px){.banner{padding:0 40px}}@media screen and (max-width: 1034px){.banner{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;padding:0 !important;margin-top:0 !important}}@media screen and (max-width: 1034px)and (min-width: 768px){.banner{padding:0 32px}}@media screen and (max-width: 1034px)and (min-width: 1024px){.banner{padding:0 40px}}@media screen and (max-width: 1034px){.banner .slick-list{border-radius:0 0 10px 10px}}@media screen and (max-width: 700px){.banner{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;padding:0 !important;margin-top:0 !important}}@media screen and (max-width: 700px)and (min-width: 768px){.banner{padding:0 32px}}@media screen and (max-width: 700px)and (min-width: 1024px){.banner{padding:0 40px}}@media screen and (max-width: 700px){.banner .slick-list{border-radius:0 0 10px 10px}}.banner .slick-next,.banner .slick-prev{width:40px;height:40px;border-radius:50%;background-color:#fff;background-size:20px 20px;transition:.2s;opacity:1}.banner .slick-next:hover,.banner .slick-next:focus,.banner .slick-prev:hover,.banner .slick-prev:focus{background-color:#fff}.banner .slick-next{right:-32px;background-image:url("/images/chevron-right-txt_gray.svg");background-position:50% center}.banner .slick-prev{left:-32px;background-image:url("/images/chevron-left-txt_gray.svg");background-position:50% center}.banner .slick-slider{height:100%;margin:auto;max-width:calc(1280px - 64px)}@media screen and (max-width: 1279px){.banner .slick-slider{max-width:calc(100vw - 64px)}}@media screen and (max-width: 768px){.banner .slick-slider{padding:0 16px;padding-right:0;max-width:calc(100vw)}}@media screen and (max-width: 375px){.banner .slick-slider{padding:0 8px;padding-right:0;max-width:calc(100vw)}}.banner .slick-slider.slick-initialized .slick-slide{display:flex;align-items:stretch}.banner .slick-list{height:100%}.banner .slick-track{height:100%}.banner .slick-slide{height:100%;position:relative;border-radius:8px;margin-right:8px;overflow:hidden}.banner .slick-slide>div{display:flex;width:100%;height:100%}.banner .slick-dots{margin-bottom:-45px}.banner .slick-dots li button{background-color:#d7dfe1}.banner .slick-dots .slick-active button{background-color:#b1b9bd}.banner__slide{height:100%;display:flex !important;align-items:flex-end;justify-content:center}.banner__image{position:absolute;left:0;top:0;width:100%;height:100%}.banner__content{max-width:640px;position:relative;z-index:1;text-align:center;margin-bottom:48px}.banner__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;margin-bottom:28px;padding:0 20px}@media screen and (min-width: 768px){.banner__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:46px;letter-spacing:.02em;line-height:1.2;font-feature-settings:"pnum" on,"lnum" on;text-shadow:0 0 19px rgba(66,69,140,.07)}}.banner__btn{min-width:206px;text-transform:uppercase}.banner-small{min-height:72px;display:flex;align-items:center;justify-content:center;background-image:url("/images/banner_small_mob.png");background-size:cover;background-position:center}@media screen and (max-width: 767px){.banner-small{margin:0 -16px;min-width:calc(100% + 32px)}}@media screen and (min-width: 768px){.banner-small{border-radius:0 0 8px 8px;min-height:100px;background-image:url("/images/banner_small.jpg")}}.banner-small__content{display:flex;align-items:center;justify-content:center;padding:16px;text-align:center;color:#fff;font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;line-height:163.16%;letter-spacing:-0.005em;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 768px){.banner-small__content{padding:16px 32px;font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:24px}}.banner-small__content .btn{display:none;margin-left:36px;flex-shrink:0}@media screen and (min-width: 1024px){.banner-small__content .btn{display:flex}}.banner-small__variable{font-family:Raleway;font-style:normal;font-weight:800}@media screen and (min-width: 768px){.banner-small__variable{font-family:Raleway;font-style:normal;font-weight:SemiBold}}.main-promo{margin-top:32px}@media screen and (min-width: 768px){.main-promo{margin-top:50px}}@media screen and (min-width: 1024px){.main-promo{margin-top:58px}}.main-promo .head{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin-bottom:6px}@media screen and (min-width: 768px){.main-promo .head{padding:0 32px}}@media screen and (min-width: 1024px){.main-promo .head{padding:0 40px}}@media screen and (min-width: 1024px){.main-promo .head{margin-bottom:8px}}.main-promo__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:17px;text-align:right;color:#777c83}@media screen and (min-width: 768px){.main-promo__link::after{content:" акции"}}.main-promo__container{overflow-x:auto;width:100%;max-width:100%;padding:16px 0}.main-promo__container::-webkit-scrollbar{height:0}.main-popular{margin-top:32px}@media screen and (min-width: 768px){.main-popular{margin-top:34px}}@media screen and (min-width: 1024px){.main-popular{margin-top:42px}}@media(min-width: 375px)and (max-width: 767px){.main-popular{padding-left:16px;padding-right:16px}}.main-popular .head{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin-bottom:22px}@media screen and (min-width: 768px){.main-popular .head{padding:0 32px}}@media screen and (min-width: 1024px){.main-popular .head{padding:0 40px}}@media screen and (max-width: 1023px){.main-popular .head{padding:0 48px}}@media screen and (max-width: 767px){.main-popular .head{padding:0}}@media screen and (min-width: 1024px){.main-popular .head{margin-bottom:24px}}.main-popular__link{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:17px;text-align:right;color:#777c83}@media screen and (min-width: 768px){.main-popular__link::after{content:" меню"}}.main-popular__container .product-list{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:16px;margin:0}@media screen and (max-width: 1278px){.main-popular__container .product-list{grid-template-columns:1fr 1fr 1fr}}@media screen and (max-width: 1023px){.main-popular__container .product-list{grid-template-columns:1fr 1fr;gap:8px}.main-popular__container .product-list .product__body{padding:16px}.main-popular__container .product-list .rub:last-child{margin-left:0}.main-popular__container .product-list .btn{min-width:auto}}@media screen and (max-width: 575px){.main-popular__container .product-list{grid-template-columns:1fr 1fr}.main-popular__container .product-list .product__body{padding:8px}}@media screen and (max-width: 374px){.main-popular__container .product-list{grid-template-columns:1fr;margin:0 -8px}}.main-popular__container .product-list .product-item{margin:0}.main-popular__container .product-list .dish-card__img-container{max-height:280px}.main-info{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin-top:48px}@media screen and (min-width: 768px){.main-info{padding:0 32px}}@media screen and (min-width: 1024px){.main-info{padding:0 40px}}@media screen and (min-width: 768px){.main-info{margin-top:56px}}@media screen and (min-width: 1024px){.main-info{margin-top:80px}}@media screen and (max-width: 768px){.main-info{padding:0 16px}.main-info h1{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (max-width: 576px){.main-info{padding:0}}@media screen and (max-width: 767px){.main-info-list{padding:32px 0;border:1px solid #e0e7e9;border-radius:8px}}@media screen and (min-width: 768px){.main-info-list{display:flex}}.main-info-item{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;position:relative;display:block}@media screen and (max-width: 767px){.main-info-item{margin-bottom:38px}}@media screen and (min-width: 768px){.main-info-item{flex-basis:calc(100% / 4);max-width:calc(100% / 4);flex-grow:0;flex-shrink:0;padding:0 16px}}.main-info-item:hover::before,.main-info-item:focus::before{content:"";display:block;position:absolute;z-index:-1;width:calc(100% + 32px);height:calc(100% + 48px);left:-16px;top:-24px;background:#fff;box-shadow:0 0 25px rgba(69,78,95,.06);border-radius:8px}.main-info-item__image{margin:0 auto 14px;height:56px;text-align:center}.main-info-item__image img{width:auto;height:100%}.main-info-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;text-align:center;color:#282929;margin-bottom:10px}.main-info-item__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;text-align:center;color:#777c83}.main-selector{display:flex;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;padding-top:12px !important;padding-bottom:12px !important;flex-wrap:wrap}@media screen and (min-width: 768px){.main-selector{padding:0 32px}}@media screen and (min-width: 1024px){.main-selector{padding:0 40px}}@media screen and (max-width: 1024px){.main-selector{max-width:calc(100vw - 32px);margin:0}}@media screen and (max-width: 768px){.main-selector{max-width:calc(100vw - 32px);padding:12px 16px}}@media screen and (max-width: 576px){.main-selector{max-width:calc(100vw)}}.main-selector_unpadding{padding-left:0;padding-right:0;padding-bottom:8 !important;padding-top:20px !important}.main-selector .location{min-width:100%}.main-selector .location .location-button{max-width:calc(100vw - 32px);min-width:calc(100vw - 32px)}.main-selector .location .btn{min-width:unset}.main-selector .location__link-city{color:#777c83}.main-selector .location__link-city__current{color:#31bbbb}.main-selector .location__link-city__current .location__link-text{margin-left:4px}@media screen and (max-width: 375px){.menu_tab-container.restaurants-home .head{display:flex;flex-direction:column;align-items:flex-start}.menu_tab-container.restaurants-home .menu_tab-transparent{padding-left:0}}.restaurants-home .title--level-2{margin-right:22px;font-size:32px}.restaurants-home .point-icon{fill:#31bbbb;width:22px}.restaurants-home .point-icon path{fill:#31bbbb}.restaurants-home .point-icon ellipse{fill:#f6f8f8}.restaurants-home-map{min-height:526px}.restaurants-conrtainer{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media screen and (max-width: 575px){.restaurants-conrtainer{grid-template-columns:1fr}}.card-restaurant{display:grid;gap:6px}.card-restaurant .selector_restaurant-image{max-height:225px;min-height:225px;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;cursor:pointer}.card-restaurant .selector_restaurant-image img{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.card-restaurant .selector_restaurant-icons img{width:40px;-o-object-fit:cover;object-fit:cover;height:40px}.main-page{padding-bottom:50px}.seo-block{border-radius:8px;margin-top:56px;padding:50px 72px}@media screen and (min-width: 768px){.seo-block{border:1px solid #e0e7e9}}@media screen and (max-width: 768px){.seo-block{padding:40px 16px}}.dish-block .seo-block{border:0;border-top:1px solid #e0e7e9;padding:31px 0 0 0;margin-top:31px;border-radius:0}.seo-text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;position:relative;transition:.3s;overflow:hidden}.seo-text::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:90px;transition:height .3s;background:linear-gradient(to top, #ffffff 24%, rgba(255, 255, 255, 0));pointer-events:none}.seo-text--is-open{margin-bottom:30px}.seo-text--is-open::after{height:0}@media screen and (min-width: 1024px){.seo-text__content{-moz-column-gap:32px;column-gap:32px}}.menu-list{display:flex;flex-wrap:wrap}@media screen and (min-width: 768px){.menu-list{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}}@media screen and (min-width: 1024px){.menu-list{display:grid;grid-template-columns:1fr 1fr 1fr 1fr}}@media screen and (max-width: 576px){.menu-list{display:grid;grid-template-columns:1fr 1fr;gap:8px}}.menu-item{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:block;position:relative;flex-shrink:0;flex-grow:0;flex-basis:100%;max-width:100%}@media screen and (min-width: 768px){.menu-item img{transition:transform .3s}}@media screen and (min-width: 768px)and (max-width: 1023px){.menu-item:nth-child(3n){margin-right:0}}@media screen and (min-width: 768px){.menu-item:hover img,.menu-item:focus img{transform:scale(1.2)}}@media screen and (max-width: 576px){.menu-item{flex-basis:100%;max-width:unset;margin:0;font-size:16px}}.menu-item__image{position:relative;height:166px;border-radius:8px;overflow:hidden}@media screen and (max-width: 576px){.menu-item__image{height:136px}}.menu-item__image img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover;border-radius:8px;font-size:0;pointer-events:none}.menu-item__image::after{content:"";position:absolute;width:100%;height:100%;left:0;top:0;background:linear-gradient(360deg, #404634 0%, rgba(57, 70, 52, 0) 71.69%);opacity:.3;pointer-events:none;border-radius:8px}.menu-item__label{margin-right:8px;margin-bottom:8px;line-height:unset !important}.menu-item__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;position:absolute;bottom:18px;left:15px;color:#282929;font-weight:700;color:#fff}@media screen and (min-width: 768px){.menu-item__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (max-width: 576px){.menu-item__title{font-size:16px}}.filter{justify-content:space-between;display:flex;flex-wrap:wrap}@media screen and (max-width: 767px){.filter{display:block;margin-top:24px}}.filter::-webkit-scrollbar{height:0}.filter-list{display:flex;margin:0 0 20px;overflow-x:auto}.filter-list::-webkit-scrollbar{height:0}@media screen and (max-width: 767px){.filter-list{margin-bottom:16px}}.filter-buttons{display:flex}.filter-buttons_row{display:flex;gap:16px;align-items:center;margin-bottom:20px}.filter-buttons_row .btn--booking{max-height:36px;min-height:36px}@media screen and (max-width: 767px){.filter-buttons_row{flex-direction:row-reverse;justify-content:flex-end;gap:9px}}.filter-button{font-family:Raleway;font-style:normal;font-weight:500;padding:12px;height:36px;display:flex;align-items:center;justify-content:space-around;border-radius:32px 0 0 32px;font-style:normal;font-weight:500;font-size:11px;cursor:pointer;letter-spacing:.08em;text-transform:uppercase;font-feature-settings:"pnum";border:1px solid #e0e7e9;color:#777c83}.filter-button svg{margin-right:5px}.filter-button:first-child{border-right:0}.filter-button:active{background-color:#f6f8f8;color:#56c4c4;border:1px solid #e0e7e9}.filter-button:hover{color:#56c4c4;border:1px solid #f6f8f8;background-color:#f6f8f8}.filter-button:hover:first-of-type{border-right:0}.filter-button:hover:last-of-type{border-left:0}.filter-button.active{color:#fff;background-color:#56c4c4;border:none;font-weight:700}.filter-button:first-of-type{border-right:0}.filter-button:last-of-type{border-radius:0 32px 32px 0;border-left:0}.filter-item{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;margin:auto 8px 0 0;padding:10px 18px;border-radius:32px;color:#282929;border:1px solid #e0e7e9;cursor:pointer;transition:.3s;line-height:13px;white-space:nowrap}.filter-item:last-child{margin-right:0}.filter-item:hover{color:#56c4c4;border-color:transparent;background-color:#f6f8f8}.filter-item:focus,.filter-item:active{background-color:#f6f8f8;color:#56c4c4;border-color:transparent}.filter-item.active{background-color:#56c4c4;color:#fff;border-color:transparent}.header .header-bottom__border{border-bottom:1px solid #ebf2f4}.header .filter{display:flex;flex-wrap:wrap;margin:0 auto;width:100%;max-width:calc(1280px);padding:0 40px}@media screen and (max-width: 767px){.header .filter{margin-top:0;padding:0 16px}}.header .filter-list{padding:10px 0;margin:0}@media screen and (max-width: 767px){.header .filter-list{margin-bottom:0;margin-top:0;padding:8px 0}}.header .filter-item{padding:0 18px;display:flex;align-items:center;height:32px}@media screen and (max-width: 767px){.dish-block .seo-block{margin-top:0}}@media screen and (min-width: 768px){.dish-block{padding:72px;border:1px solid #e0e7e9;border-radius:8px}}.dish-block .product-item .notice-copy-dish{padding:0;margin-top:-50px;position:absolute;color:#4cbbbb;border-radius:6px;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;letter-spacing:.02em;opacity:1;transition:opacity 5s;min-width:209px;right:112px;height:43px;z-index:1000}.dish-block .product-item .notice-copy-dish span{background-color:#f6f8f8;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;padding:0 11px}.dish-block .product-item .notice-copy-dish__end{opacity:0}@media screen and (max-width: 767px){.dish-block .product-item .notice-copy-dish-mobile{padding:15px 23px;position:absolute;color:#4cbbbb;border-radius:6px;bottom:0;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;width:100%;letter-spacing:.02em;opacity:1;transition:opacity 5s;display:flex;text-align:center;justify-content:center;z-index:1000}.dish-block .product-item .notice-copy-dish-mobile span{background-color:#fff;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;width:100%}.dish-block .product-item .notice-copy-dish-mobile__end{opacity:0}}.dish-block .product-item:hover .click-area{padding:9px 0px 11px 20px}@media screen and (max-width: 767px){.dish-block .product-item:hover .click-area{padding:10px 0px 11px 20px}}.dish-slide__overlay{position:absolute;width:100%;height:100%;display:block;left:0;top:0;z-index:0}.dish-slide__overlay~*{z-index:1}.dish-simple__variations{margin-bottom:24px}.dish-simple__variations-title{margin-bottom:10px;font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.dish-simple__composition{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;margin-bottom:16px;color:#777c83;line-height:170%}.dish-simple__buttons{display:flex;flex-direction:row;margin-bottom:16px}.dish-simple__buttons .btn--transparent-2{max-height:36px;min-height:36px}.dish-simple__comment{margin-bottom:42px}.dish-simple__lists{display:flex;flex-direction:column;margin-top:30px;padding-top:30.5px;border-top:1px solid #e0e7e9;gap:30px}@media screen and (max-width: 767px){.dish-simple__lists{margin-bottom:40px}}.dish-simple__lists .dish--small__info .count.dish-card__count{min-width:unset;padding:3px 11px;height:auto}.dish-simple__lists .dish--horizontal__bottom-row .count.dish-card__count{min-width:unset;padding:3px 11px;height:auto;min-width:99px}.list-small-dishes__container{display:flex;flex-direction:column;gap:16.5px}.list-small-dishes__header{display:flex;flex-direction:row;justify-content:space-between}.list-small-dishes__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.list-small-dishes__list{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px}.list-small-dishes__list .dish--horizontal__content,.list-small-dishes__list .dish--small__info{background-color:#fafbfc}.dish-card__container{flex-basis:100%;align-self:stretch;display:flex;flex-direction:column}.dish-card__container .notice-copy-dish{padding:0;position:absolute;color:#4cbbbb;border-radius:6px;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;letter-spacing:.02em;opacity:1;transition:opacity 5s;height:43px;z-index:1000;bottom:4px;width:calc(100% - 16px);left:8px}.dish-card__container .notice-copy-dish span{background-color:#f6f8f8;height:39px;display:flex;justify-content:center;border-radius:6px;align-items:center;padding:0 11px}.dish-card__container .notice-copy-dish__end{opacity:0}.dish-card__img{position:absolute;top:0;bottom:0;right:0;left:0}.dish-card__img-container{position:relative;height:336px;background-color:#dfe8ea;background-image:url("/images/dish.png");background-position:center center;background-size:95px 75px;background-repeat:no-repeat}@media screen and (min-width: 768px){.dish-card__img-container{border-top-right-radius:8px;border-top-left-radius:8px}.dish-card__img-container img{border-top-right-radius:8px;border-top-left-radius:8px}}@media screen and (max-width: 1199px){.dish-card__img-container{height:280px}}@media screen and (max-width: 767px){.dish-card__img-container{border-top-right-radius:8px;border-top-left-radius:8px;overflow:hidden;height:164px}}.dish-card__img-container img{-o-object-fit:cover;object-fit:cover;max-width:none;width:100%;height:100%;font-size:0;pointer-events:none}.dish-card__body{padding:8px 16px 16px;flex-grow:1;display:flex;flex-direction:column;background:#fff;border-bottom-left-radius:8px;border-bottom-right-radius:8px}@media screen and (max-width: 767px){.dish-card__body{border-bottom-right-radius:21px;border-bottom-left-radius:21px;overflow:hidden}}.dish-card__body-mobile{padding-bottom:0}.dish-card__controll{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px}@media screen and (max-width: 767px){.dish-card__controll{margin-bottom:4px}}.dish-card__weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}@media screen and (max-width: 767px){.dish-card__weight{font-size:10px}}.dish-card__share{color:#959ca3;background-color:transparent;border:unset;padding:0;transition:all .3s ease}.dish-card__share:hover,.dish-card__share:active{color:#56c4c4;cursor:pointer}.dish-card__info{display:flex;flex-direction:column}.dish-card__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;text-decoration:none;margin-bottom:10px;word-wrap:break-word;hyphens:auto}@media screen and (max-width: 767px){.dish-card__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}}.dish-card__addition{color:#4cbbbb;background-color:transparent;border:unset;padding:0;transition:all .3s ease;display:flex;gap:5px;text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:600;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;align-items:center}.dish-card__addition svg,.dish-card__addition cursor,.dish-card__addition path{transition:all .3s ease}.dish-card__addition:hover{cursor:pointer;color:#31bbbb}.dish-card__addition:hover circle{fill:#31bbbb}.dish-card__addition:hover path{fill:#fff}.dish-card__bottom{display:flex;align-items:center;gap:16px;margin-top:auto;flex-wrap:wrap}@media screen and (max-width: 767px){.dish-card__bottom{flex-direction:column-reverse;gap:16px;align-items:flex-start}}.dish-card__bottom-column{flex-direction:column-reverse;gap:16px;align-items:flex-start}.dish-card__additions{margin-bottom:16px}.dish-card__count{background-color:#f1f6f6;border-radius:20px;padding:4px 16px;min-width:125px;height:40px}.dish-card__count>.count__btn:hover,.dish-card__count>.count__btn:active{background:transparent;color:#31bbbb}.dish-card__count input{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px}@media screen and (max-width: 767px){.dish-card__count{width:calc(100% + 32px);margin:0 -16px}}.dish-card__content{display:flex;gap:8px;align-items:center}@media screen and (max-width: 767px){.dish-card__content{flex-direction:column-reverse;align-items:flex-start;width:100%}}.dish-card__content .dish-card__btn,.dish-card__content .btn.dish-card__btn-link{min-width:125px}.dish-card__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:14px;letter-spacing:0;line-height:21px;color:#777c83}.dish-card__text{color:#777c83;font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.btn.dish-card__btn,.btn.dish-card__btn-link{height:40px;display:flex;align-items:center;padding:0 16px;background:linear-gradient(93.53deg, #f9694a -11.32%, #ff5555 106.34%);color:#fff;transition:all .3s ease;font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px;border-radius:48px}.btn.dish-card__btn:hover,.btn.dish-card__btn-link:hover{background:linear-gradient(93.53deg, #ff532e -11.32%, #ff4242 106.34%)}.btn.dish-card__btn:disabled,.btn.dish-card__btn-link:disabled{background-color:#f6f8f8;color:#282929;cursor:auto}@media screen and (max-width: 767px){.btn.dish-card__btn,.btn.dish-card__btn-link{width:calc(100% + 32px);margin:0 -16px}}.btn.dish-card__btn-link{background:#dfe8ea;color:#282929}.btn.dish-card__btn-link:hover{background:#dfe8ea}.delivery__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;max-width:500px;margin-bottom:24px;margin-top:20px;min-width:100%}@media screen and (max-width: 1023px){.delivery__desc{margin-bottom:40px}}.delivery__desc ul{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83;margin-top:36px;margin-bottom:36px}.delivery__desc ul li{margin-bottom:5px;display:block}.delivery__desc ul li::before{content:"";display:inline-flex;flex-shrink:0;width:8px;height:8px;margin-right:8px;margin-top:8px;border-radius:50%;background:#4cbbbb}.delivery__desc h1{font-family:"Raleway";font-style:normal;font-weight:700;font-size:24px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-top:18px}@media screen and (max-width: 767px){.delivery__desc h1{margin-top:30px}}.delivery__desc__info{display:flex;width:100%;flex-wrap:wrap}@media screen and (max-width: 1023px){.delivery__desc__info{justify-content:space-between}}@media screen and (max-width: 767px){.delivery__desc__info{flex-direction:column}}.delivery__desc__info-item{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;margin-right:20px;margin-bottom:26px}@media screen and (max-width: 1023px){.delivery__desc__info-item{flex-basis:calc(100% / 2);margin-right:0}}@media screen and (max-width: 767px){.delivery__desc__info-item{margin-right:0}}.delivery__desc__info-item .icon-item{min-height:40px;height:40px;width:40px;margin-bottom:8px}.delivery__desc__info-item .big-icon-item{min-height:120px;height:120px;width:75px;display:flex;align-items:center}.delivery__desc__info-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-style:normal;font-weight:500;font-size:16px;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:18px;margin-right:0;color:#282929}.delivery__desc__info-item p{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83;max-width:280px}@media screen and (max-width: 1023px){.delivery__desc__info-item p{max-width:336px}}@media screen and (max-width: 767px){.delivery__desc__info-item p{max-width:none}}.delivery__desc__info-item p span{color:#4cbbbb}.delivery__desc__info-item p a{text-decoration:none;color:#4cbbbb}.delivery__desc__info-item .icon__circle-plus{background:url(/images/icons/circle-plus.svg) no-repeat;height:66px;width:66px}.delivery__desc__info-item .icon__retrenchment{background:url(/images/icons/retrenchment.svg) no-repeat;height:66px;width:76px}.delivery__desc__info-item .icons__container{display:flex;align-items:center;width:200px;min-height:120px;height:120px}.delivery__desc__info-item .icons__container .plus{width:10px}.delivery__desc__info-item .icons__group{display:flex;justify-content:center;margin-right:4px;min-height:80px}.delivery__desc__info-item .icons__group .yellow-icon{color:#fff3ec}.delivery__desc__info-item .icons__group .icon__background{width:65px;height:65px;margin-top:15px}.delivery__desc__info-item .icons__group .blue-icon{color:#edf4f7}.delivery__desc__info-item .icons__group .blue-icon-small{width:45px;height:45px;margin-top:25px}.delivery__desc__info-item .icons__group svg{width:65px}.delivery__desc__info-item .icons__group .icon__front{position:absolute;z-index:1;margin-left:16px}.delivery__desc__info-item .icons__group .icon__steak,.delivery__desc__info-item .icons__group .icon__cutlery,.delivery__desc__info-item .icons__group .icon__tray,.delivery__desc__info-item .icons__group .icon__roll,.delivery__desc__info-item .icons__group .icon__only_roll{height:49px;width:49px;position:relative;z-index:1;margin-left:-51px;background:url(/images/icons/only_roll.svg) no-repeat}.delivery__desc__info-item .icons__group .icon__roll{background:url(/images/icons/roll.svg) no-repeat}.delivery__desc__info-item .icons__group .icon__tray{background:url(/images/icons/tray.svg) no-repeat;width:98px;height:68px}.delivery__desc__info-item .icons__group .icon__cutlery{background:url(/images/icons/cutlery.svg) no-repeat;height:68px;margin-left:-36px}.delivery__desc__info-item .icons__group .icon__steak{background:url(/images/icons/steak.svg) no-repeat;height:78px;width:78px}.delivery__desc__info-item .icons__group .icon_with_span{display:flex;flex-direction:column;align-items:flex-end;width:49px;margin-left:-51px}.delivery__desc__info-item .icons__group .icon_with_span .icon_roll{margin-left:0}.delivery__desc__info-item .icons__group .icon_with_span span{font-family:"Raleway";font-style:normal;font-weight:500;font-size:18px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#934be6;margin-right:4px}.delivery__desc__info:first-child{padding-bottom:80px;border-bottom:1px solid #e0e7e9;margin-top:64px}@media screen and (max-width: 767px){.delivery__desc__info:first-child{padding-bottom:30px;margin-top:30px}}.delivery__desc__info:last-child .delivery__desc__info-item:last-child p{max-width:528px}@media screen and (max-width: 1023px){.delivery__desc__info:last-child .delivery__desc__info-item:last-child{flex-basis:100%}.delivery__desc__info:last-child .delivery__desc__info-item:last-child p{max-width:none}}@media screen and (max-width: 767px){.delivery__desc__info:last-child{margin-top:30px}}.delivery-mob{padding:0;margin-bottom:20px}.delivery-mob__map{display:flex}.delivery-mob__map>.map{overflow:hidden}.delivery-mob__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}.delivery-mob__btn{margin-bottom:5px;color:#777c83;border-radius:0}.delivery-mob__btn .icon{width:32px;height:32px}.delivery-mob__btn-text{margin:auto}.delivery-mob__cancel{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;position:absolute;left:16px;top:20px;color:#777c83}.delivery-mob__body{position:absolute;bottom:0;left:0;width:100%;transition:all .25s;padding-left:16px !important;padding-right:16px !important}.delivery-mob__body .form-input__input{padding-right:46px}.delivery-mob__body .btn{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;display:block;min-height:48px;width:288px;margin-top:20px}.delivery-mob__body--top{bottom:calc(100% - 57px);padding:0 !important}.delivery-mob__body--top .btn-group{display:none}.delivery-mob__body--top .form-input{margin-bottom:0}.delivery-mob__body--top .form-input__input{padding-left:16px;padding-right:46px;padding-top:19px;border-radius:0;border-color:transparent;border-bottom:1px solid #e0e7e9}.delivery-mob__body--top .form-input__input::-moz-placeholder{color:#777c83}.delivery-mob__body--top .form-input__input::placeholder{color:#777c83}.delivery-mob__body--top .form-input__input:-ms-input-placeholder{color:#777c83}.delivery-mob__body--top .form-input__label{display:none}.delivery-text{padding:45px 0;border-bottom:1px solid #e0e7e9}.delivery-text__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#c0cbd2;transition:color .3s}@media screen and (min-width: 768px){.delivery-text__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.delivery-text__title *{pointer-events:none}@media screen and (min-width: 768px){.delivery-text__title{color:#777c83}}.delivery-text__body{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;overflow:hidden;padding-top:0;transition:height .3s,padding .3s}.delivery-text__body>div{max-width:100%}.open .delivery-text__body{padding-top:25px}.delivery-calculate{display:flex;align-items:stretch;border:1px solid #e0e7e9;border-radius:8px}.reserve-page .delivery-calculate{margin-bottom:57px}.delivery-calculate__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:14px}.delivery-calculate__desc{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:12px}.delivery-calculate__body{padding:57px 80px 57px 48px;flex-basis:50%;max-width:50%;flex-grow:0;flex-shrink:0;z-index:1}.delivery-calculate__map{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;min-height:368px;flex-basis:50%;max-width:50%;flex-grow:0;flex-shrink:0;display:flex;position:relative;border-radius:0 8px 8px 0;overflow:hidden}.delivery-calculate__map .map{min-height:100%;align-self:stretch}.activity__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:12px}@media screen and (min-width: 768px){.activity__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (min-width: 768px){.activity{margin-bottom:40px;border:1px solid #e0e7e9;border-radius:8px;padding:56px 72px}}@media screen and (max-width: 767px){.activity{border-bottom:1px solid #e0e7e9;margin-bottom:26px}}.activity-item{padding:20px 0;border-bottom:1px solid #e0e7e9}.activity-item:last-child{border-bottom:0}.activity-item__chevron{width:14px;height:14px}@media screen and (min-width: 1024px){.activity-item__chevron{color:#c0cbd2;width:17px;height:17px}}.activity-item__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;transition:color .3s;cursor:pointer}.activity-item__title *{pointer-events:none}@media screen and (min-width: 768px){.activity-item__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.activity-item__title .icon{flex-shrink:0;transform:rotate(0);transition:transform .3s;margin-left:8px}.activity-item__body{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;padding-top:15px;transition:height .3s,padding .3s}.activity-item__body>div{max-width:100%}.address{display:flex;flex-direction:column;border-bottom:1px solid #e0e7e9;margin-bottom:28px}@media screen and (min-width: 768px){.address{border-radius:8px;border:1px solid #e0e7e9}}@media screen and (min-width: 1024px){.address{flex-direction:row;margin-bottom:63px}}.address__title{display:flex;align-items:center;margin-bottom:12px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (min-width: 768px){.address__title{margin-bottom:32px}}.address__body{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:8px 0 24px;color:#777c83}@media screen and (min-width: 768px){.address__body{padding:48px}}@media screen and (min-width: 1024px){.address__body{flex-grow:0;flex-shrink:0;flex-basis:488px;max-width:488px}}.address__map{border:0;display:none;overflow:hidden}@media screen and (min-width: 768px){.address__map{display:flex;height:400px;border-radius:0 0 8px 8px}}@media screen and (min-width: 1024px){.address__map{flex-basis:calc(100% - 488px);width:calc(100% - 488px);max-width:calc(100% - 488px);min-height:100%;height:auto;flex-grow:0;flex-shrink:0;border-radius:0 8px 8px 0}}@media screen and (min-width: 768px){.address__desc{padding-bottom:27px;border-bottom:1px solid #e0e7e9}}.address-icon{width:32px;height:32px;margin-right:5px;flex-basis:32px;flex-shrink:0;flex-grow:0}.address-contacts{padding:16px 0}.address-contacts__icon{width:32px;height:32px;color:#56c4c4;margin-right:8px}.address-contacts__item{display:flex;align-items:center;padding:8px 0}.address-contacts__item>span:first-of-type{margin-right:4px}.address-list{display:flex;flex-direction:column}@media screen and (min-width: 768px){.address-list{margin-bottom:8px}}@media screen and (min-width: 1024px){.address-list{max-width:544px}}@media screen and (min-width: 1024px){.address-form{max-width:417px}}@media screen and (max-width: 767px){.address-form .form-input__input{padding-right:40px}}.address-item{border-bottom:1px solid #d7dfe1;margin-bottom:24px}@media screen and (max-width: 767px){.address-item{margin-top:-24px}}@media screen and (min-width: 768px){.address-item{border:1px solid #d7dfe1;border-radius:6px;margin-bottom:16px}.address-item:hover{box-shadow:0 0 19px rgba(159,204,207,.27);border-color:transparent}}.address-item--deleted{order:-1;border:1px solid #d7dfe1;border-radius:6px;margin-bottom:24px;margin-top:0;background:#f8f8f8}@media screen and (min-width: 768px){.address-item--deleted{margin-bottom:16px}}.address-item--deleted:last-child{margin-bottom:24px}@media screen and (min-width: 768px){.address-item--deleted:last-child{margin-bottom:16px}}.address-item--deleted:hover{background:#fff}.address-item--deleted .address-item__title{padding:16px 16px 16px 24px;align-items:center}.address-item--deleted .address-item__title-text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;max-width:97%}.address-item--deleted .address-item__title-text::before{content:"Адрес удален:";margin-right:8px;color:#282929}.address-item__title{display:flex;align-items:flex-start;justify-content:space-between;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;cursor:pointer;padding:0 0 24px 0}@media screen and (max-width: 767px){.address-item__title{padding:14px 0}}.address-item__title .close{position:relative;align-self:flex-start;right:auto;top:auto;width:8px;height:8px;min-width:8px;color:#777c83}input:checked~.address-item__title .close{display:none}.address-item__title .icon-arrow{display:none}input:checked~.address-item__title .icon-arrow{display:block}.address-item__title .icon-pencil{display:block}input:checked~.address-item__title .icon-pencil{display:none}input:checked~.address-item__title .address-item__title-addr{display:none}@media screen and (min-width: 768px){.address-item__title{padding:16px 16px 16px 24px;align-items:center}}.address-item .dropdown-content{padding:5px 0 24px}@media screen and (min-width: 768px){.address-item .dropdown-content{padding:5px 16px 32px 24px}}.dropdown-block input[type=checkbox]{display:none;cursor:pointer}.dropdown-block input[type=checkbox]+label .icon{flex-shrink:0;transform:rotate(0);transition:transform .3s;margin-left:8px;color:#c0cbd2}@media screen and (max-width: 767px){.dropdown-block input[type=checkbox]+label .icon{width:12px;height:12px}}.dropdown-block input[type=checkbox]:checked~.dropdown{max-height:2000vh}.dropdown-block input[type=checkbox]:checked+label{color:#282929}.dropdown-block input[type=checkbox]:checked+label .icon{transform:rotate(180deg);color:#282929}.dropdown-block input[type=checkbox]:not(:checked)~.dropdown{max-height:0 !important}.dropdown-block.ingredients input[type=checkbox]:checked+label{color:#282929}.dropdown-block.ingredients input[type=checkbox]:checked+label .icon{transform:none;color:inherit}.dropdown-block.ingredients input[type=checkbox]:checked+label .ingredients__btn::after{transform:rotate(180deg)}.dropdown{max-height:0;padding-top:0;box-sizing:border-box;overflow:hidden;transition:all .3s}@media screen and (max-width: 767px){.dropdown__close{color:#777c83;width:16px;height:16px;top:20px;right:16px}}.dropdown-content{padding-top:15px}.dropdown-content_no-padding{padding-top:0}.dropdown-content__header{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.dropdown-content__buttons{display:flex;flex-direction:row;gap:10px;justify-content:space-between;align-items:center}.promo-list{display:flex;flex-wrap:wrap;margin:-4px}.promo-list--main{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;flex-wrap:nowrap;margin:0;min-width:792px}@media screen and (min-width: 768px){.promo-list--main{padding:0 32px}}@media screen and (min-width: 1024px){.promo-list--main{padding:0 40px}}@media screen and (min-width: 500px){.promo-list{margin:-8px}.promo-list--main{margin:0 auto;min-width:936px}}@media screen and (min-width: 1024px){.promo-list{margin:-16px}.promo-list--main{margin:0 auto}}.promo-item{position:relative;color:#fff;border-radius:8px;box-shadow:0 0 10px #e9f1f1;flex-basis:calc((100% - 8px) / 1);margin:4px}@media screen and (min-width: 500px){.promo-item{flex-basis:calc((100% - 32px) / 2);margin:8px}}@media screen and (min-width: 1024px){.promo-item{flex-basis:calc((100% - 96px) / 3);margin:16px}}.promo-item:hover,.promo-item:focus{box-shadow:0px 0px 21px rgba(129,165,167,.34)}.promo-item:hover .promo-item__deadlines,.promo-item:focus .promo-item__deadlines{color:#282929}.promo-list--main .promo-item{display:flex;flex-direction:column;flex-basis:280px;margin:0 8px 0 0}.promo-list--main .promo-item:hover,.promo-list--main .promo-item:focus{box-shadow:0 0 20px #dfe3e4}.promo-list--main .promo-item:hover .promo-item__deadlines,.promo-list--main .promo-item:focus .promo-item__deadlines{color:#282929}.promo-list--main .promo-item:last-child{margin-right:0}@media screen and (min-width: 500px){.promo-list--main .promo-item{flex-basis:calc(100% / 3);margin-right:16px}}@media screen and (min-width: 1024px){.promo-list--main .promo-item{flex-basis:calc(100% / 3);margin-right:32px}}.promo-list--main .promo-item__tag{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;font-weight:bold;opacity:.69}.promo-list--main .promo-item__deadlines{flex-grow:1;padding:16px 14px;color:#959ba3}.promo-list--main .promo-item__image{height:144px}.promo-item__link{color:#fff;text-decoration:none}.promo-item__image{height:160px;position:relative;width:100%;overflow:hidden;border-radius:6px 6px 0 0}.promo-item__image img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}.promo-item__top{display:flex;justify-content:space-between;flex-wrap:wrap;margin-bottom:24px}.promo-item__content{position:absolute;width:100%;height:100%;left:0;top:0;padding:16px}@media screen and (min-width: 768px){.promo-item__content{padding:16px 24px}}.promo-item__tag{top:15px;left:16px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:10px;line-height:130%;text-transform:uppercase;letter-spacing:.09em;margin-bottom:10px}.promo-item__deadlines{display:flex;align-items:center;justify-content:space-between;padding:20px 16px;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;border-radius:0 0 6px 6px}@media screen and (max-width: 767px){.promo-item__deadlines .link--btn{display:none}}@media screen and (min-width: 768px){.promo-item__deadlines{padding:20px 24px;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}}.promo-item__title{margin-bottom:10px;font-family:Raleway;font-style:normal;font-weight:800;font-size:18px;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;text-shadow:0 0 12px rgba(90,98,115,.08)}.promo-item__desc{max-width:200px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;line-height:130%;letter-spacing:.01em}.promo-input{margin-bottom:24px}@media screen and (min-width: 768px){.promo-input{margin-bottom:28px}}.promo-code{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;background-color:#fff;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;padding:6px 14px;border-radius:24px;color:#777c83;position:absolute;text-align:center;display:inline-block;right:16px;top:8px;cursor:pointer}@media screen and (min-width: 768px){.promo-code{min-width:180px}.promo-code:hover{opacity:.8}}.promo-code--relative{position:relative;top:0;right:0}.promo-code--modal{position:relative;top:0;right:0;cursor:default;display:flex;justify-content:center;flex-direction:column;align-items:center;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.promo-code__modal-btn{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase;color:#4cbbbb;min-height:24px;width:140px}.promo-code__modal-btn--active{position:relative}.promo-code__modal-btn--active:before{content:"Скопировано";position:absolute;top:0;left:-5px;width:100%;height:100%;background-color:#fff;line-height:26px}.promo-code__modal-btn--active:after{content:"";position:absolute;top:5px;right:5px;transform:rotate(45deg);height:8px;width:4px;border-bottom:2px solid #56c4c4;border-right:2px solid #56c4c4}.promo-code__wrapper{margin-bottom:5px}.promo-code__text{color:#282929;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.promo-code__text--black{color:#282929;margin-left:5px;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.promo-code__text--active{position:relative;margin-right:5px;min-width:170px;color:#4cbbbb}.promo-code__text--active:after{content:"";position:absolute;top:2px;right:-13px;transform:rotate(45deg);height:8px;width:4px;border-bottom:2px solid #56c4c4;border-right:2px solid #56c4c4}.promo-code__desc{position:absolute;top:calc(100% + 5px);left:0;font-family:Raleway;font-style:normal;font-weight:600;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;text-transform:none;color:#777c83}.promo-code__overlay{opacity:0;position:absolute;width:100%;height:100%;min-height:100%;top:0;bottom:0;left:0;right:0;border:none;outline:none;font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;border-radius:24px;line-height:2rem}@media screen and (min-width: 768px){.promo-code:hover span:not(.promo-code__text--active){opacity:0}.promo-code:hover span.promo-code__overlay{opacity:1}}@media screen and (min-width: 1024px){.contacts{display:flex}.contacts__list{flex-basis:calc(100% / 3 * 2);margin-left:32px}.contacts__rest{flex-basis:calc(100% / 3)}}.contacts .link .phone__icon,.contacts .link .email__icon{transition:color .3s,background-color .3s}.contacts .link:hover .phone__icon,.contacts .link:hover .email__icon,.contacts .link:focus .phone__icon,.contacts .link:focus .email__icon{background-color:#31bbbb;color:#fff}@media screen and (min-width: 768px){.contacts-list{display:flex;flex-wrap:wrap;margin:0 -16px}}.contacts-list-item{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;padding:24px 0;border-bottom:1px solid #e0e7e9}.contacts-list-item__title{color:#282929}.contacts-list-item .phone,.contacts-list-item .whatsapp,.contacts-list-item .email{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.contacts-list-item .phone__icon,.contacts-list-item .whatsapp__icon,.contacts-list-item .email__icon{color:#9bb9c2;background:#e1edf1;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:8px}@media screen and (min-width: 768px){.contacts-list-item .phone__icon,.contacts-list-item .whatsapp__icon,.contacts-list-item .email__icon{width:32px;height:32px;background:#e6efee;color:#b3bbc5}}.contacts-list-item .phone__text::before,.contacts-list-item .whatsapp__text::before,.contacts-list-item .email__text::before{color:#282929;margin-right:4px}.contacts-list-item .phone__text::before{content:"Тел:"}.contacts-list-item .email__text::before{content:"E-mail:"}.contacts-list-item .whatsapp__text::before{content:"WhatsApp:"}.contacts-list-item__address,.contacts-list-item__clock,.contacts-list-item__phone,.contacts-list-item__whatsapp,.contacts-list-item__email{margin-bottom:8px}.contacts-list-item__address:last-child,.contacts-list-item__clock:last-child,.contacts-list-item__phone:last-child,.contacts-list-item__whatsapp:last-child,.contacts-list-item__email:last-child{margin-bottom:0}.contacts-list-item__phone{font-feature-settings:"lnum"}@media screen and (min-width: 768px){.contacts-list-item{flex-basis:calc((100% - 16px * 4) / 2);margin:0 16px}}@media screen and (min-width: 1024px){.contacts-list-item:nth-last-child(-n+2){border-color:transparent}}.contacts-rest{padding:24px 0}.contacts-rest__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 768px){.contacts-rest__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.contacts-rest-item{margin-bottom:16px}@media screen and (min-width: 768px){.contacts-rest-item{margin-bottom:32px}.contacts-rest-item__title{margin-bottom:8px}}.contacts-rest-item:last-child{margin-bottom:0}.contacts-rest-item__title{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:16px;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 767px){.contacts-rest-item{display:flex;align-items:center}.contacts-rest-item__title{order:2}.contacts-rest-item .phone__text{display:none}}.contacts-rest-item .phone,.contacts-rest-item .email{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.contacts-rest-item .phone__icon,.contacts-rest-item .email__icon{color:#9bb9c2;background:#e1edf1;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:8px}@media screen and (min-width: 768px){.contacts-rest-item .phone__icon,.contacts-rest-item .email__icon{width:32px;height:32px;background:#e6efee;color:#b3bbc5}}.contacts-rest-item .phone__text::before,.contacts-rest-item .email__text::before{color:#282929;margin-right:4px}.contacts-rest-item .phone__text::before{content:"Тел:"}@media screen and (max-width: 767px){.reserve-info{border:1px solid #e0e7e9;border-radius:8px;padding:35px 12px}}@media screen and (min-width: 768px){.reserve-info{display:flex;flex-wrap:wrap;margin:-16px}.reserve-info>*{flex-basis:calc((100% - 64px) / 2);max-width:calc((100% - 64px) / 2);margin:16px}}@media screen and (min-width: 1024px){.reserve-info{display:flex;flex-wrap:nowrap;margin:-16px}.reserve-info>*{flex-basis:calc((100% - 96px) / 3);max-width:calc((100% - 96px) / 3);margin:16px}}.reserve-info-item{text-align:center;margin-bottom:32px}.reserve-info-item:last-child{margin-bottom:0}.reserve-info-item__icon{position:relative;width:72px;height:48px;text-align:right;margin:0 auto 12px;flex-shrink:0}.reserve-info-item__icon::before{content:"";display:block;position:absolute;top:0;left:0;width:48px;height:48px;border-radius:50%;z-index:-1}.reserve-info-item__icon .icon{width:55px;height:34px}.reserve-info-item__icon--hight{color:#eb8b85}.reserve-info-item__icon--hight::before{background:#ffd1ce}.reserve-info-item__icon--mid{color:#f6a06f}.reserve-info-item__icon--mid::before{background:#ffe5da}.reserve-info-item__icon--low{color:#e4a65e}.reserve-info-item__icon--low::before{background:#f7f6d5}.reserve-info-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:5px}.reserve-info-item__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:10px}.reserve-info-item__text:last-child{margin-bottom:0}@media screen and (min-width: 768px){.reserve-info-item{text-align:left;display:flex}.reserve-info-item__icon{margin-right:24px}.reserve-info-item__icon .icon{width:64px;height:39px}.reserve-info-item__icon--hight{width:88px;height:64px;padding-top:9px}.reserve-info-item__icon--hight::before{width:64px;height:64px}.reserve-info-item__icon--mid{width:80px;height:48px}.reserve-info-item__icon--low{width:75px;height:39px}.reserve-info-item__icon--low::before{width:38px;height:38px}}.bonus-types-container{overflow-x:auto;margin:-12px -16px 22px -16px}@media screen and (min-width: 768px){.bonus-types-container{margin:-12px -16px 33px -16px}}.bonus-types-container::-webkit-scrollbar{height:5px}.bonus-types-container::-webkit-scrollbar-thumb{background:#e3eaec}@media screen and (max-width: 767px){.bonus-types-container{margin:0 -16px}.bonus-types-container::-webkit-scrollbar{width:0;height:0}}.bonus-count,.cart-total__preorder--num{font-family:Roboto;font-style:normal;font-weight:500;font-size:12px;line-height:150%;color:#fff;background:#000;border-radius:32px;margin-left:5px;padding:0 8px}.bonus-count:first-child,.cart-total__preorder--num:first-child{margin-left:0}.bonus-count--3{background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%)}.bonus-count--5{background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%)}.bonus-count--10{background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%)}.bonus-count--minus{background:#c0cbd2}.bonus-count--plus{background:linear-gradient(125.29deg, #ffc975 0%, #ffbd59 103.27%)}.bonus-count--deadline{margin-top:3px;font-size:12px;color:#777c83;background:#fff}.bonus-types{display:flex;padding:12px 16px;flex-wrap:nowrap;min-width:1065px}.bonus-types__item{flex-basis:calc((100% - 3 * 24px) / 4);margin-right:24px}.bonus-types__item:last-child{margin-right:0}.bonus-item{border-radius:8px;padding:24px 16px 12px;height:100%}.bonus-cards .bonus-item{padding:14px 16px 12px}@media screen and (min-width: 768px){.bonus-cards .bonus-item{padding-top:19px}}.bonus-item--3{background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%)}.bonus-item--3 .bonus-item__tag,.bonus-item--3 .bonus-item__number{color:#fed69a}.bonus-item--3.bonus-item--plastic{background:#fff}.bonus-item--3.bonus-item--plastic .bonus-item__tag,.bonus-item--3.bonus-item--plastic .bonus-item__number{color:#c0cbd2}.bonus-item--5{background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%)}.bonus-item--5 .bonus-item__tag,.bonus-item--5 .bonus-item__number{color:#fdb6a6}.bonus-item--5.bonus-item--plastic{background:#fff}.bonus-item--5.bonus-item--plastic .bonus-item__tag,.bonus-item--5.bonus-item--plastic .bonus-item__number{color:#c0cbd2}.bonus-item--10{background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%)}.bonus-item--10 .bonus-item__tag,.bonus-item--10 .bonus-item__number{color:#a9dfab}.bonus-item--10.bonus-item--plastic{background:#fff}.bonus-item--10.bonus-item--plastic .bonus-item__tag,.bonus-item--10.bonus-item--plastic .bonus-item__number{color:#c0cbd2}.bonus-item--disabled{background:#d4d4d4}.bonus-item--disabled .bonus-item__number,.bonus-item--disabled .bonus-item__tag{color:#777c83}.bonus-item--disabled.bonus-item--plastic{color:#d4d4d4}.bonus-item--disabled.bonus-item--plastic .bonus-item__title,.bonus-item--disabled.bonus-item--plastic .bonus-item__title-desc,.bonus-item--disabled.bonus-item--plastic .bonus-item__number,.bonus-item--disabled.bonus-item--plastic .bonus-item__tag{color:#d4d4d4}.bonus-item__tag{font-family:Raleway;font-style:normal;font-weight:bold;font-size:10px;line-height:12px;letter-spacing:.08em;text-transform:uppercase}.bonus-item .head{min-height:16px;margin-bottom:13px}.bonus-item__body{display:flex;align-items:center;margin-bottom:20px}.bonus-item__icon{margin-right:8px;width:97px;height:72px}.bonus-item__title{color:#fff}.bonus-item--plastic .bonus-item__title{color:#282929}.bonus-item__title-desc{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;line-height:105.66%;margin-bottom:6px}.bonus-item--plastic .bonus-item__title-desc{color:#777c83}.bonus-item__title-desc:last-child{margin-bottom:0}.bonus-item__title-name{font-family:Roboto;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:25px;margin-bottom:6px}.bonus-item__title-name:last-child{margin-bottom:0}.bonus-item__number{font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;line-height:15px;letter-spacing:.02em}.bonus-item__btn{display:flex}.bonus-item__btn .preloader-boundary{width:14px;height:14px;margin-right:8px}.bonus-item__btn .preloader-spinner{width:14px;height:14px}.bonus-cards{margin:-16px;margin-bottom:0;overflow-x:auto;overflow-y:hidden}.bonus-cards__list{min-width:537px;max-width:640px;display:flex;padding:16px}.bonus-cards__item{margin-right:8px;max-width:calc((608px + 32px) / 2);flex:1}@media screen and (min-width: 768px){.bonus-cards__item{margin-right:16px}}.bonus-cards__item:last-child{margin-right:0}.bonus-cards__item .bonus-item{box-shadow:0 0 19px rgba(159,204,207,.27)}.bonus-scale{max-width:336px;position:relative}.bonus-scale__wrapper{display:flex;justify-content:space-between;max-width:100%}.bonus-scale-container{margin-bottom:24px;padding-top:30px}.bonus-scale .point{position:relative;z-index:1;width:8px;height:8px;background:#c0cbd2;border-radius:50%}.bonus-scale .point__num{display:flex;align-items:center;justify-content:center;position:absolute;width:40px;height:33px;left:50%;top:0;transform:translate(-50%, -110%);font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;line-height:138.27%;letter-spacing:.02em;color:#c0cbd2}.bonus-scale .point__num .percent{font-family:Roboto;font-style:normal;font-weight:900;font-size:14px;line-height:138.27%;letter-spacing:.02em}.bonus-scale .point.active{background:linear-gradient(125.29deg, #ffc975 0%, #ffbd59 103.27%)}.bonus-scale .point.active .point__num{color:#ffbd59}.bonus-scale .progress{position:absolute;left:0;top:50%;transform:translateY(-50%);width:100%;max-width:100%;height:2px;overflow:hidden;background:#d7dfe1}.bonus-scale .progress__line{position:absolute;width:100%;height:100%;top:0;right:100%;border-radius:8px;transform:translateX(1%);background:linear-gradient(125.29deg, #ffc975 0%, #ffbd59 103.27%)}.bonus-conditions{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#282929;display:inline-flex}.bonus-birthday{display:flex;align-items:flex-start}@media screen and (max-width: 767px){.bonus-birthday{flex-direction:column}}.bonus-birthday img{flex-shrink:0;margin-bottom:10px;margin-top:10px}@media screen and (min-width: 768px){.bonus-birthday img{margin-right:40px}}.vacancies-filter{margin:0 0 15px}.vacancies-filter>*{margin:0 0 16px}.vacancies-filter>*:last-child{margin:0}@media screen and (min-width: 768px){.vacancies-filter{display:flex}.vacancies-filter>*{flex:1;width:50%;margin:0 32px 0 0}}@media screen and (min-width: 768px)and (min-width: 1024px){.vacancies-filter>*{max-width:384px}}@media screen and (min-width: 1024px){.vacancies-filter>*{margin:0 16px 0 0}}@media screen and (min-width: 1200px){.vacancies-filter>*{margin:0 32px 0 0}}@media screen and (min-width: 768px){.vacancies-list{border:1px solid #e0e7e9;border-radius:8px;padding:22px 46px}}.vacancies-info{padding:32px 24px;background:#fafbfc;border:1px solid #e0e7e9;border-radius:8px}@media screen and (min-width: 1024px){.vacancies-info{position:sticky;top:144px}}.vacancies-info__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:12px}@media screen and (min-width: 768px){.vacancies-info__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.vacancies-info__desc{margin-bottom:20px}.vacancies-info .phone,.vacancies-info .email{display:flex;align-items:center;margin-bottom:12px}.vacancies-info .phone:last-child,.vacancies-info .email:last-child{margin-bottom:0}.vacancies-info .phone__icon,.vacancies-info .email__icon{display:flex;color:#fff;width:32px;height:32px;align-items:center;justify-content:center;border-radius:50%;background:#56c4c4;margin-right:8px}.vacancies-info .phone__text,.vacancies-info .email__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.vacancies-info .phone__text::before,.vacancies-info .email__text::before{color:#282929;margin-right:4px}.vacancies-info .phone__text::before{content:"Тел:"}.vacancies-info .email__text::before{content:"E-mail:"}.vacancies-info__contacts{border-bottom:1px solid #e0e7e9;margin-bottom:23px;padding-bottom:25px}.vacancies-info__social-title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:16px}@media screen and (min-width: 1024px){.vacancies-info{padding:48px 46px 32px}}.vacancies-item{padding:24px 0 23px;border-bottom:1px solid #e0e7e9}@media screen and (min-width: 1024px){.vacancies-item{padding:28px 0 26px}}.vacancies-item:last-child{border-bottom:0}.vacancies-item__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:4px}@media screen and (min-width: 768px){.vacancies-item__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.vacancies-item__addr{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;flex-wrap:wrap}.vacancies-item__addr .icon{color:#c0cbd2;transition:color .3s}input[type=checkbox]:checked~.vacancies-item__addr .icon{color:#e97d65}.vacancies-item__addr span::after{content:", ";margin-right:4px}.vacancies-item__addr span:last-of-type::after{content:none}.vacancies-item__body-title{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:16px;line-height:19px;color:#424242;font-feature-settings:"pnum" on,"lnum" on}.vacancies-item__body-list{padding:6px 0;margin-bottom:14px}.vacancies-item__body ul{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;list-style:none !important}.vacancies-item__body .subtitle{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.empty{display:flex;align-items:center;justify-content:center;height:100%;background:#f6f8f8;border-radius:8px;padding:20px}.empty--404{padding:56px 16px}@media screen and (min-width: 768px){.empty--404{margin-top:48px}}.empty__body{text-align:center;max-width:212px}.empty--404 .empty__body{max-width:558px}@media screen and (min-width: 1024px){.empty__body{padding-top:55px;padding-bottom:55px}}.empty__image{height:95px;margin-bottom:10px}@media screen and (min-width: 768px){.empty__image{height:136px;margin-bottom:16px}}.empty__image img{height:100%;width:auto}.empty__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media screen and (min-width: 768px){.empty__text{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.alert{padding:8px 15px;border-radius:8px;margin-bottom:20px}.alert--error{background:#faecec;color:#e97d65;word-break:break-word}.alert--info{background:#6dc1c1;color:#fff}.alert--warning{background:#fff3df;color:#ff9a00}.alert--primary{background:#e9f9e9;color:#76ab76}.alert--with-icon{display:flex;align-items:center}.alert--success{background:#e9f9e9;color:#76ab76;display:inline-flex;align-items:center;padding:8px 24px}.alert--success .alert-percent{display:inline-block;position:relative;font-size:24px;line-height:36px;letter-spacing:.08em;color:#8ebb8e;padding:0 6px}.alert--success .alert-percent::before{content:"";display:block;position:absolute;width:32px;height:32px;background:rgba(184,227,184,.81);border-radius:50%;left:0;top:50%;transform:translateY(-50%);z-index:0}.alert--success .alert-percent strong{position:relative;z-index:1}.alert--bar{background:#fbf0ca;color:#000;display:inline-flex;margin-bottom:30px;text-decoration:none}@media screen and (min-width: 768px){.alert--bar{padding-right:36px}}.alert--bar .alert-text{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.alert--bar .alert-icon{height:60px;width:53px}.alert--bar .alert-icon .icon{height:60px;width:53px}.alert--bar_blue{background-color:#e0eff6}.alert--time{display:flex;flex-direction:column;align-items:flex-start;padding:16px !important}.alert--time .alert-icon{margin-right:16px}.alert--time .alert-icon .icon{height:32px;width:32px}.alert--2023{display:flex;flex-direction:column;align-items:flex-start;padding:16px 24px !important;gap:11px}.alert--2023 .alert-icon{margin-right:16px}.alert--2023 .alert-icon .icon{height:32px;width:32px}.alert--2023 .alert-text{max-width:424px}.alert--suggestions{padding:16px;justify-content:space-between}.alert--suggestions .alert-icon{margin:0}.alert--suggestions .alert-text{font-weight:400}.alert--suggestions .alert-text--demi-bold{font-weight:600}.alert--suggestions .alert__row{gap:6.5px}.alert--suggestions .btn{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.alert--suggestions .alert__container{gap:30px}@media screen and (max-width: 575px){.alert--suggestions .alert__container{gap:10px;align-items:flex-start}}@media screen and (max-width: 575px){.alert--suggestions{flex-direction:column;padding:16px;justify-content:space-between;margin:16px -16px;border-radius:unset;gap:10px}}.alert--covid{background-color:#f1f6f6;color:#282929;max-width:520px;font-family:Raleway;font-size:14px;line-height:105.66%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on}.alert--covid:hover{color:#f9694a}.alert--covid .alert-icon{width:42px;height:43px}.alert--covid .alert-icon .icon{width:42px;height:43px}.alert--covid .alert__row{margin-bottom:0}.alert-icon{width:32px;height:32px;flex-shrink:0;display:flex;align-items:center;justify-content:center;border-radius:50%;margin:0 15px}.alert-icon:first-child{margin-left:0}.alert-icon:last-child{margin-right:0}.alert-icon .icon{width:16px;height:16px;color:inherit}.alert-icon .icon.inherit-size{width:100%;height:100%}.popup--error .alert-icon,.alert--error .alert-icon{color:#f3a18f;background:#f5d5d5}.alert-text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;max-width:100%}.alert-text--bold{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.alert-text--demi-bold{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.alert-text_super-bold{font-weight:800;line-height:22px}.alert-link{color:inherit;text-decoration:none}.alert__row{display:flex;align-items:center}.alert__container{display:flex}@media screen and (max-width: 575px){.alert__container{flex-direction:column}}.alert--outer{margin:-6px 0 24px;min-width:380px;box-sizing:border-box;border-radius:8px;padding:16px 24px}.alert--outer.alert--success{border:1px solid #c1e7c1}.alert--outer .alert-text{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px}@media screen and (min-width: 1024px){.alert--auto-delivery{flex-direction:row;align-items:center}.alert--auto-delivery .icon{margin:0 25px}}.orders-filter{display:flex;align-items:center;margin-bottom:20px}.orders-filter .form-input{margin-bottom:0;margin-right:16px;flex-grow:1;flex-shrink:1;flex-basis:calc((100% - 18px - 8px - 16px) / 2);max-width:calc((100% - 18px - 8px - 16px) / 2)}.orders-filter .form-input .mobile-show{max-width:100%}@media screen and (min-width: 768px){.orders-filter .form-input{max-width:114px}}.orders-filter .form-input:last-child{margin-right:0}.orders-filter .form-input__input{padding:10px 16px}.orders-filter::before{content:"От";font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#424242;margin-right:8px;flex-grow:0;flex-shrink:0}@media screen and (min-width: 768px){.orders-filter::before{content:"Показать от"}}.orders-filter-toggle{margin-bottom:13px}.orders-table{position:relative;z-index:1;width:100%}.orders-table__bonus-dead{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}.orders-table .dropdown-block{display:block;border-bottom:1px solid #e0e7e9}.orders-table-row{display:flex;align-items:center;padding:22px 0;cursor:pointer}.orders-table-row--head{border-bottom:1px solid #e0e7e9;padding:13px 0}.orders-table-ingredients{background:#f8f9f9;border-radius:8px;padding:26px 32px 30px}.orders-table-ingredients .courier-point{opacity:.1;transition:opacity cubic-bezier(0, 0.52, 1, 1) 1s}.orders-table-ingredients .text--level-1:last-of-type{margin-bottom:24px}.orders-table-buttons{display:flex;flex-direction:column;gap:12px;width:-moz-max-content;width:max-content}.orders-table-buttons .btn--tips{font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase;min-height:40px;line-height:unset}.orders-table-col{display:block;flex-shrink:0;padding-right:6px}.orders-table-col--num{flex-basis:22%;font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;line-height:19px;color:#282929;letter-spacing:.03em;display:flex;align-items:center}.orders-table-col--num .mobile-show{display:flex}.orders-table-col--num span{display:flex;align-items:baseline}.orders-table-col--num:hover .orders-table__number span{color:#4cbbbb}.orders-table-col--num:hover .icon-copy use{stroke:#4cbbbb}.orders-table-col--date{flex-basis:18%;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}@media(min-width: 1024)and (max-width: 1200){.orders-table-col--date{flex-basis:28%}}.orders-table-col--count{flex-basis:25%;align-items:center}@media(min-width: 1024)and (max-width: 1200){.orders-table-col--count{flex-basis:20%}}.orders-table-col--status{flex-basis:22%;gap:4px;display:flex;flex-direction:column}@media screen and (max-width: 767px){.orders-table-col--status .status-row{display:flex;gap:4px}}.orders-table-col--sum{flex-basis:18%;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;font-weight:500;line-height:19px;display:flex;align-items:center;justify-content:space-between;color:#282929;padding:0}.orders-table-col--sum .rub{font-weight:500}.orders-table-col--head{display:block;font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.orders-table .bonus-count,.orders-table .cart-total__preorder--num{font-family:Roboto;font-style:normal;font-weight:500;font-size:14px;line-height:130%;letter-spacing:.02em;padding:3px 9px;margin:0 8px 0 0}.orders-table .bonus-count--minus{background:#c0cbd2}.orders-table .bonus-count--plus{background:linear-gradient(125.29deg, #ffc975 0%, #ffbd59 103.27%)}.orders-table .bonus-count--deadline{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;margin-top:3px;padding-left:0;color:#777c83;background:inherit}.orders-table .ingredients-item{border:0}.orders-table .ingredients-item__body{display:flex;align-items:center;justify-content:space-between}.orders-table .ingredients-item__main{display:flex;align-items:center}@media screen and (min-width: 768px){.orders-table .ingredients-item__main{flex-basis:82%}}.orders-table .ingredients-item__price{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;line-height:16px;display:flex;align-items:center;letter-spacing:.01em}.orders-table .ingredients-item__price .rub{font-size:14px;font-weight:300;margin-left:6px}@media screen and (min-width: 768px){.orders-table .ingredients-item__price{flex-basis:18%}}.orders-table .ingredients-item__image{width:56px;height:48px}.orders-table .ingredients-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:4px}.orders-table .ingredients-item__additional{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.orders-table__number{white-space:nowrap;display:flex;max-width:250px;flex-direction:column}@media screen and (min-width: 768px){.orders-table__number{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:19px}}.orders-table__type{font-style:normal;font-weight:normal;font-size:12px;line-height:14px;letter-spacing:.03em;color:#777c83}.orders-table__type-icon{margin-right:7px;margin-left:-8px}.orders-table__type-icon .icon{transform:rotate(0) !important}.orders-table__status{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;border-radius:16px;display:inline-block;padding:5px 10px}@media screen and (max-width: 767px){.orders-table__status{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3}}.orders-table__status_with-icon{display:flex;align-items:center;padding:0;margin-top:5px}@media screen and (max-width: 767px){.orders-table__status_with-icon{margin-left:8px;margin-top:0}}.orders-table__status_with-icon .icon{transform:rotate(359deg) !important}.orders-table__status_with-icon svg{margin-left:0 !important;margin-right:5px}.orders-table__status_with-icon::after{margin-left:5px;display:inline-block;vertical-align:middle;background-size:cover;content:""}.orders-table__status_with-icon--apple-pay::after{background-image:url("/images/icons/apple-pay.svg");height:14px;width:28px}.orders-table__status_with-icon--google-pay::after{background-image:url("/images/icons/google-pay.svg");height:11px;width:28px}.orders-table__status_with-icon--online-card::after{background-image:url("/images/icons/online-card.svg");height:13px;width:18px}.orders-table__status--not-paid{color:#e97d65;background:inherit}.orders-table__status--pending{color:#282929;background:#dfe8ea}.orders-table__status--is-delay{color:#000;background:#ffefd6;font-size:16px;padding:4px 16px}.orders-table__status--confirmed{color:#000;background:#e9f9e9}.orders-table__status--fulfilled{color:#000;background:#dfe8ea}.orders-table__status--canceled{color:#000;background:#faecec}.orders-table__status--unconfirmed{color:#fff;background:#e97d65}@media screen and (max-width: 767px){.orders-table-row{flex-direction:column;align-items:flex-start}.orders-table-row--head{display:none}.orders-table-col--date{flex-basis:auto;order:-2;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;line-height:150%;color:#a0a6ad;margin-bottom:5px;width:100%}}@media screen and (max-width: 767px)and (768){.orders-table-col--date{width:auto}}@media screen and (max-width: 767px){.orders-table-col--sum{display:none}}@media screen and (max-width: 767px){.orders-table-col--count{flex-basis:auto;flex-wrap:wrap}.orders-table-col--count::before{content:"Бонусы";font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#282929;margin-right:10px}}@media screen and (max-width: 767px){.orders-table-col--num{flex-basis:auto;padding:0;display:flex;justify-content:space-between;width:100%;font-size:21px;line-height:25px;order:-1;font-family:Roboto;font-style:normal;font-weight:500;margin-bottom:9px}}@media screen and (max-width: 767px){.orders-table-col--status{order:-1;margin-bottom:16px}.orders-table-col--status::before{content:"Статус заказа";display:block;font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;margin-bottom:4px}}@media screen and (max-width: 767px){.orders-table-mobile__number{font-family:Raleway;font-style:normal;font-weight:bold;padding:16px 0;font-size:21px;line-height:129.14%;text-align:center;letter-spacing:.01em;font-feature-settings:"pnum" on,"lnum" on;color:#282929;border-bottom:1px solid #dfe8ea}.orders-table-mobile__date{font-family:Roboto;font-style:normal;font-weight:normal;padding:16px 0;font-size:16px;line-height:170%;letter-spacing:.01em;color:#a0a6ad;border-bottom:1px solid #e0e7e9}.orders-table-mobile__created-at,.orders-table-mobile__payment,.orders-table-mobile__address,.orders-table-mobile__pickup-address,.orders-table-mobile__restaurant-address,.orders-table-mobile__delivery-time,.orders-table-mobile__visit-time,.orders-table-mobile__comment,.orders-table-mobile__phone,.orders-table-mobile__real-amount,.orders-table-mobile__discount_amount,.orders-table-mobile__bonus_amount,.orders-table-mobile__delivery-type,.orders-table-mobile__certificate,.orders-table-mobile__service_fee_amount,.orders-table-mobile__delivery-price,.orders-table-mobile__total{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;padding:16px 0;border-bottom:1px solid #e0e7e9}.orders-table-mobile__created-at::before,.orders-table-mobile__payment::before,.orders-table-mobile__address::before,.orders-table-mobile__pickup-address::before,.orders-table-mobile__restaurant-address::before,.orders-table-mobile__delivery-time::before,.orders-table-mobile__visit-time::before,.orders-table-mobile__comment::before,.orders-table-mobile__phone::before,.orders-table-mobile__real-amount::before,.orders-table-mobile__discount_amount::before,.orders-table-mobile__bonus_amount::before,.orders-table-mobile__delivery-type::before,.orders-table-mobile__certificate::before,.orders-table-mobile__service_fee_amount::before,.orders-table-mobile__delivery-price::before,.orders-table-mobile__total::before{display:block;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:10px}.orders-table-mobile__total{display:flex;align-items:baseline;padding:24px 0}.orders-table-mobile__total::before{content:"Итого:";display:block;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:10px;order:-2;flex-shrink:0}.orders-table-mobile__total::after{content:"";order:-1;flex-grow:1;border-bottom:1px dashed #dbdedf}.orders-table-mobile__total>span{flex-shrink:0;font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;line-height:19px;letter-spacing:.01em;color:#282929}.orders-table-mobile__created-at::before{content:"Время создания заказа"}.orders-table-mobile__address::before{content:"Адрес доставки"}.orders-table-mobile__pickup-address::before{content:"Самовывоз из ресторана"}.orders-table-mobile__restaurant-address::before{content:"Адрес ресторана"}.orders-table-mobile__payment::before{content:"Оплата"}.orders-table-mobile__delivery-price::before{content:"Стоимость доставки"}.orders-table-mobile__visit-time::before{content:"Время посещения"}.orders-table-mobile__delivery-time::before{content:"Время доставки"}.orders-table-mobile__visit-time::before{content:"Время посещения"}.orders-table-mobile__comment::before{content:"Комментарий к заказу"}.orders-table-mobile__phone::before{content:"Номер телефона получателя"}.orders-table-mobile__real-amount::before{content:"Стоимость заказа"}.orders-table-mobile__discount_amount::before{content:"Ваша скидка"}.orders-table-mobile__bonus_amount::before{content:"Оплата бонусами"}.orders-table-mobile__certificate::before{content:"Оплата подарочным сертификатом"}.orders-table-mobile__service_fee_amount::before{content:"Сервисный сбор"}.orders-table-mobile__delivery-type::before{content:"Способ доставки"}.orders-table-mobile__bonus{padding:16px 0;border-bottom:1px solid #e0e7e9}.orders-table-mobile__status{margin-bottom:20px}.orders-table-mobile__status::before{content:"Статус заказа";display:block;font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#282929}.orders-table-mobile__status-no-paid{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#e97d65}}@media screen and (max-width: 767px){.orders-table-ingredients{background:none;border-radius:0;padding:0}.orders-table-ingredients::before{content:"Ваш заказ";font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;display:block;padding:16px 0}.orders-table-ingredients .ingredients-item{padding:16px 0;border-bottom:1px solid #e0e7e9}.orders-table-ingredients .ingredients-item__image,.orders-table-ingredients .ingredients-item__title{margin-right:8px}.orders-table-ingredients .ingredients-item__main{padding:0}.orders-table-ingredients .ingredients-item__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:14px;line-height:16px;letter-spacing:.01em;color:#282929;padding:0}}@media screen and (max-width: 767px){.orders-table .dropdown{display:none;max-height:100vh !important}.orders-table .dropdown-content{padding:0 15px;max-height:calc(100vh - 60px);overflow-y:auto}}@media screen and (max-width: 767px){.orders-table .dropdown-block{padding:20px 15px;border:1px solid #e0e7e9;border-radius:8px;margin-bottom:8px}.orders-table .dropdown-block:last-child{margin-bottom:0}.orders-table .dropdown-block input[type=checkbox]:checked+label{position:relative;z-index:5}.orders-table .dropdown-block input[type=checkbox]:checked~.dropdown{display:block;position:fixed;z-index:99999;height:100vh;left:0;top:0;right:0;bottom:0;background:#fff}}@media screen and (max-width: 767px){.orders-table__number{flex-grow:1;font-family:Roboto;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:25px;display:flex;align-items:baseline}.orders-table__number>span{flex-shrink:0}.orders-table__number::after{content:"";flex-grow:1;border-bottom:1px dashed #dbdedf}}@media screen and (max-width: 767px){.orders-table__bonus-dead{width:100%;font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;line-height:150%;margin-top:3px}}@media screen and (max-width: 767px){.orders-table .bonus-count,.orders-table .cart-total__preorder--num{font-size:15px;line-height:18px}.orders-table .bonus-count--minus{background:#eaf2f2;color:#777c83}}.notice-copy-order-number{width:288px;padding:16px 24px;font-family:"Raleway";font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;display:flex;align-items:center;text-align:center;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;background-color:#f6f8f8;box-shadow:0px 0px 18px rgba(117,128,129,.38);border-radius:6px;margin-top:5px;position:absolute;display:flex;justify-content:center;opacity:1;transition:opacity 5s}@media screen and (max-width: 575px){.notice-copy-order-number{width:calc(100vw - 34px);margin:-15px}}.notice-copy-order-number__end{opacity:0}@media screen and (max-width: 767px){.modal__body>.notice-copy-order-number{width:calc(100vw - 32px);margin:-30px 16px 0 16px;z-index:3}}.icon-copy{color:transparent !important;transform:unset !important;margin-left:5px !important;width:13px !important;height:13px !important}.icon-copy use{stroke:#c8ced0}.pagination{display:flex;align-items:center;margin-top:24px}.pagination-btn{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;width:32px;height:32px;color:#c0cbd2;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 12px;cursor:pointer}.pagination-btn:first-child{margin-left:0}.pagination-btn:last-child{margin-right:0}.pagination-btn .icon{color:inherit}.pagination-btn:hover,.pagination-btn:focus{color:#777c83;background:#dfe8ea}.pagination-count{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;line-height:105.66%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on}.pagination-count__as{color:#3e4142}.pagination-count__of{color:#959ca3}.cart-page .head{margin-bottom:16px}.cart-page .border-block{margin-bottom:25px}.cart-page .border-block .subtitle{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 768px){.cart-page .border-block{margin-bottom:36px;padding:15px 48px}.cart-page .border-block .subtitle{margin-bottom:19px}}.cart-page .title--level-4{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 767px){.cart-page .title--level-4{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.cart-page .title--level-1{margin-bottom:32px}@media screen and (min-width: 768px){.cart-page .title--level-1{margin-bottom:29px}}@media screen and (max-width: 767px){.cart-page{padding:0;margin-bottom:0}}.cart-list{margin-bottom:20px;position:relative}@media screen and (min-width: 768px){.cart-list{margin-bottom:25px}}.cart-list:last-child{margin-bottom:0}.cart-list__loader{position:absolute;display:flex;flex-direction:column;background-color:#fff;width:100%;height:100%;align-items:center;justify-content:center;opacity:.5;z-index:2}.cart-list .basket-item{border-top:0}.cart-list .basket-item__container{border-bottom:1px solid #e0e7e9;padding:24px 0}@media screen and (min-width: 768px){.cart-list .basket-item__container{padding:16px 0}}.cart-list .basket-item__container:last-of-type{border-bottom:unset}.cart-list .basket-item:last-child{border-color:transparent}.cart-list .basket-item__info{padding-right:45px}.cart-list .basket-item__title:not(:last-child){margin-bottom:4px}.cart-list .basket-item__title:hover{cursor:pointer}.cart-list .basket-item__addition{cursor:pointer}.cart-list .basket-item__image:hover{cursor:pointer}.cart-list .basket-item__delete{width:32px;height:32px;top:19px;right:16px}.cart-list .basket-item__delete:hover{width:32px;height:32px}.cart-list .basket-item__delete>.close{right:10px;top:10px}@media screen and (min-width: 768px){.cart-list .basket-item{display:flex;align-items:center;justify-content:space-between}.cart-list .basket-item__head{margin-bottom:0;flex-basis:60%;flex-grow:0;flex-shrink:0;align-items:center}.cart-list .basket-item__image{width:96px;height:80px !important;border-radius:8px;margin-right:32px}.cart-list .basket-item__info{padding-right:16px}.cart-list .basket-item__delete{position:relative;top:auto;right:auto;width:32px;height:32px;flex-shrink:0}.cart-list .basket-item__delete>.close{right:8px;top:8px}.cart-list .basket-item__sum{margin-left:20px;order:2;flex-basis:70px}.cart-list .basket-item__total{margin-left:32px;flex-basis:24%;min-width:195px;flex-direction:row-reverse}.cart-list .basket-item .head{margin-bottom:25px}}.cart-list--business .basket-item__title,.cart-list--business .basket-item__addition,.cart-list--business .basket-item__image{cursor:initial}.cart-bonus{display:none;border-top:1px solid #e0e7e9;border-bottom:1px solid #e0e7e9;padding:16px 0;margin-bottom:16px}@media screen and (max-width: 767px){.cart-bonus{display:block}}.cart-bonus__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}.cart-bonus__counts{display:flex}.cart-bonus .bonus-count,.cart-bonus .cart-total__preorder--num{font-size:15px;line-height:160%}.cart-total{background:#f6f8f8;margin:0;padding:32px 48px;border-radius:8px;display:flex;flex-direction:column;margin-bottom:12px}.cart-total__offline .cart-total__sum{font-size:18px}@media screen and (max-width: 767px){.cart-total{padding:12px 16px;margin:0 -16px;border-radius:0;margin-bottom:12px}}.cart-total__container{display:flex;align-items:center;justify-content:space-between;gap:32px}@media screen and (max-width: 767px){.cart-total__container{gap:16px;justify-content:space-between;align-items:flex-start}}.cart-total__preorder--num{background:#4cbbbb;font-weight:500}.cart-total__mb{margin-bottom:25px !important}@media screen and (max-width: 767px){.cart-total__mb{margin-bottom:36px !important}}.cart-total_GPayMobile{flex-wrap:wrap;justify-content:space-around}.cart-total__sum{display:flex;color:#282929;font-size:18px;font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px}@media screen and (max-width: 767px){.cart-total__sum{flex-wrap:wrap;margin-right:10px}}@media screen and (min-width: 1124px){.cart-total__sum{font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:.03em;line-height:28px}}.cart-total__sum-wrapper{display:flex;align-items:center;margin-right:10px}@media screen and (min-width: 360px){.cart-total__sum-wrapper{margin-right:20px}}@media screen and (min-width: 1024px){.cart-total__sum-wrapper{margin-right:35px}}.cart-total__sum-wrapper--button{padding:7px 12px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;line-height:170%;display:flex;align-items:center;text-align:center;letter-spacing:.01em;color:#fff;background:linear-gradient(107.67deg, #ffc975 0%, #ffbd59 103.27%);border-radius:32px;overflow:hidden}.cart-total__sum-wrapper--button.ml{margin-left:24px}.cart-total__sum-wrapper--crossed{position:relative;margin-right:35px}.cart-total__sum-wrapper--crossed:after{content:"";position:absolute;height:1px;width:calc(100% + 15px);left:-10px;top:50%;transform:translateY(-50%);background-color:#c0cbd2}.cart-total__sum-wrapper--crossed .cart-total__sum-count{color:#777c83;font-weight:normal}.cart-total__sum-wrapper--crossed .rub{color:#c0cbd2;font-weight:300}@media screen and (max-width: 1023px){.cart-total__sum-wrapper--crossed{margin-right:0}}.cart-total__sum-desc{display:none;margin-right:10px;font-family:Raleway;font-style:normal;font-weight:SemiBold;line-height:28px;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 1024px){.cart-total__sum-desc{display:flex;align-items:center}}.cart-total__sum-count{font-family:Roboto;font-style:normal;font-weight:500;line-height:21px;display:flex;align-items:center;letter-spacing:.03em;white-space:nowrap}@media screen and (min-width: 1024px){.cart-total__sum-count{font-family:Roboto;font-style:normal;font-weight:900;line-height:28px}}.cart-total__sum .rub{font-size:inherit}.cart-total__bonus,.cart-total__preorder{display:none}.cart-total__bonus-desc{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;color:#a3a6a9}@media screen and (max-width: 767px){.cart-total__bonus-desc{font-size:12px}}@media screen and (min-width: 818px){.cart-total__bonus,.cart-total__preorder{display:flex;align-items:center;margin:0 20px}.cart-total__bonus .bonus-count,.cart-total__preorder .bonus-count,.cart-total__bonus .cart-total__preorder--num,.cart-total__preorder .cart-total__preorder--num{font-size:16px;padding:4px 10px}}@media screen and (min-width: 1074px){.cart-total__bonus,.cart-total__preorder{margin:0 auto 0 58px}}@media screen and (max-width: 767px){.cart-total .btn--primary{padding:4px 14px}}.cart-total__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#a3a6a9;display:flex;gap:8px}.cart-total__text svg{margin-top:4px;min-width:14px;min-height:14px}@media screen and (max-width: 767px){.cart-total__text{font-size:12px}}.subtitle_cart{font-weight:600;font-size:16px;line-height:19px}@media screen and (min-width: 1024px){.subtitle_cart{font-weight:600;font-size:18px;line-height:130%}}.cart-location{max-width:593px;display:flex;flex-direction:column;gap:16px;border-radius:20px;border-bottom-left-radius:16px;border-bottom-right-radius:16px;background-color:#f6f8f8}@media screen and (max-width: 1279px){.cart-location{padding:16px}}@media screen and (max-width: 767px){.cart-location{padding:0;max-width:unset}}.cart-location__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:8px}.cart-location__info{display:flex;flex-direction:column;gap:8px;padding:24px 16px;padding-top:0}@media screen and (max-width: 1199px){.cart-location__info{padding:0}}@media screen and (max-width: 767px){.cart-location__info{padding:16px 8px;padding-top:0}}.cart-location__selector{display:contents}.cart-location__selector .form-input__message{font-weight:400}.cart-location__address{display:flex;flex-direction:row;gap:10px;font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;align-items:center;flex-wrap:wrap}@media screen and (max-width: 767px){.cart-location__address{flex-direction:column;align-items:flex-start}}.cart-location__gray{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.cart-location__advantages{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83;display:flex;flex-direction:row;gap:10px;align-items:center}.cart-location__buttons{background-color:#dfe8ea}@media screen and (max-width: 1199px){.cart-location__buttons{max-width:303px}}@media screen and (max-width: 767px){.cart-location__buttons{max-width:unset}}.cart-location__buttons button{flex-basis:auto;width:130px}.cart-location__buttons .city-selector__delivery-active{background-color:#56c4c4}.cart-location .form-input{margin-bottom:0;min-width:100%}.cart-location .booking-restaurant{margin-top:24px;gap:16px}.cart-location .booking-restaurant__img{flex-basis:66%;min-height:142px;max-height:142px}@media screen and (max-width: 767px){.cart-location .booking-restaurant__img{flex-basis:calc(100% - 160px)}}.cart-booking__items{display:flex;flex-direction:column;gap:8px}.cart-booking__item{display:flex;flex-direction:column}.cart-booking__row{display:grid;grid-template-columns:1fr 100px 107px;color:#282929;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.cart-booking__amount{font-weight:700}.cart-booking__comment{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.cart-booking__end{text-align:end}.cart-header{margin-bottom:16px}@media screen and (max-width: 767px){.cart-header{padding:0 16px;margin-bottom:29px}}@media screen and (max-width: 767px){.cart-order{background-color:#fafbfc;padding:16px;border-radius:16px}}@media screen and (max-width: 767px){.cart-cutlery{padding:0 16px}}.cart-cutlery__subtitle{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.cart-cutlery .head{gap:16px;justify-content:unset;align-items:flex-end}@media screen and (max-width: 767px){.cart-cutlery .head{flex-direction:column;gap:8px;align-items:unset;margin-bottom:12px}}@media screen and (max-width: 767px){.cart-suggestions{padding:16px;border-radius:16px;box-shadow:0px 0px 19px 0px #9fcccf4d}}.cart-suggestions__subtitle{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.cart-suggestions .head{gap:16px;justify-content:unset;align-items:flex-end}@media screen and (max-width: 767px){.cart-suggestions .head{flex-direction:column;gap:8px;align-items:unset;margin-bottom:12px}}.cart--body{display:grid;grid-template-columns:1fr 344px;gap:32px}@media screen and (max-width: 1279px){.cart--body{display:flex;flex-direction:column-reverse;gap:40px}}.cart--body-content{display:flex;flex-direction:column;gap:24px}@media screen and (max-width: 767px){.cart--body-content{gap:32px}}.cart--body-block,.offline-block{padding:32px;border:1px solid #e0e7e9;border-radius:16px;margin-bottom:24px}@media screen and (max-width: 767px){.cart--body-block,.offline-block{border:unset;border-radius:unset;padding:0}}.cart--body-sidebar{display:flex;gap:16px;flex-direction:column;max-width:344px;width:344px;position:relative}@media screen and (max-width: 1279px){.cart--body-sidebar{max-width:593px;width:593px}}@media screen and (max-width: 767px){.cart--body-sidebar{max-width:unset;width:unset;padding:0 16px}}.cart--body-sidebar .booking-restaurant__img{flex-basis:50%}@media screen and (max-width: 1279px){.cart--body-sidebar .booking-restaurant__img{flex-basis:66%}}.cart--body-sticky{position:sticky;top:calc(88px + 14px)}@media screen and (max-width: 1279px){.cart--body-sticky{display:none}}.cart--body-sticky .cart-footer__total-row{align-items:center}.cart--body-sticky .cutlery-warning{cursor:pointer}.cart--body-end{background-color:#f6f8f8;border-radius:16px;margin-bottom:16px}.cart--body-end__top{padding:16px;padding-bottom:0;border-bottom:1px solid #e0e7e9}.cart--body-end__top .present-list{flex-direction:column}.cart--body-end__top .present-list .basket-item{max-width:100%}.cart--body-end__bottom{padding:24px 16px 20px 16px}.cart--body-end .cart--total{margin-bottom:16px}.cart--body-end__preorder{display:flex;gap:6px;align-items:center;margin-bottom:4px}.cart--body-end__preorder-title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.cart--body-end__preorder-count{background:#4cbbbb;color:#fff;border-radius:32px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:2px 12px}.cart--body-end__button button{width:100%;min-height:56px}.cart--body-end__delivery{text-align:center;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83;margin-top:16px}.cart-footer{background-color:#f6f8f8;border-radius:16px}@media screen and (max-width: 767px){.cart-footer{border-bottom-left-radius:unset;border-bottom-right-radius:unset}}.cart-footer__sticky{position:sticky;bottom:0;border-bottom-left-radius:unset;border-bottom-right-radius:unset;z-index:3;background-color:rgba(246,248,248,.8);backdrop-filter:blur(30px)}@media screen and (max-width: 767px){.cart-footer__sticky{margin:unset;border-top-left-radius:unset;border-top-right-radius:unset}}.cart-footer__sticky .cart-footer__bottom{padding-top:16px;padding-bottom:16px}@media screen and (max-width: 767px){.cart-footer__sticky .cart-footer__bottom{padding-top:8px;padding-bottom:8px}}.cart-footer__sticky .cart-footer__total-row{align-items:center}.cart-footer__sticky .cutlery-warning{cursor:pointer}.cart-footer__top{padding:16px 32px;border-bottom:1px solid #e0e7e9}@media screen and (max-width: 575px){.cart-footer__top{padding:16px}}.cart-footer__bottom{padding:32px}.cart-footer__bottom .cutlery-warning{margin-top:16px;cursor:pointer}@media screen and (max-width: 767px){.cart-footer__bottom{padding:16px}}@media screen and (max-width: 575px){.cart-footer__bottom .cart--total{display:flex;align-items:center;justify-content:space-between;width:100%}}.cart-footer__error{display:grid;grid-template-columns:24px 1fr;gap:10px;align-items:center;margin-bottom:16px}.cart-footer__error svg{width:24px;height:24px}.cart-footer__error-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3;color:#777c83}.cart-footer__row{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.cart-footer__row{align-items:flex-end}}.cart-footer__amount{display:flex;flex-direction:row;gap:8px;align-items:flex-end}@media screen and (max-width: 767px){.cart-footer__amount{flex-direction:column-reverse;align-items:flex-start;gap:3px}}.cart-footer__total{display:flex;gap:32px;align-items:center}@media screen and (max-width: 767px){.cart-footer__total{display:flex;flex-direction:column-reverse;align-items:flex-start;gap:10px}.cart-footer__total .cart--total{display:flex;flex-direction:column-reverse}}@media screen and (max-width: 575px){.cart-footer__total{width:100%}}.cart-footer__total-text{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.cart-footer__total-row{display:flex;flex-direction:row;gap:8px;align-items:flex-end}@media screen and (max-width: 575px){.cart-footer__total-row{justify-content:space-between;width:100%}}.cart-footer__total-column{display:flex;flex-direction:column;justify-content:center;width:100%}.cart-footer__total-column .progress-bar__wrapper{max-width:400px}.cart-footer__delivery{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83;margin-top:10px}.cart-footer__buttons{display:flex;flex-direction:row;align-items:center;gap:24px}.cart-footer__btn-promocode{color:#777c83;cursor:pointer;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;text-decoration:unset;padding:0;background-color:transparent;border:unset}.cart--bonus{display:flex;gap:6px;align-items:center;margin-bottom:4px}.cart--bonus-title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.cart--bonus-count{background:linear-gradient(107.67deg, #ffc975 0%, #ffbd59 103.27%);color:#fff;border-radius:32px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:2px 12px}.cart--total{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.cart--total .rub{font-weight:700;color:#282929}.cart--total .btn{min-height:56px}@media screen and (max-width: 767px){.cart--total .btn{min-width:208.5px}}.cart--price{font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:.03em;line-height:28px}.cart--price__cancel{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:19px;text-decoration:line-through;color:#777c83}.cart--item__wrapper{display:flex;flex-direction:column;margin-bottom:24px}@media screen and (max-width: 767px){.cart--item__wrapper{margin-bottom:0;border-top:1px solid #e0e7e9;padding-bottom:25px;padding-top:8px}}.cart--item__wrapper:last-of-type{margin-bottom:0}.cart--item__disabled .cart--item__img,.cart--item__disabled .cart--item__title,.cart--item__disabled .cart--item__count.count,.cart--item__disabled .cart--item__price{opacity:.5;pointer-events:none}.cart--item__container{display:flex;align-items:flex-start;position:relative}.cart--item__content{display:flex;gap:24px}.cart--item__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:4px;width:calc(100% - 16px)}.cart--item__info{display:flex;flex-direction:column;gap:12px}@media screen and (max-width: 767px){.cart--item__info{gap:8px}}.cart--item__row{display:flex;justify-content:space-between;width:100%;align-items:flex-start;margin-bottom:12px}@media screen and (max-width: 767px){.cart--item__row{flex-direction:column;margin-bottom:17px}}.cart--item__column{display:flex;flex-direction:column;width:100%}.cart--item__img{width:175px;min-width:175px;height:120px;flex-shrink:0;border-radius:8px;overflow:hidden;position:relative;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:auto 75%;background-repeat:no-repeat;margin-right:24px}@media screen and (max-width: 767px){.cart--item__img{width:56px;min-width:56px;height:48px;margin-right:8px}}.cart--item__img img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.cart--item__comment{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}.cart--item__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px;color:#282929}.cart--item__price .rub{color:#b1b9bd}.cart--item__total{display:flex;flex-direction:row;gap:22.5px;align-items:center;justify-content:space-between}@media screen and (max-width: 767px){.cart--item__total{width:100%;margin-top:17px}}.cart--item__count .count__btn{color:#b1b9bd}.cart--item__count .count__num input{font-family:Roboto;font-style:normal;font-weight:600;font-size:18px;letter-spacing:.01em;line-height:1.6;color:#282929}.cart--item__trash{display:flex;align-items:center;justify-content:space-between;width:32px;height:32px}@media screen and (max-width: 767px){.cart--item__trash{position:absolute;top:0;right:0;justify-content:flex-end}}.cart--item__trash button{color:#e3eaec;background-color:transparent;border:unset;transition:all .3s ease;padding:0}.cart--item__trash button:hover{color:#31bbbb;cursor:pointer}.cart--item__addition{display:grid;grid-template-columns:18px 1fr;gap:4px;color:#f9694a;font-family:Raleway;font-style:normal;font-weight:bold;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;align-items:center;text-transform:uppercase;line-height:106%;cursor:pointer}.cart--item__addition-empty{color:#4cbbbb}.cart--item__addition-text{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;text-transform:none;align-items:flex-start}.cart--item__inactive{display:flex;gap:8px}.cart--item__inactive-text{display:grid;grid-template-columns:18px 1fr;gap:8px;color:#e97d65;align-items:flex-start}.cart--suggestions__wrapper{display:flex;padding-bottom:24px;border-bottom:1px solid #e0e7e9;padding-top:10px}.cart--suggestions__wrapper:last-of-type{border:unset;padding-bottom:0}@media screen and (max-width: 767px){.cart--suggestions__wrapper-empty .cart--suggestions__row{width:auto;margin-top:0}}@media screen and (max-width: 767px)and (max-width: 767px){.cart--suggestions__wrapper-empty .cart--suggestions__content{display:flex}}.cart--suggestions__img{width:96px;min-width:96px;height:80px;flex-shrink:0;border-radius:8px;overflow:hidden;position:relative;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:auto 75%;background-repeat:no-repeat;margin-right:32px}@media screen and (max-width: 767px){.cart--suggestions__img{width:56px;min-width:56px;height:48px;margin-right:8px}}.cart--suggestions__img img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.cart--suggestions__content{display:flex;width:100%;justify-content:space-between;gap:32px;align-items:center}.cart--suggestions__content .btn{min-height:48px}@media screen and (max-width: 767px){.cart--suggestions__content{display:block;gap:12px}}.cart--suggestions__row{display:flex;justify-content:space-between;gap:49px;align-items:center;min-width:317px;width:100%;max-width:317px}@media screen and (max-width: 767px){.cart--suggestions__row{min-width:unset;margin-top:13px;max-width:unset;gap:0}}.cart--suggestions__row .btn__span{font-size:13px;line-height:13.74px}.cart--suggestions__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.cart--suggestions__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}.popup--basket .cart--item__container,.basket--checkout .cart--item__container{display:block}.popup--basket .cart--item__img,.basket--checkout .cart--item__img{width:48px;min-width:48px;height:48px;margin-right:8px}.popup--basket .cart--item__content,.basket--checkout .cart--item__content{margin-bottom:8px}.popup--basket .cart--item__trash,.basket--checkout .cart--item__trash{position:absolute;top:0;right:0;width:auto;height:auto}.popup--basket .cart--item__container,.basket--checkout .cart--item__container{display:flex}.popup--basket .cart--item__row,.basket--checkout .cart--item__row{flex-direction:column;gap:17px}.popup--basket .cart--item__total,.basket--checkout .cart--item__total{width:100%}.popup--basket .cart--item__title,.basket--checkout .cart--item__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.popup--basket .cart--item__info,.basket--checkout .cart--item__info{gap:8px}@media screen and (max-width: 1023px){.checkout-page .cart-total__container{flex-direction:column;align-items:center}}.present{margin-bottom:24px}@media screen and (min-width: 768px){.present{margin-bottom:34px}}.present__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:25px}.present .radio-check-box--toggle{margin-bottom:22px;display:inline-flex}@media screen and (min-width: 768px){.present .radio-check-box--toggle{margin-bottom:10px;display:inline-flex}}.present .radio-check-box{margin-bottom:10px}.present .radio-check-box input[type=checkbox]+.radio-check-box__label{padding-left:23px;padding-top:1px}.present-list{background:transparent;position:relative;margin-bottom:8px}@media screen and (min-width: 768px){.present-list{display:flex;flex-wrap:wrap;margin-top:-8px}.present-list>*{flex-basis:calc((100% - 32px) / 2 - 1px);max-width:calc((100% - 32px) / 2 - 1px);margin:8px 32px 8px 0}}@media screen and (min-width: 768px)and (max-width: 1023px){.present-list>*:nth-child(2n){margin-right:0}}@media screen and (min-width: 1024px){.present-list>*{flex-basis:calc((100% - 32px * 2) / 3 - 1px);max-width:calc((100% - 32px * 2) / 3 - 1px)}.present-list>*:nth-child(3n){margin-right:0}}.present-list--disabled .basket-item__radio-check-box{pointer-events:none}.present-list--disabled .basket-item__title,.present-list--disabled .basket-item__addition{color:#d4d4d4}.present-list .basket-item{border:none;background:none;padding:0}@media screen and (max-width: 767px){.present-list .basket-item:not(:last-child){margin-bottom:28px}}@media screen and (min-width: 768px){.present-list .basket-item{display:flex;flex-direction:column}}.present-list .basket-item__radio-check-box{background:#fff;border-radius:8px;border:1px solid #e0e7e9;padding:0 0 0 16px;margin-bottom:6px}.present-list .basket-item__radio-check-box:hover,.present-list .basket-item__radio-check-box:focus{box-shadow:0 0 19px rgba(159,204,207,.27);border-color:transparent}.present-list .basket-item__radio-check-box label{padding:16px 16px 16px 32px !important}.present-list .basket-item__head{margin-bottom:0;justify-content:flex-start;align-items:center}.present-list .basket-item__addition{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.present-list .basket-item__image{margin-right:16px}.extra-list{position:relative}@media screen and (min-width: 768px){.extra-list{display:flex;flex-wrap:wrap;margin-top:-8px;margin-bottom:-8px}.extra-list>*{flex-basis:calc((100% - 56px) / 2 - 1px);max-width:calc((100% - 56px) / 2 - 1px);margin:8px 56px 8px 0}}@media screen and (min-width: 768px)and (max-width: 1023px){.extra-list>*:nth-child(2n){margin-right:0}}@media screen and (min-width: 1024px){.extra-list>*{flex-basis:calc((100% - 56px * 2) / 3 - 1px);max-width:calc((100% - 56px * 2) / 3 - 1px)}.extra-list>*:nth-child(3n){margin-right:0}}.extra-list .basket-item{border-bottom:1px solid #e0e7e9;border-top:0}.extra-list .basket-item__title{display:block;margin-bottom:5px}.extra-list .basket-item__addition{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}@media screen and (min-width: 768px){.extra-list .basket-item{background:#f6f8f8;border-radius:8px;border:0;padding:16px;display:flex;flex-direction:column}.extra-list .basket-item__sum{order:2}.extra-list .basket-item__image{width:48px;height:40px;margin-right:8px}.extra-list .basket-item__total{margin-top:auto}}.addition-list{display:flex;flex-direction:column;margin:0 -16px;padding:0 8px 16px}.mobile-show .addition-list{padding:0 0 16px;overflow-x:auto}.addition-list__container{display:flex;padding:0 16px;max-width:none;min-width:-moz-max-content;min-width:max-content}@media screen and (min-width: 768px){.addition-list{margin-bottom:40px}.addition-list .slick-slider{padding-bottom:32px;border-bottom:1px solid #e0e7e9}.addition-list .slick-slider .slick-list{position:relative}.addition-list .slick-slider .slick-list::after{content:"";position:absolute;display:block;height:100%;width:0;top:0;left:100%;box-shadow:0 0 20px 20px #fff}}.addition-list .slick-slider{width:100%}.addition-list .slick-slider .slick-track{padding:16px;min-width:100%}.addition-list .slick-slider .slick-list{padding:0 8px}.addition-list .slick-slider .addition-item{margin:0}.addition-list .slick-slider .slick-slide{margin-right:8px;align-self:stretch;height:auto;display:flex;align-items:stretch;flex-basis:176px;min-width:176px}.addition-list .slick-slider .slick-slide>div{display:flex;align-items:stretch}@media screen and (min-width: 768px){.addition-list .slick-slider .slick-slide{margin-right:32px}}@media screen and (max-width: 767px){.addition-list .slick-slider .slick-arrow{display:none !important}}.addition-list .slick-slider .slick-next{background-image:url("/images/arrow-right-gray.svg");right:-22px}.addition-list .slick-slider .slick-prev{background-image:url("/images/arrow-left-gray.svg");left:-22px}.addition-item{margin:0 4px;display:flex !important;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:176px;max-width:176px;background:#fff;box-shadow:0 0 19px rgba(159,204,207,.27);border-radius:8px;padding-bottom:16px;width:100%}.addition-item__basket{position:absolute;top:5px;right:5px}.addition-item__weight{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;line-height:1;position:absolute;top:5px;left:5px;color:#777c83;background:#fff;border-radius:12px;padding:2px 8px}@media screen and (min-width: 768px){.addition-item__weight{top:14px;left:14px}}.addition-item__image{position:relative;margin-bottom:10px;width:100%;height:104px !important;overflow:hidden;border-radius:8px 8px 0 0}.addition-item__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-width:none}.addition-item__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px;letter-spacing:.01em;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:10px;text-align:center;padding:0 16px}.addition-item__price{font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;line-height:19px;letter-spacing:.03em;color:#424242;margin-top:auto;margin-bottom:14px;text-align:center}@media screen and (min-width: 768px){.addition-item{margin:0 16px;border:1px solid #e0e7e9;box-shadow:none}.addition-item:hover{box-shadow:0 0 19px rgba(159,204,207,.27);border-color:#fff}.addition-item__weight{top:5px;left:5px}.addition-item__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.addition-item__image{margin-bottom:15px}}.cutlery__count{display:flex;align-items:center;justify-content:space-between;max-width:330px;margin-bottom:16px;margin-top:41px}.cutlery__count>span{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-right:10px}.cutlery__sum{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;color:#424242;line-height:21.09px;letter-spacing:.03;order:2}.cutlery__sum .preloader-spinner{width:25px;height:25px;display:flex;position:unset;margin-left:calc(48px / 2 - 13px);position:relative;transform:unset;top:unset;left:unset}.cutlery__sum .preloader-spinner::after{position:relative}.cutlery__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.cutlery__total{display:flex;align-items:flex-start;justify-content:space-between;flex-direction:row-reverse;font-size:18px;min-height:50px}@media screen and (max-width: 1024px){.cutlery__total{min-height:unset}}.cutlery__total-empty{justify-content:flex-end}.cutlery__item{display:flex;flex-direction:column;gap:12px;background-color:#fff;flex-basis:calc((100% - 96px) / 4)}@media screen and (max-width: 1023px){.cutlery__item{border-bottom:1px solid #e0e7e9;border-radius:unset;gap:4px;padding-bottom:20px;flex-basis:1;max-width:unset}.cutlery__item:last-of-type{border-bottom:unset}}@media screen and (max-width: 767px){.cutlery__item{padding-top:12px;padding-bottom:12px}}@media screen and (max-width: 1023px){.cutlery__item-empty{flex-direction:row;justify-content:space-between;display:flex}}.cutlery__head{display:flex;gap:16px}.cutlery__image{width:48px;height:48px;border-radius:12px;background-color:#56c4c4;display:flex;align-items:center;justify-content:center;min-width:48px}.cutlery__image-gray{background-color:#f6f8f8}.cutlery .title--level-4{font-weight:600;font-size:18px;line-height:130%}.cutlery .radio-check-box--toggle{margin-bottom:24px}.cutlery .radio-check-box{margin-bottom:11px;padding:0px}.cutlery .radio-check-box input[type=checkbox]+.radio-check-box__label{padding-left:23px;padding-top:1px}.cutlery .reminder-cutlery{display:flex;align-items:center}.cutlery .reminder-cutlery label{margin-bottom:0px}.cutlery .reminder-cutlery span{margin-bottom:0px}.cutlery .reminder-cutlery .title--level-4{margin-right:24px}@media screen and (max-width: 767px){.cutlery .reminder-cutlery{display:block}.cutlery .reminder-cutlery .title--level-4{margin-bottom:18px}.cutlery .reminder-cutlery label{margin-bottom:26px}}.cutlery__block{display:flex;margin-bottom:24px}.cutlery__block .title--level-4{margin-right:24px}@media screen and (max-width: 767px){.cutlery__block{display:block}.cutlery__block span{margin-right:6px}}.cutlery__with-icon{display:flex;align-items:center}.cutlery__with-icon .radio-check-box{margin-bottom:0px;align-items:flex-end;padding:0px}.cutlery__with-icon .icon{margin-left:5px;width:19px;height:19px;margin-top:4px}.cutlery-warning{display:grid;grid-template-columns:24px 1fr;gap:8px;color:#ff9a00;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3;align-items:center;text-decoration:unset}@media screen and (max-width: 767px){.cutlery-warning{background-color:#fff3df;padding:8px 16px}}.cutlery-list{display:flex;gap:32px;padding:16px;border:1px solid #e0e7e9;border-radius:16px}@media screen and (max-width: 1023px){.cutlery-list{flex-direction:column;gap:12px}}@media screen and (max-width: 767px){.cutlery-list{padding:0;border:unset}}.cutlery-list .basket-item__image{width:40px;height:40px !important;flex-shrink:0;background:none}.cutlery-list .basket-item__info{padding:0}.cutlery-list .basket-item__title{margin-bottom:5px}.cutlery-list .basket-item__addition{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;min-height:42px}.cutlery-list .basket-item__sum{order:2}.title--level-4_cutlery{font-weight:600;font-size:18px;line-height:130%}.cutlery_small{margin-bottom:41px}.cutlery_small .title--level-4_cutlery{display:none}.cutlery_small .radio-check-box--toggle{display:flex}.cutlery_small .radio-check-box--toggle:before{display:block;margin-right:15px;content:"Столовые приборы";font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.cutlery_small .cutlery-list{display:block}@media screen and (min-width: 1024px){.cutlery_small .cutlery-list .basket-item{flex-basis:auto;max-width:none;display:flex;padding:16px;border:1px solid #e0e7e9;box-sizing:border-box;border-radius:8px}.cutlery_small .cutlery-list .basket-item:not(:last-child){margin-bottom:16px}.cutlery_small .cutlery-list .basket-item__head{flex-grow:1}.cutlery_small .cutlery-list .basket-item__sum{width:90px;margin-left:20px}}.cutlery_small.cutlery_suggestion .radio-check-box--toggle:before{content:"Дополнительно"}.cutlery_small.cutlery_suggestion .subtitle.subtitle_cart{display:none}.cutlery_small.cutlery_suggestion .cart-list .basket-item__head{flex-grow:1}.cutlery_small.cutlery_suggestion .cart-list .basket-item__total{margin-left:0}.cutlery_small.cutlery_suggestion .cart-list .basket-item__sum{width:90px;margin-left:20px}.cutlery_small.cutlery_suggestion .basket-item__image{width:107px;height:66px !important}.modal .cutlery{margin-bottom:30px}.modal .cutlery .radio-check-box--toggle{margin-bottom:0}.modal .cutlery .cutlery-list{margin-top:20px}.modal .cutlery .cart-list{margin-top:4px}@media screen and (max-width: 1023px){.modal .cutlery .cart-list{padding-bottom:15px;border-top:1px solid #e0e7e9;border-bottom:1px solid #e0e7e9}}.modal .cutlery .cart-list .basket-item:last-child{padding-bottom:0}.modal .cutlery .cutlery__count{margin-bottom:30px}@media screen and (max-width: 1023px){.modal .cutlery .cutlery__count{max-width:none}}@media screen and (max-width: 1023px){.modal .cutlery .count,.modal .cutlery .count:not(.count_warning){padding:7px 25px;width:140px;border-radius:20px}}.checkout-list .border-block{position:relative;margin-bottom:16px}@media screen and (min-width: 768px){.checkout-list .border-block{padding:48px}}.checkout-list .border-block:last-child{margin-bottom:0}.checkout-list .border-block--payment .form-group{margin-bottom:12px}@media screen and (max-width: 767px){.checkout-list .border-block--payment .form-group .form-input{margin-bottom:12px}}.checkout-list .border-block--payment .form-group:last-child{margin-bottom:0}.checkout-list .border-block--payment .form-group label span{display:flex;align-items:flex-end}.checkout-list .border-block--payment .form-group .icon{margin-left:4px}@media screen and (min-width: 768px){.checkout-list .border-block--data{margin-bottom:48px}}@media screen and (max-width: 767px){.checkout-list .border-block--data form:not(:last-child){margin-bottom:20px}.checkout-list .border-block--data form:not(:last-child) .form-input{margin-bottom:10px}}.checkout-list .border-block--data .notification{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:14px}@media screen and (min-width: 768px){.checkout-list .border-block--data .notification{margin-bottom:20px}}.checkout-list .border-block--data .notification_small{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.checkout-list .border-block--mb-16{margin-bottom:0}@media screen and (min-width: 768px){.checkout-list .border-block--mb-16{margin-bottom:16px}}.checkout-list .border-block--discount .page__desc{margin:0}.checkout-list .border-block--border-bottom{padding-bottom:30px;border-bottom:1px solid #e0e7e9}.checkout-list .border-block--disabled{border-bottom:1px solid #e0e7e9;padding:30px 0}@media screen and (min-width: 768px){.checkout-list .border-block--disabled{padding:30px 47px;border:1px solid #d7dfe1;margin-bottom:8px}}.checkout-map__container{position:relative;margin-bottom:23px}.checkout-map{border:0;width:100%;height:100%;min-height:368px;border-radius:8px}.checkout-toggle{margin-bottom:24px;display:flex;align-items:center;gap:10px}@media screen and (min-width: 768px){.checkout-toggle{margin-top:32px}}@media screen and (max-width: 767px){.checkout-toggle{flex-direction:column;align-items:baseline}}.checkout-toggle h2{font-size:24px}@media screen and (max-width: 767px){.checkout-toggle h2{font-size:21px}}.checkout-toggle .city-selector__delivery{width:396px}@media screen and (max-width: 767px){.checkout-toggle .city-selector__delivery{width:100%}}.checkout-toggle .city-selector__delivery-button{flex-basis:50%}@media screen and (max-width: 767px){.checkout-toggle .city-selector__delivery-button{padding:0px}}.checkout-title{display:flex;flex-direction:column;margin-bottom:10px;gap:8px}@media screen and (min-width: 1024px){.checkout-title{margin-bottom:20px}}.checkout-booking__inputs{display:flex;flex-direction:row;gap:32px}@media screen and (max-width: 767px){.checkout-booking__inputs{flex-direction:column;gap:0}}.checkout-booking__column{display:grid;grid-template-columns:1fr 1fr;gap:16px}.checkout-booking__content{display:flex;flex-direction:column;gap:16px}.checkout-address__item:last-child .radio-check-box input[type=radio]+label{margin-bottom:0}.checkout-address__item .radio-check-box input[type=checkbox]+label,.checkout-address__item .radio-check-box input[type=radio]+label{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;display:flex;align-items:flex-start}.checkout-address__item .radio-check-box input[type=checkbox]+label::before,.checkout-address__item .radio-check-box input[type=radio]+label::before{top:4px}.checkout-address__item .radio-check-box input[type=checkbox]+label::after,.checkout-address__item .radio-check-box input[type=radio]+label::after{top:8px}.checkout-address__item .radio-check-box input[type=checkbox]+label>span,.checkout-address__item .radio-check-box input[type=radio]+label>span{margin-right:auto}.checkout-address__item .radio-check-box input[type=checkbox]+label .clear,.checkout-address__item .radio-check-box input[type=radio]+label .clear{margin-left:8px;flex-shrink:0}@media screen and (min-width: 768px){.checkout-address__item .radio-check-box input[type=checkbox]+label,.checkout-address__item .radio-check-box input[type=radio]+label{display:inline-flex;align-items:center}}.checkout-address__item .radio-check-box input[type=checkbox]:checked+label,.checkout-address__item .radio-check-box input[type=radio]:checked+label{color:#282929}.checkout-address__item .alert{max-width:472px}.checkout-address__item .new-card{padding-top:16px}.birthday-discount__title{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;line-height:128.91%;display:flex;align-items:center;letter-spacing:.03em;color:#777c83}@media screen and (min-width: 768px){.birthday-discount__title{margin-bottom:10px}}.birthday-discount__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83}@media screen and (min-width: 768px){.birthday-discount__text{margin-left:-25px}}.birthday-discount__footer{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;line-height:128.91%;display:flex;align-items:center;letter-spacing:.03em;margin-top:4px;margin-left:27px}@media screen and (min-width: 768px){.birthday-discount__footer{margin-left:0}}.checkout__amount{display:flex;justify-content:space-between}.checkout__amount .cart-total__bonus,.checkout__amount .cart-total__preorder{margin:0}.checkout__payment{display:none}@media screen and (max-width: 767px){.checkout__payment{display:block;border-top:1px solid #e0e7e9;border-bottom:1px solid #e0e7e9;padding:16px 0;margin-bottom:16px}}.checkout__payment-item{display:flex;align-items:center;gap:5px}.checkout__bonuses{display:block}@media screen and (max-width: 767px){.checkout__bonuses{display:none}}.checkout__amount-container{display:block}@media screen and (max-width: 1023px){.checkout__amount-container{width:100%}}.checkout__subscribe{margin-top:12px;padding-top:8px;border-top:1px solid #e3eaec}.checkout__subscribe .form-privacy-policy{margin-left:32px;margin-top:4px}.checkout-page .password__container{width:330px}@media screen and (max-width: 767px){.checkout-page .password__container{width:100%}}.ymaps-2-1-75-search__suggest{background-clip:unset;border:none !important;overflow-y:auto}.form-input__control--fixed .ymaps-2-1-75-search__suggest{position:fixed !important}@media screen and (max-width: 767px){.form-input__control--fixed .ymaps-2-1-75-search__suggest{top:56px !important}}.form-input__control--fixed .ymaps-2-1-75-search__suggest>ymaps{position:absolute}.form-input__control--fixed .ymaps-2-1-75-search__suggest>ymaps::-webkit-scrollbar{width:0;height:0}.form-input .ymaps-2-1-75-search__suggest{position:relative;box-sizing:border-box;border-bottom-left-radius:5px;border-bottom-right-radius:5px;overflow-y:auto;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 767px){.form-input .ymaps-2-1-75-search__suggest{margin-left:-2px;border-radius:0}.form-input .ymaps-2-1-75-search__suggest>ymaps{overflow-y:auto;top:0;left:0;right:0;width:100%;height:100%;-webkit-overflow-scrolling:touch}}@media screen and (min-width: 1024px){.form-input .ymaps-2-1-75-search__suggest{max-height:250px}}.ymaps-2-1-75-suggest-item{margin-top:0 !important}@media screen and (max-width: 767px){.ymaps-2-1-75-suggest-item{background:#fff;width:100%;display:flex !important}}.ymaps-2-1-75-suggest-item:hover,.ymaps-2-1-75-suggest-item:focus{background:#56c4c4}.ymaps-2-1-75-suggest-item:hover .ymaps-2-1-75-search__suggest-item,.ymaps-2-1-75-suggest-item:focus .ymaps-2-1-75-search__suggest-item{color:#fff;border-color:#56c4c4}.ymaps-2-1-75-suggest-item:last-of-type{margin-bottom:0 !important}.form-input .ymaps-2-1-75-suggest-item{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.ymaps-2-1-75-search__suggest-item{display:table-cell !important;white-space:pre-wrap !important;text-align:left;flex:1;color:#777c83;cursor:pointer;font-feature-settings:"pnum" on,"lnum" on;margin:0 16px;padding:16px !important}@media screen and (max-width: 767px){.ymaps-2-1-75-search__suggest-item{padding:8px 0 !important;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;border-bottom:1px solid #e0e7e9}}.ymaps-2-1-75-search__suggest-item_selected_yes{background:none !important}.invisible{visibility:hidden}.d-block{display:block !important}.feedback-item{padding:0 0 24px;margin-bottom:24px;border-bottom:1px solid #e0e7e9}.feedback-item:last-child{margin-bottom:0}@media screen and (min-width: 768px){.feedback-item:last-child{border-bottom:0;padding-bottom:0}}.feedback-item__rating{display:flex;margin-bottom:8px}@media screen and (min-width: 768px){.feedback-item__rating{margin-bottom:12px}}.feedback-item__rating .star-rating__star{padding:2px}@media screen and (min-width: 768px){.feedback-item__rating .star-rating__star{padding:4px}}.feedback-item__rating .star-rating__icon{width:12px;height:12px}.feedback-item__addr{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#4cbbbb;margin-left:12px}@media screen and (min-width: 768px){.feedback-item__addr{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;margin-left:16px}}.feedback-item__head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:16px}.feedback-item__name{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:16px;line-height:129.14%;color:#282929}@media screen and (min-width: 768px){.feedback-item__name{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.feedback-item__date{display:none;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#c0cbd2}@media screen and (min-width: 768px){.feedback-item__date{display:block}}.feedback-item__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:24px}.feedback-item__text:last-child{margin-bottom:0}.feedback-answer{padding:24px 16px;background:#fafbfc;border:1px solid #e0e7e9;border-radius:8px}@media screen and (min-width: 768px){.feedback-answer{padding:32px}}.feedback-answer__name{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-size:14px;line-height:129.14%;color:#282929;display:flex;align-items:baseline;margin-bottom:12px}@media screen and (min-width: 768px){.feedback-answer__name{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:16px}}.feedback-answer__position{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;margin-left:8px}@media screen and (min-width: 768px){.feedback-answer__position{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}}.feedback-answer__text{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}@media screen and (max-width: 767px){.feedback-info{padding-bottom:24px;border-bottom:1px solid #e0e7e9}}@media screen and (min-width: 1024px){.feedback-info{position:sticky;top:144px;padding:48px;background:#fafbfc;border:1px solid #e0e7e9;border-radius:8px}}.feedback-info__desc{margin-bottom:24px}.feedback-info__input{margin-top:12px}.feedback-themes{display:flex;margin-bottom:15px}.feedback-themes .radio-check-box__label{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.feedback-themes .radio-check-box{margin-right:50px}.rdp-root{display:inline-block;font-size:1rem}.rdp-wrapper{position:relative;flex-direction:row;padding-bottom:1em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rdp-months{display:flex;flex-wrap:wrap;justify-content:center}.rdp-month{display:table;margin:0 1em;margin-top:1em;border-spacing:0;border-collapse:collapse;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rdp-nav{position:absolute;inset-block-start:1em !important;inset-inline-end:1.5em !important;display:inline-block;margin-top:2px;background-position:center;background-size:50%;background-repeat:no-repeat;color:#8b9898;cursor:pointer}.rdp-button_previous,.rdp-button_next{width:1rem !important;height:1rem !important;background-size:contain !important;background-repeat:no-repeat !important}.rdp-button_previous:hover,.rdp-button_next:hover{opacity:.8}.react-datepicker__aria-live,.rdp-chevron{display:none !important}.rdp-button_previous{margin-right:1rem !important;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC") !important}.rdp-button_next{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==") !important}.rdp-NavButton--interactionDisabled{display:none}.rdp-caption{display:table-caption;margin-bottom:.5em;padding:0 .5em;text-align:left}.rdp-caption>div{font-weight:500;font-size:1.15em}.rdp-weekdays{margin-top:1em}.rdp-WeekdaysRow{display:table-row}.rdp-weekday{display:table-cell;padding:.5em;color:#8b9898;text-align:center;font-size:.875em}.rdp-weekday abbr[title]{border-bottom:none;text-decoration:none}.rdp-body{display:table-row-group}.rdp-week{display:table-row}.rdp-day{display:table-cell;border-radius:50%;vertical-align:middle;text-align:center;cursor:pointer;min-width:calc(2rem + 2px) !important;width:calc(2rem + 2px) !important;height:calc(2rem + 2px) !important;padding:2px}.rdp-day_button{width:2rem !important;height:2rem !important}.rdp-day_button{border:none !important}.rdp-week-number{display:table-cell;padding:.5em;min-width:1em;border-right:1px solid #eaecec;color:#8b9898;vertical-align:middle;text-align:right;font-size:.75em;cursor:pointer}.rdp--interactionDisabled .rdp-Day{cursor:default}.rdp-footer{padding-top:.5em}.rdp-TodayButton{border:none;background-color:transparent;background-image:none;box-shadow:none;color:#4a90e2;font-size:.875em;cursor:pointer}.rdp-today{font-weight:700}.rdp-today:not(.rdp-outside){color:#d0021b !important}.rdp-outside{color:#8b9898 !important;cursor:default}.rdp-disabled{color:#dce0e0 !important;cursor:default}.rdp-sunday{background-color:#f7f8f8 !important}.rdp-sunday:not(.rdp-today){color:#dce0e0 !important}.rdp-selected:not(.rdp-disabled):not(.rdp-outside){position:relative;background-color:#4a90e2 !important;color:#f0f8ff !important}.rdp-selected:not(.rdp-disabled):not(.rdp-outside):hover{background-color:#51a0fa !important}.DayPicker:not(.rdp--interactionDisabled) .rdp-day:not(.rdp-disabled):not(.rdp-selected):not(.rdp-outside):hover{background-color:#f0f8ff !important}.DayPickerInput{display:inline-block}.DayPickerInput-OverlayWrapper{position:relative}.DayPickerInput-Overlay{position:absolute;left:0;z-index:4;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.15)}@supports(-webkit-appearance: -apple-pay-button){.apple-pay-button{display:inline-block;-webkit-appearance:-apple-pay-button}.apple-pay-button-check-out{-apple-pay-button-type:check-out}.apple-pay-button-black{-apple-pay-button-style:#000}.apple-pay-button-white{-apple-pay-button-style:#fff}.apple-pay-button-white-with-line{-apple-pay-button-style:white-outline}}@supports not (-webkit-appearance: -apple-pay-button){.apple-pay-button{display:inline-block;background-size:100% 60%;background-repeat:no-repeat;background-position:50% 50%;border-radius:5px;padding:0px;box-sizing:border-box;min-width:200px;min-height:32px;max-height:64px}.apple-pay-button-black{background-image:-webkit-named-image(apple-pay-logo-white);background-color:#000}.apple-pay-button-white{background-image:-webkit-named-image(apple-pay-logo-black);background-color:#fff}.apple-pay-button-white-with-line{background-image:-webkit-named-image(apple-pay-logo-black);background-color:#fff;border:.5px solid #000}}.tooltip{display:inline-block;width:22px;height:22px;border-radius:50%;vertical-align:text-top;flex-shrink:0;background-color:#56c4c4;background-image:url("/images/query.svg");background-size:6px 11px;background-position:8px 6px;background-repeat:no-repeat}.tooltip:hover{background-color:#31bbbb}.tooltip:hover~.popup{display:block}@media screen and (min-width: 1024px){.tooltip{width:16px;height:16px;background-size:6px 10px;background-position:5px 3px}}.tooltip-input{display:flex;align-items:center;align-self:stretch}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-8px;position:absolute}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{border-bottom:none;border-top-color:#fff}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;background-color:#fff;color:#000;box-shadow:0 2px 5px rgba(0,0,0,.15);border-radius:.3rem;display:inline-block;position:relative;z-index:4}.react-datepicker__current-month{display:flex;justify-content:space-between;padding:6px}.react-datepicker__select{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;letter-spacing:.01em;line-height:19px;cursor:pointer}.react-datepicker__select--year{text-align:right;margin-left:auto}.react-datepicker__select--month{text-align:left;margin-right:auto;padding-left:10px}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time{border-radius:.3rem}.react-datepicker--time-only .react-datepicker__time-box{border-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:4}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=right]{margin-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{margin-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;border-top-left-radius:.3rem;border-top-right-radius:.3rem;padding-top:8px;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 2px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:bold;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{background:none;line-height:1.7rem;text-align:center;cursor:pointer;top:10px;width:0;padding:0;border:.45rem solid transparent;z-index:1;height:10px;width:10px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:10px;border-right-color:#ccc}.react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__navigation--next{right:10px;border-left-color:#ccc}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:80px}.react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3}.react-datepicker__month-container{float:left}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + (1.7rem / 2));overflow-y:scroll;padding-right:0px;padding-left:0px;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#4a90e2;color:#fff;font-weight:bold}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#4a90e2}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__month--selected,.react-datepicker__month--in-selecting-range,.react-datepicker__month--in-range,.react-datepicker__quarter--selected,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--in-range{border-radius:.3rem;background-color:#4a90e2;color:#fff}.react-datepicker__month--selected:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--in-range:hover,.react-datepicker__quarter--selected:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--in-range:hover{background-color:#3483de}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{border-radius:50%;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today{font-weight:bold;color:#d0021b}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2{color:green}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range{border-radius:50%;background-color:#4a90e2;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover{background-color:#3483de}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected{border-radius:.3rem;background-color:#76abe9;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover{background-color:#3483de}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range){background-color:rgba(74,144,226,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover{background-color:transparent}.react-datepicker__day-name{color:#777c83}.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover{background-color:#4a90e2}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid transparent;border-radius:.3rem}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:.45rem}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0px 6px 0px 0px;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon::after{cursor:pointer;background-color:#4a90e2;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:bold;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media(max-width: 400px),(max-height: 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem}.react-datepicker__portal .react-datepicker__navigation{border:.81rem solid transparent}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__day--outside-month{color:#c0cbd2}input[type=date]::-webkit-calendar-picker-indicator{display:hidden;-webkit-appearance:none}.react-datepicker__day-name .react-datepicker__sr-only{display:none !important}.mobile-app-banner{height:56px;display:flex;align-items:center;align-content:center;padding:0 16px;background:linear-gradient(82.67deg, #87ace5 0.47%, #d8cbff 106.72%)}.mobile-app-banner-container{overflow:hidden;transition:max-height .5s;max-height:56px}.mobile-app-banner-container__hide{max-height:0}.mobile-app-banner__close{margin-right:12px;position:relative;width:16px;height:16px;display:flex}.mobile-app-banner__close:before{content:"";position:absolute;width:32px;height:32px;transform:translate(-50%, -50%);left:50%;top:50%;background:transparent;border-radius:50%}.mobile-app-banner__close:hover:before,.mobile-app-banner__close:active:before{background:#a8c5f8}.mobile-app-banner__logo{width:30px;height:30px;margin-right:12px}.mobile-app-banner__logo>img{max-width:100%;max-height:100%}.mobile-app-banner__text{font-family:Raleway;font-style:normal;font-weight:600;font-size:10px;line-height:13px;display:flex;align-items:center;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;color:#fff;flex-grow:2}.close-banner{width:16px;height:16px;margin:0;padding:0;border:0;background-color:transparent;color:#fff;font-size:0;cursor:pointer;outline:none;position:relative}.close-banner:before,.close-banner:after{content:"";position:absolute;top:50%;left:50%;width:140%;color:inherit;height:2px;border-radius:2px;background:currentColor}.close-banner:before{transform:translate(-50%, -50%) rotate(45deg)}.close-banner:after{transform:translate(-50%, -50%) rotate(-45deg)}.pseudo-modal .mobile-app-banner{display:none}.notice-container{position:absolute;top:100%;right:0;width:100%;max-width:100%;padding:0 15px}@media screen and (min-width: 1024px){.notice-container{margin-right:40px;padding:0}}.notice-body{width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;display:flex;flex-direction:column;align-items:flex-end}@media screen and (max-width: 767px){.notice-body{padding:0;width:auto;max-width:unset;display:block}}.notice-item{min-width:288px;background:linear-gradient(88.71deg, #87ace5 0.47%, #d8cbff 106.72%);border-radius:6px;display:flex;cursor:pointer;font-size:16px;line-height:19px;margin-top:8px;color:#fff;max-width:100%}@media screen and (max-width: 767px){.notice-item{width:100%}}.notice-item__icon .notice-item__counter{padding:5px}.notice-item__icon .restaurant-icon{color:#fff;width:30px;height:30px}.notice-item__counter{width:56px;border-right:1px solid rgba(255,255,255,.22);display:flex;justify-content:center;align-items:center;padding:15px}.notice-item__counter span:before{content:"+"}.notice-item__text{padding:15px;display:flex;justify-content:center;align-items:center}.notice-item_orange{background:linear-gradient(88.71deg, #ff9ea3 0.47%, #ffbd00 106.72%)}.notice-item_error{background:linear-gradient(93.53deg, #f9694a -11.32%, #ff5555 106.34%)}.notification{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;color:#777c83}.notification a{color:#4cbbbb}@media screen and (max-width: 767px){.notification a{font-size:inherit}}.react-dadata__container{position:relative}.react-dadata__suggestions{position:absolute;top:100%;background-color:#fff;background-clip:padding-box;font:13px/28px Arial,sans-serif;box-sizing:border-box;border:1px solid #e5e5e5;padding:0;right:-1px;left:1px;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-shadow:0 10px 20px -5px rgba(0,0,0,.2) !important;z-index:10;cursor:pointer}.react-dadata__suggestion{display:block;width:100%;background:transparent;border:none;text-align:left;font-size:inherit;overflow:hidden;padding:7px 9px;text-overflow:ellipsis;white-space:break-spaces;cursor:pointer}.react-dadata__suggestion:hover,.react-dadata__suggestion:active,.react-dadata__suggestion:focus{background-color:#ffeba0}.react-dadata--highlighted{display:inline;font-weight:700}.basket-amount-promotion{padding:16px 30px;background:#cb3dd6;background:linear-gradient(90deg, #cb3dd6 0%, #fd7a7a 35%, #ffc690 100%);text-align:center}@media screen and (min-width: 768px){.basket-amount-promotion{border-radius:0 0 7px 7px;padding:40px 144px;display:flex;align-items:center}}.basket-amount-promotion__text{font-weight:500;font-size:14px;line-height:163.16%;color:#fff}@media screen and (min-width: 768px){.basket-amount-promotion__text{flex-grow:1;font-style:normal;font-weight:600;font-size:20px;line-height:163.16%}}.basket-amount-promotion__button{display:none}@media screen and (min-width: 768px){.basket-amount-promotion__button{display:block;margin-left:16px}}.quick-search{margin-bottom:24px;margin-right:6px;position:relative}.quick-search-input-container{display:flex;align-items:center}.quick-search-input{flex-basis:50%;flex-grow:1;display:flex;align-items:center;justify-content:space-between;border:1px solid #d7dfe1;box-sizing:border-box;border-radius:5px;padding:13px 17px}@media screen and (min-width: 1024px){.quick-search-input{padding:15px 17px}}@media screen and (min-width: 1024px){.quick-search-input_active{border-radius:5px 5px 0 0}}.quick-search-input__icon{width:20px;height:20px}.quick-search-input__clear{width:12px;height:12px;box-sizing:content-box;padding:4px;cursor:pointer;border:none;outline:none;background:transparent}.quick-search-input__input{flex-grow:1;background:transparent;border:none;outline:none;color:#1f1f1f;width:100%;font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;line-height:16px;display:flex;align-items:center;font-feature-settings:"pnum" on,"lnum" on}@media screen and (min-width: 1024px){.quick-search-input__input{font-size:18px;line-height:21px}}.quick-search-cancel button{border:none;outline:none;background-color:#fff;padding:10px 0 10px 15px;font-family:Raleway;font-style:normal;font-weight:normal;font-size:11px;line-height:105.66%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}@media screen and (min-width: 1024px){.quick-search-shadow{pointer-events:none;width:100%;top:-55px;left:0;right:0;bottom:0;position:absolute;border-radius:5px 5px 0 0;box-shadow:0 0 24px rgba(174,200,219,.25)}}.quick-search-results{position:absolute;width:100%;z-index:5;background-color:#fff;display:none;top:100%}@media screen and (min-width: 1024px){.quick-search-results{border:1px solid #d7dfe1;border-radius:0 0 5px 5px;padding:10px 47px;border-top:none}}.quick-search-results_active{display:block}.quick-search-results_fixed{position:relative;flex-basis:100%}.quick-search-results__empty{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.quick-search-results .quick-search-category:last-child :last-child{border-bottom:none}.quick-search-category__title{font-family:Raleway;margin:23px 0 0;font-style:normal;font-weight:bold;font-size:21px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.quick-search-dish{padding:16px 0;border-bottom:1px solid #d7dfe1}.quick-search-dish__body{background:#fff}.quick-search-dish__body .product__head{display:inline-block}.quick-search-dish__body .product__info{min-height:auto}.quick-search-dish__labels{display:flex}.quick-search-dish__basket.label--basket{flex-grow:1;justify-content:flex-end}@media screen and (min-width: 1024px){.quick-search-dish__basket.label--basket{justify-content:center;margin-top:9px}}.quick-search-dish__basket .in-basket{font-family:Roboto;font-style:normal;font-weight:300;font-size:13px;line-height:15px;letter-spacing:.02em;color:#282929;text-transform:lowercase}.quick-search-activator{display:flex;float:right;padding-bottom:4px}.quick-search-activator__text{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;line-height:16px;font-feature-settings:"pnum" on,"lnum" on;color:#b1b9bd}.quick-search-activator__icon{margin-left:10px;width:16px;height:16px;margin-top:-9px}.quick-search-modal{padding:16px 0}.quick-search-modal__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:16px}@media screen and (min-width: 1024px){.quick-search-modal__title{font-size:30px}}.preview-card{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}.preview-card__image{border-radius:10px;overflow:hidden;position:relative;height:58px;background-color:#dfe8ea;background-image:url(/images/dish.png);background-position:center center;background-size:70%;background-repeat:no-repeat}@media screen and (min-width: 1024px){.preview-card__image{height:110px}}.preview-card__image img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%;height:100%}.preview-card__left{flex-basis:70px;margin-right:8px}@media screen and (min-width: 1024px){.preview-card__left{flex-basis:130px;margin-right:35px}}.preview-card__right{margin-left:35px;align-self:center}.preview-card__main{flex-grow:1;max-width:calc(100% - 78px)}@media screen and (min-width: 1024px){.preview-card__main{max-width:calc(100% - 185px)}}.preview-card__footer{flex-grow:1;flex-basis:100%}.preview-card__footer .product__additions{margin-top:10px}.modal--quick-search .modal__content{padding:20px}@media screen and (min-width: 1024px){.modal--quick-search .modal__content{max-width:840px;margin:0 auto}}:root{--toastify-color-light: #fff;--toastify-color-dark: #121212;--toastify-color-info: #3498db;--toastify-color-success: #07bc0c;--toastify-color-warning: #f1c40f;--toastify-color-error: #e74c3c;--toastify-color-transparent: rgba(255, 255, 255, 0.7);--toastify-icon-color-info: var(--toastify-color-info);--toastify-icon-color-success: var(--toastify-color-success);--toastify-icon-color-warning: var(--toastify-color-warning);--toastify-icon-color-error: var(--toastify-color-error);--toastify-toast-width: 320px;--toastify-toast-background: #fff;--toastify-toast-min-height: 64px;--toastify-toast-max-height: 800px;--toastify-font-family: sans-serif;--toastify-z-index: 999999999;--toastify-text-color-light: #757575;--toastify-text-color-dark: #fff;--toastify-text-color-info: #fff;--toastify-text-color-success: #fff;--toastify-text-color-warning: #fff;--toastify-text-color-error: #fff;--toastify-spinner-color: #616161;--toastify-spinner-color-empty-area: #e0e0e0;--toastify-color-progress-light: linear-gradient( to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55 );--toastify-color-progress-dark: #bb86fc;--toastify-color-progress-info: var(--toastify-color-info);--toastify-color-progress-success: var(--toastify-color-success);--toastify-color-progress-warning: var(--toastify-color-warning);--toastify-color-progress-error: var(--toastify-color-error)}.Toastify__toast-container{z-index:var(--toastify-z-index);-webkit-transform:translate3d(0, 0, var(--toastify-z-index) px);position:fixed;padding:4px;width:var(--toastify-toast-width);box-sizing:border-box;color:#fff}.Toastify__toast-container--top-left{top:1em;left:1em}.Toastify__toast-container--top-center{top:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--top-right{top:1em;right:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width: 480px){.Toastify__toast-container{width:100vw;padding:0;left:0;margin:0}.Toastify__toast-container--top-left,.Toastify__toast-container--top-center,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{right:0;left:initial}}.Toastify__toast{position:relative;min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:8px;border-radius:4px;box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);display:flex;justify-content:space-between;max-height:var(--toastify-toast-max-height);overflow:hidden;font-family:var(--toastify-font-family);cursor:pointer;direction:ltr}.Toastify__toast--rtl{direction:rtl}.Toastify__toast-body{margin:auto 0;flex:1 1 auto;padding:6px;display:flex;align-items:center}.Toastify__toast-body>div:last-child{flex:1}.Toastify__toast-icon{margin-inline-end:10px;width:20px;flex-shrink:0;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.7s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}@media only screen and (max-width: 480px){.Toastify__toast{margin-bottom:0;border-radius:0}}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--light{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--default{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:var(--toastify-text-color-info);background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:var(--toastify-text-color-success);background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:var(--toastify-text-color-warning);background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:var(--toastify-text-color-error);background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error{background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;align-self:flex-start}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:hover,.Toastify__close-button:focus{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}100%{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:5px;z-index:var(--toastify-z-index);opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:initial;transform-origin:right}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--toastify-spinner-color-empty-area);border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(3000px, 0, 0)}60%{opacity:1;transform:translate3d(-25px, 0, 0)}75%{transform:translate3d(10px, 0, 0)}90%{transform:translate3d(-5px, 0, 0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0)}to{opacity:0;transform:translate3d(2000px, 0, 0)}}@keyframes Toastify__bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0)}60%{opacity:1;transform:translate3d(25px, 0, 0)}75%{transform:translate3d(-10px, 0, 0)}90%{transform:translate3d(5px, 0, 0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0)}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}@keyframes Toastify__bounceInUp{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(0, 3000px, 0)}60%{opacity:1;transform:translate3d(0, -20px, 0)}75%{transform:translate3d(0, 10px, 0)}90%{transform:translate3d(0, -5px, 0)}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0, -10px, 0)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0)}to{opacity:0;transform:translate3d(0, -2000px, 0)}}@keyframes Toastify__bounceInDown{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0)}60%{opacity:1;transform:translate3d(0, 25px, 0)}75%{transform:translate3d(0, -10px, 0)}90%{transform:translate3d(0, 5px, 0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0, 10px, 0)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0)}to{opacity:0;transform:translate3d(0, 2000px, 0)}}.Toastify__bounce-enter--top-left,.Toastify__bounce-enter--bottom-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--top-right,.Toastify__bounce-enter--bottom-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--top-left,.Toastify__bounce-exit--bottom-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--top-right,.Toastify__bounce-exit--bottom-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{from{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{from{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(1, 0, 0, 10deg);opacity:1}80%{transform:perspective(400px) rotate3d(1, 0, 0, -5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);opacity:1}to{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{from{transform:translate3d(110%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInLeft{from{transform:translate3d(-110%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInUp{from{transform:translate3d(0, 110%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInDown{from{transform:translate3d(0, -110%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideOutRight{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(110%, 0, 0)}}@keyframes Toastify__slideOutLeft{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(-110%, 0, 0)}}@keyframes Toastify__slideOutDown{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, 500px, 0)}}@keyframes Toastify__slideOutUp{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, -500px, 0)}}.Toastify__slide-enter--top-left,.Toastify__slide-enter--bottom-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--top-right,.Toastify__slide-enter--bottom-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--top-left,.Toastify__slide-exit--bottom-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--top-right,.Toastify__slide-exit--bottom-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.Toastify__toast{background:linear-gradient(88.71deg, #ff9ea3 0.47%, #ffbd00 106.72%);padding:0}.Toastify__toast-body{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;padding:0;color:#fff}.Toastify__toast-body>div{padding:16px}.Toastify__toast-icon{border-right:1px solid rgba(255,255,255,.22);color:#fff;width:auto;height:auto;margin-inline-end:auto}.Toastify__toast-icon .icon{color:#fff;width:20px;height:20px}.Toastify__toast-icon .icon :hover{color:#fff}.favorites-btn{display:flex;align-items:center;cursor:pointer}.favorites-btn-container-hidden{display:none}@media(min-width: 768px)and (max-width: 1024px){.favorites-btn-container-hidden{display:block;visibility:hidden}}.favorites-btn>.icon{margin-top:4px;width:23px;height:22px;color:#56c4c4 !important}.favorites-btn>.icon:first-child{display:block}.favorites-btn>.icon:last-child{display:none}@media screen and (min-width: 1024px){.favorites-btn:hover>.icon{color:#56c4c4}.favorites-btn:hover>.icon:first-child{display:none}.favorites-btn:hover>.icon:last-child{display:block}}.favorites-btn:active>.icon,.favorites-btn:focus>.icon{color:#56c4c4}.add-to-favorites{position:relative;padding:0 8px;width:23px;height:22px;cursor:pointer}.add-to-favorites>.icon{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:23px;height:22px;color:#fff}.add-to-favorites>.icon:first-child{display:block}.add-to-favorites>.icon:last-child{display:none}@media screen and (min-width: 1024px){.add-to-favorites:hover>.icon{color:#fff}.add-to-favorites:hover>.icon:first-child{display:none}.add-to-favorites:hover>.icon:last-child{width:24px;height:23px;display:block}}.add-to-favorites_red>.icon{color:#ff532e;width:23px;height:22px}.add-to-favorites_red:hover>.icon{width:23px;height:22px;color:#ff532e}@media screen and (min-width: 1024px){.product-list .product .add-to-favorites:not(.add-to-favorites_red){display:none}}@media screen and (min-width: 768px){.product-list .product :hover .add-to-favorites{display:block}}.product__basket:last-child .label{margin-left:8px}@media(min-width: 375px)and (max-width: 767px){.product__basket:last-child .label{margin-left:4px}}@media screen and (max-width: 767px){.product__basket:last-child .label{margin-left:8px}}:root{--toastify-color-light: #fff;--toastify-color-dark: #121212;--toastify-color-info: #3498db;--toastify-color-success: #07bc0c;--toastify-color-warning: #f1c40f;--toastify-color-error: #e74c3c;--toastify-color-transparent: rgba(255, 255, 255, 0.7);--toastify-icon-color-info: var(--toastify-color-info);--toastify-icon-color-success: var(--toastify-color-success);--toastify-icon-color-warning: var(--toastify-color-warning);--toastify-icon-color-error: var(--toastify-color-error);--toastify-toast-width: 320px;--toastify-toast-background: #fff;--toastify-toast-min-height: 64px;--toastify-toast-max-height: 800px;--toastify-font-family: sans-serif;--toastify-z-index: 999999999;--toastify-text-color-light: #757575;--toastify-text-color-dark: #fff;--toastify-text-color-info: #fff;--toastify-text-color-success: #fff;--toastify-text-color-warning: #fff;--toastify-text-color-error: #fff;--toastify-spinner-color: #616161;--toastify-spinner-color-empty-area: #e0e0e0;--toastify-color-progress-light: linear-gradient( to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55 );--toastify-color-progress-dark: #bb86fc;--toastify-color-progress-info: var(--toastify-color-info);--toastify-color-progress-success: var(--toastify-color-success);--toastify-color-progress-warning: var(--toastify-color-warning);--toastify-color-progress-error: var(--toastify-color-error)}.Toastify__toast-container{z-index:var(--toastify-z-index);-webkit-transform:translate3d(0, 0, var(--toastify-z-index) px);position:fixed;padding:4px;width:var(--toastify-toast-width);box-sizing:border-box;color:#fff}.Toastify__toast-container--top-left{top:1em;left:1em}.Toastify__toast-container--top-center{top:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--top-right{top:1em;right:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width: 480px){.Toastify__toast-container{width:100vw;padding:0;left:0;margin:0}.Toastify__toast-container--top-left,.Toastify__toast-container--top-center,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{right:0;left:initial}}.Toastify__toast{position:relative;min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:8px;border-radius:4px;box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);display:flex;justify-content:space-between;max-height:var(--toastify-toast-max-height);overflow:hidden;font-family:var(--toastify-font-family);cursor:pointer;direction:ltr}.Toastify__toast--rtl{direction:rtl}.Toastify__toast-body{margin:auto 0;flex:1 1 auto;padding:6px;display:flex;align-items:center}.Toastify__toast-body>div:last-child{flex:1}.Toastify__toast-icon{margin-inline-end:10px;width:20px;flex-shrink:0;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.7s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}@media only screen and (max-width: 480px){.Toastify__toast{margin-bottom:0;border-radius:0}}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--light{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--default{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:var(--toastify-text-color-info);background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:var(--toastify-text-color-success);background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:var(--toastify-text-color-warning);background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:var(--toastify-text-color-error);background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error{background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;align-self:flex-start}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:hover,.Toastify__close-button:focus{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}100%{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:5px;z-index:var(--toastify-z-index);opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:initial;transform-origin:right}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--toastify-spinner-color-empty-area);border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(3000px, 0, 0)}60%{opacity:1;transform:translate3d(-25px, 0, 0)}75%{transform:translate3d(10px, 0, 0)}90%{transform:translate3d(-5px, 0, 0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0)}to{opacity:0;transform:translate3d(2000px, 0, 0)}}@keyframes Toastify__bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0)}60%{opacity:1;transform:translate3d(25px, 0, 0)}75%{transform:translate3d(-10px, 0, 0)}90%{transform:translate3d(5px, 0, 0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0)}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}@keyframes Toastify__bounceInUp{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(0, 3000px, 0)}60%{opacity:1;transform:translate3d(0, -20px, 0)}75%{transform:translate3d(0, 10px, 0)}90%{transform:translate3d(0, -5px, 0)}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0, -10px, 0)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0)}to{opacity:0;transform:translate3d(0, -2000px, 0)}}@keyframes Toastify__bounceInDown{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0)}60%{opacity:1;transform:translate3d(0, 25px, 0)}75%{transform:translate3d(0, -10px, 0)}90%{transform:translate3d(0, 5px, 0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0, 10px, 0)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0)}to{opacity:0;transform:translate3d(0, 2000px, 0)}}.Toastify__bounce-enter--top-left,.Toastify__bounce-enter--bottom-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--top-right,.Toastify__bounce-enter--bottom-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--top-left,.Toastify__bounce-exit--bottom-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--top-right,.Toastify__bounce-exit--bottom-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{from{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{from{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(1, 0, 0, 10deg);opacity:1}80%{transform:perspective(400px) rotate3d(1, 0, 0, -5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);opacity:1}to{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{from{transform:translate3d(110%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInLeft{from{transform:translate3d(-110%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInUp{from{transform:translate3d(0, 110%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideInDown{from{transform:translate3d(0, -110%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes Toastify__slideOutRight{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(110%, 0, 0)}}@keyframes Toastify__slideOutLeft{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(-110%, 0, 0)}}@keyframes Toastify__slideOutDown{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, 500px, 0)}}@keyframes Toastify__slideOutUp{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, -500px, 0)}}.Toastify__slide-enter--top-left,.Toastify__slide-enter--bottom-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--top-right,.Toastify__slide-enter--bottom-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--top-left,.Toastify__slide-exit--bottom-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--top-right,.Toastify__slide-exit--bottom-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.Toastify__toast{background:linear-gradient(88.71deg, #ff9ea3 0.47%, #ffbd00 106.72%);padding:0}.Toastify__toast-body{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;padding:0;color:#fff}.Toastify__toast-body>div{padding:16px}.Toastify__toast-icon{border-right:1px solid rgba(255,255,255,.22);color:#fff;width:auto;height:auto;margin-inline-end:auto}.Toastify__toast-icon .icon{color:#fff;width:20px;height:20px}.Toastify__toast-icon .icon :hover{color:#fff}.detail-link{font-size:14px;color:#b1b9bd;font-style:normal;font-weight:500;line-height:15px;letter-spacing:.02em;text-align:left}.certificate-page-grid{display:flex;justify-content:space-between}.certificate-page-grid__sidebar{display:none}@media screen and (min-width: 768px){.certificate-page-grid__sidebar{display:block}}.certificate-page-grid>*:nth-child(odd){flex-basis:800px}.certificate-page-grid>*:nth-child(even){margin-left:48px;flex-basis:384px}.certificate-denomination-radio{display:flex;justify-content:space-between;flex-wrap:wrap;margin:20px}@media screen and (min-width: 768px){.certificate-denomination-radio{justify-content:flex-start;margin:32px 0}}.radio-check-box--certificate-denomination{margin-right:8px;margin-bottom:8px}@media screen and (min-width: 768px){.radio-check-box--certificate-denomination{margin-left:24px;margin-bottom:12px}}.radio-check-box--certificate-denomination input[type=radio]+.radio-check-box__label{background-color:#e3eaec;border-radius:6px;padding:8px;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;line-height:150%;display:flex;min-width:90px;justify-content:center}@media screen and (min-width: 768px){.radio-check-box--certificate-denomination input[type=radio]+.radio-check-box__label{padding:8px 13px 6px;font-size:18px;line-height:21px}}.radio-check-box--certificate-denomination input[type=radio]+.radio-check-box__label:before,.radio-check-box--certificate-denomination input[type=radio]+.radio-check-box__label:after{display:none;content:none}.radio-check-box--certificate-denomination input[type=radio]:checked+.radio-check-box__label{background-color:#4cbbbb;color:#fff}.radio-check-box--certificate-denomination input[type=radio]:checked+.radio-check-box__label:before,.radio-check-box--certificate-denomination input[type=radio]:checked+.radio-check-box__label:after{display:none;content:none}.radio-inline{display:block}@media screen and (min-width: 768px){.radio-inline{display:inline-flex}}.radio-inline>*:not(:first-child){margin-top:16px}@media screen and (min-width: 768px){.radio-inline>*:not(:first-child){margin-left:50px;margin-top:0}}.certificate-toggle{margin-bottom:24px}@media screen and (min-width: 768px){.certificate-toggle{margin-top:32px}}.certificate-sidebar{margin-top:65px;background:#fbf9f7;border:1px solid #e0e7e9;border-radius:8px;position:sticky;top:144px}.certificate-sidebar__title{margin:40px 31px 25px}.certificate-sidebar__image{margin:25px 31px 32px}.certificate-sidebar__foot{margin-top:32px;border-top:1px solid #e3eaec;padding:23px 32px}.certificate-sidebar-foot{display:flex;align-items:center}.certificate-sidebar-foot__title{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#424242}.certificate-sidebar-foot__price{font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;line-height:28px;color:#424242;margin-left:14px}.certificate-sidebar-foot__price:after{content:" ₽";color:#c0cbd2}.certificate-result{margin-top:30px;display:flex;flex-wrap:wrap}.certificate-result__title{flex-basis:100%;margin-bottom:23px}.certificate-result__image{width:152px;height:96px}@media screen and (min-width: 768px){.certificate-result__image{width:112px;height:72px;margin-right:23px}}.certificate-result__text{flex-grow:1;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:170%;color:#777c83}.certificate-result__price{margin-top:32px;flex-basis:100%;font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;line-height:28px;color:#777c83}.certificate-result__price>span{font-style:normal;font-weight:300;color:#777c83}.mtb-23{margin-bottom:23px;margin-top:23px}.certificate-page .notification{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;line-height:27px;letter-spacing:.01em;color:#777c83}.certificate-list .border-block{position:relative;margin-bottom:16px}@media screen and (min-width: 768px){.certificate-list .border-block{padding:48px}}.certificate-list .border-block:last-child{margin-bottom:0}.certificate-list .border-block--payment .form-group{margin-bottom:12px}@media screen and (max-width: 767px){.certificate-list .border-block--payment .form-group .form-input{margin-bottom:12px}}.certificate-list .border-block--payment .form-group:last-child{margin-bottom:0}@media screen and (min-width: 768px){.certificate-list .border-block--data{margin-bottom:48px}}@media screen and (max-width: 767px){.certificate-list .border-block--data form:not(:last-child){margin-bottom:20px}.certificate-list .border-block--data form:not(:last-child) .form-input{margin-bottom:10px}}.certificate-list .border-block--data .notification{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;margin-bottom:14px}@media screen and (min-width: 768px){.certificate-list .border-block--data .notification{margin-bottom:20px}}.certificate-list .border-block--mb-16{margin-bottom:0}@media screen and (min-width: 768px){.certificate-list .border-block--mb-16{margin-bottom:16px}}.certificate-list .border-block--discount .page__desc{margin:0}.certificate-list .border-block--border-bottom{padding-bottom:30px;border-bottom:1px solid #e0e7e9}.certificate-list .border-block--disabled{border-bottom:1px solid #e0e7e9;padding:30px 0}@media screen and (min-width: 768px){.certificate-list .border-block--disabled{padding:30px 47px;border:1px solid #d7dfe1;margin-bottom:8px}}@media screen and (max-width: 1023px){.certificate-text__page{padding:0}}.certificate-text__container{display:flex;flex-direction:column;padding:0;border:unset}.certificate-text__borded{display:flex;flex-direction:column;gap:80px;padding:0 104px;padding-top:60px;padding-bottom:80px;border:1px solid #e0e7e9;border-bottom:unset;border-radius:8px;border-bottom-left-radius:0;border-bottom-right-radius:0}@media screen and (min-width: 1024px){.certificate-text__borded{padding:0 74px;padding-top:60px;padding-bottom:80px}}@media screen and (max-width: 1023px){.certificate-text__borded{padding:0 32px;border:unset;padding-bottom:80px}}@media screen and (max-width: 575px){.certificate-text__borded{gap:60px;padding-bottom:60px}}.certificate-red{color:#99251a !important}.certificate-advantages__container{display:flex;flex-direction:column;gap:32px}.certificate-advantages__container .title--level-1{text-align:center;max-width:1008px;font-size:32px;justify-content:center}@media screen and (max-width: 1023px){.certificate-advantages__container .title--level-1{font-size:24px}}.certificate-advantages__wrapper{display:grid;gap:32px;grid-template-columns:1fr 1fr 1fr}@media screen and (max-width: 575px){.certificate-advantages__wrapper{display:flex;flex-direction:column;gap:16px}}.certificate-advantages__info{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center}@media screen and (max-width: 1023px){.certificate-advantages__info .title--level-2{font-size:21px;line-height:27.3px}}.certificate-advantage{border:1px solid #ded4ca;padding:30px 16px;display:flex;flex-direction:column;align-items:center;gap:8px;border-radius:8px;min-height:239px;padding-bottom:24px}@media screen and (max-width: 1023px){.certificate-advantage{min-height:195px}}@media screen and (max-width: 575px){.certificate-advantage{flex-direction:row;gap:16px;min-height:auto;padding:16px}}.certificate-advantage:first-of-type{background:url("/images/certificates/pic_bg_1.svg") no-repeat;background-position-x:100%;background-position-y:100%}.certificate-advantage:last-of-type{background:url("/images/certificates/pic_bg_3.svg") no-repeat;background-position-x:0;background-position-y:100%}.certificate-advantage__img{height:80px;width:80px}@media screen and (max-width: 575px){.certificate-advantage__img{display:contents}}.certificate-advantage__title{text-align:center}@media screen and (max-width: 1023px){.certificate-advantage__title{font-size:15px !important;line-height:17.61px !important}}@media screen and (max-width: 575px){.certificate-advantage__title{text-align:start}}.certificate-answers__container{display:flex;flex-direction:column;gap:32px}.certificate-answers__container .title--level-1{text-align:center;max-width:1008px;font-size:32px;justify-content:center;margin-bottom:0}@media screen and (max-width: 1023px){.certificate-answers__container .title--level-1{font-size:24px;line-height:31.2px}}.certificate-answers__wrapper{display:grid;gap:40px;grid-template-columns:1fr 1fr}@media screen and (max-width: 767px){.certificate-answers__wrapper{display:flex;flex-direction:column}}.certificate-answer{display:grid;grid-template-columns:80px 1fr;gap:16px}.certificate-answer h3{margin-bottom:0px;font-size:24px;line-height:31.2px}@media screen and (max-width: 1023px){.certificate-answer h3{font-size:21px;line-height:27.3px}}.certificate-answer__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.certificate-steps__container{display:flex;flex-direction:column;gap:32px;border-radius:24px;padding:60px;background:url("/images/certificates/pic_card.png") no-repeat;background-color:#fafafa;padding-bottom:calc(60% + 40px);background-position-y:calc(100% - 40px)}@media screen and (min-width: 1024px){.certificate-steps__container{padding-left:40px;padding-right:40px;background-size:contain}}@media screen and (max-width: 1023px){.certificate-steps__container{padding-left:40px;padding-right:40px;background-size:contain}}@media screen and (max-width: 575px){.certificate-steps__container{padding-left:24px;padding-right:24px;padding-top:40px}}.certificate-steps__container .title--level-1{text-align:center;max-width:1008px;font-size:32px;justify-content:center;margin-bottom:0}@media screen and (max-width: 1023px){.certificate-steps__container .title--level-1{font-size:24px;line-height:31.2px}}.certificate-steps__wrapper{display:grid;gap:64px;grid-template-columns:1fr 1fr}@media screen and (max-width: 1023px){.certificate-steps__wrapper{gap:9px}}@media screen and (max-width: 767px){.certificate-steps__wrapper{display:flex;flex-direction:column;gap:48px}}.certificate-steps__column{display:flex;flex-direction:column;gap:24px;justify-content:space-between}.certificate-steps__number{background-color:#ded4ca;width:40px;height:40px;max-width:40px;max-height:40px;color:#fff;border-radius:50%;font-family:Raleway;font-style:normal;font-weight:bold;font-size:20px;letter-spacing:0;line-height:26px;line-height:1;padding:7px 10px;text-align:center}.certificate-steps__header{display:grid;grid-template-columns:80px 1fr;gap:16px;grid-auto-rows:80px}.certificate-steps__header h2{margin-bottom:0}@media screen and (max-width: 1023px){.certificate-steps__header h2{font-size:21px !important;line-height:27.3px !important}}.certificate-steps__header-subtitle{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;letter-spacing:.03em}.certificate-steps__header-texts{display:flex;flex-direction:column;justify-content:center}.certificate-steps__item{display:grid;grid-template-columns:40px 1fr;gap:11px}.certificate-steps__item:nth-last-child(2){padding-bottom:20px}@media screen and (max-width: 767px){.certificate-steps__item:nth-last-child(2){padding-bottom:unset}}.certificate-steps__item:first-child{padding-bottom:80px}.certificate-steps__title{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;line-height:25.2px;font-weight:500;color:#282929}@media screen and (max-width: 1023px){.certificate-steps__title{font-size:16px;line-height:22.4px}}.certificate-steps__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;line-height:21px}.certificate-steps__texts{display:flex;flex-direction:column;justify-content:center}.certificate-steps__button{display:flex;justify-content:center}.certificate-steps__button .btn{width:-moz-fit-content;width:fit-content;padding:4px 20px}@media screen and (max-width: 767px){.certificate-steps__button .btn{font-size:11px;line-height:13.2px;letter-spacing:.08em}}.certificate-choice__container{display:flex;flex-direction:column;gap:32px;border:1px solid #ded4ca;padding:60px 80px;border-radius:12px;padding-bottom:100px}@media screen and (min-width: 1024px){.certificate-choice__container{padding:60px 24px}}@media screen and (max-width: 1023px){.certificate-choice__container{padding:60px 24px}}.certificate-choice__container .title--level-1{text-align:center;font-size:32px;justify-content:center}@media screen and (max-width: 1023px){.certificate-choice__container .title--level-1{font-size:24px}}@media screen and (max-width: 767px){.certificate-choice__container{border:unset;padding:0px}}.certificate-choice__wrapper{display:none}@media screen and (max-width: 767px){.certificate-choice__wrapper{display:flex;flex-direction:column;gap:32px}}.certificate-choice__card{display:none;flex-direction:column;gap:16px;padding:16px;border:1px solid #ded4ca;border-radius:12px;padding-bottom:24px}@media screen and (max-width: 767px){.certificate-choice__card{display:flex}}.certificate-choice__desk{display:flex;flex-direction:column;gap:16px}.certificate-choice__desk-row{display:grid;grid-template-columns:130px 1fr 1fr;gap:24px}.certificate-choice__desk-row--2{display:grid;grid-template-columns:130px 1fr;gap:24px}@media screen and (max-width: 767px){.certificate-choice__desk{display:none}}.certificate-choice__desk .btn{padding:0 20px;min-width:-moz-max-content;min-width:max-content}@media screen and (max-width: 767px){.certificate-choice__desk .btn{font-size:11px;line-height:13.2px;letter-spacing:.08em}}.certificate-choice__item{display:grid;gap:24px;grid-template-columns:130px 1fr}@media screen and (max-width: 575px){.certificate-choice__item{display:flex;flex-direction:column;gap:unset}}.certificate-choice__item:first-of-type{display:flex;flex-direction:row;gap:8px;justify-content:center}.certificate-choice__item:last-of-type{display:flex;flex-direction:row;gap:8px;justify-content:center}.certificate-choice__item-header{display:flex;flex-direction:row;gap:8px;align-items:center}@media screen and (max-width: 1023px){.certificate-choice__item-header h2{font-size:21px;line-height:27.3px}}@media screen and (max-width: 575px){.certificate-choice__item-header{display:flex;flex-direction:column}}.certificate-choice__item-img{width:40px;height:40px}.certificate-choice__item .btn{padding:0 20px;min-width:-moz-max-content;min-width:max-content}@media screen and (max-width: 767px){.certificate-choice__item .btn{font-size:11px;line-height:13.2px;letter-spacing:.08em}}.certificate-choice__title{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;line-height:18.78px;color:#282929}.certificate-choice__text{line-height:18.78px;letter-spacing:.03em}.certificate-choice__info{display:none}@media screen and (max-width: 767px){.certificate-choice__info{display:block}}.certificate-page{background:#f6f6f6}.certificate-wrapper{max-width:592px;margin:0 auto}.certificate-header{margin:75px 0 16px;display:flex;align-items:center}@media screen and (max-width: 767px){.certificate-header{margin:16px 10px}}.certificate-header>*{margin-right:16px}.certificate-header>*:last-child{margin-right:0}.certificate-header>* img{width:30px;height:30px}.certificate-header>*:first-child{flex-grow:1}.certificate-header>*:first-child img{width:54px;height:54px}.certificate-preview{padding:30px 50px;background-color:#f5f0eb}.certificate-preview__img{margin-bottom:25px}.certificate-preview__img img{display:block;width:207px;height:134px;margin:0 auto}.certificate-preview__price{font-family:Roboto;font-size:22px;line-height:130%;color:#282929;text-align:center}.certificate-preview__price b{font-weight:900}.certificate-preview__desc{font-family:Roboto;font-size:16px;line-height:170%;color:#777c83;text-align:center}.certificate-preview__code{margin:8px auto 8px;text-align:center}.certificate-preview__code>span{display:inline-block;padding:20px 40px;background:#fff;border-radius:5px;font-family:Roboto;font-size:20px;line-height:170%;letter-spacing:.03em;color:#777c83}.certificate-body{display:flex;flex-wrap:wrap;background:#fff;padding:0 48px 48px}.certificate-body__alert{flex-basis:100%;margin-top:16px;padding:8px 16px;background:#faecec;border-radius:8px;font-family:Roboto;font-size:14px;line-height:128.91%;letter-spacing:.03em;color:#e97d65;display:flex;align-items:center}.certificate-body__alert .icon{margin-right:7px}.certificate-body__body{margin-top:42px;flex-grow:1;flex-basis:40%;margin-right:58px;font-family:Roboto;font-size:16px;line-height:170%;letter-spacing:.01em;color:#282929}@media screen and (max-width: 575px){.certificate-body__body{flex-basis:100%;display:flex;flex-direction:column;align-items:center;margin-right:0}}.certificate-body__qr{flex-basis:5%;margin-top:15px;font-family:Roboto;font-weight:900;font-size:18px;line-height:130%;color:#282929}@media screen and (max-width: 575px){.certificate-body__qr{flex-basis:100%;display:flex;flex-direction:column;align-items:center}}.certificate-body__qr:before{content:"QR код";display:block;margin-bottom:8px}.certificate-body__links{flex-basis:100%;margin:20px 0 16px;padding-bottom:20px;border-bottom:1px solid #d7dfe1}.certificate-body__links a{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;line-height:105.66%;letter-spacing:.02em;text-decoration-line:underline;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;margin-right:20px}.certificate-body__data{margin-top:16px;flex-basis:100%}.certificate-body__data-title{font-family:Roboto;font-weight:900;font-size:20px;line-height:130%;color:#282929;margin-bottom:23px}.certificate-body-data-group{margin-bottom:23px;font-family:Roboto;font-size:16px;line-height:170%;letter-spacing:.01em;color:#282929;display:flex}.certificate-body-data-group__label{color:#777c83;flex-basis:40%}.certificate-body-data-group__label:after{content:":"}.certificate-body-data-group__value a{color:#282929 !important}.certificate-ps{margin:30px auto;font-family:Roboto;font-size:16px;line-height:170%;letter-spacing:.01em;color:#c0cbd2;text-align:center}.tabs-control{display:flex}.tabs-control__item{flex-grow:1;display:flex;align-items:center;justify-content:center;border:1px solid #d7dfe1;border-left:none;background-color:#fafbfc;cursor:pointer;outline:none;padding:12px 16px;height:38px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#c0cbd2;font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;line-height:105.66%;min-width:144px}@media screen and (min-width: 768px){.tabs-control__item{flex-grow:0;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;min-width:280px;padding:18px 62px;height:65px}}.tabs-control__item:first-child{border-radius:4px 0 0 4px;border-left:1px solid #d7dfe1}@media screen and (min-width: 768px){.tabs-control__item:first-child{border-top-left-radius:8px}}.tabs-control__item:last-child{border-top-right-radius:8px}.tabs-control__item.active{color:#fff;background-color:#56c4c4;border-color:#56c4c4}@media screen and (min-width: 768px){.tabs-content{margin-top:-1px;border-radius:0 8px 8px 8px;border:1px solid #e0e7e9}}.tabs-content__item{display:none;padding:25px 0}@media screen and (min-width: 768px){.tabs-content__item{padding:48px}}.tabs-content__item.active{display:block}@font-face{font-family:"Circe";src:url("/fonts/Circe/Circe-Regular.woff2") format("woff2"),url("/fonts/Circe/Circe-Regular.woff") format("woff"),url("/fonts/Circe/Circe-Regular.ttf") format("truetype"),url("/fonts/Circe/Circe-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Circe";src:url("/fonts/Circe/Circe-Bold.woff2") format("woff2"),url("/fonts/Circe/Circe-Bold.woff") format("woff"),url("/fonts/Circe/Circe-Bold.ttf") format("truetype"),url("/fonts/Circe/Circe-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Thin.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Thin.woff") format("woff"),url("/fonts/Roboto/Roboto-Thin.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Thin.otf") format("opentype");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Light.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Light.woff") format("woff"),url("/fonts/Roboto/Roboto-Light.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Light.otf") format("opentype");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Regular.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Regular.woff") format("woff"),url("/fonts/Roboto/Roboto-Regular.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Regular.otf") format("opentype");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Medium.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Medium.woff") format("woff"),url("/fonts/Roboto/Roboto-Medium.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Medium.otf") format("opentype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Bold.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Bold.woff") format("woff"),url("/fonts/Roboto/Roboto-Bold.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Bold.otf") format("opentype");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url("/fonts/Roboto/Roboto-Black.woff2") format("woff2"),url("/fonts/Roboto/Roboto-Black.woff") format("woff"),url("/fonts/Roboto/Roboto-Black.ttf") format("truetype"),url("/fonts/Roboto/Roboto-Black.otf") format("opentype");font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Thin.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Thin.woff") format("woff"),url("/fonts/Raleway/Raleway-Thin.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Thin.otf") format("opentype");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Light.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Light.woff") format("woff"),url("/fonts/Raleway/Raleway-Light.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Light.otf") format("opentype");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Regular.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Regular.woff") format("woff"),url("/fonts/Raleway/Raleway-Regular.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Regular.otf") format("opentype");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Medium.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Medium.woff") format("woff"),url("/fonts/Raleway/Raleway-Medium.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Medium.otf") format("opentype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-SemiBold.woff2") format("woff2"),url("/fonts/Raleway/Raleway-SemiBold.woff") format("woff"),url("/fonts/Raleway/Raleway-SemiBold.ttf") format("truetype"),url("/fonts/Raleway/Raleway-SemiBold.otf") format("opentype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Bold.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Bold.woff") format("woff"),url("/fonts/Raleway/Raleway-Bold.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Bold.otf") format("opentype");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-ExtraBold.woff2") format("woff2"),url("/fonts/Raleway/Raleway-ExtraBold.woff") format("woff"),url("/fonts/Raleway/Raleway-ExtraBold.ttf") format("truetype"),url("/fonts/Raleway/Raleway-ExtraBold.otf") format("opentype");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Raleway";src:url("/fonts/Raleway/Raleway-Black.woff2") format("woff2"),url("/fonts/Raleway/Raleway-Black.woff") format("woff"),url("/fonts/Raleway/Raleway-Black.ttf") format("truetype"),url("/fonts/Raleway/Raleway-Black.otf") format("opentype");font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:"Caveat";src:url("/fonts/Caveat/Caveat-Regular.woff2") format("woff2"),url("/fonts/Caveat/Caveat-Regular.woff") format("woff"),url("/fonts/Caveat/Caveat-Regular.ttf") format("truetype"),url("/fonts/Caveat/Caveat-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Caveat";src:url("/fonts/Caveat/Caveat-Bold.woff2") format("woff2"),url("/fonts/Caveat/Caveat-Bold.woff") format("woff"),url("/fonts/Caveat/Caveat-Bold.ttf") format("truetype"),url("/fonts/Caveat/Caveat-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Akrobat";src:url("/fonts/Akrobat/Akrobat-Regular.woff2") format("woff2"),url("/fonts/Akrobat/Akrobat-Regular.woff") format("woff"),url("/fonts/Akrobat/Akrobat-Regular.ttf") format("truetype"),url("/fonts/Akrobat/Akrobat-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Akrobat";src:url("/fonts/Akrobat/Akrobat-ExtraBold.woff2") format("woff2"),url("/fonts/Akrobat/Akrobat-ExtraBold.woff") format("woff"),url("/fonts/Akrobat/Akrobat-ExtraBold.ttf") format("truetype"),url("/fonts/Akrobat/Akrobat-ExtraBold.otf") format("opentype");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Caveat";src:url("/fonts/Caveat/Caveat-Regular.woff2") format("woff2"),url("/fonts/Caveat/Caveat-Regular.woff") format("woff"),url("/fonts/Caveat/Caveat-Regular.ttf") format("truetype"),url("/fonts/Caveat/Caveat-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Caveat";src:url("/fonts/Caveat/Caveat-Bold.woff2") format("woff2"),url("/fonts/Caveat/Caveat-Bold.woff") format("woff"),url("/fonts/Caveat/Caveat-Bold.ttf") format("truetype"),url("/fonts/Caveat/Caveat-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:swap}.all-markup{display:flex;flex-wrap:wrap;margin:-5px}.all-markup>*{flex-basis:100%;max-width:100%}@media screen and (min-width: 768px){.all-markup>*{flex-basis:50%;max-width:50%}}@media screen and (min-width: 1200px){.all-markup>*{flex-basis:25%;max-width:25%}}.all-markup>*{padding:5px !important;display:flex}.all-markup-group-transparent{background:blue !important}.todo-div{position:absolute;top:10%;left:0;width:100%;text-align:center}.todo-div:before{content:"пример выбора ресторана";display:inline-block;margin:auto;padding:20px;background:#fafbfc;border-radius:10px}html,body{margin:0;padding:0}@media screen and (max-width: 767px){@supports(-webkit-overflow-scrolling: touch){html,body{-webkit-overflow-scrolling:auto;overflow:auto}}}html{width:100%;height:100%;-webkit-tap-highlight-color:transparent}h1,h2,h3,h4,h5,h6,p{margin:0}body{font-family:Roboto;font-style:normal;font-weight:normal;width:100%;min-height:100%;min-width:320px;color:#282929;background:#fff;font-size:16px;line-height:1.2;overflow-x:hidden}body *{box-sizing:border-box}input,textarea,select,button{font-family:inherit}.color-black{color:#282929}.bg-light{background:#f8f8f8}.container{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto}@media screen and (min-width: 768px){.container{padding:0 32px}}@media screen and (min-width: 1024px){.container{padding:0 40px}}.main{width:100%;height:100%}.title--level-1{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}@media screen and (min-width: 1024px){.title--level-1{margin-bottom:20px}}.title--level-1:last-child{margin-bottom:0}@media screen and (min-width: 768px){.title--level-1{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:18px}}@media screen and (min-width: 768px)and (min-width: 1024px){.title--level-1{margin-bottom:32px}}@media screen and (min-width: 768px){.title--level-1:last-child{margin-bottom:0}}.text-page>.title--level-1{color:#282929}.title--level-2{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}@media screen and (min-width: 1024px){.title--level-2{margin-bottom:20px}}.title--level-2:last-child{margin-bottom:0}@media screen and (min-width: 768px){.title--level-2{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}}@media screen and (min-width: 768px)and (min-width: 1024px){.title--level-2{margin-bottom:20px}}@media screen and (min-width: 768px){.title--level-2:last-child{margin-bottom:0}}.text-page>.title--level-2{color:#282929}.title--level-3{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}@media screen and (min-width: 1024px){.title--level-3{margin-bottom:20px}}.title--level-3:last-child{margin-bottom:0}@media screen and (min-width: 768px){.title--level-3{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}}@media screen and (min-width: 768px)and (min-width: 1024px){.title--level-3{margin-bottom:20px}}@media screen and (min-width: 768px){.title--level-3:last-child{margin-bottom:0}}.text-page>.title--level-3{color:#282929}.title--level-4{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}@media screen and (min-width: 1024px){.title--level-4{margin-bottom:20px}}.title--level-4:last-child{margin-bottom:0}@media screen and (min-width: 768px){.title--level-4{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}}@media screen and (min-width: 768px)and (min-width: 1024px){.title--level-4{margin-bottom:20px}}@media screen and (min-width: 768px){.title--level-4:last-child{margin-bottom:0}}.text-page>.title--level-4{color:#282929}.title--level-5{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}@media screen and (min-width: 768px){.title--level-5{display:block;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px}}@media screen and (min-width: 768px)and (min-width: 1024px){.title--level-5{margin-bottom:20px}}@media screen and (min-width: 768px){.title--level-5:last-child{margin-bottom:0}}.text-page>.title--level-5{color:#282929}.title__with-button{display:flex;justify-content:space-between}.title--center{text-align:center}.title--light{color:#fff}.title--with-count,.title--with-icon{display:flex;align-items:center}.title--with-count .icon,.title--with-icon .icon{width:32px;height:32px;color:#f9694a;margin-right:10px}.title--with-count .count,.title--with-icon .count{margin-left:40px}.title--link{color:#777c83;transition:all .5s ease-out}.title--link-blue{color:#4cbbbb}.title--link-blue:hover,.title--link-blue:focus{color:#4cbbbb;outline:none;cursor:pointer}.title--link-blue:hover .user-icon,.title--link-blue:focus .user-icon{fill:#4cbbbb}.title--link:hover,.title--link:focus{color:#35bebe;outline:none;cursor:pointer}.subtitle{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.text--level-1{color:inherit;text-decoration:none;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.text--level-2{color:inherit;text-decoration:none;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.text--level-3{color:inherit;text-decoration:none;font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.text--center{text-align:center}.text__modal{margin:18px auto 29px;font-style:normal;font-weight:300;font-size:16px;line-height:170%;text-align:center;letter-spacing:.01em;color:#777c83}.hidden{display:none !important}img{max-width:100%;height:auto}hr{height:1px;background:#e0e7e9;margin-bottom:22px;border:0}select{-webkit-appearance:none;-moz-appearance:none;text-indent:.01px;appearance:none !important}select::-ms-expand{display:none}input[type=number],input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button,input[type=text]::-webkit-outer-spin-button,input[type=text]::-webkit-inner-spin-button{-webkit-appearance:none}input[type=number]{-moz-appearance:textfield !important}input:-webkit-autofill{-webkit-box-shadow:0 0 0 30px #fff inset !important}input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{-webkit-box-shadow:0 0 0 30px #fff inset !important}.unstyled{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}.medium{font-family:Roboto;font-style:normal;font-weight:500}.medium--red{color:#e91e63}.close{position:absolute;right:10px;top:10px;width:26px;height:26px;margin:0;padding:0;border:0;background-color:transparent;color:#fff;font-size:0;cursor:pointer;outline:none}.close::before,.close::after{content:"";position:absolute;top:50%;left:50%;width:140%;color:inherit;height:2px;border-radius:2px;background:currentColor}.close::before{transform:translate(-50%, -50%) rotate(45deg)}.close::after{transform:translate(-50%, -50%) rotate(-45deg)}.close:hover,.close:focus{opacity:.5}.close>span{display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:250%;height:250%}.close--clear{position:absolute;width:20px;height:20px;right:16px;top:50%;border-radius:50%;background-color:#e3eaec;transform:translateY(-50%);color:#c8ced0}.close--clear:before,.close--clear:after{width:60%}.close_no-position{top:0;right:0}.close_small{width:12px;height:12px}.close_grey{color:#b1b9bd}iframe>.close{display:none !important}.block-mb-0{margin-bottom:00px}.block-mb-1{margin-bottom:10px}.block-mb-2{margin-bottom:20px}.block-mb-3{margin-bottom:30px}.block-mb-4{margin-bottom:40px}.block-mb-5{margin-bottom:50px}.block-mb-6{margin-bottom:60px}.block-mb-7{margin-bottom:70px}.block-mb-8{margin-bottom:80px}.block-mb-9{margin-bottom:90px}.block-mb-10{margin-bottom:100px}.wmin-240{min-width:240px}.w-280{width:280px}.w-220{width:220px}.w-50{width:50px}.mw-800{max-width:800px}.mw-464{max-width:464px}.mw-464 .form-group .radio-check-box label{display:flex;align-items:center}@media screen and (max-width: 767px){.mw-464 .form-group .radio-check-box label span{display:flex;align-items:flex-end}}.mw-464 .form-group .radio-check-box .icon{margin-left:4px}.h-50{height:50px}.block-checkbox{margin-bottom:14px}.fs--test{text-transform:capitalize;margin-bottom:20px;background:#ddd}.fs-p1{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.fs-p1_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.fs-banner{font-family:Raleway;font-style:normal;font-weight:bold;font-size:46px;letter-spacing:.02em;line-height:1.2;font-feature-settings:"pnum" on,"lnum" on;text-shadow:0 0 19px rgba(66,69,140,.07)}.fs-h1{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h2{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h2_d{font-family:Raleway;font-style:normal;font-weight:600;font-size:24px;letter-spacing:0;line-height:28.13px;font-feature-settings:"pnum" on,"lnum" on}.fs-h3{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h3_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h4{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h4_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fs-h5{font-family:Raleway;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on}.fs-h5_s{font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on}.fs-subtitle_ex{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.fs-subtitle{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.fs-subtitle_s{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.fs-subtitle_b{font-family:Raleway;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.fs-p2{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5}.fs-p2_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.fs-p3{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.fs-p3_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3}.fs-p3_14{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3}.fs-p4{font-family:Roboto;font-style:normal;font-weight:300;font-size:18px;letter-spacing:.01em;line-height:1.7}.fs-p4_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.7}.fs-p5{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.fs-p5_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.7}.fs-p5_r{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.fs-p6_s{font-family:Roboto;font-style:normal;font-weight:normal;font-size:6px;letter-spacing:.01em;line-height:1.4}.fs-p7{font-family:Roboto;font-style:normal;font-weight:normal;font-size:24px;letter-spacing:.24px;line-height:1.7}.fs-p8{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.24px;line-height:1.5}.fs-p9{font-family:Roboto;font-style:normal;font-weight:normal;font-size:15px;letter-spacing:0;line-height:1.5}.fs-caption1{font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-caption1_s{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-caption1_xs{font-family:Raleway;font-style:normal;font-weight:800;font-size:11px;letter-spacing:.08em;line-height:12.91px;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-caption2{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption2_s{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption2_d{font-family:Raleway;font-style:normal;font-weight:600;font-size:14px;letter-spacing:0;line-height:1;font-feature-settings:"pnum" on,"lnum" on}.fs-caption3{font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption3_s{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption3_12{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on}.fs-caption4{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption5_s{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}.fs-caption6_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:9px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on}.fs-caption7_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:12px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on}.fs-overline{font-family:Raleway;font-style:normal;font-weight:600;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-overline_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn1{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn1_s{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn2{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn2_s{font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn2_m{font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-btn3{font-family:Raleway;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:0;line-height:1.4;font-feature-settings:"pnum" on,"lnum" on}.fs-btn3_s{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:1.4;font-feature-settings:"pnum" on,"lnum" on}.fs-price1{font-family:Roboto;font-style:normal;font-weight:500;font-size:18px;letter-spacing:.03em;line-height:21px}.fs-price2{font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;letter-spacing:.01em;line-height:19px}.fs-price3{font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:.03em;line-height:28px}.fs-price4{font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:.01em;line-height:1.7}.fs-price5{font-family:Roboto;font-style:normal;font-weight:normal;font-size:36px;letter-spacing:.01em;line-height:1}.fs-price6{font-family:Roboto;font-style:normal;font-weight:bold;font-size:48px;letter-spacing:.01em;line-height:1}.fs-price7{font-family:Roboto;font-style:normal;font-weight:normal;font-size:34px;letter-spacing:.01em;line-height:1.7}.fs-price8{font-family:Roboto;font-style:normal;font-weight:900;font-size:24px;letter-spacing:.03em;line-height:28.13px}.fs-price9{font-family:Roboto;font-style:normal;font-weight:900;font-size:16px;letter-spacing:.01em;line-height:19px}.fs-price10{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:21px}.fs-price11{font-family:Roboto;font-style:normal;font-weight:500;font-size:14px;letter-spacing:0;line-height:21px}.fs-price12{font-family:Roboto;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.03em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.fs-num1{font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;letter-spacing:.02em;line-height:15px}.fs-num2{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:19px}.fs-num2_3{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:1.3}.fs-num2_1{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:1}.fs-num3{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.6}.fs-num4{font-family:Roboto;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:25px}.fs-num5{font-family:Roboto;font-style:normal;font-weight:bold;font-size:12px;letter-spacing:0;line-height:1.3}.fs-num5_r{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:0;line-height:1.3}.fs-num6{font-family:Roboto;font-style:normal;font-weight:normal;font-size:26px;letter-spacing:0;line-height:1.7}.fs-num53_l{font-family:Roboto;font-style:normal;font-weight:300;font-size:53px;letter-spacing:0;line-height:.8}.fs-num7{font-family:Raleway;font-style:normal;font-weight:bold;font-size:20px;letter-spacing:0;line-height:26px}.fs-num8{font-family:Roboto;font-style:normal;font-weight:600;font-size:18px;letter-spacing:.01em;line-height:1.6}.fs-promocode{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.arrow{display:inline-block;width:24px;height:24px;transition:transform .2s}.open .arrow{transform:rotate(90deg)}.title--with-icon .arrow{margin-left:34px}.flex{display:flex}.flex.jsb{justify-content:space-between}.flex.jcc{justify-content:center}.flex.aic{align-items:center}.flex.aie{align-items:flex-end}.flex.asc{align-self:center}.flex.column{flex-direction:column}.mb-0{margin-bottom:00px}.mb-1{margin-bottom:10px}.mb-2{margin-bottom:20px}.mb-3{margin-bottom:30px}.mb-4{margin-bottom:40px}.mb-5{margin-bottom:50px}.mb-6{margin-bottom:60px}.mb-7{margin-bottom:70px}.mb-8{margin-bottom:80px}.mb-9{margin-bottom:90px}.mb-10{margin-bottom:100px}#app{display:flex;min-height:100vh}#app .app{width:100%;display:flex;min-height:100%;flex-direction:column}.rub{font-family:Roboto;font-style:normal;font-weight:300;font-size:inherit;color:#777c83;margin:0 8px}.rub:first-child{margin-left:0}.rub:last-child{margin-right:0}.c-txt_gray{color:#777c83}.c-txt_black{color:#282929}.c-blue_txt{color:#4cbbbb}.c-button_blue{color:#56c4c4}.c-gray2{color:#c0cbd2}.c-gray_3{color:#e3eaec}.c-light_grey{color:#dfe8ea}.c-red{color:#e97d65}.c-disable{color:#d4d4d4}.c-error_fon{color:#faecec}.c-grey_fon{color:#f6f8f8}.c-input{color:#d7dfe1}.c-fon2{color:#f3f9f8}.c-blue_focus{color:#35bebe}.c-border{color:#e0e7e9}.c-fon-light{color:#fafbfc}.c-yellow{color:#ffc975}.c-button_red{color:#ff5555}.clear{cursor:pointer;color:#777c83}.clear .icon{color:#c0cbd2 !important}.clear:hover,.clear:focus{color:#4cbbbb;-webkit-tap-highlight-color:rgba(0,0,0,0)}.clear:hover .icon,.clear:focus .icon{color:#4cbbbb !important}.clear__text{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;color:inherit}@media screen and (max-width: 767px){.clear__text{display:none}}.total{display:flex;align-items:center;justify-content:space-between;padding-top:23px;border-top:1px solid #e0e7e9}.total__sum{font-family:Roboto;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:.03em;color:#424242}.content-block{margin-top:20px;padding:0}@media screen and (min-width: 768px){.content-block{border-radius:8px;border:1px solid #e0e7e9;padding:20px}}@media screen and (min-width: 1024px){.content-block{padding:64px 72px}}@media screen and (min-width: 768px){.mobile-show{display:none !important}}@media screen and (max-width: 767px){.mobile-hide{display:none !important}}.pre{display:inline-block;font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;color:#282929;border-radius:8px;background:#dfe8ea;padding:10px 20px;margin-bottom:13px}@media screen and (min-width: 768px){.pre{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}}@media screen and (min-width: 768px){.border-block{padding:56px 48px;border:1px solid #d7dfe1;border-radius:8px}}.border-block--checkout-basket{display:none;padding:0}@media screen and (min-width: 1024px){.border-block--checkout-basket{display:block;position:sticky;top:144px}}.map{position:relative}.modal--delivery-mob .map-select{margin:0 -16px}.modal--delivery-mob .map-select .form-select__control{border:none}.modal--delivery-mob .map-select .form-select__menu{border:none}.modal--delivery-mob .map-select .form-select__menu-list{padding:0;border:none;border-radius:0}.modal--delivery-mob .map-select .form-select__option{padding-left:16px;padding-right:16px}@media screen and (min-width: 768px){.map-select{position:absolute;top:32px;left:28px;z-index:2;width:408px;max-width:calc(100% - 28px * 2)}}.ml-20{margin-left:20px !important}@media(min-width: 375px)and (max-width: 767px){.ml-20{margin-left:0px !important}}.cl-pay-list{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:flex;flex-wrap:wrap;margin-top:20px}@media screen and (min-width: 768px){.cl-pay-list{justify-content:space-between}}.cl-pay-list li{height:24px;color:#777c83;margin-right:10px;margin-bottom:10px}.cl-pay-list li:nth-child(1){width:80px}.cl-pay-list li:nth-child(2){width:60px}.cl-pay-list li:nth-child(3){width:63px}.cl-pay-list li:nth-child(4){width:75px}.cl-pay-list li:last-child{width:48px;margin:0}.attention{padding-right:18px;background-image:url("/images/exclamation_mark.svg");background-color:transparent;background-size:16px 16px;background-repeat:no-repeat;background-position:right 3px}@media screen and (min-width: 768px){.attention{background-position:right 2px;background-size:14px 14px}}.grecaptcha-badge{visibility:hidden}.popup--basket .translucent-layer{left:0;right:0}.popup--basket .preloader-spinner{width:14px;height:14px;margin-top:10px;position:relative}.translucent-layer{position:absolute;top:0;right:-32px;bottom:0;left:-32px;background:#fafafa;opacity:.7}.ff-raleway{font-family:Raleway}.input-message{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;line-height:105.66%;letter-spacing:.02em;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.mb-0{margin-bottom:0 !important}.mb-20{margin-bottom:20px}.c-txt_lime_green{color:#38bf35}.w-100{width:100%}.color_red-focus{color:#ff532e}.color_red-focus .icon{color:#ff532e !important}.page-title{display:flex;align-items:center;align-content:center;margin-bottom:32px;width:100%}.page-title>h1{margin:0}.page-title__icon{margin-left:12px;height:22px;flex-grow:1}.page-title__icon .icon{width:22px;height:22px}.page-title__comment{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;max-width:300px;margin-left:30px}.dish-slide .label--basket{text-decoration:none}.link{display:inline;margin:0;padding:0;background:none;text-decoration:none;color:#777c83;border:none;font-size:16px;font-family:Raleway;font-style:normal;font-weight:normal;cursor:pointer;transition:.3s;font-feature-settings:"pnum" on,"lnum" on}.link:hover,.link:focus{color:#4cbbbb;outline:none;border-color:transparent}.link_p3{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.link--text{color:#282929}.link--btn{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;display:block;color:#4cbbbb}.link--btn:hover,.link--btn:focus{color:#31bbbb}.link--btn:disabled{cursor:unset;color:#d4d4d4}.link--btn1{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;display:inline-block;color:#4cbbbb}.link--btn1:hover,.link--btn1:focus{color:#31bbbb}.link--pseudo{display:inline;margin:0;padding:0;background:transparent;border:0;color:#777c83;border-bottom-width:1px;border-bottom-style:dashed;border-bottom-color:inherit;cursor:pointer;text-decoration:none}.link .link--pseudo{color:inherit}.link--pseudo:hover,.link--pseudo:focus{border-color:inherit;outline:none}.link--application{display:inline-flex;align-items:center;justify-content:center;max-width:136px;min-width:126px;height:40px;background-color:#b6c6cb;transition:background-color .3s;border-radius:50px;margin-right:16px;cursor:pointer}@media screen and (max-width: 461px){.link--application:last-child{margin-right:0;margin-left:0}}@media screen and (max-width: 767px){.link--application:first-child{margin-left:0}}@media screen and (max-width: 1023px){.link--application{margin-right:8px;max-width:84px;min-width:84px}}@media screen and (max-width: 1023px)and (max-width: 767px){.link--application{max-width:136px;min-width:136px;margin-right:0;margin-left:16px;margin-bottom:16px}}.link--application img{width:70%;height:55%;filter:grayscale(1);transition:filter .3s}.link--application:hover,.link--application:focus{background-color:#000}.link--application:hover img,.link--application:focus img{filter:grayscale(0)}.link--light{color:#fff}.link--with-border{padding:6px;transition:color .3s;position:relative}.link--with-border::before,.link--with-border::after{content:"";background-color:#35bebe;position:absolute;width:100%;height:2px;left:0;opacity:0;transition:transform .3s,opacity .3s}.link--with-border::before{top:0;transform:translateY(-10px)}.link--with-border::after{bottom:0;transform:translateY(10px)}.link--with-border:hover::before,.link--with-border:hover::after,.link--with-border:focus::before,.link--with-border:focus::after{opacity:1;transform:translateY(0)}.link--with-icon{display:inline-flex;align-items:center}.footer-menu__item>.link--with-icon{display:flex;align-items:flex-start;gap:12px;color:#b1b9bd}.link--with-icon:hover .link,.link--with-icon:focus .link{color:#35bebe}.link--with-icon:hover .factory-icon path,.link--with-icon:focus .factory-icon path{stroke:#31bbbb;fill:#31bbbb}.link--with-icon:hover .factory-icon path:last-child,.link--with-icon:focus .factory-icon path:last-child{fill:unset}.link--with-icon:hover .factory-icon path:nth-last-child(2),.link--with-icon:focus .factory-icon path:nth-last-child(2){stroke:unset}.link--with-icon:hover .briefcase-icon rect,.link--with-icon:focus .briefcase-icon rect{stroke:#31bbbb}.link--with-icon:hover .briefcase-icon path,.link--with-icon:focus .briefcase-icon path{stroke:#31bbbb}.link--with-icon:hover .briefcase-icon path:nth-last-child(2),.link--with-icon:focus .briefcase-icon path:nth-last-child(2){stroke:unset}.link--with-icon .icon{margin:0 10px}.link--with-icon .icon:first-child{margin-left:0}.link--with-icon .icon:last-child{margin-right:0}.link_lime-color{color:#38bf35}.link_lime-color:hover,.link_lime-color:active,.link_lime-color:focus{color:#38bf35}.link_orange-color{color:#ff8a00}.link_orange-color:hover,.link_orange-color:active,.link_orange-color:focus{color:#ff8a00}.link--back{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;display:inline-flex;align-items:center;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;cursor:pointer}.link--back:hover,.link--back:focus{color:#31bbbb}.link--back .link__icon{display:inline-block;width:10px;height:10px;margin:0 10px;color:inherit}.link--back .link__icon:first-child{margin-left:0}.link--back .link__icon:last-child{margin-right:0}.link--blue{color:#31bbbb;cursor:pointer}.link_phone{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.restaurant__advantages-link{text-transform:unset;font-size:12px;line-height:12.68px;letter-spacing:.02em;font-weight:500;gap:10px}.restaurant__advantages-link img{width:16px;height:16px}.head{display:flex;justify-content:space-between;align-items:center}.head .title--level-1{margin-bottom:0}.head .title--level-2{margin-bottom:0}.head .title--level-3{margin-bottom:0}.head .title--level-4{margin-bottom:0}.head .title--level-5{margin-bottom:0}.head .title--level-6{margin-bottom:0}form.btn{padding:0}.btn{display:flex;align-items:center;justify-content:center;text-align:center;margin:0;padding:0;text-decoration:none;border:0;border-radius:48px;font-family:Raleway;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:0;line-height:1.4;font-feature-settings:"pnum" on,"lnum" on;cursor:pointer;transition:all .3s;background:transparent;outline:none}.btn_bullet{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;text-transform:uppercase;flex-direction:column;cursor:pointer}.btn_bullet span{margin-top:7px}.btn_bullet:hover{color:#4cbbbb}.btn__to-basket{min-width:130px}.btn__span{display:block;width:100%;text-align:center;margin:auto}.btn__centered{display:flex;align-items:center;justify-content:center;width:100%;margin-left:auto;margin-right:auto}.btn__centered--left{text-align:left;justify-content:flex-start;align-items:stretch;width:100%}.btn--primary{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;height:40px;padding:4px 20px;background:linear-gradient(104.96deg, #f9694a -11.32%, #ff5555 106.34%);color:#fff;overflow:hidden;position:relative}.btn--primary>span{z-index:3}@media screen and (min-width: 768px){.btn--primary{min-height:48px;height:48px;padding:4px 30px}}.btn--primary::before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(104.96deg, #ff532e -11.32%, #ff4242 106.34%);opacity:0;transition:opacity .3s;z-index:2;border-radius:48px}.btn--primary:hover::before{opacity:1}.btn--min-content{min-width:-moz-min-content;min-width:min-content}@media screen and (max-width: 1023px){.btn--min-content{white-space:unset;width:100%}}.btn--secondary{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#fff;background:#56c4c4;padding:4px 30px}.btn--secondary:hover,.btn--secondary:focus,.btn--secondary:active{background:#31bbbb;outline:none}.btn--gray{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#fff;padding:4px 30px;background-color:#b6c6cb}.btn--gray:hover,.btn--gray:focus,.btn--gray:active{background:#31bbbb;outline:none}.btn--gray-2{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#4cbbbb;padding:17px 20px;background-color:#f6f8f8;transition:background-color .3s ease-out}.btn--gray-2:hover,.btn--gray-2:focus,.btn--gray-2:active{background-color:#31bbbb;outline:none}.btn--gray-2:hover span,.btn--gray-2:focus span,.btn--gray-2:active span{color:#fff}.btn--gray-3{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;min-height:32px;height:32px;padding:0px 12px;background:#f1f6f6;color:#4cbbbb;overflow:hidden;position:relative;transition:all .3s ease}.btn--gray-3:hover,.btn--gray-3:focus,.btn--gray-3:active{color:#fff;background:#31bbbb}.btn--gray-3:disabled{background-color:#f6f8f8 !important;color:#d4d4d4 !important}.btn--violet{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;background:linear-gradient(107.83deg, #8c57ff 0%, #9f3ac2 98.23%);min-height:40px;color:#fff;padding:4px 80px}.btn--violet:hover,.btn--violet:focus,.btn--violet:active{background:#31bbbb;outline:none}.btn--nowrap{white-space:nowrap}.btn--auth{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;font-size:12px;color:#56c4c4}.btn--auth:hover,.btn--auth:active{background:transparent}.btn--auth span{display:none}.btn--auth:hover,.btn--auth:focus{color:#fff}@media screen and (min-width: 768px){.btn--auth{font-size:12px}}@media screen and (min-width: 1024px){.btn--auth{font-size:12px}}@media screen and (min-width: 1200px){.btn--auth{font-size:14px}}.btn--auth-modal{background:#dfe8ea}.btn--auth-modal:hover{background:#31bbbb}.btn--auth-modal span{display:block}.btn--auth--menu{display:flex;background-color:#f6f8f8;width:195px;height:33px;padding:4px 16px;justify-content:flex-start;align-items:center;gap:4px;color:#31bbbb;text-transform:uppercase;line-height:105.66%;letter-spacing:.88px;font-size:11px;font-weight:700;margin-bottom:16px;order:0}.btn--auth--menu svg{width:22px;height:22px}.btn--auth--menu span{display:block}.btn--auth--menu:hover,.btn--auth--menu:focus{color:#31bbbb;background-color:#f6f8f8}.btn--code{background:#56c4c4;color:#fff;padding:4px 22px;height:56px;border-radius:5px;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.btn--code:hover,.btn--code:focus,.btn--code:active{background:#31bbbb;outline:none}.btn--code-promo{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;width:40%;text-indent:inherit}.btn--code-promo::before{display:none}@media screen and (min-width: 768px){.btn--code-promo{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}}.btn--code:disabled,.btn--code--disabled{background:#e3eaec !important;color:#777c83 !important}.btn-auth{width:100%}.btn--wide{padding:13px 40px}.btn--light{color:#fff;border:1px solid #fff}.btn--light:hover,.btn--light:focus,.btn--light:active{color:#35bebe;border-color:#35bebe;outline:none}.btn--height-down{min-height:50px}.btn--height-40{min-height:40px}.btn:disabled,.btn--disabled{cursor:default;background:#d4d4d4;color:#fff;box-shadow:none;pointer-events:none}.product--business .btn:disabled,.product--business .btn--disabled{cursor:pointer}.btn--disabled-black,.btn--disabled-black:disabled{cursor:default;background:#e3eaec;color:#282929;box-shadow:none;pointer-events:none}.btn--with-count .count{margin-left:30px}.btn--small{height:auto;min-height:40px;padding:5px 16px 4px 16px;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;line-height:13px}@media screen and (min-width: 768px){.btn--small{min-height:32px}}.btn--small-wide{height:auto;min-height:32px;padding:4px 24px;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;line-height:13px}.btn--with-icon{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#777c83;background:#fff}.btn--with-icon:hover,.btn--with-icon:focus,.btn--with-icon:active{outline:none}.btn--with-icon .icon{color:#000;margin-right:8px}.btn--orange{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#fff;background:linear-gradient(107.83deg, #ffa53b 0%, #f56d33 100%);padding:17px 18px;font-size:13px;line-height:105.66%;outline:none}.btn--orange:hover,.btn--orange:focus,.btn--orange:active{background:#31bbbb;outline:none}.btn--orange__transparent{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:40px;color:#fff;background:transparent;padding:17px 18px;position:relative;font-size:13px;line-height:105.66%;outline:none;color:#ff8a00;border:1px solid transparent;background:linear-gradient(to right, #ffffff, #ffffff),linear-gradient(to right, #ffa53b, #f56d33);background-clip:padding-box,border-box;background-origin:padding-box,border-box}.btn--orange__transparent:hover,.btn--orange__transparent:focus,.btn--orange__transparent:active{background:linear-gradient(107.83deg, #ffa53b 0%, #f56d33 100%);color:#fff;outline:none}.btn--uppercase{text-transform:uppercase}.btn--h-up{min-height:56px}.btn--back{display:flex;align-items:center;font-family:Raleway;font-style:normal;font-weight:SemiBold;background:transparent;font-size:11px;line-height:105.66%;letter-spacing:.08em;color:#777c83;min-width:90px}@media screen and (min-width: 768px){.btn--back{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;border:2px solid #d7dfe1;padding:12px 28px}}.btn--back:hover,.btn--back:focus{color:#4cbbbb;border-color:#4cbbbb}.btn--back>.icon{flex-shrink:0;width:12px;height:12px}.btn--transparent{background:transparent;color:#4cbbbb}.btn--transparent::before{display:none}.btn--transparent:hover,.btn--transparent:focus{background:transparent;color:#31bbbb}.btn--bordered{background:transparent;border:1px solid #4cbbbb;color:#4cbbbb}.btn--bordered::before{display:none}.btn--bordered:hover,.btn--bordered:focus{background:transparent;border-color:#31bbbb;color:#31bbbb}.btn--bordered__gray{border:1px solid #e3eaec;background-color:transparent;color:#4cbbbb;padding-left:16px;padding-right:16px;display:flex;align-items:center;text-transform:uppercase;height:32px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;white-space:nowrap}@media(hover: hover){.btn--bordered__gray:hover{background:#31bbbb;border-color:#31bbbb;color:#fff}}.btn--bordered__gray:active,.btn--bordered__gray:focus{background:#31bbbb;border-color:#31bbbb;color:#fff}.btn--bordered__coral{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#fff;overflow:hidden;position:relative;border:1px solid #f9694a;background-color:transparent;padding-left:20px;padding-right:20px;display:flex;align-items:center;text-transform:uppercase;min-height:48px;max-width:-moz-fit-content;max-width:fit-content;letter-spacing:.08em}.btn--bordered__coral>span{z-index:3;color:#f9694a}.btn--bordered__coral::before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(104.96deg, #ff532e -11.32%, #ff4242 106.34%);opacity:0;transition:opacity .3s;z-index:2;border-radius:48px}.btn--bordered__coral:hover::before{opacity:1}.btn--bordered__coral:hover{border:1px solid transparent}.btn--bordered__coral:hover>span{color:#fff}.btn--qr{display:flex;align-items:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;line-height:13px;letter-spacing:.08em;color:#777c83;padding:8px 28px;background:#fff;box-shadow:0 0 19px rgba(159,204,207,.27);border-radius:40px;min-height:40px}.btn--qr .icon{color:#000;width:16px;height:16px;margin-right:8px}@media screen and (min-width: 768px){.btn--qr{font-family:Raleway;font-style:normal;font-weight:500;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;padding:0;box-shadow:none;border-radius:0}.btn--qr .icon{width:32px;height:32px;margin-right:15px}}.btn_no-border{border-color:transparent}.btn_no-border:hover,.btn_no-border:focus{border-color:transparent}.btn--repeat span{position:relative;margin-left:16px}.btn--repeat span::before{content:"";display:inline-block;position:absolute;left:-16px;top:50%;margin-top:-7px;width:10px;height:12px;background-image:url("/images/repeat.svg")}.btn--inline{display:inline-flex}.btn__allergic{background-color:transparent;border:1px solid #e0e7e9;color:#777c83;padding:10px 15px;min-height:36px !important;font-weight:600 !important;font-size:11px !important;line-height:120% !important;text-transform:uppercase;display:flex;align-items:center;text-align:center}.btn__allergic:hover{color:#56c4c4;border:1px solid #56c4c4}.btn__allergic-active{background-color:#d7dfe1}.btn_red{background:linear-gradient(93.53deg, #f9694a -11.32%, #ff5555 106.34%);border-radius:48px;padding:10px 40px;color:#fff;min-width:200px}.btn_full-width{width:100%}.btn_2{font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;line-height:120%;letter-spacing:.08em;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb;border-radius:6px}.btn_2:hover,.btn_2:active{color:#4cbbbb}.btn-in-label{margin-left:auto;color:#31bbbb;font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;cursor:pointer;display:flex}.btn-in-label svg{margin-right:4px}.btn--white{color:#31bbbb;background-color:#fff;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-align:center;box-shadow:0px 0px 19px 0px rgba(159,204,207,.3);min-height:50px;display:flex;align-items:center;min-width:200px}.btn--white:hover,.btn--white:active{color:#fff;background-color:#31bbbb}.btn--white-transparent{color:#fff;background-color:transparent;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-align:center;box-shadow:0px 0px 19px 0px rgba(159,204,207,.3);min-height:50px;display:flex;align-items:center;min-width:200px;border:1px solid #fff}.btn--white-transparent:hover,.btn--white-transparent:active{background-color:#fff}.btn__cutlery{font-size:13px;line-height:13.74px;transition:color .3s ease;min-height:40px;padding:17px 20px}@media screen and (max-width: 1024px){.btn__cutlery{font-size:11px;line-height:13.2px;padding:14px 20px}}.btn__napkins{display:flex;gap:8px;padding:11px 20px;text-transform:uppercase;color:#777c83;transition:color .3s ease;max-height:48px}.btn__napkins svg{color:#31bbbb}.btn__napkins:focus svg,.btn__napkins:hover svg,.btn__napkins:active svg{color:#fff}@media screen and (max-width: 1024px){.btn__napkins{padding:11px 12px;max-height:40px}}.btn--booking{padding-left:16px;padding-right:16px;gap:10px;display:flex;max-height:40px;font-family:Raleway;line-height:13.2px;font-weight:700}@media screen and (max-width: 1024px){.btn--booking{width:-moz-min-content;width:min-content}}.btn--gray{color:#4cbbbb;background-color:#f1f6f6;border:1px solid #f1f6f6}@media(hover: hover){.btn--gray:hover{color:#fff;background-color:#31bbbb;border:1px solid #31bbbb}}.btn--gray:active{color:#fff;background-color:#31bbbb;border:1px solid #31bbbb}.btn--tips{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;padding:5px 10px;text-transform:unset;min-height:26px}@media screen and (max-width: 767px){.btn--tips{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3}}.btn--tips .btn__span{margin:0}.btn--tips_dropdown{font-family:Raleway;font-style:normal;font-weight:800;font-size:11px;letter-spacing:.08em;line-height:12.91px;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;min-height:32px;padding:0 16px;text-transform:uppercase;line-height:13.2px}@media screen and (max-width: 767px){.btn--tips_dropdown{font-family:Raleway;font-style:normal;font-weight:800;font-size:11px;letter-spacing:.08em;line-height:12.91px;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}}.btn--tips_link{color:#4cbbbb;padding:0;display:flex;height:28px;align-items:center;text-decoration:unset}.btn--tips_link:active{color:#fa8a37;cursor:pointer}.btn-icon{padding:0;width:16px;height:16px;color:#757575}.btn--transparent-2{border:1px solid #d7dfe1;background:transparent;color:#777c83;font-family:Raleway;font-style:normal;font-weight:bold;font-size:11px;letter-spacing:.08em;line-height:1.2;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;transition:all .3 ease;padding:0 15px;display:flex;gap:8px;align-items:center;min-height:36px}.btn--transparent-2 svg{transition:all .3s ease;fill:transparent}.btn--transparent-2::before{display:none}.btn--transparent-2:active,.btn--transparent-2:hover{color:#31bbbb}.btn--transparent-2--active{background:#d7dfe1}.btn--transparent-2--active svg{transform:rotate(180deg)}.checkout-page .btn-auth{width:330px}.btn-group{display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:stretch}.btn-group:not(:last-child){margin-bottom:10px}.btn-group .btn{margin:0 12px 0 0}@media screen and (min-width: 768px){.btn-group .btn{margin:0 24px 0 0}}.btn-group .btn:last-child{margin:0}.btn-group .btn--profile{margin:0}.btn-group--underlined{border-bottom:1px solid #e0e7e9;padding-bottom:10px}.btn-group--underlined-top{border-top:1px solid #e0e7e9;padding-top:10px}.btn-group--right{justify-content:flex-end;align-items:stretch}.btn-group--right .btn{margin:0 0 0 20px}.btn-group--right .btn:last-child{margin:0 0 0 20px}.btn-group--right .btn:first-child{margin:0}.btn-group>.link{display:flex;align-items:center}.btn-group--center{justify-content:center}.btn-group--stretch{justify-content:space-between}.btn-group--stretch .btn{flex-grow:1}.btn-group--condensed .btn{height:50px}.btn-group--condensed.btn-group--right .btn{margin-right:0;margin-left:20px}.btn-group--condensed.btn-group--right .btn:last-child{margin:0 0 0 20px}.btn-group--condensed.btn-group--right .btn:first-child{margin:0}.btn-group--reversed{flex-direction:row-reverse}.btn-group--reversed .btn{margin:0 0 0 20px}.btn-group--reversed .btn:first-child{margin:0 0 0 20px}.btn-group--reversed .btn:last-child{margin:0}.btn-group--reversed.btn-group--condensed .btn,.btn-group--reversed.btn-group--condensed .btn:first-child{margin-left:8px}.btn-group--reversed.btn-group--condensed .btn:last-child{margin-left:0}.btn-group--column{flex-direction:column}.btn-group--column .btn{margin:0 0 10px}.btn-group--column .btn:last-child{margin:0}@media screen and (max-width: 767px){.btn-group--adaptive{flex-direction:column}.btn-group--adaptive .btn{margin:0 0 10px}.btn-group--adaptive .btn:last-child{margin:0}}svg{fill:currentColor}.icon{color:#c0cbd2;width:16px;height:16px;flex-shrink:0}@media screen and (min-width: 1024px){*:hover>.icon,*:focus>.icon,.icon:hover,.icon:focus{color:#757575}}.icon.inherit-color,*:hover>.icon.inherit-color,*:focus>.icon.inherit-color,.icon.inherit-color:hover,.icon.inherit-color:focus{color:inherit}.icon.inherit-size{width:100%;height:100%}.icon-container{display:inline-block;margin-right:14px;color:#777c83;width:16px;height:16px}.icon-container .icon{vertical-align:top}.print-show{display:none}@media print{.print-show{display:block !important}.print-hide{display:none !important}.header,.footer{display:none}}.list{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out}@media screen and (max-width: 767px){.list{display:flex;flex-wrap:wrap;padding:0 20px;margin-bottom:0;justify-content:space-between}}.popup .clipper>.list{margin:24px 0;border-radius:0}@media screen and (max-width: 767px){.popup .clipper>.list{margin:20px 0 10px 0;padding:0 10px}}.list__item{display:block}@media screen and (max-width: 767px){.list__item{display:inline-flex;padding:10px}}@media screen and (max-width: 767px){.list__item:last-child{margin-right:auto}}.list__link{display:block;text-align:left;width:100%;font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;color:#777c83;background:#fff;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 767px){.list__link{text-align:center;padding-bottom:10px;border-bottom:2px solid transparent}}@media screen and (min-width: 768px){.list__link{padding:12px 30px}}@media screen and (min-width: 768px){.list__link:hover,.list__link:focus{color:#fff;background-color:#31bbbb}}.list__link.active{color:#31bbbb;border-color:#31bbbb;background-color:transparent}@media screen and (min-width: 768px){.list__link.active{color:#fff;background-color:#31bbbb}}.list-ol,.list-ul{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.list-ul li{margin-bottom:4px}.list-ul li::before{content:"";display:inline-block;width:8px;height:8px;margin-right:8px;border-radius:50%;background:#4cbbbb}.list-ol{counter-reset:count}.list-ol li{counter-increment:count;margin-bottom:4px}.list-ol li::before{content:counter(count);display:inline-flex;margin-right:8px;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:#e3eaec;font-family:Roboto;font-style:normal;font-weight:500;font-size:15px;line-height:18px;text-align:center;letter-spacing:.03em}.popup{display:none;position:absolute;left:0;top:calc(100% + 7px);z-index:9999;width:100vw;max-width:240px;background:#fff;box-shadow:0 0 24px rgba(131,192,196,.31);border-radius:8px;cursor:default}.popup:not(.popup--right):hover,.popup:not(.popup--right):focus,.popup:not(.popup--tooltip):hover,.popup:not(.popup--tooltip):focus{display:block}.popup__close{color:#b4b5b6;top:8px;right:8px;width:12px;height:12px}.popup__close::before,.popup__close::after{height:1px}.popup__body{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-style:normal;font-weight:600;font-size:18px;line-height:130%;font-feature-settings:"pnum" on,"lnum" on;color:#000}.popup__body .c-txt_black{font-family:Raleway;font-style:normal;font-weight:SemiBold;font-style:normal;font-weight:400;font-size:16px;line-height:140%;font-feature-settings:"pnum" on,"lnum" on;color:#000}.popup>*{border-radius:8px;overflow:hidden}.popup::before{content:"";position:absolute;z-index:-1;left:0;top:0;width:18px;height:18px;background:#fff;border-radius:4px;transform:translate(150%, -20%) rotate(45deg)}.popup::after{content:""}.popup.open{display:block}.popup--right::after,.popup--city::after{content:"";position:absolute;left:0;top:-10px;height:10px;width:100%}.popup--right{left:auto;right:0}.popup--right::before{left:auto;right:0;transform:translate(-150%, -20%) rotate(45deg)}.popup--left{left:10px;right:auto}.popup--basket{max-width:368px;z-index:100}.popup--basket:hover,.popup--basket:focus{display:block !important}.popup--profile{right:-20px}.popup--profile::after{top:-30px;height:30px}@media screen and (max-width: 767px){.popup--profile{max-width:288px;right:calc((100vw / 3 - 100vw / 2))}.popup--profile::before{width:0;height:0}}.popup--profile .list__item:last-of-type{margin-bottom:0}.popup--map{align-items:center;padding:25px 19px;top:0;left:50%;transform:translateX(-50%);max-width:280px}.popup--map.open{display:flex}.popup--map::before{display:none}.popup--error,.popup--error .popup__body{text-align:left;color:#e97d65}.popup--cabinet{z-index:10}.popup--cabinet>div{overflow:visible}.popup--cabinet:after,.popup--cabinet:before{content:none}.popup--cabinet .btn--qr{flex-grow:1;margin-bottom:25px}.popup--top{top:auto;bottom:calc(100% + 7px)}.popup--top::after{content:"";position:absolute;left:0;top:auto;bottom:-15px;height:15px;width:100%}.popup--tooltip{max-width:100%;padding:18px 25px;font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3}.popup--tooltip>*{border-radius:0;overflow:initial}.popup--tooltip::before{display:none}@media screen and (min-width: 768px){.popup--tooltip:hover{display:block}}@media screen and (max-width: 767px){.burger-open .popup--profile{right:0}}.map-point{position:absolute;top:10%;left:50%;width:0;height:0;z-index:0}@media screen and (min-width: 1024px){.row{display:flex}.row--reverse{flex-direction:row-reverse}}.row--checkout:not(:last-child){margin-bottom:16px}.row--checkout .date-time{margin-top:20px}.column{flex:1;max-width:100%;margin-bottom:16px}.column:last-child{margin-bottom:0}@media screen and (min-width: 1024px){.column{margin:0 16px}.column:first-child{margin-left:0}.column:last-child{margin-right:0}.column--1-3{max-width:calc((100% - 32px * 2) / 3)}.column--2-3{max-width:calc((100% - 32px * 2) / 3 * 2 + 32px)}.row--reverse .column{margin:0 16px}.row--reverse .column:first-child{margin-right:0}.row--reverse .column:last-child{margin-left:0}}.label{display:flex;align-items:center;justify-content:center;min-height:24px;padding:0 10px 0 11px;background:#fff;border-radius:12px;font-family:Raleway;font-style:normal;font-weight:500;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.product--business .label{cursor:initial}.label--condensed{height:16px;padding:1px 6px 0 7px}.label--color{position:relative;background:transparent}.label--color::after{content:"";position:absolute;z-index:-1;left:0;top:0;right:0;bottom:0;border-radius:12px;color:inherit;background:currentColor;opacity:.25}.link--with-icon .label{color:inherit;margin-right:8px}.label--basket{color:#4cbbbb;font-family:Roboto;font-style:normal;font-weight:normal;font-size:13px;letter-spacing:.02em}.label--basket span{padding:0 0 0 3px}.label--basket_small{font-style:normal;font-weight:normal;font-size:12px;line-height:128.91%;letter-spacing:.03em;padding:0 6px;height:16px}.label--dish{display:inline-block;width:18px;height:18px;margin:auto 0 auto 8px;padding:0;background:none;border:0;border-radius:0;vertical-align:middle}.label--dish img,.label--dish svg{width:18px;height:18px;color:inherit;fill:currentColor}.label--bold{font-family:Raleway;font-style:normal;font-weight:bold;font-size:10px;letter-spacing:.08em;line-height:1.3;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}.label--right{display:flex;align-items:center;gap:2px;font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;padding-bottom:4px}.label--right svg{width:20px;height:20px}.clipper{position:relative;overflow:hidden;height:100%}@media screen and (max-width: 767px){.clipper-menu{max-width:359px !important;min-width:359px !important}}.scroller{overflow:auto;height:100%;min-width:100% !important;max-width:100% !important}.scroller::-webkit-scrollbar{width:0;height:0}@media screen and (max-width: 767px){.scroller-menu{display:grid;grid-template-columns:1fr 1fr;gap:16px;row-gap:20px}.scroller-menu .list{margin:16px 0;padding:0 12px}.scroller-menu .list__item{padding:0}.scroller-menu .list__item .link{text-align:start;text-transform:uppercase;font-size:11px;color:#282929;font-weight:600}.scroller-menu .list__link{padding-bottom:0}.scroller-menu .list__link:active{border-color:transparent;color:#4cbbbb;font-weight:600}.scroller-menu .list__link.active{border-color:transparent;color:#4cbbbb;font-weight:800}}.modal--visible-scroll .scroller{word-break:break-all}.ps__rail-y,.track{display:none;position:absolute;top:2px;right:2px;bottom:2px;width:6px;border-radius:3px;cursor:pointer;background-color:transparent;transition:background-color .2s}.ps__rail-y._h,.track._h{top:auto;width:auto;height:0;left:2px}.baron>.ps__rail-y,.baron>.track{display:block}.ps__thumb-y,.bar{position:absolute;right:0;width:6px;border-radius:3px;background-color:#e3eaec;transition:background-color .2s}.ps__thumb-y._h,.bar._h{bottom:0;right:auto;width:auto;height:6px}.gpay-button{background-origin:content-box;background-position:center center;background-repeat:no-repeat;background-size:contain;border:0px;border-radius:48px;box-shadow:rgba(60,64,67,.3) 0px 1px 1px 0px,rgba(60,64,67,.15) 0px 1px 3px 1px;cursor:pointer;height:40px;min-height:40px;padding:11px 24px}.gpay-button.black{background-color:#000;box-shadow:none;padding:12px 24px 10px}.gpay-button.white{background-color:#fff}.gpay-button.short,.gpay-button.plain{min-width:90px;width:160px}.gpay-button.black.short,.gpay-button.black.plain{background-image:url(https://www.gstatic.com/instantbuy/svg/dark_gpay.svg)}.gpay-button.white.short,.gpay-button.white.plain{background-image:url(https://www.gstatic.com/instantbuy/svg/light_gpay.svg)}.gpay-button.black.active{background-color:#5f6368}.gpay-button.black.hover{background-color:#3c4043}.gpay-button.white.active{background-color:#fff}.gpay-button.white.focus{box-shadow:#e8e8e8 0 1px 1px 0,#e8e8e8 0 1px 3px}.gpay-button.white.hover{background-color:#f8f8f8}.gpay-button-fill,.gpay-button-fill>.gpay-button.white,.gpay-button-fill>.gpay-button.black{width:100%;height:inherit}.gpay-button-fill>.gpay-button.white,.gpay-button-fill>.gpay-button.black{padding:11px 15%}.gpay-button.long,.gpay-button.buy{min-width:206px;width:240px}.gpay-button.donate{min-width:311px;width:240px}.gpay-button.white.long,.gpay-button.white.buy{background-image:url(https://www.gstatic.com/instantbuy/svg/light/ru.svg)}.gpay-button.black.long,.gpay-button.black.buy{background-image:url(https://www.gstatic.com/instantbuy/svg/dark/ru.svg)}.gpay-button.white.donate{background-image:url(https://www.gstatic.com/instantbuy/svg/light/donate/ru.svg)}.gpay-button.black.donate{background-image:url(https://www.gstatic.com/instantbuy/svg/dark/donate/ru.svg)}.sbpay-button{border:0px;border-radius:48px;box-shadow:rgba(60,64,67,.3) 0px 1px 1px 0px,rgba(60,64,67,.15) 0px 1px 3px 1px;cursor:pointer;height:48px;min-height:48px;font-weight:700;display:flex;justify-content:center;align-items:center;font-size:17px;font-family:Circe;font-style:normal;font-weight:bold}.sbpay-button .icon{width:59px;min-height:32px;color:#fff;margin-left:8px}@media screen and (max-width: 767px){.sbpay-button{height:40px;min-height:40px}}.sbpay-button.black{background-color:#1d1346;box-shadow:none;color:#fff}.sbpay-button.white{background-color:#fff}.sbpay-button.short,.sbpay-button.plain{min-width:90px;width:160px}.sbpay-button.black.active{background-color:#5f6368}.sbpay-button.black.hover{background-color:#3c4043}.sbpay-button.white.active{background-color:#fff}.sbpay-button.white.focus{box-shadow:#e8e8e8 0 1px 1px 0,#e8e8e8 0 1px 3px}.sbpay-button.white.hover{background-color:#f8f8f8}.sbpay-button-fill,.sbpay-button-fill>.sbpay-button.white,.sbpay-button-fill>.sbpay-button.black{width:100%;height:inherit}.sbpay-button-fill>.sbpay-button.white,.sbpay-button-fill>.sbpay-button.black{padding:11px 15%}.sbpay-button.long,.sbpay-button.buy{min-width:216px;max-width:208px}.sbpay-button.donate{min-width:311px;width:240px}.btn-group .sbpay-button{margin:0 17px 0 0}.modal--sbp .modal__container{min-width:800px}.modal--sbp .modal__top-text .icon{height:40px;width:100%;color:#000}.modal--sbp .modal__title{font-size:32px;font-family:Raleway;font-style:normal;font-weight:bold;line-height:130%;margin-bottom:5px}.modal--sbp .modal__body{max-width:560px}.modal--sbp .modal__body .reminder{height:41px;margin-bottom:26px}.modal--sbp .modal__qr{width:272px;height:272px}.modal--sbp .modal__price{font-size:24px;font-weight:700;color:#000;margin-bottom:36px;letter-spacing:.03em}.modal--sbp .modal__separator{border:1px solid #e0e7e9;width:100%;margin-bottom:24px}.modal--sbp .info-title{color:#4cbbbb;display:flex;justify-content:center;align-items:center;margin-bottom:32px}.modal--sbp .info-title .icon{width:10px;margin-left:7px}.modal--sbp ol{margin-right:10px;text-align:start;color:#282929;padding-inline-start:1.5em;max-width:550px;padding-right:15px}.modal--sbp ol ol{padding-right:0px;padding-inline-start:1em;margin-right:0px;margin-bottom:1.5rem}.modal--sbp ol span{font-weight:700}.modal--sbp ol a{color:#4cbbbb;cursor:pointer;-webkit-text-decoration:auto;text-decoration:auto}.modal--sbp p{font-weight:400}.modal--sbp li{margin-bottom:1.5rem}.modal--sbp li .detailed{margin-bottom:0rem}@media screen and (max-width: 767px){.modal--sbp .modal__container{width:100%;min-width:auto;padding-top:10px}.modal--sbp .modal__desc .quick-search-input .icon{width:20px;height:20px}.modal--sbp .modal__title{padding:0px}.modal--sbp .modal__title .icon{height:40px;width:100%;color:#000}.modal--sbp .modal__top-text{font-size:18px;font-weight:700;letter-spacing:.01em;color:#000;line-height:129.14%;margin:0px auto 8px auto;max-width:280px;font-family:Raleway;font-style:normal}.modal--sbp .modal__price{font-size:16px;color:#000;margin-bottom:16px;letter-spacing:.02em}.modal--sbp .modal__separator{margin-top:24px}.modal--sbp .row-info{display:flex;justify-content:space-between;margin-bottom:21px}.modal--sbp .row-info .icon{width:20px;height:20px}.modal--sbp .info-title{justify-content:flex-start;letter-spacing:.02em;margin-bottom:0px;font-size:12px}.modal--sbp .info-title .icon{width:10px;margin-left:7px}.modal--sbp .info{margin-right:-16px;margin-left:-16px}.modal--sbp .info ol{text-align:start;color:#282929;padding-left:32px;margin-inline-start:.5em;line-height:150%;font-weight:300;margin-bottom:26px}.modal--sbp .info p{font-weight:300;color:#4cbbbb}.modal--sbp .info .row-card-bank{display:flex;height:73px;border-bottom:1px solid #e0e7e9}.modal--sbp .info .card-bank{width:50%;display:flex;padding:16px;align-items:center;justify-content:flex-start;font-size:12px;color:#777c83}.modal--sbp .info .card-bank .logo-bank{width:40px;height:40px;overflow:hidden;margin-right:8px;border-radius:5px;min-width:40px;display:flex;align-items:center;background:url("/images/default-logo-bank.png")}.modal--sbp .info .card-bank img{height:40px;width:40px;-o-object-fit:cover;object-fit:cover;box-sizing:border-box;background-color:#fff}.modal--sbp .info .card-bank__preloader .logo-bank{background-color:#e0e7e9;background-image:none}.modal--sbp .info .card-bank__preloader .title-bank__preloader{background-color:#e0e7e9;width:50%;height:50%}.modal--sbp .info .card-bank .icon{width:40px;height:40px;margin-right:8px}.modal--sbp .info .card-bank:first-of-type{border-right:1px solid #e0e7e9}.modal--sbp .info .row-card-bank:first-child .card-bank{border-top:1px solid #e0e7e9}.modal--sbp .info__help{margin-top:13px;text-align:start;font-size:12px;letter-spacing:.03em;line-height:128.91%;max-width:290px}.modal--sbp .info__help p{color:#4cbbbb;font-weight:300}}.sbpay-button:disabled{opacity:.3}.yandex-pay .ya-pay-button{background-origin:content-box;background-position:center center;background-repeat:no-repeat;background-size:contain;border:0px;border-radius:48px;box-shadow:rgba(60,64,67,.3) 0px 1px 1px 0px,rgba(60,64,67,.15) 0px 1px 3px 1px;cursor:pointer;height:48px;min-height:40px;min-width:280px}@media screen and (max-width: 767px){.yandex-pay .ya-pay-button{min-height:40px;height:40px}}.btn-group .yandex-pay .ya-pay-button{margin:0 17px 0 0}@media screen and (max-width: 767px){.btn-group .yandex-pay .ya-pay-button{min-width:216px;margin:0 17px 0 0}}.select-restaurant__wrapper{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb}.select-restaurant__wrapper-open{min-width:100%}.select-restaurant__wrapper-full{width:100%}.select-restaurant__wrapper:hover{cursor:pointer}.select-restaurant__wrapper .form-input--select{display:flex;align-items:center;text-transform:none;min-width:100%}.select-restaurant__wrapper .form-input__control{min-width:100%}.select-restaurant__wrapper .form-select__single-value{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:14px 18px !important;color:#282929}.select-restaurant__wrapper .form-select__option{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83;padding:6px 18px !important}.select-restaurant__wrapper .form-select__option--is-selected{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#4cbbbb}.select-restaurant__wrapper .form-select__option:hover{color:#fff}.select-restaurant__container{display:flex;align-items:center}.btn-toogle__container{display:flex;align-items:center;border-radius:28px;background-color:#f1f6f6;transition:all .3s ease;position:relative}.btn-toogle__button{display:flex;align-items:center;gap:4px;height:48px;color:#777c83;background-color:transparent;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;border-radius:28px;border:none;cursor:pointer;flex:1;justify-content:center;transition:all .3s ease;position:relative;z-index:2}.btn-toogle__button:last-of-type{transition:padding-left .3s ease,padding-right 0s}@media(hover: hover){.btn-toogle__button:hover{color:#31bbbb}}.btn-toogle__button:active{color:#31bbbb}.btn-toogle__button-active{color:#fff;min-width:121px}@media(hover: hover){.btn-toogle__button-active:hover{color:#fff}}.btn-toogle__button-active:active{color:#fff}.btn-toogle__indicator{position:absolute;height:100%;top:0;background-color:#56c4c4;border-radius:40px;z-index:1;transition:all .3s ease}.reminder-footer{display:flex;justify-content:space-between;align-items:center;margin-top:30px}.reminder .remider-cutlery-toggle{display:inline-flex}.modal .radio-check-box--toggle-mobile{display:block;padding-bottom:20px}.modal .radio-check-box--toggle-mobile::before{display:block;margin-bottom:22px;font-family:Raleway;font-weight:600;font-size:18px;line-height:130%}.collapse__container{max-height:0;overflow:hidden;transition:ease-out .3s;font-family:Roboto;font-weight:300;font-size:16px;line-height:170%;letter-spacing:.01em;color:#777c83}.collapse__container_show{max-height:100px;margin-top:18px}.collapse__activator{position:relative;display:inline-block;padding-right:20px;cursor:pointer;font-family:Raleway;font-weight:600;font-size:11px;line-height:120%;letter-spacing:.08em;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#4cbbbb}.collapse__activator::before,.collapse__activator::after{content:"";position:absolute;width:9px;height:1px;background-color:#4cbbbb;top:5px;transition:linear .3s}.collapse__activator::before{transform:rotate(30deg);right:7px}.collapse__activator::after{transform:rotate(-30deg);right:0}.collapse__activator_active::before{transform:rotate(-30deg)}.collapse__activator_active::after{transform:rotate(30deg)}.radio-check-box--questionnaire{margin:15px 0px}.questionnaire--row{width:200px;color:inherit;text-decoration:none;font-family:Raleway;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:10px;display:flex;align-items:center;justify-content:space-between;min-height:60px}@media screen and (min-width: 768px){.questionnaire--row{min-width:100%}}@media screen and (max-width: 575px){.questionnaire--row{max-width:calc(100vw - 32px)}}.questionnaire--row .radio-check-box{padding:3px 0;justify-content:center;display:flex;width:calc((((100% - 64px) / 3 * 2 + 32px) - 200px) / 5);min-width:calc((((100% - 64px) / 3 * 2 + 32px) - 200px) / 5)}@media screen and (max-width: 1023px){.questionnaire--row .radio-check-box{width:calc((100vw - 360px) / 5);max-width:calc((100vw - 360px) / 5);min-width:calc((100vw - 360px) / 5)}}@media screen and (max-width: 767px){.questionnaire--row .radio-check-box{width:calc((100vw - 232px) / 5);max-width:calc((100vw - 232px) / 5);min-width:calc((100vw - 232px) / 5)}}.questionnaire--row .radio-check-box input[type=radio]+label,.questionnaire--row .radio-check-box input[type=radio]+.radio-check-box__label{padding:0 0 0 11px}.questionnaire--row .form-input{margin-bottom:0}.questionnaire--row span:not(:first-of-type){text-align:center;min-width:calc((((100% - 64px) / 3 * 2 + 32px) - 200px) / 5)}@media screen and (max-width: 1023px){.questionnaire--row span:not(:first-of-type){min-width:calc((100vw - 360px) / 5)}}@media screen and (max-width: 767px){.questionnaire--row span:not(:first-of-type){min-width:calc((100vw - 232px) / 5)}}.questionnaire--text{width:200px;min-width:200px;max-width:200px}.text-page__form-wrapper{padding:48px 0px 64px;display:flex;justify-content:center;flex-direction:column;align-items:center;background-color:#fafbfc;border-radius:8px}@media screen and (max-width: 1199px){.text-page__form-wrapper{padding:56px 0 64px 0}}@media screen and (max-width: 1023px){.text-page__form-wrapper{padding:56px 0 64px 0}}@media screen and (max-width: 576px){.text-page__form-wrapper{padding:56px 16px 64px 16px;margin-left:-16px;margin-right:-16px;border-radius:unset}}.text-page__form-wrapper .form-input__input{background-color:#fff}.text-page__form-container{width:510px;padding:32px 56px 48px;border-radius:8px}@media screen and (max-width: 767px){.text-page__form-container{width:auto}}.text-page__form-title{margin-bottom:32px;color:#282929}.text-page__form-btn{margin-bottom:36px;display:flex;justify-content:center}.text-page-corporate h1{font-size:32px;margin-bottom:27px;color:#2866b4}@media screen and (max-width: 1023px){.text-page-corporate{padding:0px;margin-top:0px}.text-page-corporate .page-header{margin-bottom:0px}.text-page-corporate .page-header__image{border-radius:0}}.text-page-corporate .page-content{padding:80px 104px 104px 104px}.text-page-corporate .page-content h2{font-size:32px;margin:0 0 32px}.text-page-corporate .page-content h3{font-size:21px}@media screen and (max-width: 1024px){.text-page-corporate .page-content{padding:80px 74px 74px 74px}}@media screen and (max-width: 1023px){.text-page-corporate .page-content{margin-top:0;padding:50px 32px;border:unset}.text-page-corporate .page-content h3{font-size:18px}}@media screen and (max-width: 768px){.text-page-corporate .page-content h2{font-size:24px}.text-page-corporate .page-content h5{font-size:16px}.text-page-corporate .page-content .title--level-2{font-size:21px}}@media screen and (max-width: 575px){.text-page-corporate .page-content{padding:44px 16px}}.text-page-corporate .p-1{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;margin-bottom:30px}.text-page-corporate .p-2{font-family:Roboto;font-style:normal;font-weight:300;font-size:14px;letter-spacing:0;line-height:1.5;margin-bottom:30px}.text-page-corporate .p-3{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;margin-bottom:30px}.text-page-corporate .p-4{font-family:Roboto;font-style:normal;font-weight:300;font-size:18px;letter-spacing:.01em;line-height:1.7;margin-bottom:30px}.text-page-corporate .p-5{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7;margin-bottom:30px}@media screen and (max-width: 1024px){.text-page-corporate .p-4{font-size:17px;line-height:170%}}@media screen and (max-width: 768px){.text-page-corporate .p-5{line-height:160%}}.text-page-corporate .advantages{display:grid;grid-template-columns:1fr 1fr 1fr;gap:32px;margin-bottom:30px}@media screen and (max-width: 1024px){.text-page-corporate .advantages{gap:32px}}@media screen and (max-width: 768px){.text-page-corporate .advantages{gap:32px}}@media screen and (max-width: 576px){.text-page-corporate .advantages{gap:24px}}@media screen and (max-width: 575px){.text-page-corporate .advantages{grid-template-columns:1fr}}.text-page-corporate .advantages-item{display:grid;grid-template-rows:73px 3fr;gap:8px}@media screen and (max-width: 575px){.text-page-corporate .advantages-item{grid-template-rows:unset;grid-template-columns:65px 3fr;gap:15px}}.text-page-corporate .advantages-item h3{margin-bottom:8px}.text-page-corporate .advantages-item img{align-self:flex-end}@media screen and (max-width: 576px){.text-page-corporate .advantages-item img{align-self:unset}}.text-page-corporate .title--level-2{color:#282929;font-size:32px}.text-page-corporate .contacts{display:grid;grid-template-columns:250px 250px 250px;gap:35px}@media screen and (max-width: 1024px){.text-page-corporate .contacts{grid-template-columns:1fr 1fr 1fr;gap:32px}}@media screen and (max-width: 768px){.text-page-corporate .contacts{gap:24px}}@media screen and (max-width: 575px){.text-page-corporate .contacts{grid-template-columns:1fr;gap:24px}}.text-page-corporate .contacts-item{white-space:nowrap}@media screen and (max-width: 576px){.text-page-corporate .contacts-item{white-space:unset}}.text-page-corporate .contacts-item h5{margin-bottom:8px}.text-page-corporate .contacts-item h3{margin-bottom:0}.text-page-corporate .contacts-item h3+.email{color:#4cbbbb}.text-page-corporate .contacts-item h3+.email:hover{color:#ff8a00}.text-page-corporate .contacts-row{display:flex;margin-top:38px;align-items:center;cursor:pointer}.text-page-corporate .contacts-row a,.text-page-corporate .contacts-row h3{color:#4cbbbb}.text-page-corporate .contacts-row a:hover,.text-page-corporate .contacts-row h3:hover{color:#ff8a00}.text-page-corporate .contacts-row img{margin-right:20px}.text-page-corporate .stats{background:#f6f8f8;border-radius:8px;margin-bottom:100px}@media screen and (max-width: 1024px){.text-page-corporate .stats{margin-bottom:80px}}@media screen and (max-width: 768px){.text-page-corporate .stats{margin-bottom:60px}}.text-page-corporate .stats h3{margin-bottom:0}.text-page-corporate .stats-contaiter{padding:32px;display:grid;grid-template-columns:150px 3fr;gap:32px}@media screen and (max-width: 1023px){.text-page-corporate .stats-contaiter{padding:32px 16px;gap:12px}}@media screen and (max-width: 768px){.text-page-corporate .stats-contaiter{grid-template-columns:1fr 3fr;gap:12px}}@media screen and (max-width: 575px){.text-page-corporate .stats-contaiter{grid-template-columns:1fr;grid-template-rows:55px 1fr;gap:12px}}.text-page-corporate .stats-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:32px}@media screen and (max-width: 1024px){.text-page-corporate .stats-items{gap:12px}}@media screen and (max-width: 575px){.text-page-corporate .stats-items{grid-template-columns:1fr}}.text-page-corporate .stats-items .p-2{margin-bottom:0}.text-page-corporate .stats-item{display:grid;gap:8px;grid-template-columns:1fr 3fr}@media screen and (max-width: 1024px){.text-page-corporate .stats-item{grid-template-columns:1fr;grid-template-rows:40px 1fr}}@media screen and (max-width: 575px){.text-page-corporate .stats-item{grid-template-rows:unset;grid-template-columns:80px 1fr}}.text-page-corporate .stats-number{font-family:Roboto;font-style:normal;font-weight:300;font-size:42px;line-height:100%;letter-spacing:.01em;color:#777c83}.text-page-corporate .company-types{display:grid;gap:0;grid-template-columns:1fr 1fr}@media screen and (max-width: 575px){.text-page-corporate .company-types{grid-template-columns:1fr;gap:8px}}.text-page-corporate .company-types-item{display:grid;gap:35px;padding:25px 25px 25px 0;grid-template-columns:1fr 5fr;display:flex;align-items:center;margin-bottom:8px}@media screen and (max-width: 1024px){.text-page-corporate .company-types-item{margin-bottom:12px}}@media screen and (max-width: 576px){.text-page-corporate .company-types-item{padding:14.5px 14.5px 14.5px 0;gap:28px}}@media screen and (max-width: 575px){.text-page-corporate .company-types-item{padding:15px 15px 15px 0;gap:35px}}.text-page-corporate .company-types-item svg{width:50px;height:50px;color:unset}.text-page-corporate .grey-block{background:#f5faff;border-radius:8px;margin-bottom:100px;margin-top:100px}@media screen and (max-width: 1024px){.text-page-corporate .grey-block{margin-top:80px;margin-bottom:80px}}@media screen and (max-width: 768px){.text-page-corporate .grey-block{margin-bottom:60px;margin-top:60px}}.text-page-corporate .grey-block-container{padding:32px 32px 25% 32px;background-image:url(/images/icons/corporate.svg);background-repeat:no-repeat;background-position:bottom;background-size:90%}.text-page-corporate .grey-block .title--level-2{color:#282929;font-size:32px}@media screen and (max-width: 767px){.text-page-corporate .grey-block .title--level-2{font-size:24px}}.text-page-corporate .grey-block .advantages{grid-template-columns:1fr 1fr 1fr 1fr;gap:40px}@media screen and (max-width: 1024px){.text-page-corporate .grey-block .advantages{gap:24px;margin-top:18px}}@media screen and (max-width: 767px){.text-page-corporate .grey-block .advantages{grid-template-columns:1fr 1fr;gap:24px;margin-top:28px;row-gap:0}}@media screen and (max-width: 575px){.text-page-corporate .grey-block .advantages{grid-template-columns:1fr;margin-top:28px}}.text-page-corporate .grey-block .advantages-item{display:block}.text-page-corporate .grey-block .advantages-item h3{margin-bottom:4px}.text-page-corporate .grey-block .advantages-item__image{min-height:70px;height:70px;margin-bottom:8px;display:flex;align-items:center}.text-page-corporate .corporate__form{background:#f5faff;margin:0 -104px;padding-top:56px;display:flex;flex-direction:column;align-items:center;margin-bottom:100px;background-image:url(/images/icons/background-dishes.svg);background-repeat:no-repeat;background-position:bottom}@media screen and (max-width: 1024px){.text-page-corporate .corporate__form{margin:0 -74px;margin-bottom:80px}.text-page-corporate .corporate__form h2{text-align:center;max-width:704px}}@media screen and (max-width: 768px){.text-page-corporate .corporate__form{padding:32px;margin:0 -32px;background-size:calc(100vw) auto;margin-bottom:60px}.text-page-corporate .corporate__form h2{text-align:center;max-width:704px}}@media screen and (max-width: 575px){.text-page-corporate .corporate__form{padding:32px 16px;margin:0 -16px;background-size:calc(100vw) auto;margin-bottom:60px}.text-page-corporate .corporate__form h2{text-align:center;max-width:704px}}.text-page-corporate .corporate__form h2{text-align:center}.text-page-corporate .corporate__form .p-5{text-align:center;color:#282929}.text-page-corporate .corporate__form .form-input--phone .form-input__input{background-color:#fff}.text-page-corporate .corporate__form textarea{min-height:156px}.text-page-corporate .corporate__feilds{max-width:505px;width:505px;margin-top:22px}@media screen and (max-width: 768px){.text-page-corporate .corporate__feilds{max-width:500px;width:500px}}@media screen and (max-width: 575px){.text-page-corporate .corporate__feilds{max-width:calc(100vw - 32px);width:calc(100vw - 32px)}}.text-page-corporate .corporate__row{display:flex;flex-direction:column;align-items:center;margin-bottom:90px}.text-page-corporate .corporate__row .btn{margin-bottom:14px}.text-page-corporate .corporate__image{width:100%;display:block;background-image:url(/images/icons/corporate.svg);background-repeat:no-repeat;background-position:bottom}.text-page-corporate .conditions-h2{font-size:24px !important}@media screen and (max-width: 768px){.text-page-corporate .conditions-h2{font-size:21px !important}}.text-page-corporate .conditions{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:10px;margin-bottom:100px}@media screen and (max-width: 767px){.text-page-corporate .conditions{grid-template-columns:1fr;gap:8px;margin-bottom:60px}}.text-page-corporate .conditions-item{padding:16px;border:1px solid #e3eaec;border-radius:8px}.text-page-corporate .conditions-item h3{margin-bottom:8px}.text-page-corporate .banner-corporate{display:grid;border:1px solid #e3eaec;grid-template-columns:275px 1fr;border-radius:8px;margin-bottom:100px;overflow:hidden;padding:0 20px}@media screen and (max-width: 576px){.text-page-corporate .banner-corporate{grid-template-columns:228px 1fr;margin-bottom:80px}}@media screen and (max-width: 575px){.text-page-corporate .banner-corporate{grid-template-columns:1fr;grid-template-rows:200px 1fr;margin-bottom:60px;padding:10px 20px}}.text-page-corporate .banner-corporate-image{overflow:hidden}.text-page-corporate .banner-corporate-image img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}@media screen and (max-width: 576px){.text-page-corporate .banner-corporate-image img{-o-object-fit:unset;object-fit:unset}}@media screen and (max-width: 375px){.text-page-corporate .banner-corporate-image img{-o-object-fit:cover;object-fit:cover}}.text-page-corporate .banner-corporate-text{padding:20px 0 0 32px}@media screen and (max-width: 1024px){.text-page-corporate .banner-corporate-text{padding:12px 32px}.text-page-corporate .banner-corporate-text h2{font-size:24px}}@media screen and (max-width: 576px){.text-page-corporate .banner-corporate-text{padding:16px 32px}.text-page-corporate .banner-corporate-text h2{font-size:21px}}@media screen and (max-width: 575px){.text-page-corporate .banner-corporate-text{padding:12px 16px}}.text-page-corporate .banner-corporate-text h2{margin-bottom:0}@media screen and (max-width: 767px){.text-page-corporate .banner-corporate-text h2{margin-bottom:18px}}.text-page-corporate .banner-corporate-text .btn{margin-top:14px;max-width:214px;min-width:215px;margin-bottom:42px}@media screen and (max-width: 1024px){.text-page-corporate .banner-corporate-text .btn{margin-top:16px;margin-bottom:20px}}@media screen and (max-width: 767px){.text-page-corporate .banner-corporate-text .btn{margin-top:24px}}@media screen and (max-width: 1023px){.text-page-kids-klub{padding:0}}.text-page-kids-klub .page-content{padding:0}@media screen and (max-width: 1023px){.text-page-kids-klub .page-content{border:unset}}.text-page-kids-klub .container{padding:80px 104px 104px 104px;display:grid;gap:80px}@media screen and (max-width: 1024px){.text-page-kids-klub .container{padding:80px 74px 74px 74px}}@media screen and (max-width: 1023px){.text-page-kids-klub .container{margin-top:0;padding:50px 32px;border:unset}}@media screen and (max-width: 768px){.text-page-kids-klub .container .title--level-2{font-size:21px}}@media screen and (max-width: 575px){.text-page-kids-klub .container{padding:44px 16px}}.text-page-kids-klub .title--level-1{color:#282929}@media screen and (max-width: 1023px){.text-page-kids-klub .title--level-1{font-size:24px;margin-bottom:32px}}.text-page-kids-klub .center{justify-content:center;display:flex}.text-page-kids-klub .row{margin-top:32px}.text-page-kids-klub .header-container{display:flex;padding:0 80px;flex-direction:column;gap:32px}@media screen and (max-width: 1024px){.text-page-kids-klub .header-container{padding:0}}.text-page-kids-klub .header-container-mission{display:grid;padding:0px 85px;gap:15px;grid-template-columns:81px 1fr}@media screen and (max-width: 1023px){.text-page-kids-klub .header-container-mission{padding:0}}.text-page-kids-klub .header-container-text{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.text-page-kids-klub .attention-container{display:flex;flex-direction:row;gap:40px;padding:40px 84px;border-radius:8px}@media screen and (max-width: 575px){.text-page-kids-klub .attention-container{flex-direction:column;padding:40px 32px}}.text-page-kids-klub .attention-container__yellow{background-color:#ffe66b;color:#282929}.text-page-kids-klub .attention-container__red{background-color:#fa644c}.text-page-kids-klub .attention-container__red .btn--white-transparent:hover{color:#fa644c}.text-page-kids-klub .attention-container__orange{background-color:#f59e4f}.text-page-kids-klub .attention-container__orange p{color:#fff;margin-bottom:20px}.text-page-kids-klub .attention-container__orange .attention-image{align-items:flex-start}.text-page-kids-klub .attention-container__orange .btn--white-transparent:hover{color:#f59e4f}.text-page-kids-klub .attention-container__revers{flex-direction:row-reverse}@media screen and (max-width: 767px){.text-page-kids-klub .attention-container__revers{flex-direction:column}}.text-page-kids-klub .attention-container a.btn{width:-moz-max-content;width:max-content;text-decoration:unset}@media screen and (max-width: 575px){.text-page-kids-klub .attention-container a.btn{min-width:unset;padding:0 20px;max-width:224px}}.text-page-kids-klub .attention-image{display:flex;justify-content:center;align-items:center}.text-page-kids-klub .attention-image img{height:-moz-max-content;height:max-content;max-width:unset}@media screen and (max-width: 767px){.text-page-kids-klub .attention-image img{height:183px}}@media screen and (max-width: 767px){.text-page-kids-klub .attention-image{justify-content:flex-start;align-items:flex-start}}.text-page-kids-klub .attention-info{display:flex;flex-direction:column;justify-content:center;gap:16px}.text-page-kids-klub .attention-info .title--level-1{color:#fff;margin-bottom:0}.text-page-kids-klub .attention-info a{color:#fff;text-decoration:underline}.text-page-kids-klub .attention-title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 1024px){.text-page-kids-klub .attention-title{font-size:21px}}.text-page-kids-klub .attention-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.text-page-kids-klub .concept{display:grid;gap:32px;grid-template-columns:1fr 1fr 1fr 1fr}@media screen and (max-width: 1023px){.text-page-kids-klub .concept{grid-template-columns:1fr 1fr;gap:48px;row-gap:32px}}@media screen and (max-width: 767px){.text-page-kids-klub .concept{grid-template-columns:1fr}}.text-page-kids-klub .concept-item{display:grid;gap:20px;grid-template-rows:61px 1fr}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-item{grid-template-rows:unset;grid-template-columns:69px 1fr}}@media screen and (max-width: 575px){.text-page-kids-klub .concept-item{gap:16px}}.text-page-kids-klub .concept-item .btn{min-width:180px;padding:0 20px;white-space:nowrap}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-item .btn{grid-column:2/2}}.text-page-kids-klub .concept-3{grid-template-columns:1fr 1fr 1fr}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-3{gap:32px}}@media screen and (max-width: 767px){.text-page-kids-klub .concept-3{grid-template-columns:1fr}}.text-page-kids-klub .concept-3 .concept-item{grid-template-rows:61px 62px 1fr}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-3 .concept-item{grid-template-columns:1fr}}@media screen and (max-width: 767px){.text-page-kids-klub .concept-3 .concept-item{grid-template-columns:60px 1fr;grid-template-rows:1fr}}.text-page-kids-klub .concept-3 .concept-item .btn{min-width:unset;width:-moz-max-content;width:max-content}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-3 .concept-item .btn{grid-column:auto}}@media screen and (max-width: 767px){.text-page-kids-klub .concept-3 .concept-item .btn{grid-column:2/2;grid-row:3/3}}.text-page-kids-klub .concept-3 .concept-item .markers{margin:0 0 20px 24px;padding:0;list-style-type:disc}@media screen and (max-width: 767px){.text-page-kids-klub .concept-3 .concept-item .markers{grid-column:2/2;grid-row:2/2;margin-bottom:0}}.text-page-kids-klub .concept-3 .concept-item .markers li{margin:7px 0;font-size:14px;display:list-item;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.text-page-kids-klub .concept-3 .concept-item .markers li::marker{color:#777c83}.text-page-kids-klub .concept-3 .concept-item .markers li::before{content:unset}@media screen and (max-width: 767px){.text-page-kids-klub .concept-3 .concept-item .concept-icon{grid-column:1/1;grid-row:1/3}.text-page-kids-klub .concept-3 .concept-item .concept-title{grid-column:2/2;grid-row:1/1}.text-page-kids-klub .concept-3 .concept-item .concept-text{grid-column:2/2;grid-row:2/2}}.text-page-kids-klub .concept-icon{display:flex;align-items:flex-end}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-icon{align-items:flex-start}}.text-page-kids-klub .concept-title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 1023px){.text-page-kids-klub .concept-title{font-size:21px}}.text-page-kids-klub .concept-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.text-page-kids-klub .swiper-button-next{background-image:url("/images/kidsmk/arrow_navigation_right.svg") !important;right:-60px;position:absolute;z-index:1000;width:auto;height:auto;background-repeat:no-repeat;background-color:#fff;color:#fff}@media screen and (max-width: 1023px){.text-page-kids-klub .swiper-button-next{display:none}}.text-page-kids-klub .swiper-button-next::after{content:unset}.text-page-kids-klub .swiper-button-prev{background-image:url("/images/kidsmk/arrow_navigation_left.svg") !important;left:-65px;position:absolute;z-index:1000;width:auto;height:auto;background-repeat:no-repeat;background-color:#fff;color:#fff}@media screen and (max-width: 1023px){.text-page-kids-klub .swiper-button-prev{display:none}}.text-page-kids-klub .swiper-button-prev::after{content:unset}.text-page-kids-klub #slider_restaurants{position:relative}.text-page-kids-klub .slider{position:relative;overflow:hidden}.text-page-kids-klub .slider-container{position:relative;display:grid}@media screen and (max-width: 767px){.text-page-kids-klub .slider__bottom{display:none}}.text-page-kids-klub .slider-tag{border-radius:4px;background:rgba(0,0,0,.2);color:#fff;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;bottom:18px;right:20px;padding:4px 8px;position:absolute}.text-page-kids-klub .slider-preview{height:543px;padding:0px;margin:0px}@media screen and (max-width: 1024px){.text-page-kids-klub .slider-preview{height:429px}}@media screen and (max-width: 1023px){.text-page-kids-klub .slider-preview{height:402px}}@media screen and (max-width: 767px){.text-page-kids-klub .slider-preview{height:317px}}.text-page-kids-klub .slider-preview img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden;border-top-left-radius:8px;border-top-right-radius:8px}@media screen and (max-width: 767px){.text-page-kids-klub .slider-preview img{border-radius:8px}}.text-page-kids-klub .slider-preview-card{height:543px;position:relative}@media screen and (max-width: 1024px){.text-page-kids-klub .slider-preview-card{height:429px}}@media screen and (max-width: 1023px){.text-page-kids-klub .slider-preview-card{height:402px}}@media screen and (max-width: 767px){.text-page-kids-klub .slider-preview-card{height:317px}}.text-page-kids-klub .slider-cards{height:93px;overflow:hidden;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.text-page-kids-klub .slider-card{height:93px;width:126px}.text-page-kids-klub .slider-card img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.text-page-kids-klub .slider-card__active{border:2px solid #fff}.kids-auth .border-block{padding:0;border:unset}.kids-auth .title--level-4{display:none}.kids-auth .btn--code.btn-auth{min-width:-moz-max-content;min-width:max-content;width:100%;max-width:unset}.kids-auth form,.kids-auth .form-input--phone,.kids-auth .form-group-auth{width:100%}.kids-auth form .buttons,.kids-auth .form-input--phone .buttons,.kids-auth .form-group-auth .buttons{width:100%}.kids-auth form .btn,.kids-auth .form-input--phone .btn,.kids-auth .form-group-auth .btn{min-width:unset}.kids-auth .form-group--row{display:flex;flex-direction:column;gap:8px;position:relative;width:100% !important}.text-page__fqa{padding:60px 104px 120px 104px;background-color:#f6f8f8;border-radius:0px 0px 8px 8px;display:grid;gap:24px}@media screen and (max-width: 1279px){.text-page__fqa{padding:60px 74px 120px 74px}}@media screen and (max-width: 1023px){.text-page__fqa{padding:60px 32px 80px 32px;border:unset;border-radius:unset}}@media screen and (max-width: 575px){.text-page__fqa{padding:60px 16px 80px 16px}}.text-page__fqa .title--level-1{justify-content:center;color:#282929;margin-bottom:0}@media screen and (max-width: 1023px){.text-page__fqa .title--level-1{font-size:24px}}.text-page__fqa__columns{display:grid;grid-template-columns:1fr 1fr;gap:40px}@media screen and (max-width: 767px){.text-page__fqa__columns{display:flex;flex-direction:column;gap:12px}}.text-page__fqa__items{display:flex;gap:12px;flex-direction:column}.text-page__fqa__item{display:flex;flex-direction:column;border-radius:8px;background-color:#fff;padding:16px}.text-page__fqa__header{display:grid;grid-template-columns:60px 1fr;gap:8px}.text-page__fqa__title{display:flex;align-items:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 1023px){.text-page__fqa__title{font-size:18px}}.text-page__fqa img{height:60px;width:60px}.text-page__fqa label{color:#282929;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;letter-spacing:.16px;cursor:pointer}.text-page__fqa .acor-body{height:0;color:rgba(0,0,0,0);overflow:hidden;display:none}.text-page__fqa .acor-body p{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#282929;letter-spacing:.16px}.text-page__fqa label:hover{color:#fa8a37}.text-page__fqa input{display:none}.text-page__fqa input:checked+label{font-weight:700;margin-bottom:8px}.text-page__fqa input:checked+label:hover{color:#282929}.text-page__fqa input:checked+label:before{transition:transform .35s;transform:rotate(90deg)}.text-page__fqa input:checked+label+.acor-body{height:auto;display:block}.text-page__fqa_link{display:grid;grid-template-columns:60px 1fr;gap:8px;color:#4cbbbb;cursor:pointer}.text-page__fqa_link a{display:flex;align-items:center}.text-page__fqa_link a:hover{color:#fa8a37 !important}.text-page__fqa_link:hover a{color:#fa8a37 !important}.text-page__fqa_link:hover svg path{fill:#fa8a37}.progress-bar__wrapper{display:block;position:relative;margin-top:16px}@media screen and (max-width: 767px){.progress-bar__wrapper{padding:0 16px;margin-top:0;margin-bottom:12px}}.progress-bar__success,.progress-bar__gray{display:flex;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:0;line-height:1.3;color:#3fad4f;gap:8px;align-items:center}.progress-bar__success svg,.progress-bar__gray svg{fill:transparent}.progress-bar__success-centred{justify-content:center}.progress-bar__gray{color:#777c83}.progress-bar__gray-centred{justify-content:center}.progress-bar__texts{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:0;line-height:1.3;display:grid;grid-template-columns:1fr 1fr 1fr;transition:all .3s ease;gap:4px}.progress-bar__texts-mini{grid-template-columns:1fr 2fr}.progress-bar__progress{height:4px;border-radius:8px;background-color:#e3eaec}.progress-bar__indicator{position:absolute;background-color:#fe5a53;z-index:1;width:0;transition:all .5s ease;height:4px;top:0;border-bottom-left-radius:8px;border-top-left-radius:8px}.progress-bar__indicator-orange{background-color:#ff9a00}.progress-bar__borders{position:absolute;display:grid;top:0;left:0;right:0;height:4px;grid-template-columns:1fr 1fr 1fr;z-index:2}.progress-bar__borders-mini{grid-template-columns:1fr 2fr}@media screen and (max-width: 767px){.progress-bar__borders{left:16px;right:16px}}.progress-bar__borded{border-right:4px solid #f6f8f8}.progress-bar__text{color:#777c83;transition:all .3s ease}.progress-bar__text-red{color:#fe5a53}.progress-bar__text-orange{color:#ff9a00}.cart-footer__total-column .progress-bar__wrapper{max-width:400px}.delivery-icon{transition:all .3s ease;fill:none;color:#b1b9bd}.delivery-icon path{transition:all .1s ease}.link:hover>.delivery-icon{color:#31bbbb}.restaurant-icon{color:#b1b9bd;fill:none;transition:all .1s ease-out}.reserve-icon{fill:none}.reserve-icon path{stroke:#b1b9bd}.banquet-icon{fill:none}.banquet-icon ellipse,.banquet-icon path{stroke:#b1b9bd}.pay-bill-icon{fill:none}.pay-bill-icon path,.pay-bill-icon rect{stroke:#b1b9bd}.like-icon{fill:none}.like-icon path,.like-icon rect{stroke:#b1b9bd}.sk-icon{fill:none}.sk-icon path{stroke:#b1b9bd;fill:#b1b9bd}.sk-icon rect{stroke:#b1b9bd}.factory-icon{fill:none}.factory-icon path{stroke:#b1b9bd;fill:#b1b9bd}.factory-icon path:last-child{fill:unset}.factory-icon path:nth-last-child(2){stroke:unset}.briefcase-icon{fill:none}.briefcase-icon rect{stroke:#b1b9bd}.briefcase-icon path{stroke:#b1b9bd}.briefcase-icon path:nth-last-child(2){stroke:unset}.contact-icon{fill:none}.contact-icon path{stroke:#b1b9bd}.user-icon{width:27px;height:27px;fill:transparent;transition:all .5s ease-out}.user-icon__fills{fill:#56c4c4}.user-icon:hover{fill:#56c4c4}.burger-menu__menu>.user-icon{fill:#56c4c4}.bonus-icon{fill:transparent;color:#31bbbb;transition:all .3s ease}.bonus-icon-3{fill:#ee9f28;color:#ee9f28}.bonus-icon-3 path{stroke:#fff}.bonus-icon-5{fill:#fd4837;color:#fd4837}.bonus-icon-5 path{stroke:#fff}.bonus-icon-10{fill:#3fad4f;color:#3fad4f}.bonus-icon-10 path{stroke:#fff}.link svg #squre{stroke:#fff;fill:#fff;stroke-width:.5}.location-icon{fill:transparent}.history-icon{fill:transparent}.logout-icon{fill:transparent}.point-icon{fill:transparent;width:13px}.point-icon ellipse{fill:#31bbbb}.point-icon path{fill:#fff}.copy-icon{width:11px;height:11px;fill:transparent}.copy-icon path,.copy-icon rect{stroke:#c8ced0}.info_bonus_icon{width:14.341px;height:14.341px;display:flex;align-items:center;justify-content:center;background-color:#dfe8ea;opacity:.5;text-align:center;font-family:Roboto;font-size:11.795px;font-style:normal;font-weight:400;line-height:170%;letter-spacing:.118px;color:#5eca5c;border-radius:25px}.children_club path:first-of-type{fill:none}.booking-icon{fill:transparent}.horizontal_banners,.horizontal_banners-loader{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;max-width:calc(1280px);margin:0 auto;margin-top:20px;display:grid;grid-template-columns:1fr 1fr;gap:16px;grid-template-rows:200px;margin-bottom:48px}@media screen and (min-width: 768px){.horizontal_banners,.horizontal_banners-loader{padding:0 32px}}@media screen and (min-width: 1024px){.horizontal_banners,.horizontal_banners-loader{padding:0 40px}}@media screen and (max-width: 768px){.horizontal_banners,.horizontal_banners-loader{padding:16px;max-width:calc(100vw);margin:0}}@media screen and (max-width: 767px){.horizontal_banners,.horizontal_banners-loader{grid-template-rows:160px}}@media screen and (max-width: 576px){.horizontal_banners,.horizontal_banners-loader{max-width:calc(100vw);padding:16px;padding-bottom:0}}@media screen and (max-width: 374px){.horizontal_banners,.horizontal_banners-loader{padding:8px;padding-left:8px;grid-template-rows:160px;max-width:calc(100vw);margin:0}}.horizontal_banner{position:relative;cursor:pointer;overflow:hidden;border-radius:9px}.horizontal_banner__text{position:absolute;padding:18px 0 18px 24px}.horizontal_banner__title{font-family:Akrobat;font-style:normal;font-weight:800;font-size:31px;line-height:104%;text-transform:uppercase;margin-bottom:8px;width:50%}@media screen and (max-width: 767px){.horizontal_banner__title{font-size:20px;width:50%}}@media screen and (max-width: 374px){.horizontal_banner__title{font-size:20px;width:90%}}.horizontal_banner__description{font-family:Caveat;font-style:normal;font-weight:bold;font-size:22px;line-height:90%;width:45%}@media screen and (max-width: 767px){.horizontal_banner__description{font-size:22px;width:0%}}@media screen and (max-width: 375px){.horizontal_banner__description{display:none}}.horizontal_banner__image{height:100%;width:100%}.horizontal_banner__image img{min-width:100%;height:100%;max-width:unset}.horizontal_banners-loader__item{background-color:#f6f8f8;border-radius:8px;display:flex;align-items:center;justify-content:center}.horizontal_banners-loader__item img{width:162px}@media screen and (max-width: 767px){.horizontal_banners-loader__item img{width:81px}}.simple_banner{border-radius:9px;overflow:hidden;max-width:calc(1280px - 64px)}@media screen and (max-width: 1278px){.simple_banner{max-width:calc(100vw - 64px)}}@media screen and (max-width: 768px){.simple_banner{max-width:calc(100vw - 32px)}}@media screen and (max-width: 375px){.simple_banner{max-width:calc(100vw - 16px);grid-template-rows:200px}}.simple_banner-container{display:flex;height:198px;position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin:0 auto;margin-top:48px}@media screen and (min-width: 768px){.simple_banner-container{padding:0 32px}}@media screen and (min-width: 1024px){.simple_banner-container{padding:0 40px}}@media screen and (max-width: 375px){.simple_banner-container{margin:0px}}.simple_banner img{min-width:100%;height:100%;max-width:unset}.simple_banner--loader{display:flex;flex-direction:row;align-items:center;justify-content:center;width:100%;border-radius:8px;background-color:#f6f8f8}.simple_banner--loader img{width:162px}@media screen and (max-width: 767px){.simple_banner--loader img{width:81px}}.stores{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;max-width:calc(1280px);margin:48px auto;overflow:hidden}@media screen and (min-width: 768px){.stores{padding:0 32px}}@media screen and (min-width: 1024px){.stores{padding:0 40px}}@media screen and (max-width: 768px){.stores{background-color:#fafbfc;padding-right:0}}@media screen and (max-width: 375px){.stores{padding:0}}.stores svg{fill:transparent}.stores__container{background-color:#fafbfc;border-radius:12px;display:grid;grid-template-columns:1fr 1fr;position:relative}@media screen and (max-width: 768px){.stores__container{border-radius:0;grid-template-columns:555px 1fr}}@media screen and (max-width: 576px){.stores__container{display:flex;flex-direction:column}}.stores__wrapper{padding:41px 0 0 71px;z-index:1}@media screen and (max-width: 1024px){.stores__wrapper{padding:32px 0 0 16px}}@media screen and (max-width: 768px){.stores__wrapper{padding:45px 0 0 0}}@media screen and (max-width: 576px){.stores__wrapper{padding:16px 0 0 0}}@media screen and (max-width: 375px){.stores__wrapper{padding:16px 0 0 8px}}.stores__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 768px){.stores__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (max-width: 576px){.stores__title{max-width:282px}}.stores__subtitle{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 768px){.stores__subtitle{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}@media screen and (max-width: 576px){.stores__subtitle{max-width:248px}}.stores__advantages{display:grid;grid-template-columns:1fr 1fr;gap:50px;row-gap:27px;margin:42px 0}@media screen and (max-width: 768px){.stores__advantages{margin:34px 0;gap:16px;padding-right:16px}}@media screen and (max-width: 375px){.stores__advantages{display:flex;flex-direction:column}}.stores__advantage{display:grid;gap:12px;grid-template-columns:42px 1fr}@media screen and (max-width: 768px){.stores__advantage{gap:8px}}@media screen and (max-width: 576px){.stores__advantage{margin-bottom:24px}}.stores__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.7;color:#777c83;line-height:30.6px}@media screen and (max-width: 768px){.stores__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}}.stores__image{display:flex;align-items:flex-end;overflow:hidden;position:relative}.stores__image img{height:100%;position:absolute;min-width:593px}@media screen and (max-width: 768px){.stores__image{min-height:100%;min-width:593px;margin-left:-26px;margin-bottom:-117px}}@media screen and (max-width: 576px){.stores__image{position:absolute;min-width:100%;width:100%;max-height:50%;left:32px}.stores__image img{height:340px;position:absolute;min-width:auto;left:30%}}@media screen and (max-width: 375px){.stores__image img{height:auto;position:absolute;min-width:auto;left:40%}}.stores__items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin-top:16px;margin-bottom:55px}@media screen and (max-width: 1024px){.stores__items{margin-bottom:32px}}.stores__items svg{border-radius:8px;fill:#fff}.stores__items a:hover svg{box-shadow:0px 0px 10px 0px rgba(117,128,129,.4)}.stores__items img{width:100%;height:100%;min-width:612px}@media screen and (max-width: 576px){.stores__items{display:block;max-width:50%;margin-bottom:36px}.stores__items svg{margin-bottom:16px}.stores__items:nth-last-child(2){order:3}}@media screen and (max-width: 375px){.stores__items{max-width:80%;margin-bottom:16px}}.offers_for_business{max-width:calc(1280px);margin:0 auto;margin-top:20px;position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto}@media screen and (min-width: 768px){.offers_for_business{padding:0 32px}}@media screen and (min-width: 1024px){.offers_for_business{padding:0 40px}}@media screen and (max-width: 768px){.offers_for_business{padding:0;max-width:calc(100vw);background-color:#fafbfc;margin:0}}@media screen and (max-width: 374px){.offers_for_business{padding:0;grid-template-rows:160px;max-width:calc(100vw);margin:0}}.offers_for_business__container{background-color:#fafbfc;padding:16px 16px 32px 16px;border-radius:8px}@media screen and (max-width: 768px){.offers_for_business__container{padding:16px 16px 32px 16px}}@media screen and (max-width: 375px){.offers_for_business__container{padding:16px 8px 32px 8px}}.offers_for_business__wrapper{gap:51px;display:grid;grid-template-columns:1fr 1fr 1fr}@media screen and (max-width: 767px){.offers_for_business__wrapper{display:grid;grid-template-columns:1fr;gap:30px}}.offers_for_business__image{margin-bottom:20px;border-radius:8px;overflow:hidden}.offers_for_business__image img{width:100%;height:100%}.offers_for_business a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;color:#282929}.offers_for_business__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:32px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:16px}@media screen and (max-width: 767px){.offers_for_business__title{font-size:24px}}.offers_for_business__text{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:8px}@media screen and (max-width: 767px){.offers_for_business__text{word-break:break-all}}@media screen and (max-width: 374px){.offers_for_business__text{word-break:normal}}.offers_for_business__description{font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.offers_for_business--loader{display:flex;flex-direction:row;align-items:center;justify-content:center;width:100%}.offers_for_business--loader__img{background-color:#f6f8f8;margin-bottom:20px;border-radius:8px;overflow:hidden;display:flex;align-items:center;justify-content:center;min-height:227px}.offers_for_business--loader__img img{width:162px}@media screen and (max-width: 767px){.offers_for_business--loader__img img{width:81px}}.favorite-icon{fill:transparent;width:27px;height:24px;transition:.3s}.favorite-icon path{stroke-width:3}.favorite-icon:hover{fill:#31bbbb}.favorite-icon-active{fill:#31bbbb}.stores__advantage>.favorite-icon{width:auto;height:auto}.stores__advantage>.favorite-icon path{stroke-width:auto}.stores__advantage>.favorite-icon:hover{fill:transparent}.modal--locations{overflow:hidden}@media screen and (max-width: 1023px){.modal--locations .modal__wrapper{background:#fff;padding:0}}.modal--locations .modal__content{padding:0}@media screen and (max-width: 1023px){.modal--locations .modal__content{height:100svh}}.modal--locations .modal__container{max-width:1216px}@media screen and (max-width: 1023px){.modal--locations .modal__container{height:100svh;max-width:unset;width:calc(100%)}}@media screen and (max-width: 767px){.modal--locations .modal__container{height:100svh;width:calc(100%)}}.modal--locations .modal__body{display:grid;margin:0;grid-template-columns:520px 1fr;max-width:unset}@media screen and (max-width: 1279px){.modal--locations .modal__body{grid-template-columns:475px 1fr}}@media screen and (max-width: 1023px){.modal--locations .modal__body{padding:0;max-height:calc(100svh - 56px);height:calc(100svh - 56px);display:flex;flex-direction:column;min-height:unset;overflow:hidden}}@media screen and (max-width: 576px){.modal--locations .modal__close{top:24px;right:19px}}.modal--locations .modal__overlay{background:rgba(219,219,219,.9)}.modal--locations__title{margin-bottom:8px}@media screen and (max-width: 1023px){.modal--locations__title{display:none}}.modal--info{padding:32px;min-height:610px;display:flex;flex-direction:column;position:relative;justify-content:space-between;background:#fff;overflow:hidden;border-radius:8px;z-index:1}@media screen and (max-width: 1023px){.modal--info{margin-top:-15px;z-index:100;box-shadow:0px 0px 28px 0px #1a525266;justify-content:unset;min-height:139px;height:auto;position:absolute;bottom:56px;width:100vw;padding:16px}}.modal--info .form-group{margin-bottom:4px}.modal--info .checkout-address{overflow-y:scroll;max-height:140px;position:relative}@media screen and (max-width: 767px){.modal--info .checkout-address{max-height:100px}}.modal--info .checkout-address ::-webkit-scrollbar{-webkit-appearance:none}.modal--info .checkout-address::-webkit-scrollbar{width:4px !important}.modal--info .checkout-address::-webkit-scrollbar-track{background:#fff}.modal--info .checkout-address::-webkit-scrollbar-thumb{background:#e3eaec;border-radius:4px !important}@media screen and (max-width: 1023px){.modal--info .city-selector__delivery{position:absolute;top:-64px;left:calc(100vw - 50% - 180px - 32px);min-width:360px}}@media screen and (max-width: 767px){.modal--info .city-selector__delivery{left:calc(100vw - 50% - 180px)}}@media screen and (max-width: 575px){.modal--info .city-selector__delivery{min-width:calc(100vw - 32px);left:16px}}.modal--map{min-height:610px;border-radius:8px;border-top-left-radius:0px;border-bottom-left-radius:0px;overflow:hidden;width:calc(100% + 16px);margin-left:-16px}@media screen and (max-width: 1023px){.modal--map{border-top-left-radius:8px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;height:calc(100%);position:relative;width:auto;margin-left:0}.modal--map .city-selector__delivery{position:absolute;bottom:16px;left:calc(100vw - 50% - 180px);width:360px;z-index:99}}@media screen and (max-width: 1023px)and (max-width: 767px){.modal--map .city-selector__delivery{bottom:31px}}@media screen and (max-width: 1023px)and (max-width: 575px){.modal--map .city-selector__delivery{min-width:calc(100vw - 32px);max-width:calc(100vw - 32px);left:16px}}@media screen and (max-width: 767px){.modal--map{min-height:unset;border-radius:0}}.modal--map #location_city{min-height:610px}@media screen and (max-width: 767px){.modal--map #location_city{min-height:50vh}}.modal--select{margin-bottom:8px}.modal--select_text{font-family:Raleway;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.modal--select__restaurant .booking-restaurant{display:grid;grid-template-columns:1fr 1fr;margin-bottom:8px}.modal--select__restaurant .booking-restaurant__img{width:100%}.modal--select__restaurant .booking-restaurant__info{justify-content:space-between}.modal--select__restaurant .booking-restaurant span{font-size:16px;line-height:27.2px}.modal--select__restaurant .city-selector__subtext{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3}.modal--select__restaurant .city-selector__subtext-warning{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3}.modal--city{color:#31bbbb;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;display:flex;align-items:center}.modal--city svg{width:28px;height:28px}.modal--city-container{max-width:307px}.modal--city-container .form-select__menu{max-height:calc((55 * 10) px)}.modal--city-container .form-select__single-value{color:#31bbbb;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;padding-top:8px !important;padding-bottom:8px !important}@media screen and (max-width: 576px){.modal--city-container{max-width:unset;display:flex;justify-content:space-between;align-items:center}}.modal--city-container__open{display:block}@media screen and (max-width: 576px){.modal--city{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;font-size:16px}}.modal .user-icon{width:14px;height:14px;fill:#4cbbbb}.modal--auth-str{background:#f1f6f6;padding:10px 12px;width:-moz-min-content;width:min-content;display:flex;border-radius:18px;white-space:nowrap;color:#4cbbbb;font-family:Raleway;font-style:normal;font-weight:600;font-size:11px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;flex-direction:row;align-items:center;gap:4px;cursor:pointer}.modal--advantages{display:flex;gap:16px;align-items:flex-start;color:#777c83}.modal--advantages__right{display:grid;grid-template-columns:22px 1fr;align-items:center;color:#777c83;text-decoration:unset;margin-bottom:8px}.modal--advantages__icon{width:14px;height:14px}.modal--advantages__icon svg{width:14px;height:14px}@media screen and (max-width: 767px){.modal--advantages{font-size:14px}}.modal--advantages__link{cursor:pointer}.modal--text__disabled{color:#b1b9bd;text-align:center;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}@media screen and (max-width: 1023px){.modal--text__disabled{text-align:start}}@media screen and (max-width: 767px){.modal--text__disabled{font-size:12px}}.modal--fotter{display:flex;flex-direction:column;gap:10px}.modal--block{display:flex;flex-direction:column;gap:16px}@media screen and (max-width: 1023px){.modal--block{gap:0px}}.button-info{margin-top:auto;min-height:48px;font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 1023px){.button-info{border-radius:0;position:absolute;bottom:0;min-height:56px}}@media screen and (max-width: 576px){.button-info{position:fixed;margin-left:0;z-index:1000}}.new__address{margin-left:24px}@media screen and (max-width: 576px){.form-input--select-top .form-select__menu{top:unset;bottom:56px;border-width:1px;border-radius:5px;z-index:1000}.form-input--select-top .form-select__control--menu-is-open{border-radius:5px}}.selector_restaurant{display:grid;grid-template-columns:1fr 1.5fr;gap:16px;background-color:#f6f8f8;border-radius:8px;padding:8px}.selector_restaurant-image{border-radius:9px;position:relative;overflow:hidden}.selector_restaurant-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.selector_restaurant-icons{display:flex;gap:10px;top:8px;left:8px;position:absolute;z-index:1}.selector_restaurant-icons img{width:40px;height:40px}.selector_restaurant-worktime{display:flex;gap:10px;top:11px;right:8px;position:absolute;z-index:1;font-family:Raleway;font-style:normal;font-weight:800;font-size:11px;letter-spacing:.08em;line-height:12.91px;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#fff}.selector_restaurant-row{display:flex;gap:10px;color:#777c83}.selector_restaurant-row svg{fill:transparent}.selector_restaurant-info{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83;gap:8px;display:flex;flex-direction:column}.selector_restaurant-info .phone{font-feature-settings:"pnum" on,"lnum" on;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.burger-menu__location .selector_restaurant{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:26px}.burger-menu__location .selector_restaurant-image{min-height:111px;max-height:111px}.burger-menu__location .selector_restaurant-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.burger-menu__location .selector_restaurant-icons img{width:40px;-o-object-fit:cover;object-fit:cover;height:40px}.fix_panel{display:flex;position:relative;width:100%;position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto}@media screen and (min-width: 768px){.fix_panel{padding:0 32px}}@media screen and (min-width: 1024px){.fix_panel{padding:0 40px}}.fix_panel .btn--secondary{border-radius:16px;border-bottom-right-radius:0px;border-top-right-radius:0px;display:flex;flex-direction:row;gap:10px;padding:4px 12px;padding-right:16px;min-width:215px}.fix_panel .btn--secondary svg{width:18px}.fix_panel .btn--secondary .fix_panel-title{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase;margin-bottom:6px;text-align:start}.fix_panel .btn--secondary .fix_panel-text{font-family:Raleway;font-style:normal;font-weight:bold;font-size:9px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase;text-align:start}@media screen and (max-width: 1023px){.fix_panel .btn--secondary{height:60px;border-radius:30px;margin-bottom:8px;min-width:unset;width:calc(100% - 60px - 18px)}}.fix_panel-wrapper{position:fixed;bottom:25px;z-index:10}@media screen and (max-width: 1023px){.fix_panel-wrapper{position:relative;bottom:auto}}.fix_panel-container{border-radius:16px;box-shadow:0px 0px 19px 0px rgba(159,204,207,.3);min-width:895px;display:flex;flex-direction:row;height:76px;overflow:hidden}.fix_panel-body{backdrop-filter:blur(30px);background-color:rgba(246,248,248,.8);padding:8px;width:100%}.fix_panel-agreement{font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83}.fix_panel-agreement a{color:#31bbbb}@media screen and (max-width: 1023px){.fix_panel-agreement{margin-bottom:8px}}.fix_panel-content{display:grid;grid-template-columns:1fr 1fr 1fr;gap:0;align-items:center;color:#282929;margin-bottom:7px;padding-right:calc(40px - 8px)}@media screen and (max-width: 1023px){.fix_panel-content{min-width:auto;padding:0px;background-color:transparent;box-shadow:none;grid-template-columns:1fr;border-radius:58px}}.fix_panel-content .btn--icon{position:absolute;right:0;top:0;width:40px;height:40px}.fix_panel-item{display:flex;align-items:center;justify-content:center;min-height:100%;gap:12px;color:#282929}.fix_panel-item svg{width:32px;height:32px;fill:transparent;color:#282929}@media screen and (max-width: 1023px){.fix_panel-item:nth-child(1){border-right:none;background-color:#31bbbb;border-radius:30px;color:#fff;display:flex;justify-content:center;align-items:center;cursor:pointer;box-shadow:0px 0px 19px 0px rgba(159,204,207,.3);width:224px}.fix_panel-item:nth-child(1) .fix_panel-title{font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase;margin-bottom:6px}.fix_panel-item:nth-child(1) .fix_panel-text{font-family:Raleway;font-style:normal;font-weight:bold;font-size:9px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on;text-transform:uppercase}}.fix_panel-item:nth-child(4){border-right:none;background-color:#56c4c4;border-radius:30px;color:#fff;display:flex;justify-content:center;align-items:center;cursor:pointer}.fix_panel-item:nth-child(4):hover,.fix_panel-item:nth-child(4):active{background-color:#31bbbb}.fix_panel-title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.fix_panel-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.03em;line-height:1.3}.fix_panel-mobile{backdrop-filter:blur(30px);background:rgba(246,248,248,.8);padding:8px;border-top-left-radius:8px;border-top-right-radius:8px;position:fixed;bottom:0;z-index:10}.fix_panel-mobile .btn--icon{top:-40px;position:absolute;right:0;width:24px;height:24px;background-color:rgba(246,248,248,.8);border-radius:50%}.fix_panel-mobile .btn--icon svg{width:10px;height:10px}.menu_tab{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;max-width:calc(1280px);margin:0 auto;margin-top:48px}@media screen and (min-width: 768px){.menu_tab{padding:0 32px}}@media screen and (min-width: 1024px){.menu_tab{padding:0 40px}}@media screen and (max-width: 768px){.menu_tab{padding:0}}.menu_tab-container{border-radius:8px;background-color:#f6f8f8;padding:16px;display:grid;gap:19px}@media screen and (max-width: 576px){.menu_tab-container{padding:16px 16px 32px;border-radius:0px}}.menu_tab-btn{margin-top:19px;display:flex;flex-direction:row;justify-content:center}.menu_tab *>.menu_tab-buttons{display:flex;flex-direction:row;justify-content:space-between;align-items:center;width:100%}@media screen and (max-width: 1024px){.menu_tab *>.menu_tab-buttons{display:flex;flex-direction:column;gap:17.5px;align-items:flex-start}}.menu_tab .head{display:flex;flex-direction:column;align-items:flex-start;gap:0px}@media screen and (max-width: 768px){.menu_tab .head{max-width:calc(100vw - 32px)}}@media screen and (max-width: 375px){.menu_tab .head{max-width:calc(100vw - 16px)}}.menu_tab .head::-webkit-scrollbar{width:0px}.menu_tab .head-row{display:flex;flex-direction:row;gap:4px;overflow-y:auto;max-width:calc(100vw - 64px);width:100%}.menu_tab .head-row:not(:first-of-type){margin-top:16px}@media screen and (max-width: 768px){.menu_tab .head-row{max-width:calc(100vw - 32px);padding-right:16px}}@media screen and (max-width: 767px){.menu_tab .head-row::-webkit-scrollbar{width:0px;display:none}}@media screen and (max-width: 575px){.menu_tab .head-row{margin-bottom:0px}}.menu_tab .head-row .filter-list{margin-bottom:0}@media screen and (max-width: 767px){.menu_tab .head-row .filter{margin-top:0}}.menu_tab .head .title--level-2{margin-bottom:16px}@media screen and (max-width: 767px){.menu_tab .head .title--level-2{font-size:24px}}.menu_tab-item{padding:8px 16px;color:#31bbbb;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;background-color:transparent;border-radius:32px;display:flex;flex-direction:row;align-items:center;border:1px solid #e0e7e9;cursor:pointer;white-space:nowrap;mix-blend-mode:multiply;transition:.3s;text-decoration:none}.menu_tab-item svg{margin-right:11px}.menu_tab-item-active{background-color:#31bbbb;border:1px solid #31bbbb;color:#fff}.menu_tab-item-active .favorite-icon path{stroke:#fff}.menu_tab-item-active .point-icon path{fill:#fff}.menu_tab-item-active .point-icon ellipse{fill:#31bbbb}@media screen and (min-width: 768px){.menu_tab-item:hover{background-color:#e3eaec;border:1px solid #e3eaec;color:#31bbbb}.menu_tab-item:hover .favorite-icon{fill:#31bbbb}.menu_tab-item:hover .favorite-icon path{stroke:#31bbbb}.menu_tab-item:hover .point-icon path{fill:#31bbbb}.menu_tab-item:hover .point-icon ellipse{fill:#f6f8f8}}.menu_tab-item:active{background-color:#31bbbb;color:#fff;transition:.3s}.menu_tab-item:active .favorite-icon path{stroke:#fff}.menu_tab-item:active .point-icon path{fill:#fff}.menu_tab-item:active .point-icon ellipse{fill:#31bbbb}.menu_tab-item-disabled{opacity:.2;cursor:unset;background-color:transparent;border:1px solid #e0e7e9;color:#d4d4d4}.menu_tab-item-disabled .favorite-icon{fill:transparent}.menu_tab-item-disabled .favorite-icon path{stroke:#d4d4d4}.menu_tab-item-disabled:hover,.menu_tab-item-disabled:active{background-color:transparent;border:1px solid #e0e7e9;color:#d4d4d4 !important}.menu_tab-item-disabled:hover .favorite-icon,.menu_tab-item-disabled:active .favorite-icon{fill:transparent}.menu_tab-item-disabled:hover .favorite-icon path,.menu_tab-item-disabled:active .favorite-icon path{stroke:#d4d4d4}.menu_tab-transparent{padding-right:16px;color:#31bbbb;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;display:flex;flex-direction:row;align-items:center;cursor:pointer;white-space:nowrap;background-color:transparent;border-color:transparent}.menu_tab-transparent svg{width:18px;margin-right:8px}.menu_tab-transparent svg path{fill:#31bbbb}.menu_tab-transparent svg ellipse{fill:#f6f8f8}@media screen and (max-width: 375px){.menu_tab-transparent{padding-left:0}}.restaurant-swiper{height:100%}.bonus_modal-notif{font-family:Raleway;font-style:normal;font-weight:500;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;position:absolute;top:10px;left:35%;color:#56c4c4;transition:.3s;opacity:0}.bonus_modal-notif-active{opacity:1}@media screen and (max-width: 768px){.bonus_modal-notif{top:12px;left:33%}}.bonus_modal-container{display:flex;flex-direction:column;height:603px;align-items:center;position:relative}@media screen and (max-width: 767px){.bonus_modal-container{height:calc(100vh - 90px);background-color:#f6f8f8;border-radius:16px}}.bonus_modal-number{font-family:Roboto;font-style:normal;font-weight:normal;font-size:26px;letter-spacing:0;line-height:1.7;color:#282929;letter-spacing:.26px}.bonus_modal-name{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:0;line-height:1.3;color:#b1b9bd;margin-bottom:10px;letter-spacing:.36px}.bonus_modal-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:0;line-height:1.3;color:#777c83;text-align:center;letter-spacing:.36px}.bonus_modal-row{display:flex;flex-direction:row;align-items:center}.bonus_modal-row svg{margin-right:8px}.bonus_modal-row-number{margin-top:22px;cursor:pointer}.bonus_modal-row:hover .copy-icon path,.bonus_modal-row:hover .copy-icon rect{stroke:#31bbbb}.bonus_modal-qr{margin-bottom:40px;cursor:pointer}.bonus_modal-block{display:flex;flex-direction:row;align-items:center;padding:10px 24px;color:#fff;border-radius:50px;gap:24px;margin-bottom:2px}.bonus_modal-block--3{background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%)}.bonus_modal-block--3--text{color:#ee9f28;font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:.01em;line-height:1.7}.bonus_modal-block--5{background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%)}.bonus_modal-block--5--text{color:#fe5c52;font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:.01em;line-height:1.7}.bonus_modal-block--10{background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%)}.bonus_modal-block--10--text{color:#3fad4f;font-family:Roboto;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:.01em;line-height:1.7}.bonus_modal-item{display:flex;flex-direction:column;align-items:center;justify-content:center}.bonus_modal-description{color:rgba(255,255,255,.5)}.bonus_modal-footer{margin-top:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;margin-bottom:10px}.bonus_modal-footer a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;margin-top:7px}.bonus_modal-footer .info_bonus_icon{margin-right:5px}.bonus_modal-count{font-family:Roboto;font-style:normal;font-weight:normal;font-size:36px;letter-spacing:.01em;line-height:1}.agitation__container{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin:48px auto;overflow:hidden;max-width:calc(1280px)}@media screen and (min-width: 768px){.agitation__container{padding:0 32px}}@media screen and (min-width: 1024px){.agitation__container{padding:0 40px}}@media screen and (max-width: 768px){.agitation__container{max-width:unset;margin:48px 0;padding:0}}.agitation__wrapper{max-width:calc(1280px);padding:44px 71px;display:grid;background-color:#fcf9f2;border-radius:9.057px;background-image:url("/images/agitation.png");background-position-x:130%;background-repeat:no-repeat;background-position-y:-10%}@media screen and (max-width: 1280px){.agitation__wrapper{max-width:calc(100vw - 64px);background-size:60%}}@media screen and (max-width: 1024px){.agitation__wrapper{padding:44px 27px;min-height:450px;max-height:450px;max-width:unset;border-radius:unset;background-position-y:150%}}@media screen and (max-width: 767px){.agitation__wrapper{background-size:70%;background-size:auto;background-size:90%;background-position-x:600%;max-height:450px}}@media screen and (max-width: 575px){.agitation__wrapper{padding:45px 25px;min-height:646px;max-height:646px;background-position-x:84px;background-size:100%;background-position-y:449px}}.agitation__info{max-width:55%}@media screen and (max-width: 768px){.agitation__info{max-width:60%;margin-bottom:31px}}@media screen and (max-width: 576px){.agitation__info{max-width:unset;margin-bottom:60px}}@media screen and (max-width: 375px){.agitation__info{margin-bottom:30px}}.agitation__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#3e4142;margin-bottom:23px}@media screen and (max-width: 768px){.agitation__title{margin-bottom:31px}}@media screen and (max-width: 576px){.agitation__title{margin-bottom:30px}}@media screen and (max-width: 375px){.agitation__title{margin-bottom:30px}}.agitation__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:18px;letter-spacing:.01em;line-height:1.7;letter-spacing:.18px;color:#3e4142}.agitation__text+ul{padding-inline-start:27px;margin-block-start:0}@media screen and (max-width: 576px){.agitation__text{font-size:16px}}.agitation__button{max-width:258px}@media screen and (max-width: 576px){.agitation__button{margin-top:10px}}.agitation__column{display:grid;grid-template-columns:1fr 1fr;gap:22px}@media screen and (max-width: 768px){.agitation__column{grid-template-columns:1fr}}.bonusclub{display:grid;gap:32px}@media screen and (max-width: 1023px){.bonusclub{padding:0}}@media screen and (max-width: 575px){.bonusclub .page-header{width:calc(100%);margin-left:0;margin-right:0}}@media screen and (max-width: 1023px){.bonusclub .page-header__image{border-radius:0}}.bonusclub-page{padding:0;border:unset}@media screen and (max-width: 1023px){.bonusclub-page{margin-top:0;padding-bottom:0}}.bonusclub-header{display:flex;justify-content:center;flex-direction:column;text-align:center;color:#282929;align-items:center;border-top:1px solid #e0e7e9;border-left:1px solid #e0e7e9;border-right:1px solid #e0e7e9;padding:80px 104px 32px 104px;border-radius:8px 8px 0px 0px}@media screen and (max-width: 1279px){.bonusclub-header{padding:80px 74px 32px 74px}}@media screen and (max-width: 1023px){.bonusclub-header{padding:20px 32px 32px 32px;border:unset}}.bonusclub-header .title--level-1{margin-bottom:0}@media screen and (max-width: 1023px){.bonusclub-header .title--level-1{font-size:24px}}.bonusclub-header p{color:#282929;font-family:Roboto;font-style:normal;font-weight:normal;font-size:24px;letter-spacing:.24px;line-height:1.7}@media screen and (max-width: 1023px){.bonusclub-header p{font-size:20px}}.bonusclub-levels{display:grid;grid-template-columns:1fr 1fr 1fr;gap:32px;padding:0px 104px;padding-bottom:64px;border-left:1px solid #e0e7e9;border-right:1px solid #e0e7e9}@media screen and (max-width: 1279px){.bonusclub-levels{padding:0px 74px;padding-bottom:64px}}@media screen and (max-width: 1023px){.bonusclub-levels{padding:0px 32px;gap:16px;border:unset;padding-bottom:96px}}@media screen and (max-width: 575px){.bonusclub-levels{padding:32px 16px 0px 16px;grid-template-columns:1fr;gap:50px;padding-bottom:64px}}.bonusclub-level{border-radius:8px;border:1px solid #ffaf37;padding:0px 16px 16px 16px;display:grid;justify-content:center;gap:16px;height:405px;min-height:405px;max-height:405px;color:#ee9f28;grid-template-rows:65px 102px 1fr}.bonusclub-level:nth-child(2){border:1px solid #fd4837;color:#fd4837}.bonusclub-level:nth-child(2) svg path:nth-of-type(1){fill:#fd4837}.bonusclub-level:nth-child(3){border:1px solid #3fad4f;color:#3fad4f}.bonusclub-level:nth-child(3) svg path:nth-of-type(1){fill:#3fad4f}.bonusclub-level__type{text-align:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.bonusclub-level__percent{text-align:center;font-family:Roboto;font-style:normal;font-weight:bold;font-size:48px;letter-spacing:.01em;line-height:1}.bonusclub-level__cashback{text-align:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.bonusclub-level__text{text-align:center;color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:1.3}@media screen and (max-width: 1023px){.bonusclub-level__text{min-height:65px;margin-bottom:32px}}@media screen and (max-width: 767px){.bonusclub-level__text{min-height:128px;margin-bottom:0}}@media screen and (max-width: 575px){.bonusclub-level__text{min-height:unset;margin-bottom:0}}.bonusclub-level-icon{display:flex;justify-content:center}.bonusclub-level__img{display:flex;justify-content:center}.bonusclub-sale{padding:0px 104px;padding-bottom:80px;border-left:1px solid #e0e7e9;border-right:1px solid #e0e7e9}@media screen and (max-width: 1279px){.bonusclub-sale{padding:0px 74px;padding-bottom:80px}}@media screen and (max-width: 1023px){.bonusclub-sale{padding:0px 32px;padding-bottom:60px;border:unset}}@media screen and (max-width: 575px){.bonusclub-sale{padding:0 16px;padding-bottom:100px}}.bonusclub-sale__wrapper{display:grid;gap:32px;background:#fbf8f0;padding:16px 32px;grid-template-columns:146px 1fr;border-radius:8px}@media screen and (max-width: 575px){.bonusclub-sale__wrapper{grid-template-columns:1fr}}.bonusclub-sale__container{display:flex;flex-direction:column;justify-content:center}.bonusclub-sale__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 1023px){.bonusclub-sale__title{font-size:21px}}.bonusclub-sale__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.bonusclub-advantages{display:grid;gap:28px;border-left:1px solid #e0e7e9;border-right:1px solid #e0e7e9;padding:0px 104px;padding-bottom:80px}@media screen and (max-width: 1279px){.bonusclub-advantages{padding:0px 74px;padding-bottom:80px}}@media screen and (max-width: 1023px){.bonusclub-advantages{padding:0px 32px;padding-bottom:60px;border:unset}}@media screen and (max-width: 575px){.bonusclub-advantages{padding:0 16px;padding-bottom:60px}}.bonusclub-advantages .title--level-1{display:flex;justify-content:center;text-align:center;color:#282929}@media screen and (max-width: 1023px){.bonusclub-advantages .title--level-1{font-size:24px}}.bonusclub-advantages_items{display:grid;grid-template-columns:1fr 1fr;-moz-column-gap:32px;column-gap:32px;row-gap:40px}@media screen and (max-width: 767px){.bonusclub-advantages_items{grid-template-columns:1fr;gap:32px}}.bonusclub-advantages_item{display:grid;grid-template-columns:60px 1fr;gap:16px}.bonusclub-advantages_title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 1023px){.bonusclub-advantages_title{font-size:18px}}.bonusclub-advantages_text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;letter-spacing:.16px}.bonusclub-advantages_link{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;letter-spacing:.16px;text-decoration-line:underline;text-align:center;cursor:pointer;color:#282929}.bonusclub-advantages_link:hover,.bonusclub-advantages_link:active{color:#31bbbb}.bonusclub-advantages img{width:60px;height:60px}.bonusclub-fqa{padding:60px 104px 120px 104px;background-color:#f6f8f8;border-radius:0px 0px 8px 8px;display:grid;gap:24px}@media screen and (max-width: 1279px){.bonusclub-fqa{padding:60px 74px 120px 74px}}@media screen and (max-width: 1023px){.bonusclub-fqa{padding:60px 32px 80px 32px;border:unset;border-radius:unset}}@media screen and (max-width: 575px){.bonusclub-fqa{padding:60px 16px 80px 16px}}.bonusclub-fqa .title--level-1{justify-content:center;color:#282929;margin-bottom:0}@media screen and (max-width: 1023px){.bonusclub-fqa .title--level-1{font-size:24px}}.bonusclub-fqa__columns{display:grid;grid-template-columns:1fr 1fr;gap:40px}@media screen and (max-width: 767px){.bonusclub-fqa__columns{display:flex;flex-direction:column;gap:12px}}.bonusclub-fqa__items{display:flex;gap:12px;flex-direction:column}.bonusclub-fqa__item{display:flex;flex-direction:column;border-radius:8px;background-color:#fff;padding:16px}.bonusclub-fqa__header{display:grid;grid-template-columns:60px 1fr;gap:8px}.bonusclub-fqa__title{display:flex;align-items:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 1023px){.bonusclub-fqa__title{font-size:18px}}.bonusclub-fqa img{height:60px;width:60px}.bonusclub-fqa label{color:#282929;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;letter-spacing:.16px;cursor:pointer}.bonusclub-fqa .acor-body{height:0;color:rgba(0,0,0,0);overflow:hidden;display:none}.bonusclub-fqa .acor-body p{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#282929;letter-spacing:.16px}.bonusclub-fqa label:hover{color:#fa8a37}.bonusclub-fqa input{display:none}.bonusclub-fqa input:checked+label{font-weight:700;margin-bottom:8px}.bonusclub-fqa input:checked+label:hover{color:#282929}.bonusclub-fqa input:checked+label:before{transition:transform .35s;transform:rotate(90deg)}.bonusclub-fqa input:checked+label+.acor-body{height:auto;display:block}.bonusclub-fqa_link{display:grid;grid-template-columns:60px 1fr;gap:8px;color:#4cbbbb;cursor:pointer}.bonusclub-fqa_link a{display:flex;align-items:center}.bonusclub-fqa_link a:hover{color:#fa8a37 !important}.bonusclub-fqa_link:hover a{color:#fa8a37 !important}.bonusclub-fqa_link:hover svg path{fill:#fa8a37}.bonusclub-form{width:510px;background-color:#fff;padding:32px 56px 48px;border-radius:8px}@media screen and (max-width: 767px){.bonusclub-form{width:auto}}@media screen and (max-width: 575px){.bonusclub-form{padding:32px 8px}}.bonusclub-form__container{padding:56px 104px 0px 104px;display:flex;justify-content:center;flex-direction:column;align-items:center}@media screen and (max-width: 767px){.bonusclub-form__container{padding:56px 0px 0px 0px}}@media screen and (max-width: 575px){.bonusclub-form__container{padding:56px 8px 0px 8px}}.bonusclub-form-text{color:#fff;margin-bottom:22px;display:flex;justify-content:center;max-width:1044px;text-align:center}.bonusclub-form .btn--code{max-width:120px;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;font-size:11px;letter-spacing:8%;min-width:120px}.bonusclub-cards{display:grid;grid-template-columns:1fr 1fr 1fr;padding:32px 104px;border-left:1px solid #e0e7e9;border-right:1px solid #e0e7e9;gap:32px}@media screen and (max-width: 1279px){.bonusclub-cards{padding:32px 74px}}@media screen and (max-width: 1023px){.bonusclub-cards{padding:32px 32px;gap:16px;border:unset}}@media screen and (max-width: 575px){.bonusclub-cards{padding:32px 16px 32px 16px;grid-template-columns:1fr;gap:50px}}.bonusclub-card{display:grid;grid-template-columns:1fr;grid-template-rows:1fr 1fr;gap:16px}@media screen and (max-width: 575px){.bonusclub-card{grid-template-rows:unset}}.bonusclub-card__type{text-align:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.bonusclub-card__percent{text-align:center;font-family:Roboto;font-style:normal;font-weight:bold;font-size:48px;letter-spacing:.01em;line-height:1}.bonusclub-card__cashback{text-align:center;font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.bonusclub-card__text{text-align:center;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.bonusclub-card-0{border:1px solid #ee9f28;color:#ee9f28;border-radius:8px;padding:16px;border-radius:8px}.bonusclub-card-0.bonusclub-card__active{color:#fff;background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%);border:unset}.bonusclub-card-1{border:1px solid #fd4837;color:#fd4837;border-radius:8px;padding:16px;border-radius:8px}.bonusclub-card-1.bonusclub-card__active{color:#fff;background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%);border:unset}.bonusclub-card-2{border:1px solid #3fad4f;color:#3fad4f;border-radius:8px;padding:16px;border-radius:8px}.bonusclub-card-2.bonusclub-card__active{color:#fff;background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%);border:unset}.bonusclub-bonus-2{color:#fff;font-family:Roboto;font-style:normal;font-weight:normal;font-size:34px;letter-spacing:.01em;line-height:1.7;letter-spacing:.34px;background:linear-gradient(100deg, #ffaf37 6.54%, #ed9e27 92.41%);border-radius:50px;padding:0px 20px}@media screen and (max-width: 575px){.bonusclub-bonus-2{margin-bottom:21px}}.bonusclub-bonus-3{color:#fff;font-family:Roboto;font-style:normal;font-weight:normal;font-size:34px;letter-spacing:.01em;line-height:1.7;letter-spacing:.34px;background:linear-gradient(108deg, #fd7e56 0%, #fc3e30 98.23%);border-radius:50px;padding:0px 20px}@media screen and (max-width: 575px){.bonusclub-bonus-3{margin-bottom:21px}}.bonusclub-bonus-5{color:#fff;font-family:Roboto;font-style:normal;font-weight:normal;font-size:34px;letter-spacing:.01em;line-height:1.7;letter-spacing:.34px;background:linear-gradient(111deg, #5eca5c 0%, #3aa94c 89.62%);border-radius:50px;padding:0px 20px}@media screen and (max-width: 575px){.bonusclub-bonus-5{margin-bottom:21px}}.bonusclub-h1{max-width:465px}.bonusclub-h1-small{max-width:434px}#bonus_club_form{background:linear-gradient(41deg, #2ba671 14.28%, #42aa33 83.35%)}#bonus_club_form .privacy-policy{color:#fff;margin-top:22px;max-width:476px}#bonus_club_form .privacy-policy a:not(.btn){color:#fff !important;text-decoration:underline}#bonus_club_form img{width:100%;margin-top:-40px;margin-bottom:-40px;margin-bottom:-8px}#bonus_club_form .title--level-1{color:#fff;justify-content:center;margin-bottom:22px;max-width:585px;text-align:center}@media screen and (max-width: 1023px){#bonus_club_form .title--level-1{font-size:24px}}.booking-row{margin-bottom:10px}.booking-column-2{display:grid;grid-template-columns:1fr 1fr;gap:20px}@media screen and (max-width: 1199px){.booking-column-2{gap:0px;grid-template-columns:1fr;margin-top:25px;margin-bottom:25px}}.booking-container{display:grid;grid-template-columns:500px 1.5fr;border-radius:8px;overflow:hidden}@media screen and (max-width: 1199px){.booking-container{grid-template-columns:1fr}}.booking-container .alert{margin-top:20px}.booking-dinamyc-info{display:flex;flex-direction:column;gap:10px;margin-bottom:33px}@media screen and (max-width: 1023px){.booking-dinamyc-info{min-height:unset;margin-top:24px}}.booking-parking{color:#424242;font-weight:400}.booking-advantages{display:flex;flex-direction:row;gap:16px;margin-top:10px}.booking-advantages .restaurant__advantages-link{white-space:nowrap}.booking-children{display:flex;gap:8px;margin-top:10px}.booking-children img{max-width:32px;max-height:32px;width:32px;height:32px}.booking-form{border:1px solid #e9eeef;border-top-left-radius:8px;border-bottom-left-radius:8px;border-right:unset;padding-top:51px;padding-left:47px;padding-bottom:51px;padding:51px 73px 51px 47px}@media screen and (max-width: 1199px){.booking-form{padding:0;border:unset;border-radius:8px}.booking-form .delivery-mob__btn{margin-top:0 !important;display:flex;justify-content:flex-start;text-align:start;margin-bottom:10px}.booking-form .delivery-mob__btn span{text-align:start}}.booking-form .privacy-policy{text-align:start;margin-top:20px}.booking-form .btn--primary{margin-top:20px}.booking-form-container{display:grid}.booking-city{max-width:307px}.booking-restaurant{display:flex;gap:16px;margin-bottom:4px}.booking-restaurant__preorder{width:50%;min-width:351px}.booking-restaurant__preorder .booking-restaurant__img{max-height:unset;min-height:unset}.booking-restaurant__img{border-radius:9px;overflow:hidden;position:relative;flex-basis:50%;min-height:92px}.booking-restaurant__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.booking-restaurant__select{margin-bottom:12px}.booking-restaurant__icons{position:absolute;display:flex;flex-direction:column;top:4px;left:4px}.booking-restaurant__icons img{width:24px;-o-object-fit:cover;object-fit:cover;height:24px}.booking-restaurant .clock__text{line-height:21px}.booking-restaurant .phone{display:grid;grid-template-columns:22px 1fr;align-items:center;color:#777c83;text-decoration:unset;margin-top:8px}.booking-restaurant span{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.booking-restaurant__info{display:flex;flex-direction:column}.booking-restaurant__content{display:flex;flex-direction:column;justify-content:space-between}.booking-success{margin-top:44px;display:grid;grid-template-rows:56px 1fr;background-color:#56c4c3;padding:38px 24px;gap:40px;color:#fff;border-radius:5px;min-height:592px}@media screen and (max-width: 1199px){.booking-success{min-height:393px}}.booking-success svg{fill:transparent}.booking-success__text{display:flex;flex-direction:column;gap:33px;padding:0 21px;line-height:170%;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.booking-map{display:grid;box-sizing:border-box;position:relative;grid-template-rows:700px 1fr;border:1px solid #e9eeef;border-left:unset;border-top-right-radius:8px;border-bottom-right-radius:8px}.booking-swiper{width:100%;overflow:hidden;position:relative}@media screen and (max-width: 1199px){.booking-swiper{height:296px;max-height:296px;border-radius:8px}}.booking-swiper img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-width:unset}.booking-swiper .swiper-container{height:500px}@media screen and (max-width: 1199px){.booking-swiper .swiper-container{height:296px;max-height:296px}}.booking-auth{margin-bottom:20px}.booking-auth form{width:100%}.booking-auth .form-group--row{display:flex;flex-direction:column;gap:8px;position:relative;width:100% !important}.booking-auth .title--level-4{display:none}.booking-auth .btn-auth{width:100%;max-width:unset}.booking-auth .border-block{padding:0;border:unset}.booking-auth .form-input--phone{width:100%}.booking-auth .form-group-auth{width:100%}.booking-auth .form-group-auth .buttons{width:100%}.booking-auth form{width:100%}.booking-counter-and-checkbox{display:flex;gap:27px;align-items:center}@media screen and (max-width: 1023px){.booking-counter-and-checkbox{max-height:56px}}.booking__count{width:134px;height:56px;border-radius:5px;border:1px solid #dfe8ea;padding:0 15px}.booking__count-label{font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;font-weight:500}.booking__count-container{display:flex;flex-direction:column;gap:4px;margin-bottom:24px}@media screen and (max-width: 1023px){.booking__count-container{margin-top:24px;margin-bottom:24px}}.booking__desc{max-width:50%;min-width:unset}@media screen and (max-width: 1199px){.booking__desc{margin-bottom:20px}}@media screen and (max-width: 1023px){.booking__desc{max-width:unset}}.swiper-button-prev{color:#e9eeef}@media screen and (max-width: 1199px){.swiper-button-prev::after{font-size:32px}}.swiper-button-next{color:#e9eeef}@media screen and (max-width: 1199px){.swiper-button-next::after{font-size:32px}}.swiper-pagination{bottom:42px;display:flex;width:100%;margin:0 auto;justify-content:center}.swiper-pagination-bullet{background-color:transparent;border:1px solid #fff;margin-left:5px;opacity:1}.swiper-pagination-bullet-active{background-color:#fff}#booking-form{display:grid}.booking-card__wrapper{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;max-width:calc(1280px);margin:0 auto;margin-top:48px}@media screen and (min-width: 768px){.booking-card__wrapper{padding:0 32px}}@media screen and (min-width: 1024px){.booking-card__wrapper{padding:0 40px}}@media screen and (max-width: 768px){.booking-card__wrapper{padding:0}}.booking-card__container{border-radius:8px;background-color:#f6f8f8;padding:16px 16px 32px}@media screen and (max-width: 576px){.booking-card__container{border-radius:0px}}.booking-card__info{display:flex;gap:24px}@media screen and (max-width: 1024px){.booking-card__info{gap:0px}}@media screen and (max-width: 767px){.booking-card__info{flex-direction:column}}.booking-card__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5;color:#777c83}.booking-card__right{display:flex;flex-direction:column;justify-content:space-between;width:100%}@media screen and (max-width: 1024px){.booking-card__right{padding:16px;background-color:#fff;border-bottom-right-radius:8px;border-top-right-radius:8px;color:#000}}@media screen and (max-width: 767px){.booking-card__right{border-radius:0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}}.booking-card__advantages{display:flex;flex-direction:column;gap:7px}.booking-card__advantage{display:flex;gap:6px;font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;white-space:nowrap}.booking-card__advantage-image{width:16px;height:16px;min-width:16px;min-height:16px}.booking-card__advantage-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.booking-card__links{display:flex;flex-direction:column;gap:8px}@media screen and (max-width: 1024px){.booking-card__links{flex-direction:row;gap:16px}}@media screen and (max-width: 767px){.booking-card__links{flex-direction:column;gap:8px}}.booking-card__warning{display:flex;padding:8px;background-color:#ffbd591a;gap:8px;border-radius:8px;margin-bottom:8px}.booking-card__warning svg{fill:transparent}.booking-card__warning-text{display:flex;flex-direction:column}.booking-card__warning-title{font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#f29200}.booking-card__warning-description{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3;color:#f29200}.booking-card__link{color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;transition:all .3s ease;display:flex;gap:4px;white-space:nowrap;text-decoration:unset;background:unset;border:unset;padding:unset}.booking-card__link:active,.booking-card__link:hover{color:#31bbbb;cursor:pointer}.booking-card__schedule{color:#777c83;line-height:25px;white-space:nowrap}.booking-card__slider-wrapper{overflow:hidden;border-radius:8px;max-width:687px}@media screen and (max-width: 1024px){.booking-card__slider-wrapper{border-radius:0;border-bottom-left-radius:8px;border-top-left-radius:8px}}@media screen and (max-width: 767px){.booking-card__slider-wrapper{height:300px;max-width:unset;border-radius:0;border-top-right-radius:8px;border-top-left-radius:8px}}.booking-card__slider-container{height:100%;position:relative}.booking-card__slider-container img{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.booking-card__slider-container .swiper-button-prev{width:40px;height:40px;background-color:#fff;border-radius:50%;top:calc(50%);color:#959ca3;left:8px}.booking-card__slider-container .swiper-button-prev::after{font-size:18px}@media screen and (max-width: 1023px){.booking-card__slider-container .swiper-button-prev{display:none}}.booking-card__slider-container .swiper-button-prev:hover{color:#31bbbb}.booking-card__slider-container .swiper-button-next{width:40px;height:40px;background-color:#fff;border-radius:50%;top:calc(50%);color:#959ca3;right:8px}.booking-card__slider-container .swiper-button-next::after{font-size:18px}@media screen and (max-width: 1023px){.booking-card__slider-container .swiper-button-next{display:none}}.booking-card__slider-container .swiper-button-next:hover{color:#31bbbb}.booking-card__worktime{top:11px;right:12px;position:absolute;z-index:1;font-family:Raleway;font-style:normal;font-weight:800;font-size:11px;letter-spacing:.08em;line-height:12.91px;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;color:#fff}.booking-card__content{display:flex;gap:12px;margin-bottom:12px}@media screen and (max-width: 1024px){.booking-card__content{flex-wrap:wrap}}.booking-card__columns{display:grid;gap:8px;grid-template-columns:1fr 1fr}.booking-card__columns .form-input{margin-bottom:12px}.booking-card__buttons{margin-bottom:36px;display:grid;grid-template-columns:1fr 1fr;gap:8px}.booking-card__buttons .btn{min-height:48px;font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.08em;line-height:1.0566;text-transform:uppercase;font-feature-settings:"pnum" on,"lnum" on;white-space:nowrap;padding:0}@media screen and (max-width: 1198px){.booking-card__buttons{display:flex;flex-direction:column;margin-bottom:24px}}@media screen and (max-width: 767px){.booking-card__buttons{display:grid;grid-template-columns:1fr 1fr;margin-bottom:16px}}@media screen and (max-width: 575px){.booking-card__buttons{display:flex;flex-direction:column}}.booking-card__address{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:12px}.booking-card__header{display:flex;flex-direction:row;justify-content:space-between}.booking-card__header .title--level-2{margin-bottom:16px}.booking-cart--end{font-family:Raleway;font-style:normal;font-weight:600;font-size:24px;letter-spacing:0;line-height:28.13px;font-feature-settings:"pnum" on,"lnum" on;color:#282929}@media screen and (max-width: 767px){.booking-cart--end{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}}.booking-cart--end-sum{font-family:Roboto;font-style:normal;font-weight:900;font-size:24px;letter-spacing:.03em;line-height:28.13px;color:#282929}@media screen and (max-width: 767px){.booking-cart--end-sum{font-family:Roboto;font-style:normal;font-weight:900;font-size:16px;letter-spacing:.01em;line-height:19px}}.booking-cart--end .rub{font-size:24px;line-height:28.13px;font-weight:400}@media screen and (max-width: 767px){.booking-cart--end .rub{font-size:16px;font-weight:400;line-height:18.75px;color:#282929}}.booking-cart--sums{font-family:Raleway;font-style:normal;font-weight:500;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#777c83;display:flex;gap:16px;margin-bottom:5px}@media screen and (max-width: 767px){.booking-cart--sums{font-family:Raleway;font-style:normal;font-weight:500;font-size:14px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;display:block}}.booking-cart--sums .rub{font-size:16px;line-height:16.91px;font-weight:500}@media screen and (max-width: 767px){.booking-cart--sums .rub{font-size:14px;line-height:21px;font-weight:400}}.booking-cart--sum{font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;letter-spacing:.01em;line-height:19px}@media screen and (max-width: 767px){.booking-cart--sum{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:21px}}.kidsmk{display:grid;gap:32px;padding-bottom:120px;padding-left:104px;padding-right:104px}@media screen and (max-width: 1200px){.kidsmk{padding-left:0px;padding-right:0px}}@media screen and (max-width: 1024px){.kidsmk{padding-left:32px;padding-right:32px}}@media screen and (max-width: 768px){.kidsmk{padding:0;border:unset}}.kidsmk .h2-capitalize{text-transform:capitalize}.kidsmk .title--level-1{display:flex;justify-content:center;flex-direction:column;text-align:center;color:#282929;align-items:center;margin-bottom:8px}.kidsmk__item{padding:24px 20px 32px;display:grid;border-radius:8px;grid-template-columns:157px 1fr}@media screen and (max-width: 576px){.kidsmk__item{grid-template-columns:1fr;gap:20px}}.kidsmk__item-bg{background-color:#f6f8f8}.kidsmk__empty{padding:24px 20px;display:flex;justify-content:center;align-items:center;text-align:center}.kidsmk-header{padding:0px 20px;display:grid;grid-template-columns:157px 1fr;margin-bottom:11px;margin-bottom:13px;font-family:Raleway;font-style:normal;font-weight:normal;font-size:12px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on}@media screen and (max-width: 576px){.kidsmk-header{display:none}}.kidsmk-header__row{display:grid;grid-template-columns:1fr 60px;gap:20px}.kidsmk__row{padding:8px 0;display:grid;grid-template-columns:1fr 80px;gap:20px}@media screen and (max-width: 576px){.kidsmk__row{grid-template-columns:1fr;gap:0}}.kidsmk__row:first-of-type{padding-top:0px}.kidsmk__restaurant{display:grid;grid-template-columns:42px 1fr;border-bottom:1px solid #dfe8ea;gap:20px;padding:8px 0}.kidsmk__restaurant:hover{cursor:pointer}.kidsmk__restaurant:hover .kidsmk__name{color:#fa8a37 !important}.kidsmk__restaurant:hover .kidsmk__address{color:#fa8a37 !important}.kidsmk__date{font-family:Roboto;font-style:normal;font-weight:300;font-size:53px;letter-spacing:0;line-height:.8;color:#282929}.kidsmk__date-block{display:flex;flex-direction:row;gap:6px}.kidsmk__date-info{display:flex;flex-direction:column;gap:8px}.kidsmk__days{display:grid;gap:13px}.kidsmk__container{padding:0px 136px}@media screen and (max-width: 1024px){.kidsmk__container{padding:0px}}.kidsmk__container-success{padding:0px}.kidsmk__container-success .kidsmk__block{padding-left:158px;padding-right:183px;gap:56px}@media screen and (max-width: 1023px){.kidsmk__container-success .kidsmk__block{padding:40px 32px}}.kidsmk__container-success .kidsmk__block-text{margin-bottom:18px}.kidsmk__day{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.03em;line-height:1;text-transform:uppercase;color:#b1b9bd}.kidsmk__month{font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:.03em;line-height:1.3;color:#282929}.kidsmk__name{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#4cbbbb}.kidsmk__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.kidsmk__address{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#282929;text-align:end}@media screen and (max-width: 767px){.kidsmk__address{text-align:start}}.kidsmk__block{display:grid;border-radius:8px;box-shadow:0px 0px 10px 0px #e9f1f1;gap:80px;padding:40px 84px;grid-template-columns:137px 1fr}@media screen and (max-width: 767px){.kidsmk__block{gap:20px;padding:40px 32px}}@media screen and (max-width: 576px){.kidsmk__block{gap:20px;padding:40px 32px;grid-template-columns:1fr}}.kidsmk__block-image{display:flex;align-items:center}.kidsmk__block-image img{height:198px;width:auto}.kidsmk__block-info{display:grid;gap:10px}.kidsmk__block-title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.kidsmk__block-text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;color:#777c83}.kidsmk__block .btn--bordered{width:310px}.kidsmk__block .btn--bordered::before{display:none}.kidsmk__block .btn--bordered:hover,.kidsmk__block .btn--bordered:focus{background:#31bbbb;border-color:#31bbbb;color:#fff}@media screen and (max-width: 576px){.kidsmk__block .btn--bordered{width:auto;min-width:unset;padding:0;max-width:unset}}.kidsmk-success{background-color:#e2f2f9;padding:32px 64px;display:grid;gap:32px;color:#282929}@media screen and (max-width: 1023px){.kidsmk-success{padding:32px 16px}.kidsmk-success .title--level-1{font-size:24px}}.kidsmk-success__form{padding:48px 151px 64px}@media screen and (max-width: 1023px){.kidsmk-success__form{padding:40px 32px}}.kidsmk-success p{margin-bottom:0px;color:#282929}.kidsmk-success .clock{margin-top:16px}.kidsmk-success .clock__text{color:#282929}.kidsmk-success .btn--bordered{padding:0 20px}@media screen and (max-width: 576px){.kidsmk-success .btn--bordered{min-width:unset;max-width:unset;padding:12px 20px}}.kidsmk-success .btn--secondary{min-width:-moz-min-content;min-width:min-content}@media screen and (max-width: 576px){.kidsmk-success .btn--secondary{max-width:unset}}.kidsmk-success a{margin:0;padding:0;background:none;border:0;list-style-type:none;text-decoration:none;outline:none;transition:all .1s ease-out;color:#282929 !important;font-family:Roboto;font-style:normal;font-weight:300;font-size:16px;letter-spacing:.01em;line-height:1.7}.kidsmk .title--margin{margin-bottom:21px}.kidsmk .kids-form__row{justify-content:center;margin-top:32px}.kidsmk .kids-form__children{margin-bottom:24px}.kidsmk .kids-form__container{padding:48px 0px 64px;display:flex;justify-content:center;flex-direction:column;align-items:center;background-color:#fafbfc;border-radius:8px}@media screen and (max-width: 1199px){.kidsmk .kids-form__container{padding:56px 0 64px 0}}@media screen and (max-width: 1023px){.kidsmk .kids-form__container{padding:56px 0 64px 0}}@media screen and (max-width: 576px){.kidsmk .kids-form__container{padding:56px 16px 64px 16px;margin-left:-16px;margin-right:-16px;border-radius:unset}}.kidsmk .kids-form__container .p-5{text-align:center;color:#282929;margin-bottom:0}.kidsmk .kids-form__container h2{margin-bottom:0}@media screen and (max-width: 576px){.kidsmk .kids-form__container h2{text-align:center}}@media screen and (max-width: 576px){.kidsmk .kids-form__container .form-input-token{min-width:auto}}@media screen and (max-width: 576px){.kidsmk .kids-form__container .bonusclub-form{text-align:center;width:100%}}.kidsmk .kids-form__container .title--level-2{font-size:24px;margin-bottom:32px;color:#282929;font-weight:700}.kidsmk .kids-form__container .title--level-2:not(:first-of-type){margin-bottom:16px}.kidsmk .kids-form__container .privacy-policy{color:#777c83;margin-top:22px;max-width:476px}.kidsmk .kids-form__container .privacy-policy a{color:#777c83;text-decoration:underline}.kidsmk .kids-form__container .bonusclub-form{background-color:#fafbfc}.btn.btn--add_children{color:#777c83;background:#dfe8ea;max-height:32px;min-height:32px;font-size:11px;min-width:-moz-min-content;min-width:min-content;max-width:220px;padding:0 20px}.btn.btn--add_children:hover,.btn.btn--add_children:active{color:#fff}.right-label__weght{font-family:Raleway;font-style:normal;font-weight:bold;font-size:12px;letter-spacing:.02em;line-height:1.25;font-feature-settings:"pnum" on,"lnum" on}.form-group--row__add-children{display:flex;align-items:center;gap:10px}@media screen and (max-width: 767px){.form-group--row__add-children{flex-direction:column;align-items:unset}}.kidsmk__container-success .kidsmk__block{padding:44px 158px}@media screen and (max-width: 1023px){.kidsmk__container-success .kidsmk__block{padding:40px 32px}}.kidsmk__container-success .kidsmk__block-text{padding-bottom:28px}.kidsmk__container-success .btn{min-width:unset;width:-moz-fit-content;width:fit-content}.stories-container,.stories-loader__wrapper{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;max-width:calc(1280px);margin:0 auto;margin-top:48px;height:384px;overflow:hidden;position:relative}@media screen and (min-width: 768px){.stories-container,.stories-loader__wrapper{padding:0 32px}}@media screen and (min-width: 1024px){.stories-container,.stories-loader__wrapper{padding:0 40px}}@media screen and (max-width: 1279px){.stories-container,.stories-loader__wrapper{height:365px;padding:0}}@media screen and (max-width: 767px){.stories-container,.stories-loader__wrapper{height:200px;margin-top:10px;width:calc(100vw);margin:0}}.stories-container .swiper-container,.stories-loader__wrapper .swiper-container{height:354px}@media screen and (max-width: 1279px){.stories-container .swiper-container,.stories-loader__wrapper .swiper-container{height:365px;width:calc(100vw - 64px)}}@media screen and (max-width: 767px){.stories-container .swiper-container,.stories-loader__wrapper .swiper-container{height:200px;padding:0;width:calc(100vw);padding:0 16px}}@media screen and (max-width: 374px){.stories-container .swiper-container,.stories-loader__wrapper .swiper-container{padding:0 8px}}.stories-container .swiper-wrapper,.stories-loader__wrapper .swiper-wrapper{height:334px}@media screen and (max-width: 767px){.stories-container .swiper-wrapper,.stories-loader__wrapper .swiper-wrapper{height:170px}}.stories-container .swiper-pagination,.stories-loader__wrapper .swiper-pagination{bottom:0}@media screen and (max-width: 767px){.stories-container .swiper-pagination,.stories-loader__wrapper .swiper-pagination{bottom:10px}}.stories-container .swiper-pagination-bullet,.stories-loader__wrapper .swiper-pagination-bullet{background-color:#d7dfe1;border:1px solid #d7dfe1;margin:0 8px}.stories-container .swiper-pagination-bullet-active,.stories-loader__wrapper .swiper-pagination-bullet-active{background-color:#b1b9bd;border:1px solid #b1b9bd}.stories-container .swiper-button-prev,.stories-loader__wrapper .swiper-button-prev{width:40px;height:40px;background-color:#fff;border-radius:50%;top:calc(50% - 20px);color:#959ca3}.stories-container .swiper-button-prev::after,.stories-loader__wrapper .swiper-button-prev::after{font-size:18px}@media screen and (max-width: 1279px){.stories-container .swiper-button-prev,.stories-loader__wrapper .swiper-button-prev{display:none}}.stories-container .swiper-button-prev:hover,.stories-loader__wrapper .swiper-button-prev:hover{color:#31bbbb}.stories-container .swiper-button-next,.stories-loader__wrapper .swiper-button-next{width:40px;height:40px;background-color:#fff;border-radius:50%;top:calc(50% - 20px);color:#959ca3}.stories-container .swiper-button-next::after,.stories-loader__wrapper .swiper-button-next::after{font-size:18px}@media screen and (max-width: 1279px){.stories-container .swiper-button-next,.stories-loader__wrapper .swiper-button-next{display:none}}.stories-container .swiper-button-next:hover,.stories-loader__wrapper .swiper-button-next:hover{color:#31bbbb}.stories-item{height:334px !important;min-height:334px;max-height:334px;width:292px !important;overflow:hidden;border-radius:8px}@media screen and (max-width: 767px){.stories-item{width:148.623px !important;height:170px;min-height:170px;max-height:170px}}.stories-item a{height:334px;min-height:334px;max-height:334px;width:292px;overflow:hidden;border-radius:8px}@media screen and (max-width: 767px){.stories-item a{width:148.623px;height:170px;min-height:170px;max-height:170px}}.stories-loader__wrapper{position:relative;width:100%;max-width:calc(1280px);padding:0 16px;margin:0 auto;margin-top:48px}@media screen and (min-width: 768px){.stories-loader__wrapper{padding:0 32px}}@media screen and (min-width: 1024px){.stories-loader__wrapper{padding:0 40px}}@media screen and (max-width: 767px){.stories-loader__wrapper{margin-top:10px}}.stories-loader__container{width:100%;overflow:hidden;overflow-x:auto;height:100%;-ms-overflow-style:none;scrollbar-width:none}.stories-loader__container::-webkit-scrollbar{display:none}.stories-loader__items{display:flex;gap:16px;height:100%}.stories-loader__item{background-color:#fff3df;display:flex;flex-direction:row;align-items:center;justify-content:center;border-radius:8px;min-width:292px;height:100%}@media screen and (max-width: 767px){.stories-loader__item{min-width:148.623px !important}}.stories-loader__item img{width:162px}@media screen and (max-width: 767px){.stories-loader__item img{width:81px}}.stories-loader__item:nth-child(2n){background-color:#e1f7f4}.stories-loader__item:nth-child(3n){background-color:#f9ece9}.stories-loader__item:nth-child(3n){background-color:#e9f9e9}.gift-checkout .present-list{display:grid;grid-template-columns:1fr 1fr;gap:32px;row-gap:6px}@media screen and (max-width: 766px){.gift-checkout .present-list{display:block}}.gift-checkout .present-list .basket-item{flex-basis:unset;max-width:unset;margin-right:0}.gift-attantion{display:flex;flex-direction:row;gap:10px;margin-bottom:16px}.gift-attantion .title--level-4{color:#424242;margin-bottom:4px;font-size:16px;line-height:140%;font-weight:700}.gift-text{font-size:14px;color:#777c83;line-height:150%}.gift-icon svg{width:32px;height:32px}.radio-check-box--checkout .radio-check-box__label{font-weight:600 !important;font-size:16px !important}.sk-auto__form{background:#fff5e6;padding:14px 16px;display:flex;flex-direction:column;gap:12px;border-radius:8px;margin-top:10px}.sk-auto__form .form-input{margin:0}.sk-auto__header{display:flex;gap:12px;font-family:Raleway;font-style:normal;font-weight:600;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#ff532e;line-height:23.4px;align-items:center}.sk-auto__header-icon{width:32px;height:32px}.sk-auto__text{font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;letter-spacing:1%;line-height:27.2px;color:#424242}.sk-auto__alert{display:grid;grid-template-columns:32px 1fr 32px;width:616px;gap:12px;background-color:#fff5e6;cursor:pointer;align-items:center;padding:14px 16px;border-radius:8px}@media screen and (max-width: 1023px){.sk-auto__alert{max-width:calc((100% - 16px) / 2)}}@media screen and (max-width: 767px){.sk-auto__alert{width:100%;max-width:unset}}.sk-auto__alert .sk-auto__text{font-size:12px;line-height:15.47px;letter-spacing:.03em;color:#777c83}.sk-auto__alert-info{display:flex;flex-direction:column;gap:4px}.sk-auto__icon svg path{fill:transparent}.sk-auto__icon svg rect{fill:transparent}.suggestions{display:block;margin:30px 0}.suggestions__header{margin-bottom:12px;display:flex;justify-content:space-between}.suggestions__header h2{font-family:Raleway;font-style:normal;font-weight:500;font-size:18px;letter-spacing:0;line-height:21px;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.suggestions__list{display:flex;gap:8px;transition:all .3s ease;flex-wrap:wrap}.suggestions__list .dish--small__info{background-color:#fafbfc;padding-bottom:0}.suggestions__list .dish--small__info .btn.btn--gray-3{width:calc(100% + 14px);margin:0 -6px}.suggestions__list .dish--small__info .dish-card__count.count{width:calc(100% + 14px);margin:0 -6px}.suggestions__button{display:flex;align-items:stretch;position:relative;background-color:#f1f6f6;display:flex;justify-content:center;align-items:center;gap:8px;color:#4cbbbb;transition:all .3s ease;border-radius:8px;border:unset;text-transform:uppercase;font-family:Raleway;font-style:normal;font-weight:600;font-size:13px;letter-spacing:.02em;line-height:1.0566;font-feature-settings:"pnum" on,"lnum" on;flex-basis:calc((100% - 64px) / 9);max-width:calc((100% - 64px) / 9)}@media screen and (max-width: 1023px){.suggestions__button{flex-basis:calc((100% - 40px) / 6);max-width:calc((100% - 40px) / 6)}}@media screen and (max-width: 767px){.suggestions__button{flex-basis:calc((100% - 32px) / 4);max-width:calc((100% - 32px) / 4)}}@media screen and (max-width: 575px){.suggestions__button{flex-basis:calc((100% - 16px) / 3);max-width:calc((100% - 16px) / 3)}}.suggestions__button:hover{background-color:#31bbbb;color:#fff;cursor:pointer}.suggestions__button svg{transition:all .3s ease}.suggestions__button-small{padding:4px 0;max-width:68px;border-radius:20px}.suggestions__button-small svg{transform:rotate(180deg);transition:all .5s ease}.suggestions__button-small__closed svg{transform:rotate(0deg)}.suggestions--cart{margin-bottom:22px}.suggestions--cart .dish--small__container{flex-basis:calc((100% - 40px) / 6);max-width:calc((100% - 40px) / 6)}@media screen and (max-width: 1023px){.suggestions--cart .dish--small__container{flex-basis:calc((100% - 32px) / 5);max-width:calc((100% - 32px) / 5)}}@media screen and (max-width: 767px){.suggestions--cart .dish--small__container{flex-basis:calc((100% - 32px) / 5);max-width:calc((100% - 32px) / 5)}}@media screen and (max-width: 575px){.suggestions--cart .dish--small__container{flex-basis:calc((100% - 16px) / 3);max-width:calc((100% - 16px) / 3)}}.suggestions--cart .suggestions__button{flex-basis:calc((100% - 40px) / 6);max-width:calc((100% - 40px) / 6)}@media screen and (max-width: 1023px){.suggestions--cart .suggestions__button{flex-basis:calc((100% - 32px) / 5);max-width:calc((100% - 32px) / 5)}}@media screen and (max-width: 767px){.suggestions--cart .suggestions__button{flex-basis:calc((100% - 32px) / 5);max-width:calc((100% - 32px) / 5)}}@media screen and (max-width: 575px){.suggestions--cart .suggestions__button{flex-basis:calc((100% - 16px) / 3);max-width:calc((100% - 16px) / 3)}}.suggestions--cart .suggestions__header h2{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on}.auth__wrapper .btn-auth{margin-bottom:8px}.auth__wrapper .form-input--phone input{max-height:56px}.auth__link-button{text-align:center;margin-bottom:75px;margin-top:32px}.cheсkout-page .auth__link-button{text-align:start;margin-top:32px;margin-bottom:40px}.auth__header{display:flex;gap:24px;flex-direction:column;margin-bottom:38px}.auth-toggle__wrapper{display:flex;flex-direction:row;justify-content:center;width:100%}.auth-toggle__wrapper .btn-toogle__container{max-width:255px;width:100%}.auth__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:21px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;text-align:center}@media screen and (min-width: 768px){.auth__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:24px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}}.auth__subtitle{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;color:#282929;margin-bottom:8px}.certificates-page .auth__title,.cheсkout-page .auth__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on}.certificates-page .password__container,.certificates-page .phone__container,.certificates-page .btn--code,.cheсkout-page .password__container,.cheсkout-page .phone__container,.cheсkout-page .btn--code{max-width:330px}@media screen and (max-width: 767px){.certificates-page .password__container,.certificates-page .phone__container,.certificates-page .btn--code,.cheсkout-page .password__container,.cheсkout-page .phone__container,.cheсkout-page .btn--code{max-width:unset}}.component--auth{position:relative}.component--auth .auth__header{gap:10px;flex-direction:row;margin-bottom:40px;align-items:center;height:36px}.component--auth .auth-toggle__wrapper{justify-content:flex-start}.component--auth .auth__title{font-family:Raleway;font-style:normal;font-weight:bold;font-size:18px;letter-spacing:0;line-height:1.3;font-feature-settings:"pnum" on,"lnum" on;color:#282929}.component--auth .btn-toogle__button{font-family:Raleway;font-style:normal;font-weight:600;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;height:36px;color:#282929}.component--auth .btn-toogle__container{max-width:190px}.component--auth .btn-toogle__button-active{min-width:95px;color:#fff}.component--auth .form-input__control_request-auth-confirm,.component--auth .btn--code{margin-bottom:0}.component--auth .auth__link-button{margin-top:32px;margin-bottom:16px}.component--auth-centred .auth__header{justify-content:center}.component--auth-centred .auth__link-button{text-align:center;width:100%}.component--auth-centred .auth-toggle__wrapper{width:190px}@media screen and (max-width: 767px){.modal--auth .auth__header{padding-top:33px}}.privacy-policy{font-family:Roboto;font-style:normal;font-weight:300;font-size:12px;letter-spacing:.03em;line-height:1.3;text-align:center;color:#777c83}.privacy-policy a{color:#4cbbbb}@media screen and (max-width: 767px){.offline-block{padding:0 16px}}.popup-service__wrapper{position:absolute;cursor:default;z-index:1000;top:52px;left:0;min-width:360px}@media screen and (max-width: 767px){.popup-service__wrapper{min-width:none}}.popup-service__container{padding:16px;background-color:#fff;box-shadow:0 0 24px rgba(131,192,196,.31);border-radius:8px}.popup-service__title{color:#ff9a00;font-family:Raleway;font-style:normal;font-weight:bold;font-size:16px;letter-spacing:0;line-height:19px;font-feature-settings:"pnum" on,"lnum" on;margin-bottom:16px}.popup-service__text{color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;letter-spacing:0;line-height:1.5}.popup-service__btn--close{display:flex;width:100%;justify-content:flex-end}.popup-service__btn--close .btn--icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center}.final-summary{display:flex;gap:5px}.final-summary__label{color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.final-summary__label--weight{color:#282929;font-family:Raleway;font-style:normal;font-weight:600;font-size:14px;letter-spacing:0;line-height:1;font-feature-settings:"pnum" on,"lnum" on}.final-summary__ellipsis{display:flex;align-items:flex-end;flex:1}.final-summary__dotes{background:linear-gradient(to right, #e0e7e9 50%, transparent 50%);background-size:2px 1px;background-repeat:repeat-x;flex:1;display:flex;height:8px}.final-summary__amount{color:#777c83;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7}.final-summary__amount--weight{color:#282929;font-family:Roboto;font-style:normal;font-weight:900;font-size:16px;letter-spacing:.01em;line-height:19px;line-height:1}.final-summary__icon{width:18px;display:flex;align-items:center;background-color:transparent;padding:0;border:none}.final-summary__last{margin-top:8px}.final-summary__with-popup{position:relative}.basket__container .final-summary:nth-last-of-type(1){margin-top:8px}.order-summary .final-summary{max-width:254px}@media screen and (max-width: 1023px){.order-summary .final-summary{max-width:unset}}.badge{color:#fff;border-radius:32px;font-family:Roboto;font-style:normal;font-weight:normal;font-size:16px;letter-spacing:.01em;line-height:1.7;padding:2px 12px}.badge--warning{background:linear-gradient(125.29deg, #ffc975 0%, #ffbd59 103.27%)}.badge--secondary{background:#c0cbd2}
