@charset "UTF-8";
/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
/* FONT_START */
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}
/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}
.pswp * {
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
.pswp--open {
	display: block;
}
.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}
.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}
.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}
.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}
.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}
.pswp__hidden {
	display: none !important;
}
/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}
/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}
/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}
/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}
/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}
.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}
.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}
.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}
.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}
.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}
.pswp__icn:focus {
	outline: 0;
}
/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}
.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}
/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}
/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}
.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}
.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}
.pswp--one-slide .pswp__button--arrow {
  display: none;
}
/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}
/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}
.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}
.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}
/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}
/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}
.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}
.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}
@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}
.pswp--one-slide .pswp__counter {
  display: none;
}
@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");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/nunito-sans-v15-cyrillic_latin_latin-ext-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/nunito-sans-v15-cyrillic_latin_latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/nunito-sans-v15-cyrillic_latin_latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/unbounded-v7-cyrillic_latin_latin-ext-800.woff2") format("woff2");
}
button, input, textarea, select {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0px 36px var(--color_white, rgba(0, 0, 0, 0)) inset;
}
button {
  cursor: pointer;
  user-select: none;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
}
:root {
  --color_black:#000000;
  --color_white:#FFFFFF;
  --color_grey1:#272A2C;
  --color_grey2:#3D4143;
  --color_grey3:#525557;
  --color_grey4:#67696B;
  --color_grey5:#777C82;
  --color_grey6:#A8AEB4;
  --color_grey7:#D1D9E0;
  --color_grey8:#D9DEE2;
  --color_grey9:#E5EBF0;
  --color_grey10:#EAECEE;
  --color_grey11:#F4F7F9;
  --color_grey12:#EFF3F6;
  --color_orange1:#FF6522;
  --color_orange2:#FF801D;
  --color_orange3:#FBAD3E;
  --color_orange4:#FFBD5F;
  --color_orange5:#FCE1BC;
  --color_orange6:#FDEFDB;
  --color_brown1:#A16207;
  --color_brown2:#C9B497;
  --color_red:#D80000;
  --color_green:#3EC100;
  --dur1: 0.2s;
  --dur2: 0.3s;
  --z_index_under: -1;
  --z_index_local: 10;
  --z_index_over_content: 100;
  --z_index_overlay: 1000;
  --list_shadow: 0 -16px 24px 0 rgba(0, 0, 0, 0.08);
  --sticky_shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.08);
}
body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--color_grey1);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  word-break: break-word;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow: hidden scroll;
}
.hidden {
  display: none !important;
}
.web_d-if_576, .web_d-ib_576, .web_d-b_576, .web_d-i_576, .web_d-f_576,
.web_d-if_768, .web_d-ib_768, .web_d-b_768, .web_d-i_768, .web_d-f_768 {
  display: none;
}
.mobile_d-f {
  display: flex;
}
.mobile_d-b {
  display: block;
}
.mobile_d-ib {
  display: inline-block;
}
.mobile_d-i {
  display: inline;
}
@media only screen and (min-width: 576px) {
  .web_d-if_576 {
    display: inline-flex;
  }
  .web_d-b_576 {
    display: block;
  }
  .web_d-ib_576 {
    display: inline-block;
  }
  .web_d-i_576 {
    display: inline;
  }
  .web_d-f_576 {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .mobile_d-b, .mobile_d-ib, .mobile_d-i, .mobile_d-f {
    display: none !important;
  }
  .web_d-n_768 {
    display: none;
  }
  .web_d-if_768 {
    display: inline-flex;
  }
  .web_d-b_768 {
    display: block;
  }
  .web_d-ib_768 {
    display: inline-block;
  }
  .web_d-f_768 {
    display: flex;
  }
  .web_d-i_768 {
    display: inline;
  }
}
.svg-icon {
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}
.round-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}
.round-icon:not(._active) .icon {
  color: var(--color_orange2);
  background: var(--color_orange5);
}
.round-icon._active .icon {
  color: var(--color_orange5);
  background: var(--color_orange1);
}
.round-icon:not(._icon_sm) .svg-icon {
  width: 16px;
  height: 16px;
}
.round-icon._icon_sm .svg-icon {
  width: 12px;
  height: 12px;
}
.round-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.round-icon .text {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--color_orange2);
}
.big-round-icon {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}
.big-round-icon._variant_orange {
  background: var(--color_orange5);
}
.big-round-icon._variant_orange .icon-inner {
  background: var(--color_orange4);
}
.big-round-icon._variant_dark {
  background: var(--color_grey2);
}
.big-round-icon._variant_dark .icon-inner {
  background: var(--color_grey4);
}
.big-round-icon._variant_grey {
  background: var(--color_grey9);
}
.big-round-icon._variant_grey .icon-inner {
  background: var(--color_grey3);
}
.big-round-icon .icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.big-round-icon .svg-icon {
  width: 32px;
  height: 32px;
}
.blob-content {
  color: var(--color_white);
  display: inline-flex;
  max-width: 100%;
  border-radius: 24px;
}
.blob-content._size_sm {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  padding: 10px 16px;
  gap: 12px;
}
.blob-content._size_md {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  padding: 12px 24px;
  gap: 16px;
}
.blob-content._variant_grey {
  background: var(--color_grey2);
}
.blob-content._variant_orange {
  background: var(--color_orange2);
}
.blob-content .item {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
.blob-content .text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blob-content .svg-icon {
  color: var(--color_grey6);
  width: 16px;
  height: 16px;
}
.blob-content .svg-icon.orange {
  color: var(--color_orange2);
}
.breadcrumbs {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey6);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.breadcrumbs:not(:first-child) {
  margin-top: 32px;
}
.breadcrumbs .item {
  white-space: nowrap;
  display: flex;
  overflow: hidden;
  transition: var(--dur2);
}
.breadcrumbs .item:not(:last-child)::after {
  content: "→";
  color: var(--color_grey6);
  padding: 0 1em;
}
.breadcrumbs a.item:hover {
  color: var(--color_orange2);
}
.breadcrumbs .text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (min-width: 1440px) {
  .breadcrumbs:not(:first-child) {
    margin-top: 40px;
  }
}
.btn {
  white-space: nowrap;
  position: relative;
  z-index: var(--z_index_local);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--dur2);
  border-radius: 72px;
  user-select: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z_index_under);
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: var(--dur2);
  border-radius: inherit;
}
.btn._wide {
  width: 100%;
}
.btn._size_s {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  padding: 0 20px;
  height: 40px;
  gap: 8px;
}
.btn._size_s._icon-only {
  width: 40px;
}
.btn._size_s .svg-icon {
  width: 16px;
  height: 16px;
}
.btn._size_m {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  padding: 0 16px;
  height: 40px;
}
.btn._size_m._icon-only {
  width: 40px;
}
.btn._size_m .svg-icon {
  width: 16px;
  height: 16px;
}
.btn._size_l {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 0 32px;
  height: 52px;
  gap: 16px;
}
.btn._size_l._icon-only {
  width: 52px;
}
.btn._size_l .svg-icon {
  margin: 2px 0;
  width: 24px;
  height: 24px;
}
.btn._size_l .counter {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  min-width: 24px;
  height: 24px;
}
.btn._size_xl {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  padding: 0 32px;
  height: 72px;
  gap: 16px;
}
.btn._size_xl._icon-only {
  width: 72px;
}
.btn._size_xl .svg-icon {
  width: 32px;
  height: 32px;
}
.btn._size_xl .counter {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  min-width: 32px;
  height: 32px;
}
.btn._icon-only {
  padding: 0;
  flex-shrink: 0;
}
.btn._variant_orange-1 {
  color: var(--color_white);
  background: var(--color_orange2);
}
.btn._variant_orange-1:hover {
  background: var(--color_orange3);
}
.btn._variant_orange-1:active {
  box-shadow: 0px 4px 8px 0px rgba(255, 101, 34, 0.5) inset;
}
.btn._variant_orange-2 {
  background: var(--color_orange4);
}
.btn._variant_orange-2 .svg-icon {
  color: var(--color_orange1);
}
.btn._variant_orange-2:hover {
  background: var(--color_orange5);
}
.btn._variant_orange-2:active {
  box-shadow: 0px 4px 8px 0px rgba(251, 173, 62, 0.4) inset;
}
.btn._variant_orange-2.-active {
  color: var(--color_white);
  background: var(--color_orange1);
}
.btn._variant_orange-3 {
  background: var(--color_orange5);
}
.btn._variant_orange-3 .svg-icon {
  color: var(--color_orange1);
}
.btn._variant_orange-3:hover {
  background: var(--color_white);
}
.btn._variant_orange-3:active {
  box-shadow: 0px 4px 8px 0px #E5EBEF inset;
}
.btn._variant_orange-4 {
  background: var(--color_orange6);
}
.btn._variant_orange-4:hover {
  background: var(--color_orange5);
}
.btn._variant_orange-4:active {
  box-shadow: 0px 4px 8px 0px rgba(251, 173, 62, 0.4) inset;
}
.btn._variant_orange-5 {
  background: var(--color_orange5);
}
.btn._variant_orange-5:hover {
  background: var(--color_orange4);
}
.btn._variant_orange-5:active, .btn._variant_orange-5.active {
  background: var(--color_orange1);
  color: var(--color_white);
}
.btn._variant_orange-5 {
  color: var(--color_orange2);
  background: var(--color_orange6);
}
.btn._variant_grey-1 {
  background: var(--color_grey9);
}
.btn._variant_grey-1:hover {
  background: var(--color_white);
}
.btn._variant_grey-1:active {
  box-shadow: 0px 4px 8px 0px #E5EBEF inset;
}
.btn._variant_grey-1 .svg-icon {
  color: var(--color_orange2);
}
.btn._variant_grey-2 {
  color: var(--color_grey4);
  background: var(--color_grey10);
}
.btn._variant_grey-2:hover {
  background: var(--color_grey8);
}
.btn._variant_grey-2:active {
  background: var(--color_grey10);
}
.btn._variant_grey-2 .svg-icon {
  color: var(--color_grey6);
}
.btn._variant_dark {
  color: var(--color_white);
  background: var(--color_grey1);
}
.btn._variant_dark:hover {
  background: var(--color_black);
}
.btn._variant_dark:active {
  background: var(--color_grey1);
  box-shadow: 0px 4px 12px 0px #000 inset;
}
.btn._variant_map {
  color: var(--color_white);
  background: url("/img/btn-map.jpg");
  background-size: cover;
  background-position: center;
}
.btn._variant_map::before {
  display: block;
  opacity: 0.6;
  background: var(--color_black);
}
.btn._variant_map:hover::before {
  opacity: 0.72;
}
.btn._variant_map:active::before {
  opacity: 0.8;
}
.btn._variant_sort {
  color: var(--color_grey1);
  background: var(--color_grey10);
}
.btn._variant_select {
  text-align: left;
  color: var(--color_grey1);
  width: 100%;
  background: var(--color_grey10);
}
.btn._variant_select .icon {
  color: var(--color_grey6);
  width: 32px;
  height: 32px;
}
.btn._variant_select .text {
  flex-grow: 1;
}
.btn._variant_select .arrow {
  color: var(--color_grey3);
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}
.btn._variant_outline-grey::before {
  display: block;
  border: 2px solid var(--color_grey8);
}
.btn._variant_outline-grey:hover::before {
  border-color: var(--color_grey6);
}
.btn._variant_outline-grey:active {
  background: var(--color_white);
}
.btn._variant_outline-grey .svg-icon {
  color: var(--color_orange2);
}
.btn._variant_outline-orange::before {
  display: block;
  border: 2px solid var(--color_orange5);
}
.btn._variant_outline-orange:hover::before {
  border-color: var(--color_orange4);
}
.btn._variant_outline-orange:active {
  background: var(--color_orange6);
}
.btn._variant_outline-orange .svg-icon {
  color: var(--color_orange2);
}
.btn._variant_outline-orange-2 {
  color: var(--color_orange5);
  background: rgba(0, 0, 0, 0.2);
}
.btn._variant_outline-orange-2::before {
  display: block;
  border: 2px solid var(--color_orange5);
}
.btn._variant_outline-orange-2:hover {
  background: rgba(0, 0, 0, 0.4);
}
.btn._variant_outline-orange-2:hover::before {
  border-color: var(--color_orange4);
}
.btn._variant_outline-orange-2:active {
  background: rgba(0, 0, 0, 0.6);
}
.btn._variant_white {
  background: var(--color_white);
}
.btn._variant_white:hover {
  background: var(--color_grey9);
}
.btn._variant_white.-active {
  color: var(--color_white);
  background: var(--color_grey3);
}
.btn .counter {
  color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--color_grey3);
  border-radius: 72px;
}
.btn-line {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  margin: 0 calc(-1 * var(--container_padding_x));
}
.btn-line::-webkit-scrollbar {
  display: none;
}
.btn-line .inner {
  display: inline-flex;
  padding: 0 var(--container_padding_x);
  gap: 4px;
}
@media only screen and (min-width: 1280px) {
  .btn-line {
    margin: 0;
  }
  .btn-line .inner {
    flex-wrap: wrap;
    padding: 0;
  }
}
.tag {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  padding: 10px 16px;
  background: var(--color_grey11);
  border-radius: 12px;
}
.tag._wide {
  width: 100%;
}
.tag .tag-description {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey4);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media only screen and (min-width: 576px) {
  .tag-list {
    gap: 8px;
  }
}
input[type=text], input[type=tel] {
  height: 52px;
  color: var(--color_grey1);
  background-color: var(--color_white);
  border-radius: 8px;
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  padding: 16px 16px 16px 16px;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder {
  color: var(--color_brown2);
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: var(--color_brown2);
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder {
  color: var(--color_brown2);
}
input[type=text]:-moz-placeholder, input[type=tel]:-moz-placeholder {
  color: var(--color_brown2);
}
input[type=text]::placeholder, input[type=tel]::placeholder {
  color: var(--color_brown2);
}
input[type=text]:focus::-webkit-input-placeholder, input[type=tel]:focus::-webkit-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
input[type=text]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
input[type=text]:focus:-ms-input-placeholder, input[type=tel]:focus:-ms-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
input[type=text]:focus:-moz-placeholder, input[type=tel]:focus:-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
input[type=text]:focus::placeholder, input[type=tel]:focus::placeholder {
  color: transparent;
  text-indent: 0px;
}
input[type=text]:focus::placeholder, input[type=tel]:focus::placeholder {
  color: transparent;
  text-indent: 0px;
}
select {
  height: 52px;
  color: var(--color_grey6);
  background-color: var(--color_white);
  border-radius: 8px;
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  padding: 16px 16px 16px 16px;
}
.input-group {
  position: relative;
}
.input-group-b {
  position: relative;
  overflow: hidden;
}
.input-group-b select, .input-group-b input[type=text], .input-group-b input[type=tel] {
  width: 100%;
}
.input-group-b select {
  color: var(--color_grey1);
}
.input-group-b select option {
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}
.input-group-b select.is-invalid {
  padding-top: 27px;
  padding-bottom: 5px;
  border: 1px solid var(--color_red);
}
.input-group-b select.is-valid {
  border: 1px solid var(--color_green);
}
.input-group-b select.has-event {
  padding-top: 27px;
  padding-bottom: 5px;
}
.input-group-b input[type=text], .input-group-b input[type=tel] {
  color: var(--color_grey1);
}
.input-group-b input[type=text]::-webkit-input-placeholder, .input-group-b input[type=tel]::-webkit-input-placeholder {
  color: var(--color_brown2);
}
.input-group-b input[type=text]::-moz-placeholder, .input-group-b input[type=tel]::-moz-placeholder {
  color: var(--color_brown2);
}
.input-group-b input[type=text]:-ms-input-placeholder, .input-group-b input[type=tel]:-ms-input-placeholder {
  color: var(--color_brown2);
}
.input-group-b input[type=text]:-moz-placeholder, .input-group-b input[type=tel]:-moz-placeholder {
  color: var(--color_brown2);
}
.input-group-b input[type=text]::placeholder, .input-group-b input[type=tel]::placeholder {
  color: var(--color_brown2);
}
.input-group-b input[type=text]:focus::-webkit-input-placeholder, .input-group-b input[type=tel]:focus::-webkit-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
.input-group-b input[type=text]:focus::-moz-placeholder, .input-group-b input[type=tel]:focus::-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
.input-group-b input[type=text]:focus:-ms-input-placeholder, .input-group-b input[type=tel]:focus:-ms-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
.input-group-b input[type=text]:focus:-moz-placeholder, .input-group-b input[type=tel]:focus:-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
.input-group-b input[type=text]:focus::placeholder, .input-group-b input[type=tel]:focus::placeholder {
  color: transparent;
  text-indent: 0px;
}
.input-group-b input[type=text]:focus, .input-group-b input[type=tel]:focus {
  border: 1px solid var(--color_orange1);
}
.input-group-b input[type=text].is-invalid, .input-group-b input[type=tel].is-invalid {
  border: 1px solid var(--color_red);
}
.input-group-b input[type=text].is-valid, .input-group-b input[type=tel].is-valid {
  border: 1px solid var(--color_green);
}
.input-group-b.label input[type=text].activated, .input-group-b.label input[type=text].is-valid, .input-group-b.label input[type=text].is-invalid, .input-group-b.label input[type=tel].activated, .input-group-b.label input[type=tel].is-valid, .input-group-b.label input[type=tel].is-invalid { /*, &.is-invalid2.activated*/
  padding-top: 27px;
  padding-bottom: 5px;
}
.input-group-b.label label {
  position: absolute;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_brown2);
  top: 5px;
  left: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.input-group-b input[type=text].activated + label, .input-group-b input[type=tel].activated + label,
.input-group-b input[type=text].is-valid + label, .input-group-b input[type=tel].is-valid + label {
  opacity: 1;
}
.input-group-b input[type=text].is-invalid:not(.is-invalid2) + label, .input-group-b input[type=tel].is-invalid:not(.is-invalid2) + label {
  opacity: 0;
}
.input-group-b.mark input[type=text], .input-group-b.mark input[type=tel], .input-group-b.mark select {
  padding-right: 44px;
  background-position: calc(100% - 16px) center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
.input-group-b.mark input[type=text].is-valid, .input-group-b.mark input[type=tel].is-valid, .input-group-b.mark select.is-valid {
  background-position: calc(100% - 16px) center;
  background-size: 16px 16px;
  background-image: url(/img/svg/correct.svg);
  background-repeat: no-repeat;
}
.input-group-b.mark input[type=text].is-invalid, .input-group-b.mark input[type=tel].is-invalid, .input-group-b.mark select.is-invalid {
  background-position: calc(100% - 16px) center;
  background-size: 16px 16px;
  background-image: url(/img/svg/alert.svg);
  background-repeat: no-repeat;
  padding-top: 27px;
  padding-bottom: 5px;
}
.input-group-b.mark .error-text {
  position: absolute;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_red);
  top: 5px;
  left: 16px;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.input-group-b.mark:not(.label) input[type=text].is-invalid2, .input-group-b.mark:not(.label) input[type=tel].is-invalid2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.input-group-b.icon .svg-icon {
  position: absolute;
  left: 16px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  color: var(--color_orange1);
}
.input-group-b.icon input[type=text], .input-group-b.icon input[type=tel], .input-group-b.icon select {
  padding-left: 44px;
}
.input-group-b.icon .error-text {
  left: 44px;
}
.checkbox {
  display: flex;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox label {
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  text-align: left;
  width: 100%;
  padding-left: 24px;
  flex: 1;
  position: relative;
  cursor: pointer;
}
.checkbox label:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  top: calc(50% - 8px);
  left: 0;
  background-color: var(--color_white);
  border-radius: 4px;
  border: 1px solid var(--color_grey8);
}
.checkbox input[type=checkbox]:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M9.707.293a1 1 0 0 1 0 1.414L4 7.414.293 3.707a1 1 0 0 1 1.414-1.414L4 4.586 8.293.293a1 1 0 0 1 1.414 0Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-position: center center;
  background-color: var(--color_grey3);
  border-radius: 4px;
  background-repeat: no-repeat no-repeat;
}
.dropdown .dropdown-top-btn {
  height: 52px;
  background-color: var(--color_white);
  border-radius: 8px;
  border: 1px solid var(--color_white);
  padding: 16px 44px 16px 16px;
  width: 100%;
  position: relative;
  cursor: pointer;
  align-items: space-between;
}
.dropdown .dropdown-top-btn:active {
  border: 1px solid var(--color_orange1);
}
.dropdown .dropdown-top-btn span {
  white-space: nowrap;
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  text-align: left;
  flex-grow: 1;
}
.dropdown .dropdown-top-btn .placeholder {
  color: var(--color_brown2);
}
.dropdown .dropdown-top-btn .result {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--color_grey1);
}
.dropdown .dropdown-top-btn .number {
  display: inline-flex;
  width: 24px;
  height: 24px;
  font-size: 12px;
  color: var(--color_white);
  border-radius: 12px;
  background-color: var(--color_grey3);
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.dropdown .dropdown-top-btn:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath fill='%23FF6522' fill-rule='evenodd' d='M.293 3.293a1 1 0 0 1 1.414 0L8.5 10.086l6.793-6.793a1 1 0 1 1 1.414 1.414L8.5 12.914.293 4.707a1 1 0 0 1 0-1.414Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  top: calc(50% - 8px);
  height: 16px;
  right: 16px;
  width: 16px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: 0.6s transform ease;
}
.dropdown .dropdown-popup {
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color_white);
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.dropdown .dropdown-popup .back-btn {
  padding: 16px;
  width: 100%;
  justify-content: flex-start;
  height: 62px;
}
.dropdown .dropdown-popup .back-btn span {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color_grey1);
  padding-left: 10px;
}
.dropdown .dropdown-popup .back-btn .svg-icon {
  color: var(--color_grey6);
  width: 16px;
  height: 16px;
}
.dropdown .dropdown-popup .search-wrap {
  padding: 0 16px 12px 16px;
  position: relative;
}
.dropdown .dropdown-popup .search-wrap .svg-icon {
  color: var(--color_grey6);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  left: 32px;
  z-index: var(--z_index_over_content);
}
.dropdown .dropdown-popup .search-wrap .search {
  border-radius: 40px;
  border: 1px solid var(--color_grey6);
  padding: 12px 16px 12px 40px;
  width: 100%;
  height: 40px;
}
.dropdown .dropdown-popup .wrap-j {
  display: block;
  flex: 1 1 auto;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}
@supports (scrollbar-color: auto) and (not (selector(::-webkit-scrollbar))) {
  .dropdown .dropdown-popup .wrap-j {
    scrollbar-width: thin;
    scrollbar-color: var(--color_grey4) var(--color_grey9);
  }
}
@supports selector(::-webkit-scrollbar) {
  .dropdown .dropdown-popup .wrap-j::-webkit-scrollbar {
    width: 8px;
    background: var(--color_grey9);
    padding: 4px;
  }
  .dropdown .dropdown-popup .wrap-j::-webkit-scrollbar-track {
    background: var(--color_grey9);
  }
  .dropdown .dropdown-popup .wrap-j::-webkit-scrollbar-thumb {
    background-color: var(--color_grey4);
    border: none;
  }
  .dropdown .dropdown-popup .wrap-j::-webkit-scrollbar-button {
    display: none;
  }
}
.dropdown .dropdown-popup .wrap-j li {
  border-bottom: 1px solid var(--color_grey9);
  display: flex;
}
.dropdown .dropdown-popup .wrap-j li label {
  padding: 10px 16px 10px 40px;
}
.dropdown .dropdown-popup .wrap-j li label:hover {
  background-color: var(--color_grey7);
}
.dropdown .dropdown-popup .wrap-j li label:before {
  left: 16px;
}
.dropdown .dropdown-popup .wrap-j li input[type=checkbox]:checked + label {
  background-color: var(--color_grey9);
}
.dropdown .dropdown-popup .button-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: none;
}
.dropdown .dropdown-popup .button-over.-active {
  display: block;
}
.dropdown .dropdown-popup .button-over .btn {
  width: 100%;
}
.dropdown.-active .dropdown-top-btn {
  border: 1px solid var(--color_orange1);
}
.dropdown.-active .dropdown-top-btn:after {
  transform: rotate(180deg);
}
.dropdown.-active .dropdown-popup {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .dropdown .dropdown-popup {
    height: 350px;
    position: absolute;
    width: 100%;
    border-radius: 8px;
    top: 100%;
    box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.0784313725);
    overflow: hidden;
  }
  .dropdown .dropdown-popup .button-over.-active {
    display: none;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z_index_overlay);
  display: flex;
  overflow-y: scroll;
  overscroll-behavior: none;
  padding: var(--container_padding_x);
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  visibility: hidden;
  transition: var(--dur2);
  transition-property: opacity, visibility;
}
.modal._p_0 .modal-body {
  padding: 0;
}
.modal.-active {
  opacity: 1;
  visibility: visible;
}
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color_black);
  opacity: 0.4;
}
.modal .modal-wrapper {
  position: relative;
  display: flex;
  margin: auto;
  max-width: 715px;
  width: 100%;
}
.modal .modal-content {
  width: 100%;
  overflow: hidden;
  background: var(--color_white);
  border-radius: 16px;
}
.modal .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: var(--z_index_local);
}
.modal .modal-body {
  padding: 64px 8px 24px;
}
@media only screen and (min-width: 768px) {
  .modal .modal-content {
    border-radius: 24px;
  }
  .modal .modal-body {
    padding: 24px 72px 24px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .modal .modal-body {
    padding: 24px 72px 24px 32px;
  }
}
@media only screen and (min-width: 1280px) {
  .modal .modal-wrapper {
    max-width: 1160px;
  }
}
.notice-storage {
  position: fixed;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: var(--z_index_overlay);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}
.notice {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_white);
  display: flex;
  padding: 12px 12px 12px 24px;
  max-width: 357px;
  width: 100%;
  gap: 12px;
  border-radius: 24px 0 24px 24px;
  cursor: pointer;
  pointer-events: auto;
}
.notice:hover .svg-icon {
  opacity: 1;
}
.notice._variant_orange {
  background: var(--color_orange1);
}
.notice._variant_grey {
  background: var(--color_grey2);
}
.notice .content {
  flex: 1;
}
.notice .btn {
  color: var(--color_grey1);
  margin-top: 10px;
  height: 32px;
}
.notice .svg-icon {
  width: 16px;
  height: 16px;
  transition: var(--dur2);
  opacity: 0.6;
}
.map._in-modal {
  height: 50vh;
}
@media only screen and (min-width: 768px) {
  .map._in-modal {
    height: 60vh;
  }
}
.r-title._l1 {
  font-size: 128px;
}
.r-title._l2 {
  font-size: 128px;
}
.r-title._l3 {
  font-size: 84px;
}
.r-title._l4 {
  font-size: 64px;
}
.r-title._l5 {
  font-size: 56px;
}
.r-title._l6 {
  font-size: 48px;
}
.r-title._l7 {
  font-size: 42px;
}
.r-title._l8 {
  font-size: 38px;
}
.r-title._l9 {
  font-size: 34px;
}
.r-title._l10 {
  font-size: 30px;
}
.r-title._l11 {
  font-size: 28px;
}
.r-title._l12 {
  font-size: 24px;
}
.r-title._l13 {
  font-size: 22px;
}
.r-title._l14 {
  font-size: 22px;
}
.r-title._l15 {
  font-size: 20px;
}
.r-title._l16 {
  font-size: 18px;
}
.r-title._l17 {
  font-size: 18px;
}
.r-title._l18 {
  font-size: 17px;
}
.r-title._l19 {
  font-size: 17px;
}
.r-title._l20 {
  font-size: 17px;
}
.r-title._l21 {
  font-size: 17px;
}
@media only screen and (min-width: 375px) {
  .r-title._l1 {
    font-size: 128px;
  }
  .r-title._l2 {
    font-size: 128px;
  }
  .r-title._l3 {
    font-size: 88px;
  }
  .r-title._l4 {
    font-size: 72px;
  }
  .r-title._l5 {
    font-size: 68px;
  }
  .r-title._l6 {
    font-size: 56px;
  }
  .r-title._l7 {
    font-size: 48px;
  }
  .r-title._l8 {
    font-size: 44px;
  }
  .r-title._l9 {
    font-size: 40px;
  }
  .r-title._l10 {
    font-size: 36px;
  }
  .r-title._l11 {
    font-size: 32px;
  }
  .r-title._l12 {
    font-size: 30px;
  }
  .r-title._l13 {
    font-size: 28px;
  }
  .r-title._l14 {
    font-size: 26px;
  }
  .r-title._l15 {
    font-size: 24px;
  }
  .r-title._l16 {
    font-size: 22px;
  }
  .r-title._l17 {
    font-size: 22px;
  }
  .r-title._l18 {
    font-size: 20px;
  }
  .r-title._l19 {
    font-size: 20px;
  }
  .r-title._l20 {
    font-size: 17px;
  }
  .r-title._l21 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 412px) {
  .r-title._l1 {
    font-size: 128px;
  }
  .r-title._l2 {
    font-size: 128px;
  }
  .r-title._l3 {
    font-size: 88px;
  }
  .r-title._l4 {
    font-size: 88px;
  }
  .r-title._l5 {
    font-size: 76px;
  }
  .r-title._l6 {
    font-size: 64px;
  }
  .r-title._l7 {
    font-size: 56px;
  }
  .r-title._l8 {
    font-size: 48px;
  }
  .r-title._l9 {
    font-size: 44px;
  }
  .r-title._l10 {
    font-size: 40px;
  }
  .r-title._l11 {
    font-size: 36px;
  }
  .r-title._l12 {
    font-size: 32px;
  }
  .r-title._l13 {
    font-size: 30px;
  }
  .r-title._l14 {
    font-size: 28px;
  }
  .r-title._l15 {
    font-size: 28px;
  }
  .r-title._l16 {
    font-size: 26px;
  }
  .r-title._l17 {
    font-size: 24px;
  }
  .r-title._l18 {
    font-size: 22px;
  }
  .r-title._l19 {
    font-size: 22px;
  }
  .r-title._l20 {
    font-size: 17px;
  }
  .r-title._l21 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .r-title._l1 {
    font-size: 128px;
  }
  .r-title._l2 {
    font-size: 128px;
  }
  .r-title._l3 {
    font-size: 88px;
  }
  .r-title._l4 {
    font-size: 88px;
  }
  .r-title._l5 {
    font-size: 72px;
  }
  .r-title._l6 {
    font-size: 72px;
  }
  .r-title._l7 {
    font-size: 72px;
  }
  .r-title._l8 {
    font-size: 72px;
  }
  .r-title._l9 {
    font-size: 72px;
  }
  .r-title._l10 {
    font-size: 56px;
  }
  .r-title._l11 {
    font-size: 56px;
  }
  .r-title._l12 {
    font-size: 56px;
  }
  .r-title._l13 {
    font-size: 56px;
  }
  .r-title._l14 {
    font-size: 56px;
  }
  .r-title._l15 {
    font-size: 48px;
  }
  .r-title._l16 {
    font-size: 48px;
  }
  .r-title._l17 {
    font-size: 48px;
  }
  .r-title._l18 {
    font-size: 44px;
  }
  .r-title._l19 {
    font-size: 44px;
  }
  .r-title._l20 {
    font-size: 40px;
  }
  .r-title._l21 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1280px) {
  .r-title._l1 {
    font-size: 128px;
  }
  .r-title._l2 {
    font-size: 128px;
  }
  .r-title._l3 {
    font-size: 96px;
  }
  .r-title._l4 {
    font-size: 96px;
  }
  .r-title._l5 {
    font-size: 96px;
  }
  .r-title._l6 {
    font-size: 78px;
  }
  .r-title._l7 {
    font-size: 78px;
  }
  .r-title._l8 {
    font-size: 72px;
  }
  .r-title._l9 {
    font-size: 72px;
  }
  .r-title._l10 {
    font-size: 72px;
  }
  .r-title._l11 {
    font-size: 72px;
  }
  .r-title._l12 {
    font-size: 72px;
  }
  .r-title._l13 {
    font-size: 72px;
  }
  .r-title._l14 {
    font-size: 72px;
  }
  .r-title._l15 {
    font-size: 72px;
  }
  .r-title._l16 {
    font-size: 72px;
  }
  .r-title._l17 {
    font-size: 72px;
  }
  .r-title._l18 {
    font-size: 72px;
  }
  .r-title._l19 {
    font-size: 56px;
  }
  .r-title._l20 {
    font-size: 56px;
  }
  .r-title._l21 {
    font-size: 56px;
  }
}
@keyframes loaderAnimation {
  0% {
    stroke-dasharray: 0, 241.152px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 120.576px, 241.152px;
    stroke-dashoffset: -30.144px;
  }
  100% {
    stroke-dasharray: 120.576px, 241.152px;
    stroke-dashoffset: -150.72px;
  }
}
@keyframes rotateAnimation {
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  animation: rotateAnimation 2s linear infinite;
}
.loader circle {
  animation: loaderAnimation 2s ease-in-out infinite;
}
.ul-list .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.ul-list .item:not(:first-child) {
  margin-top: 16px;
}
.ul-list .round-icon {
  padding-top: 4px;
}
.ul-list .text {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.fixed-selector-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z_index_overlay);
  display: flex;
  flex-direction: column;
  overscroll-behavior: none;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  visibility: hidden;
  transition: var(--dur2);
  transition-property: opacity, visibility;
}
.fixed-selector-popup.-active {
  opacity: 1;
  visibility: visible;
}
.fixed-selector-popup .fixed-selector {
  background-color: var(--color_white);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fixed-selector-popup .fixed-selector .back-btn {
  padding: 16px;
  width: 100%;
  justify-content: flex-start;
  height: 62px;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  color: var(--color_black);
}
.fixed-selector-popup .fixed-selector .back-btn .svg-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--color_grey6);
}
.fixed-selector-popup .fixed-selector .item {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color_grey9);
  cursor: pointer;
  transition: var(--dur2);
}
.fixed-selector-popup .fixed-selector .label {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey6);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color_grey9);
  cursor: pointer;
  transition: var(--dur2);
}
.city-selector-wrap {
  position: relative;
}
.city-selector-wrap .fixed-selector-popup.city .outer {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: scroll;
}
.city-selector-wrap .fixed-selector-popup.city .outer .inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
}
.city-selector-wrap .fixed-selector-popup.city .outer .inner a {
  flex: 1;
  display: flex;
  white-space: nowrap;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  padding: 10px 16px;
  border-bottom: 1px solid var(--color_grey9);
}
.city-selector-wrap .fixed-selector-popup.city .outer .inner a:hover, .city-selector-wrap .fixed-selector-popup.city .outer .inner a.-active {
  color: var(--color_black);
}
@media only screen and (min-width: 768px) {
  .city-selector-wrap .fixed-selector-popup.city {
    position: absolute;
    top: 100%;
    left: 0;
    width: 356px;
    height: auto;
  }
  .city-selector-wrap .fixed-selector-popup.city .fixed-selector {
    background-color: var(--color_white);
    padding: 16px 20px;
    border-radius: 12px;
  }
  .city-selector-wrap .fixed-selector-popup.city .fixed-selector .outer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    width: 316px;
    overflow-y: hidden;
    height: auto;
    align-items: flex-start;
  }
  .city-selector-wrap .fixed-selector-popup.city .fixed-selector .outer .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .city-selector-wrap .fixed-selector-popup.city .fixed-selector .outer .inner a {
    flex: 1 0 auto;
    display: flex;
    white-space: nowrap;
    font-weight: 600;
    line-height: 22px;
    font-size: 14px;
    color: var(--color_grey5);
    padding: 0;
    border-bottom: none;
  }
  .city-selector-wrap .fixed-selector-popup.city .fixed-selector .outer .inner a:hover, .city-selector-wrap .fixed-selector-popup.city .fixed-selector .outer .inner a.-active {
    color: var(--color_black);
  }
}
.tooltip {
  display: contents;
}
.tooltip .tooltip-content {
  position: fixed;
  z-index: calc(var(--z_index_overlay) + 10);
  display: none;
  width: max-content;
}
.slider-pagination {
  display: flex;
  margin: 8px auto 0;
}
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0);
  opacity: 0;
}
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  opacity: 1;
  transform: scale(0.5);
}
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  opacity: 1;
  transform: scale(0.75);
}
.slider-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  opacity: 1;
  transform: scale(1);
}
.slider-pagination .swiper-pagination-bullet {
  position: relative;
  padding: 8px;
  transition: var(--dur2);
  cursor: pointer;
}
.slider-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  transition: var(--dur2);
  background: var(--color_grey7);
  border-radius: 50%;
}
.slider-pagination .swiper-pagination-bullet-active::before {
  background: var(--color_orange2);
}
.slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z_index_local);
  display: none;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.slider-nav.xsmall .nav-item {
  width: 36px;
  height: 48px;
}
.slider-nav.xsmall .nav-item .svg-icon {
  width: 16px;
  height: 16px;
}
.slider-nav.small .nav-item {
  width: 48px;
  height: 100px;
}
.slider-nav.big .nav-item {
  width: 80px;
  height: 220px;
}
.slider-nav .nav-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--dur2);
  opacity: 0.8;
  background: var(--color_grey1);
  border-radius: 0 16px 16px 0;
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
}
.slider-nav .nav-item:hover {
  opacity: 1;
}
.slider-nav .nav-item.prev {
  left: 0;
}
.slider-nav .nav-item.next {
  right: 0;
  transform: scaleX(-1);
}
.slider-nav .nav-item.swiper-button-disabled, .slider-nav .nav-item.-hidden {
  opacity: 0;
  pointer-events: none;
}
.slider-nav .nav-item .svg-icon {
  color: var(--color_white);
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 768px) {
  .slider-nav {
    display: flex;
  }
  .slider-pagination {
    margin-top: 16px;
  }
}
.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 24px 0;
  gap: 8px;
}
.pagination .item,
.pagination .nav {
  white-space: nowrap;
  display: block;
  transition: var(--dur2);
}
.pagination .item:hover,
.pagination .nav:hover {
  color: var(--color_orange2);
}
.pagination .link {
  display: block;
}
.pagination .nav {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  color: var(--color_grey6);
}
.pagination .nav.-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pagination .nav._prev {
  margin-right: 16px;
}
.pagination .nav._prev .link {
  padding-left: 0;
}
.pagination .nav._next {
  margin-left: 16px;
}
.pagination .nav._next .link {
  padding-right: 0;
}
.pagination .nav._next .svg-icon {
  transform: scaleX(-1);
}
.pagination .nav .link {
  padding: 8px;
}
.pagination .nav .link .svg-icon {
  width: 16px;
  height: 16px;
}
.pagination .item {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.pagination .item.-active {
  color: var(--color_orange1);
}
.pagination .item .link {
  min-width: 32px;
}
.quick-links {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  margin: 0 calc(-1 * var(--container_padding_x));
  padding: 0 var(--container_padding_x);
}
.quick-links::-webkit-scrollbar {
  display: none;
}
.quick-links .list {
  display: inline-flex;
  flex-grow: 1;
  padding: 22px 40px;
  background: var(--color_grey12);
  border-radius: 56px;
}
.quick-links .item {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.quick-links .item:not(:last-child)::after {
  content: "";
  display: block;
  margin: 0 16px;
  width: 4px;
  height: 4px;
  background: var(--color_grey6);
  border-radius: 50%;
}
.quick-links .link {
  transition: var(--dur2);
}
.quick-links .link:hover {
  color: var(--color_orange2);
}
@media only screen and (min-width: 768px) {
  .quick-links .list {
    padding-right: 56px;
    padding-left: 56px;
  }
}
.kitchen-type {
  display: flex;
  margin-top: 8px;
  gap: 16px;
}
.kitchen-type .svg-icon {
  color: var(--color_grey6);
  margin-top: 6px;
  width: 16px;
  height: 16px;
}
.kitchen-type .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.kitchen-type .item {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.kitchen-type .item:not(:last-child)::after {
  content: "";
  display: block;
  margin: 1px 12px 0px;
  width: 6px;
  height: 6px;
  background: var(--color_grey6);
  border-radius: 50%;
}
@media only screen and (min-width: 1440px) {
  .kitchen-type {
    margin-top: 12px;
  }
}
.feature-list .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list .item:not(:first-child) {
  margin-top: 32px;
}
.feature-list .title a,
.feature-list .text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.feature-list .title a:hover,
.feature-list .text a:hover {
  color: var(--color_orange3);
}
.feature-list .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
.feature-list .text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 4px;
}
.feature-list .statistics {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  padding: 24px;
  gap: 24px;
  border-radius: 24px;
  background: var(--color_grey11);
}
.feature-list .statistics .svg-icon {
  color: var(--color_orange2);
  width: 32px;
  height: 32px;
}
.feature-list .statistics-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list .statistics-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
}
.feature-list .statistics-text {
  line-height: 24px;
  font-size: 16px;
  margin-top: 4px;
}
@media only screen and (min-width: 576px) {
  .feature-list .item {
    flex-direction: row;
  }
  .feature-list .title {
    font-size: 24px;
    line-height: 34px;
  }
  .feature-list .statistics {
    padding: 24px 32px;
  }
  .feature-list .statistics-item {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .feature-list .statistics {
    flex-direction: row;
    padding: 32px 40px;
    gap: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .feature-list .item:not(:first-child) {
    margin-top: 40px;
  }
}
.step-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  margin: 32px calc(-1 * var(--container_padding_x)) 0;
  padding: 0 var(--container_padding_x);
  gap: 20px;
  overflow-x: scroll;
}
.step-list::-webkit-scrollbar {
  display: none;
}
.step-list .item {
  min-width: 240px;
  width: 100%;
}
.step-list .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.step-list .icon-wrapper .line {
  flex: 1;
  margin-left: -2px;
  height: 2px;
  background: var(--color_grey9);
}
.step-list .icon-wrapper .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color_grey9);
}
.step-list .item-text {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 576px) {
  .step-list .item {
    min-width: 324px;
  }
}
@media only screen and (min-width: 1280px) {
  .step-list .item {
    min-width: unset;
  }
}
.card-picture {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px 24px 24px 0;
}
.card-picture:hover .slider-nav {
  opacity: 1;
}
.card-picture .image-wrapper {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--color_grey10);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.card-picture .image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-picture .slider-nav {
  transition: var(--dur2);
  opacity: 0;
}
.card-picture .swiper-slide:first-child .image-wrapper,
.card-picture swiper-slide:first-child .image-wrapper {
  border-radius: 24px 0 0 0;
}
.card-picture .swiper-slide:last-child .image-wrapper,
.card-picture swiper-slide:last-child .image-wrapper {
  border-radius: 0 24px 24px 0;
}
.card-picture .swiper-pagination {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: var(--z_index_local);
  margin: 0;
}
.card-picture .swiper-pagination-bullet {
  padding: 4px;
}
.card-picture .swiper-pagination-bullet::before {
  opacity: 0.5;
  background: var(--color_white);
}
.card-picture .swiper-pagination-bullet-active::before {
  opacity: 1;
}
.card-picture .blob-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: var(--z_index_local);
  border-bottom-left-radius: 0;
}
@media only screen and (hover: hover) {
  .card-picture .slider-pagination {
    transition: var(--dur2);
    opacity: 0;
  }
  .card-picture:hover .slider-pagination {
    opacity: 1;
  }
}
.card-type-place .card-picture {
  border-bottom-right-radius: 0;
}
.card-type-place .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #151718 0%, rgba(21, 23, 24, 0) 31.51%);
}
.card-type-place .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color_white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  width: 100%;
  border-radius: 24px 24px 0px 0px;
}
.card-type-place .price {
  color: var(--color_grey8);
  display: flex;
  padding: 16px 20px;
  gap: 8px;
  border-bottom-right-radius: 24px;
  background: var(--color_grey5);
}
.card-type-place .price .svg-icon {
  color: var(--color_grey6);
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.card-type-place .price .value {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_white);
}
.card-type-place .price .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}
.card-type-place .price .item {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  display: flex;
  white-space: nowrap;
}
.card-type-place .price .item:not(:last-child)::after {
  content: "•";
  color: var(--color_grey6);
  padding: 0 0.5em;
}
.card-type-place .card-body {
  margin-top: 16px;
}
.card-type-place .description {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey3);
}
.card-type-place .info {
  display: flex;
  margin-top: 16px;
  padding: 20px 24px;
  gap: 8px;
  border-radius: 24px 0px 24px 24px;
}
.card-type-place .info._variant_white {
  background: var(--color_white);
}
.card-type-place .info._variant_grey {
  background: var(--color_grey12);
}
.card-type-place .info .svg-icon {
  color: var(--color_grey6);
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.card-type-place .info-title {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.card-type-place .info-text {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey4);
  margin-top: 4px;
}
@media only screen and (min-width: 576px) {
  .card-type-place .title {
    font-size: 24px;
    line-height: 34px;
    padding: 12px 24px;
  }
  .card-type-place .price {
    padding: 20px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .card-type-place .title {
    padding: 16px 24px;
  }
}
.card-type-rest-address {
  width: 100%;
}
.card-type-rest-address .card-picture {
  border-bottom-right-radius: 0;
}
.card-type-rest-address .image-wrapper {
  padding-bottom: 0;
  height: 212px;
}
.card-type-rest-address .content {
  color: var(--color_white);
  padding: 20px 24px;
  border-radius: 0px 0px 24px 0px;
  background: var(--color_grey5);
}
.card-type-rest-address .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 2px;
}
.card-type-rest-address .address {
  display: flex;
  gap: 8px;
}
.card-type-rest-address .address .svg-icon {
  color: var(--color_grey6);
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.card-type-rest-address .address-text {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card-type-rest {
  overflow: hidden;
}
.card-type-rest .card-picture .image-wrapper {
  padding-bottom: 100%;
}
.card-type-rest .card-body {
  margin-top: 12px;
}
.card-type-rest .title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  word-break: break-word;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--dur2);
}
.card-type-rest .title:hover {
  color: var(--color_orange2);
}
.card-type-rest .placement {
  position: relative;
  display: flex;
  margin-top: 12px;
  padding-bottom: 16px;
  gap: 8px;
}
.card-type-rest .placement::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  border-top: 1px solid var(--color_grey9);
  width: 100%;
}
.card-type-rest .col-icon {
  color: var(--color_orange1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color_orange6);
  border-radius: 50%;
}
.card-type-rest .col-icon .svg-icon {
  width: 16px;
  height: 16px;
}
.card-type-rest .col-content {
  flex: 1 1 0;
  overflow: hidden;
}
.card-type-rest .address {
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.card-type-rest .address-text {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  word-break: break-word;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color_orange1);
  transition: var(--dur2);
}
.card-type-rest .address-text:hover {
  color: var(--color_orange3);
}
.card-type-rest .distance {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_grey6);
  white-space: nowrap;
  display: flex;
  gap: 2px;
  align-items: center;
}
.card-type-rest .distance .svg-icon {
  width: 16px;
  height: 16px;
}
.card-type-rest .metro-list {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey4);
}
.card-type-rest .description {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey3);
  margin-top: 12px;
}
.card-type-rest .short-info {
  margin-top: 12px;
}
.card-type-rest .short-info .block {
  display: flex;
}
.card-type-rest .short-info .block:not(:first-child) {
  margin-top: 12px;
}
.card-type-rest .short-info .block .svg-icon {
  color: var(--color_grey6);
  margin: 4px 16px 4px 0;
  width: 16px;
  height: 16px;
}
.card-type-rest .short-info .value {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.card-type-rest .short-info .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}
.card-type-rest .short-info .item {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  display: flex;
  white-space: nowrap;
}
.card-type-rest .short-info .item:not(:last-child)::after {
  content: "•";
  color: var(--color_grey6);
  padding: 0 0.5em;
}
.card-type-rest .tag-list {
  margin-top: 20px;
}
.card-type-rest .tag-list .tooltip-content {
  max-width: min(360px, 100% - 2 * var(--container_padding_x));
}
.card-type-rest .tag.-active {
  color: var(--color_orange2);
  background: var(--color_orange6);
}
.card-type-rest .tooltip-trigger {
  cursor: pointer;
}
.card-type-rest .other-tag-list {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  gap: 16px;
  border-radius: 12px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.12);
  background: var(--color_white);
}
.card-type-rest .other-tag-list .item {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card-type-rest .action-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 8px;
}
.card-type-rest .action-list .reserve {
  flex: 1;
}
.card-type-rest .action-list .our-rest-marker {
  order: 1;
}
@media only screen and (min-width: 576px) {
  .card-type-rest .card-picture .image-wrapper {
    padding-bottom: 56.25%;
  }
  .card-type-rest .card-body {
    margin-top: 24px;
  }
  .card-type-rest .title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .card-type-rest .placement {
    margin-top: 8px;
    padding-bottom: 20px;
    gap: 16px;
  }
  .card-type-rest .col-icon {
    width: 48px;
    height: 48px;
  }
  .card-type-rest .address {
    gap: 16px;
  }
  .card-type-rest .address-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    -webkit-line-clamp: 1;
  }
  .card-type-rest .distance {
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
    margin-top: 4px;
    gap: 4px;
  }
  .card-type-rest .description {
    line-height: 24px;
    font-size: 16px;
    margin-top: 16px;
  }
  .card-type-rest .short-info .list {
    margin-top: 4px;
  }
  .card-type-rest .tag-list {
    margin-top: 24px;
  }
  .card-type-rest .action-list {
    flex-wrap: nowrap;
    margin-top: 24px;
  }
  .card-type-rest .action-list .reserve {
    flex: initial;
    width: 100%;
  }
  .card-type-rest .action-list .our-rest-marker {
    order: initial;
  }
}
@media only screen and (min-width: 1280px) {
  .card-type-rest .action-call {
    display: none;
  }
}
.card-type-short .rating {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_white);
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color_orange2);
  background: linear-gradient(135deg, #FAAF40 15%, #FF8C1A 40%, #FF6421 75%);
  border-radius: 50%;
}
.card-type-short .card-body {
  margin-top: 16px;
}
.card-type-short .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color_orange1);
  display: block;
  transition: var(--dur2);
}
.card-type-short .title:hover {
  color: var(--color_orange2);
}
.card-type-short .description {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey3);
  margin-top: 4px;
}
.card-type-short .info {
  display: flex;
  margin-top: 16px;
  padding: 20px 24px;
  gap: 8px;
  border-radius: 24px 0px 24px 24px;
}
.card-type-short .info._variant_white {
  background: var(--color_white);
}
.card-type-short .info._variant_grey {
  background: var(--color_grey12);
}
.card-type-short .info .svg-icon {
  color: var(--color_grey6);
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.card-type-short .info-title {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.card-type-short .info-text {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey4);
}
.card-type-short .info-list {
  display: block;
  margin-top: 10px;
}
.card-type-short .info-list .item {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  display: flex;
}
.card-type-short .info-list .item:not(:first-child) {
  margin-top: 8px;
}
.card-type-short .info-list .item::before {
  content: "•";
  color: var(--color_grey6);
  padding-right: 0.4em;
}
.card-type-short .action-list {
  margin-top: 16px;
}
.card-type-short .action-list .btn {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .card-type-short .title {
    font-size: 24px;
    line-height: 34px;
  }
}
.card-type-event .image-wrapper {
  padding-bottom: 82.667%;
}
.card-type-event .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(21, 23, 24, 0.8) 0%, rgba(21, 23, 24, 0) 49.8%);
}
.card-type-event .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
  width: 100%;
}
.card-type-event .title {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  color: var(--color_white);
}
.card-type-event .text {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_orange3);
}
@media only screen and (min-width: 1440px) {
  .card-type-event .content {
    padding: 20px 24px;
  }
}
.card-type-service .image-wrapper {
  padding-bottom: 100%;
}
.card-type-service .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(21, 23, 24, 0.8) 0%, rgba(21, 23, 24, 0) 49.8%);
}
.card-type-service .content {
  color: var(--color_white);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px;
  width: 100%;
}
.card-type-service .title {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
}
@media only screen and (min-width: 1440px) {
  .card-type-service .content {
    padding: 16px 20px;
  }
  .card-type-service .title {
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
  }
}
.card-type-news .card-body:not(:first-child) {
  margin-top: 16px;
}
.card-type-news .date {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  display: inline-flex;
  padding: 7px 16px;
  background: var(--color_white);
  border-radius: 24px;
}
.card-type-news .title {
  font-size: 18px;
  line-height: 28px;
  margin-top: 8px;
}
.card-type-news .title a {
  transition: var(--dur2);
}
.card-type-news .title a:hover {
  color: var(--color_orange2);
}
.card-type-short-info {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-radius: 24px;
}
.card-type-short-info._variant_light {
  background: var(--color_grey11);
}
.card-type-short-info._variant_light .text {
  color: var(--color_grey3);
}
.card-type-short-info._variant_dark {
  background: var(--color_grey1);
}
.card-type-short-info._variant_dark .title {
  color: var(--color_white);
}
.card-type-short-info._variant_dark .text {
  color: var(--color_grey7);
}
.card-type-short-info .title a,
.card-type-short-info .text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.card-type-short-info .title a:hover,
.card-type-short-info .text a:hover {
  color: var(--color_orange3);
}
.card-type-short-info .title span,
.card-type-short-info .text span {
  color: var(--color_orange1);
}
.card-type-short-info .title {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
}
.card-type-short-info .text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 4px;
}
@media only screen and (min-width: 768px) {
  .card-type-short-info {
    padding: 24px 32px 28px 28px;
    gap: 20px;
  }
  .card-type-short-info._dir_horizontal {
    flex-direction: row;
  }
  .card-type-short-info._dir_horizontal .card-body {
    padding-top: 4px;
  }
}
:root {
  --container_padding_x: 16px;
}
.container {
  position: relative;
  margin: 0 auto;
  padding: 0 var(--container_padding_x);
  width: 100%;
  max-width: 1692px;
}
.container-inner {
  max-width: 990px;
}
.container-inner._size_lg {
  max-width: 1180px;
}
@media only screen and (min-width: 576px) {
  :root {
    --container_padding_x: 24px;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --container_padding_x: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --container_padding_x: 56px;
  }
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.page-content {
  position: relative;
  flex-grow: 1;
}
.section._pt-xsm {
  padding-top: 24px;
}
.section._pt-sm {
  padding-top: 24px;
}
.section._pt-md {
  padding-top: 40px;
}
.section._pt-lg {
  padding-top: 48px;
}
.section._pb-xsm {
  padding-bottom: 24px;
}
.section._pb-sm {
  padding-bottom: 24px;
}
.section._pb-md {
  padding-bottom: 40px;
}
.section._pb-lg {
  padding-bottom: 48px;
}
.section._mb-lg {
  margin-bottom: 48px;
}
.section._bg_grey {
  background: var(--color_grey11);
}
.section._bg_orange {
  background: var(--color_orange6);
}
.section-separator {
  position: absolute;
  right: var(--container_padding_x);
  left: var(--container_padding_x);
  margin: 0 auto;
  border: 0;
  max-width: 1580px;
  height: 1px;
  background: var(--color_grey7);
}
.section-title-wrapper {
  position: relative;
}
.section-title-wrapper .action {
  margin-top: 16px;
}
.section-title-wrapper::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  display: none;
  margin-bottom: 12px;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-title-wrapper._event-list::before {
  display: block;
  background-image: url("/img/svg/title-decor_events.svg");
}
.section-title-wrapper._sale-list::before {
  display: block;
  background-image: url("/img/svg/title-decor_sale.svg");
}
.section-title-wrapper._best-list::before {
  display: block;
  background-image: url("/img/svg/title-decor_best.svg");
}
.section-title-wrapper._editor-list::before {
  display: block;
  background-image: url("/img/svg/title-decor_editor.svg");
}
.section-title-wrapper._fav-list::before {
  display: block;
  background-image: url("/img/svg/title-decor_fav.svg");
}
.section-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 36px;
}
.section-title-sm {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.section-title-xsm {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  color: var(--color_grey3);
}
.section-text {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.section-text:not(:first-child) {
  margin-top: 8px;
}
.section-text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.section-text a:hover {
  color: var(--color_orange3);
}
@media only screen and (min-width: 576px) {
  .section._pt-sm {
    padding-top: 32px;
  }
  .section._pt-md {
    padding-top: 56px;
  }
  .section._pt-lg {
    padding-top: 64px;
  }
  .section._pb-sm {
    padding-bottom: 32px;
  }
  .section._pb-md {
    padding-bottom: 56px;
  }
  .section._pb-lg {
    padding-bottom: 64px;
  }
  .section._mb-lg {
    margin-bottom: 64px;
  }
  .section-title-wrapper::before {
    margin-bottom: 16px;
    width: 88px;
    height: 88px;
  }
  .section-title {
    font-family: "Unbounded";
    font-size: 34px;
    line-height: 42px;
  }
  .section-title-sm {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .section-text:not(:first-child) {
    margin-top: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .section-title-wrapper .action {
    margin: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .section-title-wrapper::before {
    left: -34px;
  }
}
@media only screen and (min-width: 1440px) {
  .section._pt-sm {
    padding-top: 40px;
  }
  .section._pt-md {
    padding-top: 64px;
  }
  .section._pt-lg {
    padding-top: 72px;
  }
  .section._pb-sm {
    padding-bottom: 40px;
  }
  .section._pb-md {
    padding-bottom: 64px;
  }
  .section._pb-lg {
    padding-bottom: 72px;
  }
  .section._mb-lg {
    margin-bottom: 72px;
  }
  .section-title-wrapper::before {
    margin-bottom: 24px;
  }
  .section-title {
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .section-title-sm {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
}
.header._short .phone {
  display: none;
}
.header._above-first-section {
  color: var(--color_white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z_index_over_content);
  width: 100%;
}
.header._above-first-section .logo-img._variant_black {
  display: none;
}
.header._above-first-section .location {
  color: var(--color_grey7);
  background: var(--color_grey1);
}
.header._above-first-section .location .svg-icon {
  color: var(--color_grey5);
}
.header:not(._above-first-section) .logo-img._variant_white {
  display: none;
}
.header:not(._above-first-section) .location {
  color: var(--color_grey4);
  background: var(--color_grey10);
}
.header:not(._above-first-section) .location:hover {
  background: var(--color_grey8);
}
.header:not(._above-first-section) .location:active {
  background: var(--color_grey10);
}
.header:not(._above-first-section) .location .svg-icon {
  color: var(--color_grey6);
}
.header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  overflow: hidden;
  pointer-events: none;
}
.header .header-bg .container {
  height: 100%;
}
.header .header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 8px;
}
.header .main-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.header .logo {
  margin-right: auto;
  padding: 4px 0;
  height: 32px;
}
.header .logo-img {
  width: auto;
  height: 100%;
}
.header .location {
  padding: 0 8px;
  height: 32px;
}
.header .location-text,
.header .decor {
  display: none;
}
.header .phone {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  transition: var(--dur2);
}
.header .phone:hover {
  color: var(--color_orange2);
}
.header .decor {
  position: absolute;
  z-index: var(--z_index_under);
  background-size: contain;
  background-repeat: no-repeat;
}
.header .decor_1 {
  background-image: url("/img/svg/decor_orange.svg");
}
.header .decor_2,
.header .decor_3,
.header .decor_4 {
  background-image: url("/img/svg/decor_gray.svg");
}
.header .decor_1 {
  top: -12px;
  right: -84px;
  width: 232px;
  height: 232px;
}
.header .decor_2 {
  top: 206px;
  left: -156px;
  width: 92px;
  height: 92px;
}
.header .decor_3 {
  top: 281px;
  left: -48px;
  width: 208px;
  height: 208px;
}
.header .decor_4 {
  top: 462px;
  right: -160px;
  width: 92px;
  height: 92px;
}
@media only screen and (min-width: 576px) {
  .header .logo {
    padding: 5px 0;
    height: 40px;
  }
  .header .location {
    padding: 0 20px;
    height: 40px;
  }
  .header .location-text {
    display: block;
  }
  .header .phone {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .header._above-first-section {
    color: var(--color_grey1);
    position: static;
    z-index: auto;
  }
  .header._above-first-section .logo-img._variant_white {
    display: none;
  }
  .header._above-first-section .logo-img._variant_black {
    display: block;
  }
  .header._above-first-section .location {
    color: var(--color_grey4);
    background: var(--color_grey10);
  }
  .header._above-first-section .location:hover {
    background: var(--color_grey8);
  }
  .header._above-first-section .location:active {
    background: var(--color_grey10);
  }
  .header._above-first-section .location .svg-icon {
    color: var(--color_grey6);
  }
  .header .header-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .header .main-row {
    flex-wrap: nowrap;
    width: auto;
  }
  .header .logo {
    margin-right: 24px;
  }
  .header .phone {
    margin-left: auto;
  }
  .header .decor {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .header .logo {
    margin-right: 32px;
  }
  .header .phone {
    margin-left: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .header .header-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .header .decor_1 {
    top: -63px;
    right: -118px;
    width: 349px;
    height: 349px;
  }
}
.footer {
  --footer_padding_top: 72px;
  position: relative;
  z-index: var(--z_index_local);
  padding: var(--footer_padding_top) 0 24px;
}
.footer .footer-bg {
  position: absolute;
  top: calc(-200px + var(--footer_padding_top));
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.footer .footer-bg .container {
  height: 100%;
}
.footer .logo {
  display: block;
  width: 200px;
  height: 20px;
}
.footer .logo-img {
  width: 100%;
  height: 100%;
}
.footer .menu a,
.footer .links a {
  transition: var(--dur2);
}
.footer .menu a:hover,
.footer .links a:hover {
  color: var(--color_orange2);
}
.footer .menu {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}
.footer .links {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-top: 12px;
  list-style: none;
}
.footer .msg {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
  margin-top: 12px;
}
/*.footer .links + .msg {margin-top: 12px;}*/
.footer .decor {
  position: absolute;
  z-index: var(--z_index_under);
  background-size: contain;
  background-repeat: no-repeat;
}
.footer .decor_1,
.footer .decor_2,
.footer .decor_3 {
  background-image: url("/img/svg/decor_gray.svg");
}
.footer .decor_4 {
  background-image: url("/img/svg/decor_orange.svg");
}
.footer .decor_1 {
  top: 22px;
  left: -134px;
  width: 92px;
  height: 92px;
}
.footer .decor_2 {
  top: 150px;
  left: -61px;
  width: 186px;
  height: 186px;
}
.footer .decor_3 {
  right: 16px;
  bottom: 90px;
  width: 72px;
  height: 72px;
}
.footer .decor_4 {
  right: -120px;
  bottom: -200px;
  width: 272px;
  height: 272px;
}
@media only screen and (min-width: 576px) {
  .footer .decor_2 {
    left: -53px;
  }
  .footer .decor_3 {
    bottom: 165px;
  }
  .footer .decor_4 {
    bottom: -146px;
  }
}
@media only screen and (min-width: 768px) {
  .footer .logo {
    width: 256px;
    height: 25px;
  }
  
  .footer .main-part { display: flex; }
  .footer .phone { white-space:nowrap; }
  .footer .menu ,
  .footer .links  {
    max-width: 540px;
  }
  .footer .menu a,
  .footer .links a {
	white-space:nowrap;
	width:auto;
  }
  .footer .menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 32px;
    max-width: 540px;
  }
  .footer .menu li:nth-child(odd) {
    width: 190px;
  }
  .footer .menu li:nth-child(even) {
    width: calc(100% - 190px - 32px);
  }
  .footer .decor_2 {
    left: -46px;
  }
  .footer .decor_3 {
    right: 220px;
    bottom: 153px;
    width: 82px;
    height: 82px;
  }
  .footer .decor_4 {
    right: -123px;
    bottom: -54px;
    width: 310px;
    height: 310px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    --footer_padding_top: 96px;
  }
  .footer .menu,
  .footer .links {
    max-width: 680px;
  }
  .footer .decor_3 {
    bottom: 97px;
  }
  .footer .decor_4 {
    bottom: -110px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer {
    --footer_padding_top: 104px;
    padding-bottom: 48px;
  }
  .footer .main-part {
    display: flex;
  }
  .footer .logo {
    margin-right: 40px;
  }
  .footer .menu {
    flex-wrap: nowrap;
    margin: 0;
    max-width: unset;
  }
  .footer .menu li:nth-child(odd),
  .footer .menu li:nth-child(even) {
    width: auto;
  }
  .footer .links, .footer .msg {
    margin-top: 16px;
    max-width: 980px;
  }
  .footer .decor_2 {
    width: 208px;
    height: 208px;
    top: 124px;
    left: -100px;
  }
  .footer .decor_3 {
    right: 204px;
    bottom: 110px;
    width: 92px;
    height: 92px;
  }
  .footer .decor_4 {
    right: -184px;
    bottom: -124px;
    width: 350px;
    height: 350px;
  }
}
.address-list {
  overflow: hidden;
  border-radius: 24px;
}
.address-list .address-list-head {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--color_orange1);
}
.address-list .address-list-head .svg-icon {
  width: 24px;
  height: 24px;
}
.address-list .address-list-body {
  padding: 16px 24px 24px;
  background: var(--color_orange6);
}
.address-list .address-list-body .item {
  display: flex;
  gap: 12px;
}
.address-list .address-list-body .item:not(:first-child) {
  margin-top: 12px;
}
.address-list .address-list-body .item .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color_orange5);
}
.address-list .address-list-body .item .svg-icon {
  color: var(--color_orange2);
  width: 16px;
  height: 16px;
}
.address-list .address-list-body .item .address-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_orange2);
  transition: var(--dur2);
}
.address-list .address-list-body .item .address-title:hover {
  color: var(--color_orange3);
}
.address-list .address-list-body .item .address-text {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  color: var(--color_grey3);
  margin-top: 2px;
}
.address-list .expandable-content {
  max-height: 400px;
}
.address-list .expandable-toggler {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .address-list .address-list-body {
    padding: 24px 32px 32px;
  }
}
.adminpanel {
  min-height: 56px;
  background-color: var(--color_grey12);
  line-height: 24px;
  font-size: 16px;
  overflow-x: hidden;
  width: 100vw;
}
.adminpanel + .page {
  position: relative;
}
.adminpanel .svg-icon {
  width: 16px;
  height: 16px;
}
.adminpanel .svg-icon.ok {
  background-image: url(/img/svg/checklist.svg);
}
.adminpanel .svg-icon.alert {
  color: var(--color_orange2);
}
.adminpanel .svg-icon.bad {
  color: var(--color_red);
}
.adminpanel .svg-icon.no {
  background-image: url(/img/svg/close.svg);
}
.adminpanel a:hover {
  color: var(--color_orange2);
}
.adminpanel .with-label {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey1);
}
.adminpanel .with-label span {
  color: var(--color_grey5);
}
.adminpanel .top {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_blue);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
}
.adminpanel .top div .button {
  display: flex;
  border: 2px solid var(--color_grey8);
  padding: 9px 16px 9px 16px;
  border-radius: 8px;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.adminpanel .top div .button.link {
  color: #38A2EF;
}
.adminpanel .top div .button.link:hover {
  color: var(--color_orange2);
}
.adminpanel .top div .button.link .text {
  display: none;
}
.adminpanel .top div .button.link .status {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.adminpanel .top div .button.link .status .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.adminpanel .top div .button.link .status .dot.s1 {
  background-color: var(--color_orange2);
}
.adminpanel .top div .button.link .status .dot.s2 {
  background-color: var(--color_green);
}
.adminpanel .top div .button.link .status .dot.s3 {
  background-color: var(--color_orange2);
}
.adminpanel .top div .button.link .status .dot.s4 {
  background-color: var(--color_orange2);
}
.adminpanel .top div .button.link .status .dot.s5 {
  background-color: var(--color_red);
}
.adminpanel .top div .button.link .status .dot.s6 {
  background-color: var(--color_orange2);
}
.adminpanel .top div .button.edit {
  padding: 14px 16px 14px 16px;
}
.adminpanel .content-wrap {
  width: 100%;
  overflow-x: scroll;
}
.adminpanel .content {
  display: flex;
  background-color: var(--color_grey11);
  padding: 8px;
  align-items: flex-start;
  justify-content: stretch;
  min-width: 950px;
}
.adminpanel .content .comment {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  padding: 8px 12px;
  background-color: var(--color_white);
  margin-bottom: 12px;
  border-radius: 16px;
}
.adminpanel .content .comment .comment-title {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 4px;
}
.adminpanel .content .site {
  margin-bottom: 4px;
}
.adminpanel .content .site a {
  color: #38A2EF;
}
.adminpanel .content .site a:hover {
  color: var(--color_orange2);
}
.adminpanel .content .block {
  flex: 0 0 auto;
}
.adminpanel .content .block .title {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  padding-bottom: 8px;
}
.adminpanel .content .block .title span {
  color: var(--color_grey5);
}
.adminpanel .content .block.payment {
  padding-right: 16px;
  width: 578px;
  flex-grow: 0;
  position: relative;
}
.adminpanel .content .block.payment .pay-table {
  position: relative;
}
.adminpanel .content .block.payment .pay-table .header {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey10);
  background-color: var(--color_grey5);
  border-radius: 8px 8px 0 0;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}
.adminpanel .content .block.payment .pay-table .header div {
  flex: 1 1 22%;
}
.adminpanel .content .block.payment .pay-table .table-content {
  display: flex;
  justify-content: space-between;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 12px;
  background-color: var(--color_grey12);
}
.adminpanel .content .block.payment .pay-table .table-content .item {
  flex: 1 1 22%;
}
.adminpanel .content .block.payment .pay-table .table-content .item .days {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
}
.adminpanel .content .block.payment .pay-table .table-content .item .days.c1 {
  color: var(--color_orange2);
}
.adminpanel .content .block.payment .pay-table .table-content .item .days.c2 {
  color: var(--color_red);
}
.adminpanel .content .block.payment .pay-table .table-content .item .sum {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.adminpanel .content .block.seo {
  padding-left: 16px;
  width: 340px;
  border-left: 1px solid var(--color_grey8);
}
.adminpanel .content .block.seo .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.adminpanel .content .block.seo .list .item {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.adminpanel .content .block.seo .list .item .no-need {
  color: var(--color_grey5);
  background-color: var(--color_grey10);
  border-radius: 4px;
  padding: 0 6px;
  font-size: 10px;
  line-height: 22px;
}
@media only screen and (min-width: 768px) {
  .adminpanel .top div .button.link {
    border: none;
    padding-left: 0;
    gap: 24px;
  }
  .adminpanel .top div .button.link .text {
    display: block;
  }
  .adminpanel .top div .button.link .svg-icon {
    display: none;
  }
  .adminpanel .content-wrap {
    width: 100%;
    overflow-x: visible;
  }
  .adminpanel .content .block.seo {
    flex-grow: 0;
    width: 250px;
  }
}
@media only screen and (min-width: 1024px) {
  .adminpanel .content .block.payment {
    width: 622px;
    padding-right: 40px;
  }
  .adminpanel .content .block.payment .pay-table {
    width: 586px;
  }
  .adminpanel .content .block.seo {
    width: 450px;
  }
  .adminpanel .content .block.seo .list {
    flex-direction: row;
    gap: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  .adminpanel .content .block.seo {
    width: 560px;
  }
}
.adminpanel-content {
  min-height: 64px;
  background-color: var(--color_grey12);
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  padding: 16px 16px 16px 16px;
  color: var(--color_grey1);
  display: flex;
  flex-wrap: wrap;
}
.adminpanel-content a {
  color: var(--color_grey3);
}
.adminpanel-content a:hover {
  color: var(--color_orange1);
}
.adminpanel-content .contract-helper {
  width: 100%;
  font-size: 16px;
  color: black;
  display: flex;
  padding: 10px 10px 0 10px;
}
.adminpanel-content .contract-payment {
  padding: 5px;
  color: white;
}
.adminpanel-content .contract-payment.p1 {
  background-color: var(--color_green);
}
.adminpanel-content .contract-payment.p2 {
  background-color: var(--color_orange1);
}
.adminpanel-content .contract-payment.p3 {
  background-color: var(--color_red);
}
.adminpanel-content .booking-link, .adminpanel-content .contract-link {
  padding: 0 10px;
}
.callcenter .callcenter-block {
  width: 100%;
  position: relative;
  border-collapse: collapse;
  margin-top: 32px;
}
.callcenter .callcenter-block a {
  color: var(--color_grey3);
}
.callcenter .callcenter-block a:hover {
  color: var(--color_orange1);
}
.callcenter .callcenter-block tr {
  margin: 5px 10px;
  border-bottom: 2px solid var(--color_white);
}
.callcenter .callcenter-block tr td {
  background-color: var(--color_grey12);
  line-height: 24px;
  font-size: 16px;
  padding: 12px 24px;
}
.callcenter .callcenter-block tr td:first-child {
  background-color: var(--color_grey9);
  max-width: 250px;
  width: 250px;
}
.callcenter .callcenter-block tr td .adv-item {
  padding-left: 36px;
}
.callcenter .callcenter-block tr:first-child td {
  padding-top: 24px;
}
.callcenter .callcenter-block tr:first-child td:first-child {
  border-radius: 24px 0 0 0;
}
.callcenter .callcenter-block tr:first-child td:last-child {
  border-radius: 0 24px 0 0;
}
.callcenter .callcenter-block tr:last-child td {
  padding-bottom: 24px;
}
.callcenter .callcenter-block tr:last-child td:first-child {
  border-radius: 0 0 0 24px;
}
.callcenter .callcenter-block tr:last-child td:last-child {
  border-radius: 0 0 24px 0;
}
.callcenter .callcenter-block .orange-warning {
  background-color: #ff9a32 !important;
  border-color: #ff9a32;
  color: var(--color_black) !important;
}
.callcenter .callcenter-block .green-warning {
  background-color: green !important;
  border-color: green;
  color: var(--color_white) !important;
}
.admin_similar .item {
  display: flex;
  padding: 28px 0 40px 0;
  border-bottom: 2px solid #D5E0E1;
}
.admin_similar .item:last-child {
  border-bottom: none;
}
.admin_similar .item .image {
  width: 384px;
  min-width: 384px;
  height: 216px;
}
.admin_similar .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.admin_similar .item .info {
  padding-left: 24px;
}
.admin_similar .item .info .name {
  font-weight: 700;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
  margin-top: -6px;
}
.admin_similar .item .info .name a {
  color: var(--color_orange1);
}
.admin_similar .item .info .best_message {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_white);
  background: var(--color_green);
  border-radius: 8px;
  padding: 7px 20px;
  margin-bottom: 16px;
}
.admin_similar .item .info .compare {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
}
.admin_similar .item .info .compare > div {
  margin-bottom: 8px;
}
.admin_similar .item .info .compare .round_mark {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 8px 0 3px;
  position: relative;
  top: 3px;
}
.admin_similar .item .info .compare .round_mark.green {
  background: var(--color_green);
}
.admin_similar .item .info .compare .round_mark.yellow {
  background: var(--color_orange4);
}
.admin_similar .item .info .compare .round_mark.red {
  background: var(--color_red);
}
.admin_similar .item .info .compare .round_mark.black {
  background: var(--color_black);
}
.admin_similar .item .info .info2 {
  margin-bottom: 8px;
}
.admin_similar .item .info .info2 > div {
  margin-bottom: 8px;
}
.admin_similar .item .info .info2 .desc p {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
}
.admin_similar .item .info .info2 span {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.admin_similar .item .info .info2 span.green {
  color: #006B2E;
}
.admin_similar .item .info .info2 span.red {
  color: #FD0000;
}
.admin-event-carousel {
  margin-top: 24px;
  margin-bottom: 24px;
  position: relative;
}
.admin-event-carousel .container {
  position: static;
}
.admin-event-carousel .container .swiper {
  position: static;
  overflow: visible;
}
.admin-event-carousel .container .swiper .swiper-slide {
  width: 328px;
}
.admin-event-carousel .container .swiper .swiper-slide .item {
  line-height: 24px;
  font-size: 16px;
  width: 328px;
  border-radius: 24px;
  background-color: var(--color_grey12);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  display: block;
  overflow: hidden;
}
.admin-event-carousel .container .swiper .swiper-slide .item .date {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  color: var(--color_black);
}
.admin-event-carousel .container .swiper .swiper-slide .item .predefined {
  font-weight: 700;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  margin: 16px 0;
}
.admin-event-carousel .container .swiper .swiper-slide .item .predefined.t1 {
  color: #CFDC35;
}
.admin-event-carousel .container .swiper .swiper-slide .item .predefined.t2 {
  color: #E30000;
}
.admin-event-carousel .container .swiper .swiper-slide .item .predefined.t3 {
  color: #E30000;
}
.admin-event-carousel .container .swiper .swiper-slide .item .predefined.t4 {
  color: #006B2E;
}
.admin-event-carousel .container .swiper .swiper-slide .item .comm {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_black);
}
.admin-event-carousel .container .swiper .swiper-slide .item .desc {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_black);
  margin-bottom: 12px;
}
.admin-event-carousel .container .swiper .swiper-slide .item .author {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_black);
  margin-bottom: 8px;
}
.admin-event-carousel .container .swiper .swiper-slide .item .edit {
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
}
.admin-event-carousel .container .swiper .swiper-slide .item .edit a {
  color: var(--color_orange1);
}
.advisor-banner {
  position: relative;
  padding: 24px 24px 0;
  overflow: hidden;
  background: var(--color_grey1);
  border-radius: 24px;
}
.advisor-banner .decor {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 400px;
  height: 400px;
  opacity: 0.06;
}
.advisor-banner .overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 128px;
  background: linear-gradient(0deg, #272A2C 0%, rgba(39, 42, 44, 0) 100%);
}
.advisor-banner .image {
  width: 100%;
  height: auto;
}
.advisor-banner .action {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .advisor-banner {
    padding: 32px 32px 0;
    border-radius: 40px;
  }
  .advisor-banner .action {
    bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .advisor-banner {
    padding: 56px 105px 0;
  }
  .advisor-banner .action {
    bottom: 56px;
  }
}
@media only screen and (min-width: 1280px) {
  .advisor-banner {
    display: flex;
    padding: 56px 0 0 56px;
    gap: 64px;
  }
  .advisor-banner .overlay {
    display: none;
  }
  .advisor-banner .picture {
    width: 750px;
  }
  .advisor-banner .action {
    position: static;
    padding-top: 120px;
    flex: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .advisor-banner {
    padding-right: 56px;
  }
}
.advisor-statistics {
  padding: 24px 32px;
  background: var(--color_orange6);
  border-radius: 24px;
}
.advisor-statistics .main-title {
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 36px;
}
.advisor-statistics .statistics-body {
  margin-top: 32px;
}
.advisor-statistics .statistics-body .item {
  border-top: 1px solid var(--color_orange4);
  padding: 24px 0;
}
.advisor-statistics .statistics-body .item:last-child {
  border-bottom: 1px solid var(--color_orange4);
}
.advisor-statistics .statistics-body .title {
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
  color: var(--color_orange2);
}
.advisor-statistics .statistics-body .text {
  font-weight: 600;
  line-height: 30px;
  font-size: 20px;
  color: var(--color_grey3);
  margin-top: 4px;
}
.advisor-statistics .action-list {
  margin-top: 32px;
}
.banket-info {
  position: relative;
  z-index: var(--z_index_local);
}
.banket-info .decor {
  position: absolute;
  right: 73px;
  bottom: -43px;
  z-index: var(--z_index_under);
  width: 268px;
  height: 268px;
  opacity: 0.4;
  background-image: url(/img/svg/set-decor_event.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.banket-info .table {
  color: var(--color_grey3);
  margin-top: 24px;
}
.banket-info .row {
  border-top: 1px solid var(--color_orange5);
  padding: 12px 0;
}
.banket-info .row:last-child {
  border-bottom: 1px solid var(--color_orange5);
}
.banket-info .label {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.banket-info .text {
  line-height: 24px;
  font-size: 16px;
}
.banket-info .action {
  margin-top: 24px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .banket-info .table {
    margin-top: 32px;
  }
  .banket-info .row {
    display: flex;
    gap: 32px;
  }
  .banket-info .label,
  .banket-info .text {
    width: 50%;
  }
  .banket-info .action {
    margin-top: 32px;
    width: auto;
  }
}
.booking-form-wrap:before {
  content: "";
  position: absolute;
  right: calc(var(--container_padding_x) + 24px);
  bottom: 100%;
  width: 52px;
  height: 20px;
  background-image: url(/img/svg/triangle_orange.svg);
}
.booking-form-wrap .booking-form-clip {
  background: var(--color_orange3);
  position: relative;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  z-index: 5;
  position: relative;
}
.booking-form-wrap .booking-form-clip .decor {
  position: absolute;
  z-index: var(--z_index_under);
  width: 100%;
  height: 560px;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 560px 560px;
  background-image: url(/img/svg/decor_orange_solid.svg);
  bottom: -155px;
  left: 0;
}
.booking-form-wrap .booking-form-clip .overlay {
  position: absolute;
  z-index: var(--z_index_over_content);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  visibility: hidden;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.booking-form-wrap .booking-form-clip .overlay.-active {
  visibility: visible;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  right: 0 !important;
}
.booking-form-wrap h3 {
  color: var(--color_white);
  font-weight: 700;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 8px;
}
.booking-form-wrap .label {
  color: var(--color_white);
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.booking-form-wrap .text_xs {
  color: var(--color_white);
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  text-align: center;
}
.booking-form-wrap .text_xs a {
  color: var(--color_orange5);
}
.booking-form-wrap .phone-wrapper {
  display: flex;
  justify-content: center;
}
.booking-form-wrap .phone {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  color: var(--color_white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-form-wrap .phone .svg-icon {
  color: var(--color_orange1);
  width: 24px;
  height: 24px;
}
.booking-form-wrap .booking-elements {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
  gap: 12px;
}
.booking-form-wrap .bottom-part {
  display: flex;
  flex-direction: column;
}
.booking-form-wrap .bottom-part .input-group-b, .booking-form-wrap .bottom-part .text_xs, .booking-form-wrap .bottom-part .phone-wrapper {
  margin-bottom: 24px;
}
.booking-form-wrap .slogan-part {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form-wrap .slogan-part .item {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.booking-form-wrap .slogan-part .item .svg-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--color_orange6);
}
.booking-form-wrap .slogan-part .item .info .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_white);
}
.booking-form-wrap .slogan-part .item .info .description {
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_white);
}
.booking-form-wrap .input-group-b {
  flex: 1 1 100%;
}
.booking-form-wrap .input-group-b.submit {
  text-align: center;
}
.booking-form-wrap .input-group-b .event-text {
  position: absolute;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  color: var(--color_red);
  top: 5px;
  left: 44px;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.booking-form-wrap .input-group-b.c-select:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath fill='%23FF6522' fill-rule='evenodd' d='M.293 3.293a1 1 0 0 1 1.414 0L8.5 10.086l6.793-6.793a1 1 0 1 1 1.414 1.414L8.5 12.914.293 4.707a1 1 0 0 1 0-1.414Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  top: calc(50% - 8px);
  height: 16px;
  right: 16px;
  width: 16px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: 0.6s transform ease;
  pointer-events: none;
}
.booking-form-wrap .input-group-b.c-select.active:after {
  transform: rotate(180deg);
}
.booking-form-wrap.partnership .ff {
  position: absolute;
  left: -999px;
  width: 0;
  height: 0;
  overflow: hidden;
}
.booking-form-wrap.partnership .bottom-part .text_xs {
  margin-bottom: 0px;
}
.booking-confirmation {
  padding: 64px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.booking-confirmation .title {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  color: var(--color_grey1);
  text-align: center;
  margin-bottom: 4px;
}
.booking-confirmation .text1 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
  text-align: center;
  margin-bottom: 16px;
}
.booking-confirmation .text1 b {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.booking-confirmation .text2 {
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_orange3);
  text-align: center;
}
.booking-confirmation .text2 b {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.modal .modal-wrapper.booking .modal-content {
  background: var(--color_orange3);
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap:before {
  display: none;
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap .booking-form-clip {
  background: transparent;
  padding-top: 64px;
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap .booking-form-clip .decor {
  bottom: -155px;
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap .bottom-part .input-group-b {
  margin-bottom: 8px;
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap .bottom-part .phone-wrapper {
  margin-bottom: 0px;
}
.modal .modal-wrapper.booking .modal-content .booking-form-wrap .slogan-part {
  display: none;
}
@media only screen and (min-width: 375px) {
  .booking-confirmation {
    padding: 24px 24px 24px 24px;
  }
  .booking-confirmation .title, .booking-confirmation .text1 {
    padding: 0 48px;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap .booking-form-clip {
    padding-top: 24px;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap h3, .modal .modal-wrapper.booking .modal-content .booking-form-wrap h3 + .label {
    padding-right: 56px;
  }
}
@media only screen and (min-width: 412px) {
  .slogan-part {
    width: 344px;
  }
  .booking-confirmation {
    padding: 24px 32px;
  }
}
@media only screen and (min-width: 576px) {
  .booking-form-wrap .input-group-b.date, .booking-form-wrap .input-group-b.time {
    flex: 1 1 45%;
  }
  .booking-form-wrap.with-restaurant .input-group-b.organization, .booking-form-wrap.with-restaurant .input-group-b.num_person {
    flex: 1 1 45%;
  }
  .booking-form-wrap.partnership .booking-form-clip {
    padding: 32px 40px;
  }
  .booking-form-wrap.partnership .input-group-b.email, .booking-form-wrap.partnership .input-group-b.tel, .booking-form-wrap.partnership .input-group-b.organization {
    flex: 1 1 45%;
  }
  .booking-form-wrap.partnership .bottom-part {
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .booking-form-wrap.partnership .bottom-part .input-group-b {
    flex: 1 1 45%;
    text-align: right;
    order: 2;
    margin-bottom: 0;
  }
  .booking-form-wrap.partnership .bottom-part .text_xs {
    flex: 1 1 45%;
    text-align: left;
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .booking-form-wrap .booking-form-clip {
    padding: 32px 40px;
  }
  .booking-form-wrap .booking-form-clip .decor {
    position: absolute;
    z-index: var(--z_index_under);
    width: 612px;
    height: 612px;
    opacity: 0.2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 612px 612px;
    background-image: url(/img/svg/decor_orange_solid.svg);
    bottom: -213px;
    left: auto;
    right: -187px;
  }
  .booking-form-wrap .booking-elements {
    gap: 20px;
  }
  .booking-form-wrap .input-group-b.date, .booking-form-wrap .input-group-b.time, .booking-form-wrap .input-group-b.num_person {
    flex: 1 1 30%;
  }
  .booking-form-wrap.with-last-name .input-group-b.name {
    flex: 1 1 45%;
  }
  .booking-form-wrap.only-name .input-group-b.name, .booking-form-wrap.only-name .input-group-b.tel {
    flex: 1 1 45%;
  }
  .booking-form-wrap.partnership .bottom-part .input-group-b {
    flex: 0 0 auto;
  }
  .booking-form-wrap.partnership .bottom-part .text_xs {
    text-align: right;
    max-width: 264px;
  }
  .booking-form-wrap .bottom-part {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .booking-form-wrap .bottom-part .input-group-b {
    margin-bottom: 16px;
    flex: 1 1 33%;
    text-align: right;
    order: 2;
  }
  .booking-form-wrap .bottom-part .text_xs {
    margin-bottom: 16px;
    flex: 1 1 66%;
    text-align: left;
    order: 1;
  }
  .booking-form-wrap .bottom-part .phone-wrapper {
    margin-bottom: 24px;
    flex: 1 1 100%;
    justify-content: flex-start;
    order: 3;
  }
  .booking-form-wrap .slogan-part {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px 20px;
  }
  .booking-form-wrap .slogan-part .item {
    flex: 1 1 45%;
  }
  .modal .modal-wrapper.narrow {
    max-width: 470px;
  }
  .booking-confirmation .text2 {
    padding: 0 48px;
  }
  .modal .modal-wrapper.booking {
    max-width: none;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap h3 {
    padding-right: 100px;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap .booking-form-clip {
    background: transparent;
    padding-top: 64px;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap .booking-form-clip .decor {
    bottom: -213px;
  }
}
@media only screen and (min-width: 1024px) {
  .booking-form-wrap.with-last-name .input-group-b.name, .booking-form-wrap.with-last-name .input-group-b.tel {
    flex: 1 1 30%;
  }
  .booking-form-wrap.with-restaurant .input-group-b.date, .booking-form-wrap.with-restaurant .input-group-b.time {
    flex: 1 1 45%;
  }
  .booking-form-wrap.with-restaurant .input-group-b.organization, .booking-form-wrap.with-restaurant .input-group-b.num_person {
    flex: 1 1 45%;
  }
  .booking-form-wrap.with-restaurant .input-group-b.name, .booking-form-wrap.with-restaurant .input-group-b.tel {
    flex: 1 1 30%;
  }
  .booking-form-wrap.with-partners .input-group-b.partner {
    flex: 1 1 30%;
  }
  .booking-form-wrap .bottom-part {
    flex-wrap: nowrap;
    gap: 16px;
  }
  .booking-form-wrap .bottom-part .input-group-b {
    margin-bottom: 0px;
    flex: 0 0 auto;
    text-align: right;
    order: 3;
  }
  .booking-form-wrap .bottom-part .text_xs {
    margin-bottom: 0px;
    flex: 0 0 264px;
    text-align: right;
    order: 2;
  }
  .booking-form-wrap .bottom-part .phone-wrapper {
    margin-bottom: 0px;
    flex: 1 1 33%;
    justify-content: flex-start;
    order: 1;
  }
  .booking-form-wrap .slogan-part {
    flex-wrap: nowrap;
  }
  .booking-form-wrap .slogan-part .item {
    flex: 1 1 33%;
  }
}
@media only screen and (min-width: 1280px) {
  .booking-form-wrap.with-restaurant .input-group-b.date, .booking-form-wrap.with-restaurant .input-group-b.time, .booking-form-wrap.with-restaurant .input-group-b.organization, .booking-form-wrap.with-restaurant .input-group-b.num_person {
    flex: 1 1 20%;
  }
  .booking-form-wrap.with-restaurant .input-group-b.name, .booking-form-wrap.with-restaurant .input-group-b.tel {
    flex: 1 1 30%;
  }
  .booking-form-wrap.partnership .input-group-b.name, .booking-form-wrap.partnership .input-group-b.email, .booking-form-wrap.partnership .input-group-b.tel {
    flex: 1 1 30%;
  }
  .booking-form-wrap.partnership .bottom-part {
    margin-bottom: 0px;
  }
  .booking-form-wrap .bottom-part {
    margin-bottom: 24px;
  }
  .modal .modal-wrapper.booking {
    max-width: none;
  }
  .modal .modal-wrapper.booking .modal-content .booking-form-wrap .bottom-part {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .booking-form-wrap .booking-form-clip {
    padding: 48px 56px;
  }
  .booking-form-wrap.partnership .booking-form-clip {
    padding: 48px 56px;
  }
}
@media only screen and (min-width: 1600px) {
  .booking-form-wrap .slogan-part .item {
    max-width: 360px;
  }
}
.card-list-carousel {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}
.card-list-carousel .container {
  position: static;
}
.card-list-carousel .swiper {
  position: static;
  overflow: visible;
}
.card-list-carousel .swiper-slide {
  width: 268px;
}
@media only screen and (min-width: 576px) {
  .card-list-carousel {
    margin-top: 32px;
  }
  .card-list-carousel .swiper-slide {
    width: 348px;
  }
}
@media only screen and (min-width: 1440px) {
  .card-list-carousel {
    margin-top: 40px;
  }
}
.choosing-help {
  position: relative;
  z-index: var(--z_index_local);
  overflow: hidden;
  margin-top: 16px;
  padding: 20px;
  border-radius: 24px;
  background: var(--color_orange6);
}
.choosing-help::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: var(--z_index_under);
  width: 165px;
  height: 165px;
  background-image: url("/img/svg/choosing-help-decor.svg");
}
.choosing-help .title {
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.choosing-help .text {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey3);
  margin-top: 8px;
}
.choosing-help .phone-wrapper {
  display: flex;
  margin-top: 12px;
}
.choosing-help .phone {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--dur2);
}
.choosing-help .phone:hover {
  color: var(--color_orange2);
}
.choosing-help .phone .svg-icon {
  color: var(--color_orange2);
  width: 24px;
  height: 24px;
}
@media only screen and (min-width: 768px) {
  .choosing-help {
    padding: 32px;
  }
  .choosing-help::before {
    top: -32px;
    right: -32px;
  }
  .choosing-help .title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  .choosing-help {
    margin-top: 24px;
    padding: 24px;
  }
}
.expandable.active .expandable-content {
  max-height: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.expandable-content {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, #000 3em);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, #000 3em);
}
.expandable-content._size_s {
  max-height: 112px;
}
.expandable-content._size_m {
  max-height: 180px;
}
.expandable-content._size_service {
  max-height: 480px;
}
.expandable-def-toggler {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey5);
  display: inline-block;
  margin-top: 8px;
  transition: var(--dur2);
  cursor: pointer;
}
.expandable-def-toggler:hover {
  color: var(--color_orange2);
}
.filter-head:not(:first-child) {
  margin-top: 32px;
  scroll-margin-top: 24px;
}
.filter-head .param-list {
  display: none;
}
.filter-head .param-list .item {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey5);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--dur2);
}
.filter-head .param-list .item:hover {
  color: var(--color_orange2);
}
.filter-head .param-list .item.-active {
  color: var(--color_orange1);
}
.filter-head .param-list .item .svg-icon {
  width: 16px;
  height: 16px;
}
.filter-head .param-full {
  display: none;
}
.filter-head .counter {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  color: var(--color_grey6);
  white-space: nowrap;
}
.filter-title-block:not(:first-child) {
  margin-top: 32px;
}
.filter-title-block .sub-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.filter-title-block .title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 36px;
  color: var(--color_orange1);
}
.filter-title-block .title:not(:first-child) {
  margin-top: 8px;
}
.filter-title-block .action {
  display: none;
}
.filter-empty-state {
  text-align: center;
  padding: 64px 0;
}
.filter-empty-state .woopse {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 42px;
  line-height: 42px;
}
.filter-empty-state .title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
  margin-top: 16px;
}
.filter-empty-state .text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-top: 24px;
}
.filter-empty-state .text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.filter-empty-state .text a:hover {
  color: var(--color_orange3);
}
@media only screen and (min-width: 576px) {
  .filter-empty-state .woopse {
    font-family: "Unbounded";
    font-size: 56px;
    line-height: 56px;
  }
  .filter-title-block:not(:first-child) {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .filter-head .param-list {
    display: flex;
    gap: 32px;
  }
  .filter-title-block .sub-title {
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .filter-title-block .title {
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 34px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 1024px) {
  .filter-head {
    display: flex;
    align-items: baseline;
  }
  .filter-head .section-title {
    flex: 1;
  }
  .filter-head .param-list {
    width: 0;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1280px) {
  .filter-title-block {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .filter-title-block .sub-title {
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .filter-title-block .title {
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .filter-title-block .content-part {
    flex-grow: 1;
  }
  .filter-title-block .action {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .filter-head .param-list {
    gap: 40px;
  }
  .filter-head .param-short {
    display: none;
  }
  .filter-head .param-full {
    display: block;
  }
  .filter-empty-state .woopse {
    font-family: "Unbounded";
    font-size: 72px;
    line-height: 72px;
  }
}
.goods-list {
  margin-top: 24px;
}
.goods-list .item:not(:first-child) {
  margin-top: 24px;
}
.goods-list .item-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.goods-list .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  flex-grow: 1;
}
.goods-list .item-tag-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  white-space: nowrap;
  margin: 16px calc(-1 * var(--container_padding_x)) 0;
}
.goods-list .item-tag-list::-webkit-scrollbar {
  display: none;
}
.goods-list .item-tag-list .inner {
  display: inline-flex;
  padding: 0 var(--container_padding_x);
  gap: 8px;
}
@media only screen and (min-width: 576px) {
  .goods-list {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 704px) {
  .goods-list .item:not(:first-child) {
    margin-top: 32px;
  }
  .goods-list .item-tag-list {
    margin: 16px 0 0;
  }
  .goods-list .item-tag-list .inner {
    flex-wrap: wrap;
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .goods-list .title {
    font-size: 24px;
    line-height: 34px;
  }
}
.hero-restaurant {
  color: var(--color_white);
  background: var(--color_grey1);
  border-radius: 0 0 24px 24px;
}
.hero-restaurant .part-main {
  text-align: center;
  position: relative;
  z-index: var(--z_index_local);
  padding: 136px var(--container_padding_x) 72px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}
.hero-restaurant .part-main.with-logo {
  padding-top: 120px;
}
.hero-restaurant .overlay,
.hero-restaurant .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-restaurant .bg {
  object-fit: cover;
}
.hero-restaurant .overlay {
  background: var(--color_black);
  opacity: 0.6;
}
.hero-restaurant .restaurant-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  height: 80px;
}
.hero-restaurant .restaurant-logo img {
  height: 67px;
}
.hero-restaurant .content {
  position: relative;
  margin: 0 auto;
  max-width: 715px;
  width: 100%;
}
.hero-restaurant .title-block {
  display: flex;
  flex-direction: column;
}
.hero-restaurant .pre {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_orange3);
  margin-bottom: 8px;
}
.hero-restaurant .r-title {
  font-family: "Unbounded";
  line-height: 1;
  word-break: normal;
}
.hero-restaurant .title-alt {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey7);
  margin-top: 4px;
}
.hero-restaurant .description {
  line-height: 24px;
  font-size: 16px;
  margin-top: 8px;
}
.hero-restaurant .action {
  margin-top: 32px;
}
.hero-restaurant .action-unavailable {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 32px;
}
.hero-restaurant .phone-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.footer .phone-wrapper {
  display: flex;
  justify-content: center;
  margin-right: 40px;
  margin-top:-2px;
}

.hero-restaurant .phone, .footer .phone {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-restaurant .phone .svg-icon, .footer .phone .svg-icon {
  color: var(--color_orange2);
  width: 24px;
  height: 24px;
}


.hero-restaurant .hero-notice {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  top: 72px;
  margin: 0 calc(-1 * var(--container_padding_x));
  padding: 16px var(--container_padding_x);
  background-color: var(--color_orange1);
}
.hero-restaurant .part-info {
  padding: 8px 0;
}
.hero-restaurant .info {
  padding: 24px 0;
}
.hero-restaurant .info:not(:first-child) {
  border-top: 1px solid var(--color_grey2);
}
.hero-restaurant .placement {
  display: flex;
  gap: 16px;
}
.hero-restaurant .placement .col-icon {
  color: var(--color_orange1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 4px 0;
  width: 40px;
  height: 40px;
  background: var(--color_orange6);
  border-radius: 50%;
}
.hero-restaurant .placement .col-icon .svg-icon {
  width: 16px;
  height: 16px;
}
.hero-restaurant .address {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_orange2);
  cursor: pointer;
}
.hero-restaurant .remoteness {
  display: flex;
  margin-top: 10px;
  gap: 16px;
}
.hero-restaurant .distance {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  color: var(--color_grey6);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
}
.hero-restaurant .distance .svg-icon {
  width: 16px;
  height: 16px;
}
.hero-restaurant .tag-mark {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey8);
  display: inline-flex;
  flex-shrink: 0;
  padding: 2px 12px;
  background: var(--color_grey2);
  border-radius: 24px;
}
.hero-restaurant .metro-list {
  display: flex;
  flex-direction: column;
  gap: 8px 16px;
  margin-top: 10px;
}
.hero-restaurant .metro-list .item {
  display: flex;
  gap: 8px;
}
.hero-restaurant .metro-list .svg-icon {
  color: var(--color_grey4);
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.hero-restaurant .metro-list .station-name {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_grey6);
}
.hero-restaurant .metro-list .time {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey4);
}
.hero-restaurant .price-info {
  display: flex;
  padding-left: 24px;
  gap: 16px;
}
.hero-restaurant .price-info .svg-icon {
  color: var(--color_grey6);
  margin: 6px 0;
  width: 16px;
  height: 16px;
}
.hero-restaurant .price-info .col-value {
  width: 100%;
}
.hero-restaurant .price-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.hero-restaurant .price-list {
  display: grid;
  grid-template-columns: 200px;
  gap: 0 32px;
  margin-top: 10px;
}
.hero-restaurant .price-list .item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-restaurant .price-list .text {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_grey8);
  flex-grow: 1;
}
.hero-restaurant .price-list .price {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey6);
  white-space: nowrap;
}
@media only screen and (min-width: 412px) {
  .hero-restaurant .part-main {
    padding-top: 168px;
    padding-bottom: 104px;
  }
  .hero-restaurant .hero-notice {
    top: 104px;
  }
}
@media only screen and (min-width: 576px) {
  .hero-restaurant {
    border-radius: 0 0 40px 40px;
  }
  .hero-restaurant .part-main {
    padding-top: 192px;
    padding-bottom: 144px;
    border-radius: 0 0 40px 40px;
  }
  .hero-restaurant .description {
    font-size: 18px;
    line-height: 28px;
    margin-top: 16px;
  }
  .hero-restaurant .placement {
    gap: 24px;
  }
  .hero-restaurant .placement .col-icon {
    margin: 0;
    width: 48px;
    height: 48px;
  }
  .hero-restaurant .metro-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-restaurant .metro-list .item {
    width: 168px;
  }
  .hero-restaurant .hero-notice {
    top: 144px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero-restaurant .price-info {
    padding-left: 40px;
  }
  .hero-restaurant .price-list {
    grid-template-columns: repeat(2, 200px);
  }
}
@media only screen and (min-width: 768px) {
  .hero-restaurant .part-main {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .hero-restaurant .part-main.with-logo {
    padding-top: 68px;
  }
  .hero-restaurant .restaurant-logo {
    margin-bottom: 32px;
    height: 96px;
  }
  .hero-restaurant .restaurant-logo img {
    height: 80px;
  }
  .hero-restaurant .r-title,
  .hero-restaurant .description {
    text-wrap: balance;
  }
  .hero-restaurant .hero-notice {
    top: 110px;
  }
  .hero-restaurant .part-info {
    padding: 32px 0 40px;
  }
  .hero-restaurant .part-info .container {
    display: flex;
  }
  .hero-restaurant .info {
    padding: 0 32px;
    width: 50%;
  }
  .hero-restaurant .info:first-child {
    padding-left: 0;
  }
  .hero-restaurant .info:last-child {
    padding-right: 0;
  }
  .hero-restaurant .info:not(:first-child) {
    border-top: 0;
    border-left: 1px solid var(--color_grey2);
  }
  .hero-restaurant .metro-list .item {
    width: 100%;
  }
  .hero-restaurant .price-list {
    grid-template-columns: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-restaurant .part-main.with-logo.right {
    padding-top: 132px;
  }
  .hero-restaurant .part-main.with-logo.right .restaurant-logo {
    position: absolute;
    top: 56px;
    right: 56px;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .hero-restaurant .metro-list .item {
    width: 168px;
  }
  .hero-restaurant .price-list {
    grid-template-columns: repeat(2, 200px);
  }
}
@media only screen and (min-width: 1280px) {
  .hero-restaurant .address-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-restaurant .remoteness {
    margin-top: 2px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .hero-restaurant .part-main {
    padding-top: 68px;
    padding-bottom: 148px;
  }
  .hero-restaurant .content {
    padding-top: 80px;
    max-width: 822px;
  }
  .hero-restaurant .hero-notice {
    top: 148px;
  }
  .hero-restaurant .info {
    padding: 0 56px;
  }
  .hero-restaurant .part-info {
    padding: 50px 0 48px;
  }
  .hero-restaurant .price-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1600px) {
  .hero-restaurant .content {
    max-width: 922px;
  }
}
@media only screen and (min-width: 1920px) {
  .hero-restaurant .content {
    max-width: 980px;
  }
}
.hero {
  color: var(--color_white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 calc(var(--container_padding_x) * -1);
  padding: 192px 16px 24px;
  min-height: 402px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background-color: var(--color_grey10);
}
.hero .overlay,
.hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .bg {
  object-fit: cover;
}
.hero .overlay:not(._dark) {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.4;
}
.hero .overlay._dark {
  background: var(--color_black);
  opacity: 0.6;
}
.hero .content {
  position: relative;
}
.hero .content._size_md {
  max-width: 880px;
}
.hero .back-link {
  display: flex;
  margin-bottom: 16px;
}
.hero .back-link .link {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_orange1);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--dur2);
}
.hero .back-link .link:hover {
  color: var(--color_orange3);
}
.hero .back-link .svg-icon {
  width: 16px;
  height: 16px;
}
.hero .title._size_sm {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
}
.hero .title._size_md {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
}
.hero .title._size_lg {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 42px;
  line-height: 42px;
}
.hero .title .accent {
  color: var(--color_orange3);
}
.hero .phone-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 8px;
}
.hero .phone-list .item {
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .phone-list .svg-icon {
  color: var(--color_orange2);
  width: 24px;
  height: 24px;
}
.hero .action-list {
  margin-top: 24px;
}
@media only screen and (min-width: 360px) {
  .hero {
    padding-top: 232px;
    min-height: 480px;
  }
}
@media only screen and (min-width: 576px) {
  .hero {
    padding: 404px 24px 32px;
    min-height: 702px;
  }
  .hero .title._size_sm {
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .hero .title._size_md {
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .hero .title._size_lg {
    font-family: "Unbounded";
    font-size: 56px;
    line-height: 56px;
  }
  .hero .phone-list {
    flex-direction: row;
  }
  .hero .phone-list .item:not(:last-child)::after {
    content: "";
    margin: 6px;
    width: 4px;
    height: 4px;
    background: var(--color_grey6);
    border-radius: 50%;
  }
  .hero .phone-list .item:not(:first-child) .svg-icon {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    margin: 0;
    padding: 32px 40px;
    min-height: 330px;
    border-radius: 0 40px 40px 40px;
  }
  .hero .bg::before {
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .hero .action-list,
  .hero .phone-list {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero {
    padding: 50px 56px;
    min-height: 420px;
  }
  .hero .content._size_md {
    max-width: 1120px;
  }
  .hero .title._size_md {
    font-family: "Unbounded";
    font-size: 56px;
    line-height: 64px;
  }
  .hero .title._size_lg {
    font-family: "Unbounded";
    font-size: 72px;
    line-height: 72px;
  }
}
.menu-carousel {
  padding: 32px 0;
}
.menu-carousel .image-wrapper {
  display: block;
  padding: 0 var(--container_padding_x);
  height: 410px;
}
.menu-carousel .image-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.menu-carousel .image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  background: var(--color_grey10);
}
@media only screen and (min-width: 360px) {
  .menu-carousel {
    padding: 40px 0;
  }
  .menu-carousel .image-wrapper {
    height: 466px;
  }
}
@media only screen and (min-width: 412px) {
  .menu-carousel .image-wrapper {
    height: 540px;
  }
}
@media only screen and (min-width: 576px) {
  .menu-carousel .image-wrapper {
    height: 606px;
  }
}
@media only screen and (min-width: 1024px) {
  .menu-carousel {
    padding: 40px 0 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-carousel .image-wrapper {
    height: 692px;
  }
}
.news-list-short {
  position: relative;
  margin-top: 32px;
  padding: 24px;
  background: var(--color_grey11);
  border-radius: 24px;
}
.news-list-short::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 24px;
  width: 52px;
  height: 20px;
  background-image: url("/img/svg/triangle_gray.svg");
}
.news-list-short .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-list-short .card-type-news .title {
  line-height: 24px;
  font-size: 16px;
}
@media only screen and (min-width: 576px) {
  .news-list-short {
    padding: 32px;
  }
  .news-list-short::before {
    left: 32px;
  }
  .news-list-short .inner {
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .news-list-short {
    padding: 32px 40px;
    border-radius: 40px;
  }
  .news-list-short .inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .news-list-short .card-type-news {
    width: 40%;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .news-list-short .inner {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 1440px) {
  .news-list-short {
    padding: 48px 56px;
  }
  .news-list-short::before {
    left: 60px;
  }
}
.promo-list:not(:first-child) {
  margin-top: 32px;
}
.promo-list .inner {
  display: grid;
  gap: 32px 20px;
}
@media only screen and (min-width: 768px) {
  .promo-list .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .promo-list .inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .promo-list .inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .promo-list:not(:first-child) {
    margin-top: 40px;
  }
  .promo-list .pagination {
    margin-top: 40px;
  }
}
.partnership-statistics {
  position: relative;
  z-index: var(--z_index_local);
  padding: 32px 24px;
  background: var(--color_orange6);
  border-radius: 24px;
}
.partnership-statistics .inner {
  max-width: 1150px;
}
.partnership-statistics .title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 36px;
}
.partnership-statistics .part-total {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  border-top: 1px solid var(--color_orange5);
  border-bottom: 1px solid var(--color_orange5);
  padding: 16px 0;
  gap: 4px;
}
.partnership-statistics .part-total .value {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  color: var(--color_orange2);
}
.partnership-statistics .part-total .text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.partnership-statistics .part-other {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 20px;
}
.partnership-statistics .part-other .value {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.partnership-statistics .part-other .text {
  line-height: 24px;
  font-size: 16px;
}
.partnership-statistics .decor {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: var(--z_index_under);
  width: 300px;
  height: 300px;
  opacity: 0.4;
}
@media only screen and (min-width: 576px) {
  .partnership-statistics {
    padding: 32px 40px 40px;
    border-radius: 40px;
  }
  .partnership-statistics .title {
    font-family: "Unbounded";
    font-size: 34px;
    line-height: 42px;
  }
  .partnership-statistics .part-total {
    padding: 24px 0;
    gap: 0;
  }
  .partnership-statistics .part-total .value {
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .partnership-statistics .part-other .value {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .partnership-statistics .part-other .text:not(:first-child) {
    margin-top: 4px;
  }
}
@media only screen and (min-width: 768px) {
  .partnership-statistics .part-other {
    flex-direction: row;
  }
  .partnership-statistics .decor {
    bottom: -64px;
  }
}
@media only screen and (min-width: 1440px) {
  .partnership-statistics {
    padding: 64px 56px 72px;
  }
  .partnership-statistics .title {
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
  .partnership-statistics .part-total {
    flex-direction: row;
    align-items: center;
    margin-top: 40px;
    gap: 24px;
  }
  .partnership-statistics .part-total .value {
    font-family: "Unbounded";
    font-size: 56px;
    line-height: 64px;
  }
  .partnership-statistics .part-total .text {
    font-size: 20px;
    max-width: 320px;
  }
  .partnership-statistics .part-other {
    margin-top: 40px;
    gap: 40px;
  }
  .partnership-statistics .part-other .value {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .partnership-statistics .part-other .text {
    font-size: 18px;
    line-height: 28px;
  }
  .partnership-statistics .decor {
    width: 400px;
    height: 400px;
  }
}
.pipeline-list {
  margin-top: 24px;
}
.pipeline-list .block:not(:first-child) {
  margin-top: 24px;
}
.pipeline-list .block-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  max-width: 1150px;
}
.pipeline-list .block-title a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.pipeline-list .block-title a:hover {
  color: var(--color_orange3);
}
.pipeline-list .list {
  display: grid;
  margin-top: 16px;
  gap: 16px;
}
.pipeline-list .item {
  display: flex;
  gap: 20px;
  flex: 1;
}
.pipeline-list .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color_orange5);
  border-radius: 50%;
}
.pipeline-list .item-icon .svg-icon {
  color: var(--color_orange2);
  width: 16px;
  height: 16px;
}
.pipeline-list .item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.pipeline-list .item-text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 4px;
}
@media only screen and (min-width: 576px) {
  .pipeline-list {
    margin-top: 32px;
  }
  .pipeline-list .block-title {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .pipeline-list .block:not(:first-child) {
    margin-top: 32px;
  }
  .pipeline-list .list {
    margin-top: 24px;
    gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .pipeline-list .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .pipeline-list {
    margin-top: 40px;
  }
  .pipeline-list .block-title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .pipeline-list .block:not(:first-child) {
    margin-top: 40px;
  }
}
.restaurant-book-reminder {
  border-radius: 16px;
  background-color: var(--color_orange6);
  background-image: url(/img/svg/decor-reminder.svg);
  background-size: 308px 308px;
  background-position: calc(100% + 100px) calc(100% + 104px);
  background-repeat: no-repeat;
  padding: 24px 100px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.restaurant-book-reminder .text {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  width: 152px;
}
@media only screen and (min-width: 360px) {
  .restaurant-book-reminder .text {
    width: 192px;
  }
}
@media only screen and (min-width: 375px) {
  .restaurant-book-reminder .text {
    width: 207px;
  }
}
@media only screen and (min-width: 412px) {
  .restaurant-book-reminder .text {
    width: 244px;
  }
}
@media only screen and (min-width: 576px) {
  .restaurant-book-reminder {
    background-position: calc(100% + 100px) 50%;
  }
  .restaurant-book-reminder .text {
    width: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .restaurant-book-reminder {
    border-radius: 24px;
    padding: 24px 40px;
    background-position: calc(100% + 88px) 50%;
  }
  .restaurant-book-reminder .text {
    font-weight: 700;
    line-height: 28px;
    font-size: 20px;
    width: 520px;
  }
}
@media only screen and (min-width: 1024px) {
  .restaurant-book-reminder {
    background-position: calc(100% + 80px) 50%;
  }
  .restaurant-book-reminder .text {
    width: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .restaurant-book-reminder {
    padding: 24px 56px;
    background-position: calc(100% - 56px) 50%;
  }
  .restaurant-book-reminder .text {
    width: auto;
  }
}
.rest-search-form {
  position: relative;
  border-radius: 24px;
  padding: 24px;
}
.rest-search-form .rest-search-form-back {
  background: var(--color_orange3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 24px;
  overflow: hidden;
  z-index: 0;
}
.rest-search-form .rest-search-form-back .decor {
  position: absolute;
  z-index: var(--z_index_under);
  width: 100%;
  height: 560px;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 560px 560px;
  background-image: url(/img/svg/decor_orange_solid.svg);
  bottom: -155px;
  left: 0;
}
.rest-search-form h2 {
  color: var(--color_white);
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 36px;
  position: relative;
  z-index: 1;
}
.rest-search-form h2 span {
  display: inline-block;
  height: 0;
}
.rest-search-form h2 span .svg-icon {
  width: 36px;
  height: 36px;
  color: var(--color_orange1);
  position: relative;
  top: -24px;
}
.rest-search-form h3 {
  color: var(--color_white);
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  position: relative;
  z-index: 1;
}
.rest-search-form h3 span {
  display: inline-block;
  height: 0;
}
.rest-search-form h3 span .svg-icon {
  width: 36px;
  height: 36px;
  color: var(--color_orange1);
  position: relative;
  top: -24px;
}
.rest-search-form .form-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 24px 0;
  gap: 8px;
  position: relative;
}
.rest-search-form .form-top .label {
  color: var(--color_brown1);
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  text-align: left;
  z-index: 1;
}
.rest-search-form .form-top .close-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.rest-search-form .rest-search-elements {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rest-search-form .rest-search-elements div.submit, .rest-search-form .rest-search-elements div.reset, .rest-search-form .rest-search-elements div.more {
  text-align: center;
}
.rest-search-form .rest-search-elements .reset .svg-icon {
  color: var(--color_black);
}
.rest-search-form .rest-search-elements .sub-block {
  text-align: left;
  margin-top: 24px;
}
.rest-search-form .rest-search-elements .sub-block > label {
  color: var(--color_brown1);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}
.rest-search-form .input-group.number {
  display: flex;
  flex-direction: column;
}
.rest-search-form .input-group.number:before {
  content: "₽";
  position: absolute;
  right: 16px;
  top: 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_orange1);
}
.rest-search-form .input-group.number:after {
  content: "₽";
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_orange1);
}
.rest-search-form .input-group.number input[type=tel]:first-of-type {
  margin-bottom: 12px;
}
.rest-search-form .input-group.number1 {
  display: flex;
  flex-direction: column;
}
.rest-search-form .input-group.submit {
  margin: 12px 0;
  text-align: center;
}
.rest-search-form .input-group > label {
  color: var(--color_brown1);
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 4px;
}
.rest-search-form .more {
  padding-top: 12px;
}
.rest-search-form .showmore {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_white);
  z-index: 1;
  position: relative;
}
.rest-search-form .showmore .svg-icon {
  color: var(--color_white);
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.index .rest-search-form {
  margin-bottom: 60px;
}
.index .rest-search-form:before {
  content: "";
  position: absolute;
  right: 56px;
  bottom: 100%;
  width: 52px;
  height: 20px;
  background-image: url(/img/svg/triangle_orange.svg);
}
.index .rest-search-form h2 {
  width: 240px;
}
.index .rest-search-form .input-group.-hidden {
  display: none;
}
.index .rest-search-form .input-group#rsf-org-format {
  order: 1;
}
.index .rest-search-form .input-group#rsf-cuisine {
  order: 2;
}
.index .rest-search-form .input-group#rsf-occasion {
  order: 3;
}
.index .rest-search-form .input-group#rsf-bnumber {
  order: 4;
}
.index .rest-search-form .input-group#rsf-bprice {
  order: 5;
}
.index .rest-search-form .input-group#rsf-metro {
  order: 6;
}
.index .rest-search-form .input-group#rsf-region {
  order: 7;
}
.index .rest-search-form .input-group#rsf-price {
  order: 8;
}
.index .rest-search-form .input-group#rsf-advantages {
  order: 9;
}
.index .rest-search-form .input-group#rsf-location {
  order: 10;
}
.index .rest-search-form .input-group#rsf-chains {
  order: 11;
}
.index .rest-search-form .input-group#rsf-groups {
  order: 12;
}
.index .rest-search-form .input-group.submit {
  order: 14;
}
.index .rest-search-form .more {
  order: 13;
}
.index .rest-search-form .reset {
  order: 15;
}
.page-rest-list .sidebar .choosing-help {
  order: 4;
}
.page-rest-list .rest-search {
  order: 3;
  display: none;
}
.page-rest-list .rest-search.-active {
  display: block;
  margin-top: 16px;
}
.page-rest-list .rest-search-form {
  padding: 24px;
}
.page-rest-list .rest-search-form .reset {
  margin-top: 12px;
}
.page-rest-list .rest-search-form h3 {
  display: none;
}
.page-rest-list .rest-search-form .form-top {
  margin: 0 0 24px 0;
}
.page-rest-list .rest-search-form .form-top .label {
  margin-top: 12px;
}
@media only screen and (min-width: 360px) {
  .rest-search-form .form-top {
    flex-direction: row;
    align-items: center;
  }
  .rest-search-form .form-top > div:first-child {
    width: 100%;
    text-align: left;
  }
  .index .rest-search-form h2 {
    width: 280px;
  }
}
@media only screen and (min-width: 412px) {
  .rest-search-form .form-top > div:first-child {
    width: auto;
  }
  .index .rest-search-form h2 {
    width: 295px;
  }
}
@media only screen and (min-width: 576px) {
  .index .rest-search-form {
    padding: 32px;
  }
  .index .rest-search-form .rest-search-form-back .decor {
    width: 612px;
    height: 612px;
    background-size: 612px 612px;
    bottom: -242px;
    right: -187px;
    left: auto;
  }
  .index .rest-search-form h2 {
    width: auto;
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 34px;
    line-height: 42px;
  }
  .index .rest-search-form h2 span {
    height: 0;
  }
  .index .rest-search-form h2 span .svg-icon {
    width: 48px;
    height: 48px;
    top: -32px;
  }
  .index .rest-search-form .rest-search-elements {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
  }
  .index .rest-search-form .input-group {
    width: calc(50% - 10px);
  }
  .index .rest-search-form .input-group.-hidden {
    display: block;
  }
  .index .rest-search-form .input-group.number {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
  .index .rest-search-form .input-group.number label {
    width: 100%;
  }
  .index .rest-search-form .input-group.number input[type=tel] {
    width: 50%;
    margin-bottom: 0;
  }
  .index .rest-search-form .input-group.number input[type=tel]:first-of-type {
    border-radius: 8px 0 0 8px;
  }
  .index .rest-search-form .input-group.number input[type=tel]:last-of-type {
    border-radius: 0 8px 8px 0;
  }
  .index .rest-search-form .input-group.number:before {
    content: "–";
    position: absolute;
    right: 50%;
    top: 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--color_brown2);
  }
  .index .rest-search-form .input-group#rsf-price {
    order: 3;
  }
  .index .rest-search-form .input-group#rsf-advantages {
    order: 4;
  }
  .index .rest-search-form .input-group#rsf-metro {
    order: 5;
  }
  .index .rest-search-form .input-group#rsf-region {
    order: 6;
  }
  .index .rest-search-form .input-group#rsf-location {
    order: 7;
  }
  .index .rest-search-form .input-group#rsf-location {
    width: 100%;
  }
  .index .rest-search-form .input-group.submit {
    order: 15;
    text-align: right;
    margin: 12px 0 0 0;
  }
  .index .rest-search-form .more {
    display: none;
  }
  .index .rest-search-form div.reset {
    order: 14;
    width: calc(50% - 10px);
    text-align: left;
  }
  .index .rest-search-form.tab-table .input-group#rsf-location {
    width: calc(50% - 10px);
  }
  .index .rest-search-form:not(.tab-table) .input-group#rsf-location {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .index .rest-search-form {
    padding: 32px 40px;
  }
  .index .rest-search-form h2 {
    color: var(--color_white);
    width: 367px;
  }
  .index .rest-search-form h2 span {
    width: 0;
  }
  .index .rest-search-form h2 span .svg-icon {
    left: 16px;
  }
  .index .rest-search-form .input-group#rsf-location {
    width: calc(50% - 10px);
  }
  .index .rest-search-form .input-group.number {
    width: calc(50% - 10px);
  }
  .index .rest-search-form .input-group#rsf-groups {
    width: 100%;
  }
  .index .rest-search-form:not(.tab-table) .input-group#rsf-location {
    width: calc(50% - 10px);
  }
  .page-rest-list .rest-search-form {
    padding: 32px 40px 48px 40px;
  }
  .page-rest-list .rest-search-form .rest-search-elements {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
  }
  .page-rest-list .rest-search-form .input-group {
    width: calc(50% - 10px);
  }
  .page-rest-list .rest-search-form .input-group#rsf-groups {
    width: 100%;
  }
  .page-rest-list .rest-search-form .input-group.number {
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
  .page-rest-list .rest-search-form .input-group.number label {
    width: 100%;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel] {
    width: 50%;
    margin-bottom: 0;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel]:first-of-type {
    border-radius: 8px 0 0 8px;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel]:last-of-type {
    border-radius: 0 8px 8px 0;
  }
  .page-rest-list .rest-search-form div.reset {
    width: 100%;
  }
  .page-rest-list .rest-search-form .form-top .label {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .index .rest-search-form .rest-search-form-back .decor {
    bottom: -213px;
    right: -187px;
  }
  .index .rest-search-form h2 {
    width: auto;
  }
  .index .rest-search-form .input-group {
    width: calc(33% - 13px);
  }
  .index .rest-search-form .input-group.number {
    width: calc(33% - 13px);
  }
  .index .rest-search-form .input-group#rsf-location {
    width: calc(33% - 13px) !important;
  }
  .index .rest-search-form .input-group#rsf-groups {
    width: calc(33% - 13px);
  }
  .index .rest-search-form .input-group.submit {
    width: calc(50% - 10px);
  }
  .page-rest-list .rest-search-form .rest-search-elements {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
  }
  .page-rest-list .rest-search-form .input-group {
    width: calc(33% - 13px);
  }
  .page-rest-list .rest-search-form .input-group#rsf-groups {
    width: calc(33% - 13px);
  }
  .page-rest-list .rest-search-form div.reset {
    width: 100%;
    text-align: left;
  }
}
@media only screen and (min-width: 1280px) {
  .page-rest-list .sidebar .choosing-help {
    order: 3;
  }
  .page-rest-list .rest-search {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    right: auto;
    bottom: auto;
    overflow: visible;
    order: 4;
  }
  .page-rest-list .rest-search.-active {
    display: block;
  }
  .page-rest-list .rest-search-form {
    margin-bottom: 60px;
    margin-top: 24px;
    padding: 24px 24px 32px 24px;
  }
  .page-rest-list .rest-search-form:before {
    content: "";
    position: absolute;
    right: -36px;
    top: 40px;
    width: 52px;
    height: 20px;
    transform: rotate(90deg);
    background-image: url(/img/svg/triangle_orange.svg);
  }
  .page-rest-list .rest-search-form h3 {
    display: block;
  }
  .page-rest-list .rest-search-form .close-btn {
    display: none;
  }
  .page-rest-list .rest-search-form div.reset {
    text-align: center;
  }
  .page-rest-list .rest-search-form .form-top {
    margin-top: 24px;
  }
  .page-rest-list .rest-search-form .form-top .label {
    display: none;
  }
  .page-rest-list .rest-search-form .input-group {
    width: 100%;
  }
  .page-rest-list .rest-search-form .input-group#rsf-groups {
    width: 100%;
  }
  .page-rest-list .rest-search-form .input-group.number {
    display: flex;
    flex-direction: column;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel] {
    width: 100%;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel]:first-of-type {
    margin-bottom: 12px;
    border-radius: 8px;
  }
  .page-rest-list .rest-search-form .input-group.number input[type=tel]:last-of-type {
    border-radius: 8px;
  }
}
@media only screen and (min-width: 1440px) {
  .index .rest-search-form {
    padding: 48px 56px;
  }
  .index .rest-search-form h2 {
    color: var(--color_white);
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 40px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 1600px) {
  .index .rest-search-form.tab-table .input-group {
    width: calc(20% - 16px);
  }
  .index .rest-search-form.tab-table .input-group#rsf-org-format {
    width: calc(25% - 15px);
  }
  .index .rest-search-form.tab-table .input-group#rsf-cuisine {
    width: calc(25% - 15px);
  }
  .index .rest-search-form.tab-table .input-group#rsf-advantages {
    width: calc(25% - 15px);
    order: 4;
  }
  .index .rest-search-form.tab-table .input-group.number {
    width: calc(25% - 15px);
  }
  .index .rest-search-form.tab-table .input-group#rsf-location {
    width: calc(20% - 16px) !important;
  }
  .index .rest-search-form.tab-table .input-group#rsf-groups {
    width: calc(20% - 16px);
  }
  .index .rest-search-form.tab-table .input-group.submit {
    width: calc(50% - 10px);
  }
}
.rest-address-list {
  --visible_line_count: 5;
  margin-top: 24px;
}
.rest-address-list:not(._with-title) {
  --card_height: 276px;
}
.rest-address-list._with-title {
  --card_height: 308px;
}
.rest-address-list .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}
.rest-address-list .expandable-content {
  max-height: calc(var(--visible_line_count) * var(--card_height) + (var(--visible_line_count) - 1) * 24px);
  mask-image: none;
}
@media only screen and (min-width: 768px) {
  .rest-address-list {
    --visible_line_count: 3;
    margin-top: 32px;
  }
  .rest-address-list .card-type-rest-address {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (min-width: 1024px) {
  .rest-address-list {
    --visible_line_count: 2;
  }
  .rest-address-list .card-type-rest-address._size_3 {
    width: calc((100% - 60px) / 4);
  }
  .rest-address-list .card-type-rest-address._size_4 {
    width: calc((100% - 40px) / 3);
  }
  .rest-address-list .card-type-rest-address._size_6 {
    width: calc((100% - 20px) / 2);
  }
}
.rest-service {
  color: var(--color_grey3);
  margin-top: 24px;
}
.rest-service .item {
  position: relative;
  padding: 12px 0;
}
.rest-service .item::before, .rest-service .item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color_orange6);
}
.rest-service .item::before {
  bottom: 100%;
  display: block;
}
.rest-service .item::after {
  bottom: 0;
}
.rest-service .item:last-child::after {
  display: block;
}
.rest-service .item-head {
  display: flex;
  align-items: center;
  gap: 32px;
}
.rest-service .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  flex-grow: 1;
}
.rest-service .description {
  line-height: 24px;
  font-size: 16px;
  margin-top: 2px;
}
@media only screen and (min-width: 576px) {
  .rest-service {
    margin-top: 32px;
  }
  .rest-service .description {
    padding-right: 168px;
  }
}
.restaurant-carousel {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}
.restaurant-carousel .container {
  position: static;
}
.restaurant-carousel .swiper {
  position: static;
  overflow: visible;
}
.restaurant-carousel .swiper-slide {
  width: 268px;
}
.restaurant-carousel .card-picture {
  border-radius: 24px;
}
.restaurant-carousel .image-wrapper {
  padding-bottom: 100%;
}
@media only screen and (min-width: 576px) {
  .restaurant-carousel .swiper-slide {
    width: 433px;
  }
  .restaurant-carousel .image-wrapper {
    padding-bottom: 56.25%;
  }
}
@media only screen and (min-width: 1024px) {
  .restaurant-carousel .swiper-slide {
    width: 470px;
  }
}
@media only screen and (min-width: 1280px) {
  .restaurant-carousel .swiper-slide {
    width: 500px;
  }
}
@media only screen and (min-width: 1440px) {
  .restaurant-carousel .swiper-slide {
    width: 570px;
  }
}
@media only screen and (min-width: 1600px) {
  .restaurant-carousel .swiper-slide {
    width: 640px;
  }
}
@media only screen and (min-width: 1920px) {
  .restaurant-carousel .swiper-slide {
    width: 680px;
  }
}
.restaurant-schedule-short .more {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--color_orange1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--dur2);
  cursor: pointer;
}
.restaurant-schedule-short .more:hover {
  color: var(--color_orange3);
}
.restaurant-schedule-short .more .svg-icon {
  width: 16px;
  height: 16px;
}
.restaurant-schedule-short .list {
  margin-top: 4px;
  padding-left: 28px;
}
.restaurant-schedule-short .item {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.restaurant-schedule-short .item:not(:first-child) {
  margin-top: 4px;
}
.restaurant-schedule-short .item:not(:last-child)::after {
  content: "";
  display: none;
  flex-shrink: 0;
  margin: 0 12px;
  width: 4px;
  height: 4px;
  background: var(--color_grey6);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .restaurant-schedule-short {
    padding-left: 42px;
  }
  .restaurant-schedule-short .list {
    display: flex;
  }
  .restaurant-schedule-short .item:not(:first-child) {
    margin: 0;
  }
  .restaurant-schedule-short .item:not(:last-child)::after {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .restaurant-schedule-short {
    display: flex;
    align-items: center;
  }
  .restaurant-schedule-short .list {
    position: relative;
    top: 1px;
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .restaurant-schedule-short {
    padding-left: 56px;
  }
}
.review-list-carousel {
  margin-top: 24px;
  padding: 24px 0 32px;
  background: var(--color_white);
  border-radius: 24px;
}
.review-list-carousel .review-item {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 24px;
}
.review-list-carousel .quote-icon {
  color: var(--color_orange1);
  width: 48px;
  height: 48px;
}
.review-list-carousel .content {
  max-width: 1054px;
}
.review-list-carousel .text {
  font-size: 18px;
  line-height: 28px;
}
.review-list-carousel .text p:not(:first-child) {
  margin-top: 12px;
}
.review-list-carousel .author {
  margin-top: 24px;
}
.review-list-carousel .name {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.review-list-carousel .role {
  line-height: 24px;
  font-size: 16px;
}
.review-list-carousel .review-list-nav {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding: 0 24px 0 18px;
  gap: 14px;
}
.review-list-carousel .nav-arrows {
  display: flex;
}
.review-list-carousel .nav-arrows .svg-icon {
  color: var(--color_grey3);
  width: 16px;
  height: 16px;
}
.review-list-carousel .nav-item {
  padding: 6px;
  transition: var(--dur2);
  cursor: pointer;
}
.review-list-carousel .nav-item.next {
  transform: scaleX(-1);
}
.review-list-carousel .nav-item.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.review-list-carousel .slider-pagination {
  margin: 0;
}
.review-list-carousel .slider-pagination .swiper-pagination-bullet {
  padding: 4px;
}
.review-list-carousel .slider-pagination .swiper-pagination-bullet::before {
  background: var(--color_grey6);
  opacity: 0.32;
}
.review-list-carousel .slider-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .review-list-carousel {
    padding: 40px 0;
    border-radius: 40px;
  }
  .review-list-carousel .review-item {
    flex-direction: row;
    padding: 0 40px;
  }
  .review-list-carousel .review-list-nav {
    padding: 0 40px 0 106px;
  }
}
@media only screen and (min-width: 1440px) {
  .review-list-carousel .review-item {
    padding: 0 56px;
  }
  .review-list-carousel .review-list-nav {
    padding-left: 122px;
  }
}
.reviews-list {
  margin-top: 24px;
}
.reviews-list .item {
  border-top: 1px solid var(--color_grey7);
  padding: 32px 0;
}
.reviews-list .item:last-child {
  border-bottom: 1px solid var(--color_grey7);
}
.reviews-list .item-head {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.reviews-list .rating {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-list .rating .svg-icon {
  color: var(--color_orange2);
  width: 16px;
  height: 16px;
  transform: translateY(-1px);
}
.reviews-list .user-name {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  text-overflow: ellipsis;
  margin-left: 16px;
  overflow: hidden;
}
.reviews-list .sep {
  flex-shrink: 0;
  margin: 0 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color_grey6);
}
.reviews-list .date {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey6);
  flex-shrink: 0;
  margin-top: 1px;
}
.reviews-list .item-body {
  margin-top: 12px;
}
.reviews-list .review-text {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey3);
}
.reviews-list .like-block {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
  gap: 12px;
}
.reviews-list .like-list {
  font-size: 0;
  position: relative;
  top: 1px;
  flex: 1;
}
.reviews-list .like-item {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  display: inline-block;
}
.reviews-list .like-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px;
  width: 5px;
  height: 5px;
  background: var(--color_grey6);
  border-radius: 50%;
}
.reviews-list .answer {
  margin: 20px 0 0 32px;
  padding: 20px 24px;
  background: var(--color_grey11);
  border-radius: 12px;
}
.reviews-list .answer-title {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
}
.reviews-list .answer-text {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey3);
}
.reviews-list .address {
  color: var(--color_orange2);
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
}
.reviews-list .address .svg-icon {
  width: 16px;
  height: 16px;
}
.reviews-list .address .text {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: var(--dur2);
}
.reviews-list .address .text:hover {
  color: var(--color_orange3);
}
.search-group {
  border-radius: 40px;
  height: 52px;
  background-color: var(--color_white);
  align-items: center;
  justify-content: stretch;
  position: relative;
}
.search-group .svg-icon {
  color: var(--color_grey6);
  width: 24px;
  height: 24px;
  display: none;
  position: absolute;
  left: 24px;
  top: 14px;
}
.search-group input[type=text] {
  color: var(--color_black);
  font-weight: 600;
  line-height: 30px;
  font-size: 20px;
  width: 100%;
  padding: 0 60px 0 24px;
  background-color: transparent;
  border-top: 1px solid var(--color_grey8);
  border-bottom: 1px solid var(--color_grey8);
  border-left: 1px solid var(--color_grey8);
  border-radius: 40px;
}
.search-group input[type=text]:focus {
  border: 1px solid var(--color_orange2);
}
.search-group input[type=text]::-webkit-input-placeholder {
  color: var(--color_grey6);
}
.search-group input[type=text]::-moz-placeholder {
  color: var(--color_grey6);
}
.search-group input[type=text]:-ms-input-placeholder {
  color: var(--color_grey6);
}
.search-group input[type=text]:-moz-placeholder {
  color: var(--color_grey6);
}
.search-group input[type=text]::placeholder {
  color: var(--color_grey6);
}
.search-group input[type=text]:focus::-webkit-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group input[type=text]:focus::-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group input[type=text]:focus:-ms-input-placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group input[type=text]:focus:-moz-placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group input[type=text]:focus::placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group input[type=text]:focus::placeholder {
  color: transparent;
  text-indent: 0px;
}
.search-group .btn {
  flex: 0 0 auto;
  padding: 14px;
  position: absolute;
  right: 0;
  width: 52px;
}
.search-group .btn .svg-icon {
  color: var(--color_white);
  display: flex;
  position: relative;
  left: auto;
  top: auto;
}
.search-group .btn span {
  display: none;
}
@media only screen and (min-width: 576px) {
  .search-group .svg-icon {
    display: flex;
  }
  .search-group input[type=text] {
    padding: 0 12px 0 60px;
  }
  .search-group .btn {
    flex: 0 0 auto;
    padding: 12px 32px;
    width: auto;
  }
  .search-group .btn .svg-icon {
    display: none;
  }
  .search-group .btn span {
    display: block;
  }
}
.seo-section .group {
  position: relative;
  border-top: 1px solid var(--color_grey7);
  padding: 8px 0;
}
.seo-section .group:last-child {
  border-bottom: 1px solid var(--color_grey7);
}
.seo-section .group.active .group-head .svg-icon {
  transform: scaleY(-1);
}
.seo-section .group.active .group-body {
  padding-bottom: 8px;
  height: auto;
}
.seo-section .group-head {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 12px;
}
.seo-section .group-head .svg-icon {
  width: 16px;
  height: 16px;
}
.seo-section .group-title {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  flex: 1;
}
.seo-section .group-body {
  overflow: hidden;
  height: 0;
}
.seo-section .list {
  display: grid;
  gap: 6px;
  list-style: none;
}
.seo-section .item {
  line-height: 20px;
  font-size: 14px;
}
.seo-section .item a {
  transition: var(--dur2);
}
.seo-section .item a:hover {
  color: var(--color_orange2);
}
.seo-section .group-footer {
  margin-top: 8px;
}
.seo-section .link {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_orange1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--dur2);
}
.seo-section .link:hover {
  color: var(--color_orange2);
}
.seo-section .link .svg-icon {
  width: 12px;
  height: 12px;
}
.seo-section .seo-text {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey5);
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .seo-section .group {
    border: 0;
    padding: 0;
  }
  .seo-section .group:not(:first-child) {
    margin-top: 32px;
    border-top: 1px solid var(--color_grey7);
    padding-top: 32px;
  }
  .seo-section .group:last-child {
    border: 0;
  }
  .seo-section .group.active .group-body {
    padding: 0;
  }
  .seo-section .group-head {
    padding: 0 0 20px;
  }
  .seo-section .group-head .svg-icon {
    display: none;
  }
  .seo-section .group-title {
    font-weight: 800;
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .seo-section .group-body {
    height: auto;
  }
  .seo-section .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 20px;
  }
  .seo-section .group-footer {
    margin-top: 20px;
  }
  .seo-section .seo-text {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  .seo-section .list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .seo-section .group:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
  }
  .seo-section .group-title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .seo-section .seo-text {
    margin-top: 40px;
  }
}
.service-list {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media only screen and (min-width: 576px) {
  .service-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .service-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .service-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.set-list {
  margin-top: 24px;
}
.set-list .block {
  position: relative;
  z-index: var(--z_index_local);
  padding: 24px 0;
  border-radius: 24px;
}
.set-list .block:not(:first-child) {
  margin-top: 12px;
}
.set-list .block:nth-child(odd) {
  background: var(--color_grey11);
}
.set-list .block:nth-child(odd) .decor {
  left: 56px;
  bottom: -80px;
}
.set-list .block:nth-child(even) {
  background: var(--color_orange6);
}
.set-list .block:nth-child(even) .decor {
  left: -47px;
  bottom: -70px;
  opacity: 0.4;
}
.set-list .block-head,
.set-list .swiper {
  padding: 0 24px;
}
.set-list .block-head .link {
  display: none;
}
.set-list .block-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.set-list .block-text {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey4);
  margin-top: 4px;
}
.set-list .link {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_orange1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: var(--dur2);
}
.set-list .link:hover {
  color: var(--color_orange2);
}
.set-list .link .svg-icon {
  width: 12px;
  height: 12px;
}
.set-list .block-body {
  margin-top: 16px;
}
.set-list .block-footer {
  padding: 0 24px;
  margin-top: 16px;
}
.set-list .swiper-slide {
  width: 225px;
}
.set-list .decor {
  position: absolute;
  z-index: var(--z_index_under);
  width: 268px;
  height: 268px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.set-list .decor._event {
  background-image: url("/img/svg/set-decor_event.svg");
}
.set-list .decor._food {
  background-image: url("/img/svg/set-decor_food.svg");
}
.set-list .decor._candy {
  background-image: url("/img/svg/set-decor_candy.svg");
}
.set-list .decor._luxury {
  background-image: url("/img/svg/set-decor_luxury.svg");
}
.set-list .decor._mood {
  background-image: url("/img/svg/set-decor_mood.svg");
}
.set-list .decor._banquet {
  background-image: url("/img/svg/set-decor_banquet.svg");
}
@media only screen and (min-width: 576px) {
  .set-list {
    margin-top: 32px;
  }
  .set-list .block {
    padding: 32px 0;
  }
  .set-list .block-head,
  .set-list .block-footer,
  .set-list .swiper {
    padding: 0 32px;
  }
  .set-list .block-title {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .set-list .block-text {
    margin-top: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .set-list .block {
    padding: 40px 0;
  }
  .set-list .block-head,
  .set-list .block-footer,
  .set-list .swiper {
    padding: 0 48px;
  }
  .set-list .block-body {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .set-list .block {
    display: flex;
    align-items: center;
    padding: 48px 0 48px 48px;
    gap: 50px;
  }
  .set-list .block-head {
    padding: 0;
  }
  .set-list .block-head .link {
    display: inline-flex;
  }
  .set-list .block-footer {
    display: none;
  }
  .set-list .block-title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
  .set-list .swiper {
    padding: 0 48px 0 0;
  }
  .set-list .block-head {
    flex-shrink: 0;
    padding: 0;
    width: 270px;
  }
  .set-list .block-body {
    margin: 0;
    flex: 1;
    width: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .set-list .block {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .set-list .swiper-slide {
    width: 264px;
  }
}
.sidebar-link-list {
  padding: 24px;
  background: var(--color_grey12);
  border-radius: 24px;
}
.sidebar-link-list:not(:first-child) {
  margin-top: 32px;
}
.sidebar-link-list .link-list-title {
  font-family: "Unbounded";
  font-size: 28px;
  line-height: 32px;
}
@supports not selector(::-webkit-scrollbar) {
  .sidebar-link-list .link-list-content {
    scrollbar-width: thin;
    scrollbar-color: var(--color_grey5) var(--color_grey8);
  }
}
@supports selector(::-webkit-scrollbar) {
  .sidebar-link-list .link-list-content::-webkit-scrollbar {
    width: 4px;
  }
  .sidebar-link-list .link-list-content::-webkit-scrollbar-track {
    border-radius: 8px;
    background: var(--color_grey8);
  }
  .sidebar-link-list .link-list-content::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 8px;
    background-color: var(--color_grey5);
  }
  .sidebar-link-list .link-list-content::-webkit-scrollbar-button {
    display: none;
  }
}
.sidebar-link-list .link-list-content {
  overflow-y: auto;
  padding-right: 20px;
  max-height: 408px;
}
.sidebar-link-list .link-list-content:not(:first-child) {
  margin-top: 24px;
}
.sidebar-link-list .group:not(:first-child) {
  margin-top: 16px;
  border-top: 1px solid var(--color_grey8);
  padding-top: 16px;
}
.sidebar-link-list .label {
  font-weight: 600;
  line-height: 22px;
  font-size: 14px;
  color: var(--color_grey6);
}
.sidebar-link-list .item {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey1);
  display: block;
  transition: var(--dur2);
}
.sidebar-link-list .item:not(:first-child) {
  margin-top: 16px;
}
.sidebar-link-list .item:hover {
  color: var(--color_orange2);
}
.restaurant-schedule {
  display: flex;
  gap: 16px;
}
.restaurant-schedule .block {
  flex: 1;
}
.restaurant-schedule .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  gap: 16px;
}
.restaurant-schedule .title .full {
  display: none;
}
.restaurant-schedule .title::after {
  content: "";
  display: none;
  flex-grow: 1;
  height: 1px;
  background: var(--color_orange6);
}
.restaurant-schedule .list {
  margin-top: 4px;
}
.restaurant-schedule .item {
  padding: 0 12px;
}
.restaurant-schedule .item.-active {
  padding-top: 8px;
  padding-bottom: 8px;
  background: var(--color_orange6);
  border-radius: 4px;
}
.restaurant-schedule .item:not(:first-child) {
  margin-top: 12px;
}
.restaurant-schedule .day {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_grey3);
}
.restaurant-schedule .time {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  margin-top: 2px;
}
.restaurant-schedule .today-mark {
  line-height: 20px;
  font-size: 14px;
  color: var(--color_orange2);
  margin-top: 2px;
}
@media only screen and (min-width: 360px) {
  .restaurant-schedule .title::after {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .restaurant-schedule {
    flex-direction: column;
  }
  .restaurant-schedule .title {
    padding: 0;
  }
  .restaurant-schedule .title .short {
    display: none;
  }
  .restaurant-schedule .title .full {
    display: block;
  }
  .restaurant-schedule .list {
    display: flex;
    gap: 20px;
  }
  .restaurant-schedule .item {
    flex: 1;
  }
  .restaurant-schedule .item:not(.-active) {
    padding: 0;
  }
  .restaurant-schedule .item:not(:first-child) {
    margin: 0;
  }
}
.page-advisor .advisor-feature-list,
.page-advisor .efficiency-list {
  margin-top: 32px;
  border-top: 1px solid var(--color_grey7);
  padding-top: 32px;
}
.page-advisor .advantages-list {
  display: grid;
  margin-top: 32px;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .page-advisor .advantages-list {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-advisor .advantages-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .page-advisor .advisor-feature-list,
  .page-advisor .efficiency-list {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.page-all-collections .all-collections {
  display: grid;
  gap: 16px;
}
@media only screen and (min-width: 576px) {
  .page-all-collections .all-collections {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .page-all-collections .all-collections {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .page-all-collections .all-collections {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .page-all-collections .all-collections {
    grid-template-columns: repeat(5, 1fr);
  }
}
.page-contacts .contacts-content {
  margin-top: 40px;
}
.page-contacts .contacts-content .row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color_grey7);
  padding-bottom: 40px;
  gap: 24px;
}
.page-contacts .contacts-content .row:not(:first-child) {
  padding-top: 40px;
}
.page-contacts .contacts-content .col {
  width: 100%;
}
.page-contacts .contacts-content .main-title {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 24px;
}
.page-contacts .contacts-content .sm-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 12px;
}
.page-contacts .contacts-content .text {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.page-contacts .contacts-content .text p + p {
  margin-top: 12px;
}
.page-contacts .contacts-content .text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.page-contacts .contacts-content .text a:hover {
  color: var(--color_orange3);
}
@media only screen and (min-width: 768px) {
  .page-contacts .contacts-content .row {
    flex-direction: row;
  }
  .page-contacts .contacts-content .main-title {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .page-contacts .contacts-content .sm-title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (min-width: 1280px) {
  .page-contacts .contacts-content .main-title {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
}
.page-error {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 144px var(--container_padding_x);
}
.page-error .error-content {
  width: 100%;
}
.page-error .code {
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 72px;
  line-height: 72px;
}
.page-error .message {
  font-size: 18px;
  line-height: 28px;
}
.page-error .action-list {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media only screen and (min-width: 768px) {
  .page-error .code {
    font-size: 96px;
    line-height: 1;
  }
}
@media only screen and (min-width: 1280px) {
  .page-error .code {
    font-size: 128px;
  }
}
.page-html .section-title-xsm {
  margin-top: 16px;
}
.page-html .html-content {
  margin-top: 40px;
}
.page-partnership .info-text {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.page-partnership .info-text a {
  color: var(--color_orange1);
  transition: var(--dur2);
}
.page-partnership .info-text a:hover {
  color: var(--color_orange3);
}
.page-partnership .info-card-list {
  display: grid;
  margin-top: 32px;
  gap: 20px;
}
.page-partnership .how-it-works-card-list {
  display: grid;
  margin-top: 24px;
  gap: 20px;
}
.page-partnership .how-it-works-action-list {
  margin-top: 24px;
}
@media only screen and (min-width: 576px) {
  .page-partnership .how-it-works-action-list {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-partnership .info-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-partnership .how-it-works-card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .page-partnership .info-text {
    font-weight: 600;
    line-height: 30px;
    font-size: 20px;
  }
  .page-partnership .how-it-works-action-list {
    margin-top: 40px;
  }
}
.page-promo .promo-content {
  display: grid;
  gap: 32px;
}
.page-promo .promo-content .banner {
  margin-top: 24px;
}
.page-promo .promo-content .image {
  overflow: hidden;
  max-width: 288px;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.page-promo .promo-content .html-content:not(:first-child) {
  margin-top: 24px;
}
.page-promo .promo-content .pub-date {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey5);
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .page-promo .promo-content .image {
    max-width: 800px;
  }
}
@media only screen and (min-width: 1280px) {
  .page-promo .promo-content {
    grid-template-columns: 1fr 350px;
    gap: 48px;
  }
  .page-promo .promo-content .sidebar {
    order: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .page-promo .promo-content {
    grid-template-columns: 1fr 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-promo .promo-content {
    grid-template-columns: 1fr 480px;
  }
}
.page-rest-list .rest-list .content {
  margin-top: 32px;
}
.page-rest-list .map-text-full,
.page-rest-list .filter-btn-text-full,
.page-rest-list .tag-list-content {
  display: none;
}
.page-rest-list .sidebar {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.page-rest-list .sidebar .actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-rest-list .expandable-toggler {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey5);
  display: inline-block;
  margin-top: 8px;
  transition: var(--dur2);
}
.page-rest-list .expandable-toggler:hover {
  color: var(--color_orange2);
}
.page-rest-list .filter-head .counter {
  margin-top: 32px;
}
.page-rest-list .filter-content {
  display: grid;
  margin-top: 24px;
  gap: 48px;
}
@media only screen and (min-width: 360px) {
  .page-rest-list .filter-btn-text-short {
    display: none;
  }
  .page-rest-list .filter-btn-text-full {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .page-rest-list .map-text-short {
    display: none;
  }
  .page-rest-list .map-text-full {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .page-rest-list .filter-head .param-select {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .page-rest-list .filter-head .counter {
    margin: 0;
  }
  .page-rest-list .filter-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .page-rest-list .rest-list {
    display: flex;
    gap: 40px;
  }
  .page-rest-list .rest-list .content {
    margin: 0;
    flex-grow: 1;
    width: 0;
  }
  .page-rest-list .tag-list-top,
  .page-rest-list .map-text-full,
  .page-rest-list .filter-btn {
    display: none;
  }
  .page-rest-list .tag-list-content,
  .page-rest-list .map-text-short {
    display: block;
  }
  .page-rest-list .sidebar {
    flex-shrink: 0;
    margin: 0;
    width: 338px;
  }
  .page-rest-list .filter-content {
    gap: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .page-rest-list .filter-content {
    gap: 56px;
  }
}
.page-rest-search .filter-content {
  display: grid;
  margin-top: 16px;
  gap: 48px;
}
@media only screen and (min-width: 1024px) {
  .page-rest-search .filter-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .page-rest-search .filter-content {
    gap: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .page-rest-search .filter-content {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 56px;
  }
}
.page-restaurant .about-content {
  margin-top: 16px;
}
.page-restaurant .expandable-toggler {
  margin-top: 24px;
}
.page-restaurant .restaurant-menu .section-title {
  padding-bottom: 16px;
}
.page-restaurant .restaurant-menu .menu-content:not(.-active) {
  display: none;
}
.page-restaurant .restaurant-menu .dish-info {
  padding-top: 32px;
}
.page-restaurant .restaurant-menu .dish-info .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
.page-restaurant .restaurant-menu .dish-carousel {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}
.page-restaurant .restaurant-menu .dish-carousel .container {
  position: static;
}
.page-restaurant .restaurant-menu .dish-carousel .swiper {
  position: static;
  overflow: visible;
}
.page-restaurant .restaurant-menu .dish-carousel .swiper-slide {
  width: 268px;
}
.page-restaurant .restaurant-menu .dish-carousel .card-picture {
  border-radius: 24px;
}
.page-restaurant .restaurant-menu .dish-content {
  margin-top: 24px;
}
.page-restaurant .address-switcher-wrapper {
  padding-bottom: 24px;
}
.page-restaurant .reviews-block {
  margin-top: 32px;
}
.page-restaurant .reviews-block .show-more {
  margin-top: 24px;
}
.page-restaurant .rest-address-list .expandable-toggler {
  margin-top: 32px;
}
@media only screen and (min-width: 360px) {
  .page-restaurant .restaurant-menu .section-title {
    padding-bottom: 24px;
  }
  .page-restaurant .reviews-block .show-more {
    margin-top: 32px;
  }
  .page-restaurant .dish-carousel .swiper-slide {
    width: 348px;
  }
}
@media only screen and (min-width: 576px) {
  .page-restaurant .rest-address-list .expandable-toggler {
    margin-top: 40px;
  }
  .page-restaurant .address-switcher-wrapper {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-restaurant .reviews-block {
    margin-top: 48px;
  }
  .page-restaurant .reviews-block .show-more {
    margin-top: 40px;
  }
  .page-restaurant .dish-info {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .page-restaurant .dish-info .title {
    font-size: 24px;
    line-height: 34px;
  }
}
.page-seo .seo-link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
  gap: 8px 16px;
}
.page-seo .seo-link-list .item {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-seo .seo-link-list .link {
  transition: var(--dur2);
}
.page-seo .seo-link-list .link:hover {
  color: var(--color_orange2);
}
@media only screen and (min-width: 768px) {
  .page-seo .seo-link-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-top .sidebar {
  display: none;
}
.page-top .mobile-controls {
  margin-top: 24px;
}
.page-top .param-select-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-top .map-btn:not(:first-child) {
  margin-top: 24px;
}
.page-top .expandable-toggler {
  line-height: 24px;
  font-size: 16px;
  color: var(--color_grey5);
  display: inline-block;
  margin-top: 8px;
  transition: var(--dur2);
}
.page-top .expandable-toggler:hover {
  color: var(--color_orange2);
}
.page-top .filter-content {
  display: grid;
  margin-top: 32px;
  gap: 48px;
}
@media only screen and (min-width: 768px) {
  .page-top .param-select-list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .page-top .filter-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .page-top .rest-list {
    display: flex;
    gap: 40px;
  }
  .page-top .rest-list .content {
    flex-grow: 1;
    width: 0;
  }
  .page-top .mobile-controls {
    display: none;
  }
  .page-top .sidebar {
    display: block;
    flex-shrink: 0;
    margin: 0;
    width: 338px;
  }
  .page-top .filter-content {
    gap: 40px;
  }
}