@charset "UTF-8";
/*Обнуление*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,regular,700);
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

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

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  font-size: 14px;
}

/*------------------ПОДКЛЮЧЕНИЕ ШРИФТОВ---------------------------------------------*/
@font-face {
  font-family: "Object Sans";
  src: url("../fonts/ObjectSans-Regular.eot");
  src: local("Object Sans Regular"), local("../fonts/ObjectSans-Regular"), url("../fonts/ObjectSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ObjectSans-Regular.woff2") format("woff2"), url("../fonts/ObjectSans-Regular.woff") format("woff"), url("../fonts/ObjectSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Object Sans";
  src: url("../fonts/ObjectSans-Heavy.eot");
  src: local("Object Sans Heavy"), local("../fonts/ObjectSans-Heavy"), url("../fonts/ObjectSans-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/ObjectSans-Heavy.woff2") format("woff2"), url("../fonts/ObjectSans-Heavy.woff") format("woff"), url("../fonts/ObjectSans-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
/*------------------ТЕХНИЧЕСКИЕ КЛАССЫ----------------------------------------------*/
._container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*---------------------------ГЛАВНЫЕ КЛАССЫ-----------------------------------------*/
body {
  color: #000;
  font-family: "Object Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.header {
  width: 100%;
  z-index: 16;
  height: 140px;
  background-color: #ffffff;
  padding: 0 50px;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.header.fixed {
  position: fixed;
  top: 0;
}

/*---------------------------ОСТАЛЬНЫЕ КЛАССЫ---------------------------------------*/
/*---------------------------HEADER-------------------------------------------------*/
.header__burger {
  display: none;
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger::before {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger::after {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 1px;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger span {
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger.active::after {
  width: 100%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 8px;
}

.header__burger.active::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
}

.header {
  height: 161px;
  background: #ffffff;
}

.header__m-addres {
  display: none;
}

.header__header {
  height: 81px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.header__logo {
  margin-right: 95px;
}

.header__logo-lock {
  display: none;
}

.header__input {
  position: relative;
}

.header {
  overflow: visible;
}

.header-input__block {
  display: none;
  width: 100%;
  left: 0;
  top: 55px;
  padding: 16px 18px;
  z-index: 2;
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

.header-input__text {
  position: relative;
  padding-bottom: 7px;
  border-bottom: 1px solid #e5e5e5;
}

.header-input__title {
  font-size: 12px;
  line-height: 12px;
  color: #000000;
}

.header-input__title span {
  font-weight: 800;
}

.header-input__link svg {
  left: 0 !important;
  top: 0 !important;
}

.header-input__link {
  position: absolute;
  right: 0;
  top: 0;
}

.header-input__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.header-input__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}

.header-input__img {
  margin-right: 7px;
}

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

.header-input__body {
  position: relative;
}

.header-input-body__title {
  font-weight: 800;
  font-size: 12px;
}

.header-input-body__price {
  font-weight: 800;
  font-size: 12px;
  line-height: 12px;
  margin-top: 11px;
}

.header-input-body__gram {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10px;
  line-height: 10px;
  color: rgba(0, 0, 0, 0.446);
}

.header-input__pay svg {
  position: static !important;
  margin-left: 21px;
}

.header__input input {
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  width: 330px;
  height: 48px;
  padding: 11px 14px 11px 50px;
  font-size: 18px;
  line-height: 18px;
}

.header__input svg {
  position: absolute;
  left: 14px;
  top: 11px;
}

.header__address {
  margin-left: 18px;
}

.header__address img {
  margin-right: 4px;
  left: 0;
  top: 0;
  position: absolute;
}

.header__address span {
  padding-left: 15px;
  position: relative;
  font-size: 10px;
  line-height: 10px;
}

.header__user-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__basket {
  height: 48px;
  width: 151px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.header__basket svg {
  margin-right: 17px;
}

.header__basket a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  line-height: 21px;
  color: #000;
}

.header__user {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__user {
  cursor: pointer;
  margin-left: 15px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.header__block-main {
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__main {
  margin-right: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
  color: #000000;
}

.header__burger-two {
  margin-left: 15px;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__list li:not(:last-child) {
  margin-right: 40px;
}

.header__link {
  color: #000;
}

.header__burger-two {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger-two::before {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger-two::after {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 1px;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger-two span {
  background-color: #000000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__burger-two.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger-two.active::after {
  width: 100%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 8px;
}

.header__burger-two.active::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
}

.header__list li {
  border-bottom: 2px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__list li:hover {
  border-bottom: 2px solid #000;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #a9d992;
}

.custom-checkbox:not(:disabled):active + label::before {
  background-color: #a9d992;
  border-color: #a9d992;
}

.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #a9d992;
}

.custom-checkbox:checked + label::before {
  border-color: #a9d992;
  background-color: #a9d992;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.custom-checkbox1 {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox1 + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-checkbox1 + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox1:not(:disabled):not(:checked) + label:hover::before {
  border-color: #a9d992;
}

.custom-checkbox1:not(:disabled):active + label::before {
  background-color: #a9d992;
  border-color: #a9d992;
}

.custom-checkbox1:focus:not(:checked) + label::before {
  border-color: #a9d992;
}

.custom-checkbox1:checked + label::before {
  border-color: #a9d992;
  background-color: #a9d992;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox1:disabled + label::before {
  background-color: #e9ecef;
}

.header__user-block2 {
  background: #ffffff;
  border-radius: 15px;
  width: 380px;
  position: absolute;
  right: 0;
  top: 176px;
  display: none;
}

.header__user-block2.active {
  display: block;
  -webkit-animation: anim 0.3s ease-in;
          animation: anim 0.3s ease-in;
}

.header__user-block3.active {
  display: block;
  -webkit-animation: anim 0.3s ease-in;
          animation: anim 0.3s ease-in;
}

.header__user-block4.active {
  display: block;
  -webkit-animation: anim 0.3s ease-in;
          animation: anim 0.3s ease-in;
}

.user-block2__text {
  font-size: 12px;
  line-height: 12px;
  margin-top: 26px;
}

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

@keyframes anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.user-block {
  padding: 40px 25px;
  background: #ffffff;
  border-radius: 15px;
  width: 380px;
  position: absolute;
  right: 0;
  top: 176px;
  display: none;
}

.user-block2__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
  text-align: center;
}

.user-block2__input {
  border-radius: 15px;
  width: 100%;
  height: 60px;
  margin: 26px 0 15px 0;
}

.user-block2__input::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.user-block2__input::-moz-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.user-block2__input:-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.user-block2__input::-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.user-block2__input::placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.user-block2__input input {
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 20px;
}

.user-block2__btn {
  border-radius: 15px;
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
}

.user-block2__btn button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #c4c4c4;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 20px;
}

.user-block2__btn button:hover {
  background: #a9d992;
}

.user-block2__checkbox-content {
  font-size: 10px;
  line-height: 10px;
}

.header__user-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.address-block {
  position: absolute;
  left: 0;
  top: 200px;
  background: #ffffff;
  border-radius: 15px;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-tab {
  padding-top: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #000000;
  font-size: 24px;
  color: #000000;
  line-height: 25px;
  padding-bottom: 20px;
}

.nav-tab.active {
  font-weight: 800;
  cursor: default;
  border-bottom: 2px solid #000000;
}

.tab-content {
  font-size: 20px;
}

.tab-pane {
  width: 800px;
  display: none;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  padding: 22px;
}

.tab-pane.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-block__input {
  margin-bottom: 25px;
  height: 60px;
  width: 100%;
}

.header__address-block {
  display: none;
}

.header__address {
  cursor: pointer;
}

.header__address-block.active {
  display: block;
  -webkit-animation: anim 0.3s ease-in;
          animation: anim 0.3s ease-in;
}

.address-block__close {
  cursor: pointer;
}

.address-block__input input {
  font-size: 24px;
  line-height: 25px;
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  padding: 21px 39px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.address-block__btn {
  height: 60px;
  margin: 15px 0;
  width: 100%;
}

.header__list {
  position: relative;
}

.header__list li:hover .header__sublist-div {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.header__sublist-div {
  padding-top: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-65%);
      -ms-transform: translateX(-65%);
          transform: translateX(-65%);
}

.header__sublist {
  min-width: 380px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 38px 30px 38px 60px;
}

.header__main {
  position: relative;
}

.header__burger-two-list {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  min-width: 380px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 38px 30px 38px 60px;
}

.header__burger-two-list.active {
  display: block;
  -webkit-animation: jah 0.3s;
          animation: jah 0.3s;
}

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

@keyframes jah {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__burger-two-list a {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
}

.header__burger-two-list li:not(:last-child) {
  margin: 0 0 25px 0;
}

.header__burger-two-list li:hover a {
  font-weight: 800;
}

.header__burger-two-list li:hover .header__burger-two-sublist {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.header__burger-two-sublist {
  min-width: 380px;
  padding: 38px 30px 38px 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 400px;
  top: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.header__burger-two-sublist li:not(:last-child) {
  margin: 0 0 25px 0;
}

.header__burger-two-sublist li a {
  font-weight: 400 !important;
}

.header__sublist a {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

.header__sublist a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__sublist li:not(:last-child) {
  margin: 0 0 25px 0;
}

.header__sublist li:hover {
  border-bottom: 2px solid #fff;
}

.address-block__btn button {
  background: #a9d992;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 25px;
  color: #000000;
}

.address-block__close {
  position: absolute;
  right: 22px;
  top: 22px;
}

.address-block__text {
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.header-basket {
  max-width: 562px;
  position: absolute;
  top: 200px;
  left: 100px;
  background: #ffffff;
  border-radius: 15px;
  padding: 42px 25px 21px 25px;
}

.header-basket a {
  color: #000000;
}

.header-basket__title {
  margin-bottom: 26px;
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
}

.header-basket__title2 {
  max-width: 220px;
}

.header-basket__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.header-basket__subtitle {
  font-weight: 800;
  font-size: 24px;
  margin: 34px 0 23px 0;
}

.header-basket__items-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-basket__item-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-basket-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}

.header-basket-item__title {
  max-width: 100px;
  font-size: 15px;
  line-height: 15px;
}

.header-basket-item__price {
  background: #a9d992;
  border-radius: 15px;
  width: 71.79px;
  height: 22.3px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-basket__btn {
  height: 60px;
  width: 100%;
  margin-top: 35px;
}

.header-basket__gram {
  margin-right: 70px;
}

.header-basket__btn button {
  background: #a9d992;
  border-radius: 15px;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__basket-2 {
  background-image: url("img/Frame.png");
  background-repeat: no-repeat;
  background-position: 50% 20%;
}

.header-basket__text {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 50px;
  color: rgba(0, 0, 0, 0.5);
}

.header__burger-block {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #ffffff;
  padding: 40px 20px;
  left: 0;
  top: -1000px;
  z-index: 10;
}

.block-burger__list li {
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
}

.block-burger__list li:not(:last-child) {
  margin-bottom: 20px;
}

.block-burger__link {
  font-size: 16px;
  line-height: 16px;
  color: #000000;
}

.block-burger__link-line {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header__burger-block.active {
  left: 0;
  top: 0;
}

.block-burger__sublist {
  display: none;
}

.block-burger__sublist {
  position: absolute;
  top: 0;
  right: -1500px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  z-index: 30;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.block-burger__sublist-title {
  padding-left: 50px;
  font-weight: 800;
  font-size: 16px;
  line-height: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: -20px;
  margin-bottom: 20px;
}

.block-burger__sublist-title span {
  position: absolute;
  top: 0;
  left: 10px;
}

.h-div-2.active {
  right: 0;
  top: -450px;
}

.h-div-1.active {
  right: 0;
}

@media (max-width: 1280px) {
  .header__basket span {
    display: none;
  }

  .header__basket {
    width: 48px;
  }

  .header__basket svg {
    margin: 0;
  }

  .header__logo {
    margin-right: 40px;
  }

  .header__logo svg {
    width: 184px;
    height: 46.5px;
  }

  .header__address {
    margin-left: 10px;
  }

  .header__list li:not(:last-child) {
    margin-right: 20px;
  }

  .header__main {
    margin-right: 50px;
  }
}
@media (max-width: 960px) {
  .address-block {
    max-width: 100%;
    height: 100vh !important;
    top: 0;
    z-index: 25;
    position: absolute;
  }

  .nav-tab {
    font-size: 16px;
    line-height: 17px;
  }

  .address-block__input input {
    font-size: 16px;
    line-height: 16px;
  }

  .address-block__btn button {
    font-size: 16px;
    line-height: 16px;
  }

  .address-block__text {
    font-size: 10px;
  }

  .address-block__btn {
    height: 40px;
  }

  .address-block__input {
    height: 40px;
  }

  .address-block__map .ymaps-2-1-79-map {
    height: 300px !important;
  }

  .tab-pane {
    width: 100%;
  }

  .block-burger__sublist {
    display: block;
  }

  .header__burger {
    display: block;
    margin-right: 18px;
  }

  .header__block-main {
    display: none;
  }

  .header {
    height: 140px;
  }

  .header__m-addres {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .header__logo {
    display: none;
  }

  .header__logo-lock {
    margin-right: 28px;
    display: block;
  }

  .header__m-addres svg {
    margin-right: 26px;
  }

  .header__m-addres span {
    font-weight: 800;
  }

  .header__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .header__input {
    width: 100%;
  }

  .header__input input {
    width: 100%;
  }

  .header__address {
    display: none;
  }

  .header__basket {
    margin-left: 51px;
  }
}
@media (max-width: 767px) {
  .header__basket {
    margin-left: 20px;
  }
}
.header__burger-block {
  top: -3000px;
}

@media (max-width: 640px) {
  .user-block {
    top: 0;
    height: 100vh;
  }

  .header__m-addres {
    font-size: 10px;
  }

  .header__m-addres svg {
    margin-right: 10px;
    width: 15px;
    height: 20px;
  }

  .header__m-addres {
    padding: 8px 0;
  }

  .header__burger {
    width: 23px;
    height: 16px;
    margin-right: 10px;
  }

  .header__logo-lock {
    margin-right: 13px;
  }

  .header__logo-lock svg {
    width: 26px;
    height: 36px;
  }

  .header__input svg {
    width: 16px;
    height: 16px;
    top: 8px;
    left: 12px;
  }

  .header__input input {
    padding: 7px 12px 7px 35px;
    height: 30px;
    font-size: 12px;
  }

  .header__basket {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 18px;
  }

  .header__user {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 16px;
  }

  .header__user svg {
    width: 16px;
    height: 16px;
  }

  .header__basket svg {
    width: 18px;
    height: 16px;
  }

  .header__header {
    height: 60px;
  }

  .header__burger.active::after {
    width: 100%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 7px;
  }

  .header__burger.active::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 7px;
  }
}
.header {
  padding: 0;
}

/*---------------------------rhythm-------------------------------------------------*/
.rhythm {
  max-height: 726px;
  background: #92c0e9;
}

.rhythm___content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rhythm__body {
  padding-top: 165px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.rhythm__title {
  font-weight: 800;
  font-size: 90px;
  line-height: 93px;
  color: #ffffff;
}

.rhythm__btn {
  background: #ffffff;
  border-radius: 15px;
  width: 446px;
  height: 80px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 94px;
}

.rhythm__btn:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}

.rhythm__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 32px;
  line-height: 33px;
  text-align: center;
  color: #000000;
}

.rhythm__slider {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  max-width: 40%;
  overflow: hidden;
}

.swiper-button-nex {
  right: 0;
  bottom: 106px;
  position: absolute;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 15;
}

.swiper-button-pre {
  z-index: 15;
  position: absolute;
  left: 0;
  bottom: 106px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rhythm__item img {
  -webkit-transform: rotate(-5.71deg);
      -ms-transform: rotate(-5.71deg);
          transform: rotate(-5.71deg);
}

@media (max-width: 1280px) {
  .rhythm__title {
    font-size: 64px;
    line-height: 66px;
  }

  .rhythm__btn {
    width: 310px;
    height: 60px;
    margin-top: 127px;
  }

  .rhythm__btn a {
    font-size: 20px;
    line-height: 20px;
  }

  .swiper-button-nex {
    width: 60px;
    height: 60px;
  }

  .swiper-button-nex svg {
    width: 15px;
    height: 26px;
  }

  .swiper-button-pre {
    width: 60px;
    height: 60px;
  }

  .swiper-button-pre svg {
    width: 15px;
    height: 26px;
  }

  .rhythm__item img {
    width: 337.16px;
    height: 437.62px;
    margin-top: 50px;
  }

  .rhythm__body {
    padding-top: 95px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }

  .rhythm__slider {
    margin-top: 95px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
    max-width: 35%;
  }

  .rhythm {
    min-height: 633px;
  }
}
@media (max-width: 960px) {
  .rhythm__title {
    font-size: 48px;
    line-height: 50px;
  }

  .rhythm__btn {
    width: 208px;
    height: 50px;
    margin-top: 77px;
  }

  .rhythm__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .swiper-button-nex {
    width: 50px;
    height: 50px;
  }

  .swiper-button-nex svg {
    width: 12px;
    height: 21px;
  }

  .swiper-button-pre {
    width: 50px;
    height: 50px;
  }

  .swiper-button-pre svg {
    width: 12px;
    height: 21px;
  }

  .rhythm__item img {
    width: 246px;
    height: 296.62px;
  }

  .rhythm__body {
    padding-top: 95px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }

  .rhythm__slider {
    margin-top: 85px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
    max-width: 35%;
  }

  .rhythm {
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .rhythm___content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .rhythm__btn {
    display: none;
  }

  .rhythm__btn-lock {
    display: block !important;
  }

  .rhythm__title {
    font-size: 36px;
    line-height: 37px;
  }

  .rhythm__btn {
    margin: 0 auto;
    width: 216px;
    height: 40px;
    margin-top: 0px;
    margin-bottom: 48px;
  }

  .rhythm__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .swiper-button-nex {
    width: 40px;
    height: 40px;
  }

  .swiper-button-nex svg {
    width: 10px;
    height: 17px;
  }

  .swiper-button-pre {
    width: 40px;
    height: 40px;
  }

  .swiper-button-pre svg {
    width: 10px;
    height: 17px;
  }

  .rhythm__item {
    text-align: center;
  }

  .rhythm__item img {
    width: 277.97px;
    height: 360.8px;
  }

  .rhythm__body {
    padding-top: 61px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }

  .rhythm__slider {
    margin-top: -80px;
    max-width: none;
  }

  .rhythm {
    min-height: 600px;
  }

  .header {
    max-height: 91px;
  }
}
.rhythm__btn-lock {
  display: none;
}

/*---------------------------place-------------------------------------------------*/
.place {
  padding: 100px 0 200px 0;
}

.place__title {
  margin-bottom: 85px;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
  max-width: 1100px;
}

.place__items {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.place__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.place__subtitle {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 40px;
  line-height: 41px;
}

.place__text {
  font-size: 24px;
  line-height: 25px;
  max-width: 446px;
}

@media (max-width: 1280px) {
  .place {
    padding: 80px 0 150px 0;
  }

  .place__title {
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 67px;
    max-width: 800px;
  }

  .place__subtitle {
    font-size: 30px;
    line-height: 31px;
  }

  .place__text {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 960px) {
  .place {
    padding: 80px 0 150px 0;
  }

  .place__title {
    font-size: 36px;
    line-height: 37px;
    margin-bottom: 63px;
    max-width: 600px;
  }

  .place__subtitle {
    font-size: 24px;
    line-height: 25px;
  }

  .place__text {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .place__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }

  .place {
    padding: 60px 0 80px 0;
  }

  .place__title {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 40px;
  }

  .place__subtitle {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .place__text {
    font-size: 16px;
    line-height: 16px;
  }
}
/*---------------------------delivery-------------------------------------------------*/
.delivery {
  padding-bottom: 100px;
}

.delivery__block {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.delivery__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.delivery__cub {
  position: relative;
}

.delivery__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
  color: #fff;
  position: absolute;
  left: 56px;
  top: 63px;
  z-index: 2;
}

.delivery__text {
  font-size: 24px;
  line-height: 25px;
  max-width: 562px;
}

.delivery__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.delivery-item {
  padding-bottom: 1px;
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  max-width: 330px;
}

.delivery-item__title {
  font-size: 20px;
  line-height: 20px;
  padding-top: 9px;
  padding-left: 15px;
  padding-bottom: 18px;
}

.delivery-item__price {
  padding-right: 15px;
  font-weight: 800;
  font-size: 32px;
  line-height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 15px;
}

.delivery-item__gram {
  font-size: 16px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.3);
}

.delivery-item__btn {
  margin: 10px 15px 14px 15px;
  background: #a9d992;
  border-radius: 15px;
  height: 44px;
}

.delivery-item__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

.delivery-item__discount {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #d24720;
  border-radius: 15px;
  width: 71px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery__green {
  background: #a9d992;
  border-radius: 15px;
  width: 40px;
  height: 27px;
  text-align: center;
  padding-top: 3px;
  position: absolute;
  left: 15px;
  top: 47px;
}

@media (max-width: 1500px) {
  .delivery__cub svg {
    width: 537px;
    height: 176px;
  }

  .delivery__title {
    font-size: 48px;
    line-height: 50px;
    left: 47px;
    top: 35px;
  }
}
@media (max-width: 1280px) {
  .delivery__text {
    font-size: 20px;
    line-height: 20px;
    max-width: 410px;
  }

  .delivery-item__img {
    text-align: center;
  }

  .delivery-item__img img {
    max-width: 230px;
    height: 170px;
  }

  .delivery-item__btn {
    width: none;
    margin: 10px 15px 14px 15px;
  }

  .delivery-item__price {
    font-size: 24px;
    line-height: 25px;
  }

  .delivery-item__gram {
    font-size: 12px;
    line-height: 12px;
  }

  .delivery-item__discount {
    width: 40px;
    height: 16px;
    font-size: 10px;
    line-height: 10px;
    top: 8px;
    left: 8px;
  }

  .delivery__green {
    width: 22px;
    height: 16px;
    padding-top: 2px;
    top: 8px;
    left: 51px;
  }

  .delivery__green img {
    width: 12.5px;
    height: 13.5px;
  }

  .delivery__block {
    gap: 10px;
  }
}
@media (max-width: 1120px) {
  .delivery__cub svg {
    width: 432px;
    height: 190px;
  }

  .delivery__title {
    font-size: 36px;
    line-height: 37px;
    max-width: 450px;
    left: 47px;
    top: 24px;
  }
}
@media (max-width: 960px) {
  .delivery__text {
    font-size: 16px;
    line-height: 16px;
    text-align: center;
  }

  .delivery-item__img img {
    max-width: 123px;
    height: 89px;
  }

  .delivery-item__btn {
    width: none;
    margin: 10px 6px 0px 6px;
    height: 17px;
  }

  .delivery-item {
    padding-bottom: 6px;
    max-height: 200px;
    max-width: 150px;
  }

  .delivery-item__btn a {
    font-size: 12px;
  }

  .delivery-item__title {
    font-size: 12px;
    line-height: 12px;
    padding: 5px 6px 10px 6px;
  }

  .delivery-item__price {
    padding-left: 6px;
    font-size: 14px;
    line-height: 9px;
  }

  .delivery-item__gram {
    font-size: 10px;
    line-height: 10px;
  }

  .delivery-item__discount {
    width: 40px;
    height: 16px;
    font-size: 10px;
    line-height: 10px;
    top: 8px;
    left: 8px;
  }

  .delivery__green {
    width: 22px;
    height: 16px;
    padding-top: 2px;
    top: 8px;
    left: 51px;
  }

  .delivery__green img {
    width: 12.5px;
    height: 13.5px;
  }

  .delivery__block {
    gap: 0px;
  }

  .delivery__items {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
  }

  .delivery__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }
}
@media (max-width: 767px) {
  .delivery__cub svg {
    width: 352px;
    height: 150px;
  }

  .delivery__title {
    font-size: 24px;
    line-height: 25px;
    left: 24px;
    top: 24px;
    max-width: 340px;
  }

  .delivery__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 27px;
  }
}
/*---------------------------find-------------------------------------------------*/
.find {
  padding-bottom: 129px;
}

.find__block {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.find__block-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.find__img {
  border-radius: 15px;
  overflow: hidden;
}

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

.find__btn {
  background: #92c0e9;
  border-radius: 15px;
  width: 446px;
  height: 80px;
  margin: 48px auto 0 auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.find__btn:hover {
  background: rgba(146, 192, 233, 0.6);
}

.find__btn a {
  font-size: 32px;
  line-height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

.find__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.find__cub {
  position: relative;
}

.find__title {
  position: absolute;
  left: 40px;
  top: 56px;
  font-size: 64px;
  line-height: 66px;
  color: #ffffff;
  font-weight: 800;
  max-width: 600px;
}

.find__text {
  font-size: 24px;
  line-height: 25px;
  max-width: 500px;
}

@media (max-width: 1280px) {
  .find__img img {
    max-height: 209px;
  }

  .find__cub svg {
    width: 537px;
    height: 206px;
  }

  .find__title {
    max-width: 450px;
    left: 20px;
    top: 31px;
    font-size: 48px;
    line-height: 50px;
  }

  .find__btn {
    width: 310px;
    height: 60px;
  }

  .find__btn a {
    font-size: 24px;
    line-height: 25px;
  }

  .find__text {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 960px) {
  .find__img {
    max-width: 202px;
    margin: 0 auto;
  }

  .find__cub svg {
    width: 432px;
    height: 176px;
  }

  .find__title {
    font-size: 36px;
    line-height: 37px;
    text-align: center;
    max-width: 400px;
  }

  .find__btn {
    margin-top: 11px;
  }

  .find__img img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 202px;
    max-height: 230px;
  }

  .find__block-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
  }

  .find__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }

  .find__btn {
    display: none;
  }

  .find__btn-lock {
    width: 262px;
    height: 40px;
    display: block !important;
  }

  .find__btn-lock a {
    font-size: 16px;
    line-height: 16px;
  }

  .find__text {
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    max-width: 424px;
    margin: 0 auto;
  }
}
.find__btn-lock {
  display: none;
}

@media (max-width: 767px) {
  .find__text {
    font-size: 16px;
    line-height: 16px;
    margin: 0;
    text-align: left;
  }

  .find__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .find__btn-lock {
    display: none !important;
  }

  .find__btn {
    display: block;
    width: 216px;
    height: 34px;
  }

  .find__btn a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 500px) {
  .find__text {
    padding-top: 28px;
  }

  .find__cub {
    margin-left: -15px;
  }

  .find__cub svg {
    width: 352px;
    height: 130px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .find__title {
    font-size: 24px;
    line-height: 25px;
    top: 50px;
    right: 24px;
    text-align: left;
  }

  .find__img {
    margin: 0;
    max-width: 328px;
  }

  .find__img img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 328px !important;
    width: 328px !important;
    height: 150px;
  }

  .find__btn {
    margin-top: 25px;
  }
}
/*---------------------------taste-------------------------------------------------*/
.taste {
  background: rgba(146, 192, 233, 0.4);
  margin-bottom: 200px;
}

.taste__block {
  max-width: 1435px;
  padding: 0 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.taste__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}

.taste__title {
  font-size: 64px;
  line-height: 66px;
  font-weight: 800;
  margin-top: 86px;
}

.taste__text {
  font-size: 24px;
  line-height: 25px;
  max-width: 560px;
  margin-top: 35px;
  padding-bottom: 80px;
}

.taste__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  position: relative;
}

.taste__img img {
  position: absolute;
  right: 0;
  bottom: 0px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 493px;
  height: 511px;
}

@media (max-width: 1280px) {
  .taste__title {
    margin-top: 56px;
    font-size: 48px;
    line-height: 50px;
  }

  .taste__text {
    margin-top: 15px;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 56px;
  }

  .taste__img img {
    width: 359px;
    height: 372px;
  }
}
@media (max-width: 960px) {
  .taste__title {
    margin-top: 26px;
    font-size: 36px;
    line-height: 37px;
    max-width: 424px;
  }

  .taste__text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 16px;
    padding-bottom: 26px;
    max-width: 316px;
  }

  .taste__img img {
    width: 290px;
    height: 301px;
  }
}
@media (max-width: 767px) {
  .taste {
    background: rgba(146, 193, 233, 0);
  }

  .taste__block {
    background: rgba(146, 192, 233, 0.4);
    border-radius: 10px;
    margin: 0 20px;
    padding-bottom: 150px;
    padding: 0 11px 120px 11px;
  }

  .taste__title {
    margin-top: 31px;
    font-size: 24px;
    line-height: 25px;
    max-width: 323px;
  }

  .taste__text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 16px;
    padding-bottom: 26px;
    max-width: 180px;
  }

  .taste__img img {
    width: 250px;
    height: 260px;
    right: -10px;
    bottom: -120px;
  }

  .taste__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 99%;
            flex: 0 1 99%;
  }

  .taste__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 1%;
            flex: 0 1 1%;
  }

  .delivery {
    padding-bottom: 80px;
  }

  .find {
    padding-bottom: 80px;
  }

  .taste {
    margin-bottom: 80px;
  }
}
/*---------------------------part-------------------------------------------------*/
.part {
  margin-bottom: 200px;
}

.part__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.part__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.part__title {
  max-width: 560px;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
}

.part__text {
  max-width: 500px;
  margin-top: 35px;
  font-size: 24px;
  line-height: 25px;
}

.part__btn {
  width: 330px;
  height: 80px;
  margin: 84px 0 0 0;
}

.part__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.part-item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.part-item img {
  -o-object-fit: cover;
     object-fit: cover;
}

.part-item__text {
  width: 200px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 35px;
  font-size: 24px;
  line-height: 25px;
  color: #ffffff;
}

.part-item__text span {
  font-weight: 800;
}

@media (max-width: 1280px) {
  .part__title {
    font-size: 48px;
    line-height: 50px;
    max-width: 450px;
  }

  .part__text {
    max-width: 450px;
    margin-top: 33px;
    font-size: 20px;
    line-height: 20px;
  }

  .part__btn {
    width: 310px;
    height: 60px;
  }

  .part-item {
    max-width: 228px;
    max-height: 322px;
  }
}
@media (max-width: 960px) {
  .part__btn {
    width: 262px;
    height: 40px;
    display: block !important;
  }

  .part__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .part__title {
    font-size: 36px;
    line-height: 37px;
    max-width: 300px;
  }

  .part__text {
    max-width: 262px;
    margin-top: 33px;
    font-size: 16px;
    line-height: 16px;
  }

  .part__items {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .part__items {
    display: none;
  }

  .part__btn {
    width: 216px;
    height: 34px;
    display: block !important;
    margin: 39px 0 0 0;
  }

  .part__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .part__title {
    font-size: 36px;
    line-height: 37px;
    max-width: none;
  }

  .part__text {
    max-width: none;
    margin-top: 26px;
    font-size: 16px;
    line-height: 16px;
  }

  .part__block {
    display: block;
  }

  .part {
    margin-bottom: 80px;
  }
}
/*---------------------------stay-------------------------------------------------*/
.stay {
  margin-bottom: 64px;
}

.stay__block {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #a3a3e0;
  border-radius: 15px;
  padding: 37px 50px 22px 50px;
}

.stay__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  color: #ffffff;
  max-width: 513px;
}

.stay__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stay__email {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
}

.stay__email button {
  font-size: 24px;
  line-height: 25px;
  color: #000000;
  width: 213px;
  background: #ffffff;
  border-radius: 15px;
}

.stay__input input {
  width: 447px;
  background: #ffffff;
  border-radius: 15px;
  padding: 27px 33px;
  font-size: 24px;
  line-height: 25px;
}

.stay__input input::-webkit-input-placeholder {
  color: #c4c4c4;
}

.stay__input input::-moz-placeholder {
  color: #c4c4c4;
}

.stay__input input:-ms-input-placeholder {
  color: #c4c4c4;
}

.stay__input input::-ms-input-placeholder {
  color: #c4c4c4;
}

.stay__input input::placeholder {
  color: #c4c4c4;
}

.stay__text {
  text-align: center;
  max-width: 400px;
  margin: 18px auto 0 auto;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}

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

@media (max-width: 1280px) {
  .stay__block {
    padding: 23px 35px;
  }

  .stay__title {
    max-width: 358px;
    font-size: 32px;
    line-height: 33px;
  }

  .stay__email {
    gap: 10px;
    height: 50px;
  }

  .stay__text {
    margin: 10px auto 0 auto;
    font-size: 14px;
    line-height: 14px;
  }

  .stay__email button {
    border-radius: 10px;
    width: 191px;
  }

  .stay__input input {
    width: 310px;
    border-radius: 10px;
    padding: 10px 30px;
    height: 100%;
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 960px) {
  .stay__input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
  }

  .stay__email button {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
    font-size: 16px;
    line-height: 16px;
  }

  .stay__input input {
    width: 100%;
    padding: 10px 30px;
    height: 100%;
    font-size: 16px;
    line-height: 16px;
  }

  .stay__block {
    padding: 23px 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .stay__title {
    max-width: none;
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 10px;
  }

  .stay__text {
    margin: 18px 0 0 0;
    max-width: none;
  }
}
@media (max-width: 640px) {
  .stay__text {
    font-size: 10px;
    line-height: 10px;
  }

  .stay__block {
    padding: 22px 11px;
  }

  .stay__input {
    width: 100%;
  }

  .stay__email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 96px;
    gap: 0;
  }

  .stay__email button {
    width: 216px;
    margin: 16px auto 0 auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
    font-size: 16px;
    height: 40px;
    padding: 14px 54px;
    line-height: 16px;
  }
}
/*---------------------------footer-------------------------------------------------*/
.footer {
  padding-top: 187px;
  padding-bottom: 44px;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.footer__list li:not(:last-child) {
  margin-bottom: 10px;
}

.footer__subtitle {
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
}

.footer__list a {
  font-size: 18px;
  line-height: 19px;
  color: #000;
  font-weight: 400;
}

.footer__list a {
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__list a:hover {
  border-bottom: 1px solid #000;
}

.footer__content2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__body {
  margin-top: -30px;
}

.footer__title {
  font-size: 18px;
  line-height: 19px;
  font-weight: 800;
}

.footer__title {
  margin-top: 30px;
}

.footer__text {
  margin-top: 8px;
  font-size: 18px;
  line-height: 19px;
}

.footer__text span {
  font-size: 12px;
  line-height: 12px;
}

.footer__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 58px;
}

.footer__link {
  margin-right: 20px;
  font-size: 24px;
  line-height: 25px;
  white-space: nowrap;
}

.footer__link a {
  color: #000;
  text-decoration: underline;
}

.footer__messages {
  margin-right: 18px;
  gap: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__message {
  background: #e5e5e5;
  border-radius: 5px;
  width: 40px;
  height: 40px;
}

.footer__message a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__subtext {
  max-width: 550px;
  font-size: 14px;
  line-height: 16px;
}

.footer__subtitle img {
  display: none;
}

@media (max-width: 1280px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__link {
    margin-bottom: 50px;
  }
}
@media (max-width: 960px) {
  .footer__content2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__messages {
    margin-top: 33px;
  }

  .footer__link {
    margin-bottom: 33px;
  }

  .footer__list a {
    font-size: 14px;
    line-height: 15px;
  }

  .footer__subtitle {
    font-size: 14px;
    line-height: 15px;
  }

  .footer__title {
    font-size: 14px;
    line-height: 15px;
  }

  .footer__text {
    font-size: 14px;
    line-height: 15px;
  }

  .footer__text span {
    font-size: 10px;
    line-height: 10px;
  }
}
@media (max-width: 767px) {
  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }

  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .footer__subtitle {
    background: rgba(217, 217, 217, 0.15);
    border-radius: 5px;
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 28px;
    min-width: 328px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer__list-block {
    display: none;
  }

  .footer__content2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__link {
    max-width: 210px;
    margin: 0 0 32px 0;
    white-space: normal !important;
    font-size: 16px;
  }

  .footer__messages {
    margin: 0 0 32px 0;
  }

  .footer__content {
    font-size: 10px;
    line-height: 10px;
    margin: 31px auto 0 auto;
    max-width: 350px;
  }

  .footer__list-block.active {
    display: block;
  }

  .footer__list-block {
    padding-left: 10px;
    padding-bottom: 10px;
  }

  .footer__subtitle img {
    display: block;
  }

  .footer {
    padding-top: 19px;
    padding-bottom: 19px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*-----------------------------dish---------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.dish {
  padding-bottom: 118px;
}

.dish__dish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dish__img {
  text-align: center;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.dish__discount {
  left: 0;
  top: 13px;
  position: absolute;
  background: #d24720;
  border-radius: 15px;
  width: 100px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 25px;
}

.dish__green img {
  max-width: 32px;
  max-height: 32px;
}

.dish__green {
  background: #a9d992;
  border-radius: 15px;
  position: absolute;
  width: 56px;
  height: 38px;
  left: 109px;
  top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dish__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.dish__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
}

.dish__gram {
  margin-top: 10px;
  opacity: 0.5;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 37px;
}

.dish__price {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 37px;
}

.dish__btn {
  background: #a9d992;
  border-radius: 15px;
  width: 330px;
  height: 60px;
  margin-bottom: 58px;
}

.dish__btn a {
  font-size: 24px;
  line-height: 25px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

.dish__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.dish-part1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}

.dish-part__title {
  font-weight: 800;
  font-size: 16px;
  padding-bottom: 10px;
}

.dish-part__items {
  border-top: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dish-part__item span {
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
}

.dish-part__item {
  font-size: 10px;
  font-weight: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  text-align: center;
}

.dish-part__item2 span {
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
}

.dish-part__item2 {
  text-align: center;
  font-size: 10px;
  font-weight: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.dish-part2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.dish__text {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  font-size: 14px;
  line-height: 19px;
}

.dish__slider {
  overflow: hidden;
  position: relative;
}

.dish__subtitle {
  font-weight: 800;
  font-size: 20px;
  line-height: 132.68%;
}

.swiper-button-ne {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-button-pr {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  z-index: 3;
  left: 0;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dish__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dish-item__img {
  margin-right: 10px;
}

.crumbs {
  margin-bottom: 40px;
}

.crumbs__text {
  font-size: 20px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.3);
}

.dish-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dish-item__title {
  font-size: 20px;
  line-height: 20px;
  max-width: 165px;
}

.dish-item__price {
  background: #a9d992;
  border-radius: 15px;
  width: 103px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.dish__slider-nex {
  bottom: 50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  right: 15px;
}

.dish__slider-pre {
  bottom: 50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  left: 15px;
}

.dish__subtitle {
  margin-bottom: 27px;
}

.dish__block {
  margin-bottom: 40px;
}

.dish__item-2 img {
  width: 100%;
}

.dish-part__subitem2 span {
  font-weight: 800;
  font-size: 10px;
  line-height: 10px;
}

.dish-part__subitem2 {
  color: #000000;
  font-size: 10px;
  line-height: 10px;
  position: absolute;
  right: 0;
  text-align: center;
  bottom: -25px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.dish-part__item2 {
  position: relative;
}

.dish__slider2 {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .dish__img img {
    max-width: 470px;
  }

  .dish-item__title {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .dish__items-2 {
    max-width: 314px;
  }

  .dish__img img {
    max-width: 314px;
  }

  .dish__discount {
    display: none;
  }

  .dish__green {
    display: none;
  }

  .dish__title {
    font-size: 24px;
    line-height: 25px;
  }

  .dish__gram {
    font-size: 16px;
    line-height: 16px;
    margin-top: 22px;
    margin-bottom: 37px;
  }

  .dish__price {
    font-size: 24px;
    line-height: 25px;
  }

  .dish__btn {
    width: 208px;
    height: 40px;
  }

  .dish__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .dish__body-lock {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    max-width: 532px;
    margin: 40px auto;
  }

  .dish__body {
    display: none;
  }

  .dish__compound-lock {
    display: block !important;
    max-width: 532px;
    margin: 0 auto 40px auto;
  }

  .dish__compound {
    display: none;
  }

  .dish__slider {
    margin: 0 auto;
  }

  .dish-item__img img {
    width: 66.27px;
    height: 66.27px;
  }

  .dish-item__title {
    font-size: 12px;
    line-height: 12px;
    max-width: 70px;
  }

  .dish__subtitle {
    margin-bottom: 17px;
  }

  .dish-item__price {
    background: #a9d992;
    border-radius: 15px;
    width: 48.07px;
    height: 14.93px;
    font-size: 10px;
    line-height: 10px;
  }
}
@media (max-width: 767px) {
  .crumbs__link {
    display: block !important;
  }

  .dish__img img {
    max-width: 328px;
  }

  .crumbs__text {
    display: none;
  }

  .dish__dish {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .dish__title {
    font-size: 24px;
    line-height: 25px;
    margin-top: 15px;
    text-align: center;
  }

  .dish__titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: 26px 0 40px 0;
  }

  .dish__gram {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
  }

  .dish__price {
    font-size: 36px;
    line-height: 37px;
    margin: 0;
  }

  .dish__btn {
    width: 328px;
    height: 50px;
    margin: 0px auto 55px auto;
  }

  .dish-part2 {
    display: none;
  }

  .dish-part {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .dish {
    padding-bottom: 80px;
  }

  .crumbs {
    margin-bottom: 0;
  }

  .dish__btn a {
    font-size: 24px;
    line-height: 25px;
  }
}
.dish__compound-lock {
  display: none;
}

.dish__body-lock {
  display: none;
}

.crumbs__link {
  display: none;
}

/*---------------------------New page-------------------------------------------------*/
/*---------------------------catalog--------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.catalog {
  padding-bottom: 225px;
}

.catalog__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.tabs__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 330px;
          flex: 0 1 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.catalog__title {
  font-size: 24px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  border-bottom: 5px solid #a9d992;
  margin-bottom: 20px;
}

.catalog__title img {
  margin-right: 6px;
}

.catalog-body {
  display: -ms-grid;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.catalog-body__green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 7px;
  height: 30px;
  background: #a9d992;
  position: relative;
}

.catalog-body__purple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 7px;
  height: 30px;
  position: relative;
  background: #a3a3e0;
}

.catalog-body__blue a {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.catalog-body__purple a {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.catalog-body__green a {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.catalog-body__blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 15px;
  padding: 7px;
  height: 30px;
  background: #92c0e9;
}

.catalog-body__white {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 10px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.catalog-pane__items {
  display: -ms-grid;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
}

.catalog-pane-item-big {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  background: #a9d992;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-pane-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-pane-item:hover {
  background: #a9d992;
  color: #fff !important;
}

.catalog-pane-item:hover .delivery-item__btn {
  background: #ffffff;
}

.catalog-pane-item:hover .delivery-item__btn a {
  color: #000000;
}

.catalog-pane-item:hover .delivery-item__discount {
  background-color: #fff;
  color: #000000;
}

.catalog-pane-item:hover .delivery__green {
  background-color: #fff;
}

.catalog-pane__header {
  margin-bottom: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.catalog-pane__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
}

.catalog-pane__block {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 3;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 24px 16px;
  width: 100%;
  display: none;
}

.catalog-pane__block.active {
  display: block;
}

.catalog-pane__block li:not(:last-child) {
  margin-bottom: 15px;
}

.catalog-pane__block a {
  font-size: 14px;
  line-height: 14px;
  color: #000000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-pane__block a:hover {
  color: #a9d992;
}

.green-a {
  color: #a9d992 !important;
}

.catalog-pane__filter {
  position: relative;
  cursor: pointer;
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  width: 214px;
  height: 40px;
  padding: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-item__discount {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.delivery__green {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.delivery-item__btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.delivery-item__btn a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-pane-item-big__content {
  padding: 54px 0 12px 0;
}

.catalog-pane-item-big__title {
  font-size: 32px;
  line-height: 33px;
}

.catalog-pane-item-big__btn {
  height: 44px;
}

.catalog-pane-item-big__btn a {
  font-size: 20px;
  line-height: 20px;
}

.catalog-pane-item-big .delivery-item__btn {
  background: #ffffff;
}

.catalog-pane-item-big .delivery-item__btn a {
  color: #000000;
}

.catalog-pane-item-big__text {
  font-size: 16px;
  line-height: 16px;
  padding: 26px 0 70px 15px;
  max-width: 300px;
}

.catalog-pane-item {
  max-width: none !important;
}

.tabs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 40px;
  background-color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
}

.tabs__btn:not(:last-child) {
  margin-bottom: 15px;
}

.tabs__btn_active {
  cursor: default;
  font-weight: 800;
}

.tabs__btn:not(.tabs__btn_active):hover,
.tabs__btn:not(.tabs__btn_active):focus {
  font-weight: 800;
}

.tabs__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.tabs__pane {
  display: none;
}

.tabs__pane_show {
  display: block;
}

.catalog__btn {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: 330px;
  height: 60px;
  margin: 50px auto;
}

.catalog__btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.catalog__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 562px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.catalog__pages a {
  color: #000000;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  transition: 0.3;
}

.catalog__nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.catalog__page-active {
  font-weight: 800;
}

.catalog__nav-m {
  display: none;
}

@media (max-width: 1400px) {
  .catalog-pane__items {
    display: -ms-grid;
    display: grid;
    grid-template: auto/repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
  }

  .tabs__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 250px;
            flex: 0 1 250px;
  }

  .tabs__btn {
    font-size: 16px;
    line-height: 16px;
  }

  .catalog__title {
    font-size: 18px;
    line-height: 18px;
  }

  .catalog__tabs {
    gap: 10px;
  }

  .catalog-body {
    grid-template: auto/repeat(auto-fit, minmax(80px, 1fr));
  }

  .catalog-body {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 1280px) {
  .catalog-pane__items {
    display: -ms-grid;
    display: grid;
    grid-template: auto/repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
}
@media (max-width: 1100px) {
  .catalog-pane__items {
    display: -ms-grid;
    display: grid;
    grid-template: auto/repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }
}
@media (max-width: 960px) {
  .catalog__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .crumbs__text {
    font-size: 14px;
    line-height: 14px;
  }

  .catalog__nav-m {
    display: block;
    position: absolute;
    right: 160px;
    top: 5px;
  }

  .catalog-pane__header {
    display: none;
  }

  .catalog__tabs {
    position: relative;
  }

  .tabs__nav {
    display: none;
  }

  .tabs__nav.active {
    display: block;
  }

  .catalog-pane__items {
    max-width: 640px;
    margin: 0 auto;
  }

  .catalog-pane-body {
    display: -ms-grid !important;
    display: grid !important;
    margin: 15px auto 29px auto;
    max-width: 654px;
  }

  .catalog-pane-filter {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 8px;
    max-width: 640px;
    margin: 28px auto 0 auto;
  }

  .catalog-pane-filter__item {
    background: #ffffff;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    width: 100px;
    height: 25px;
  }

  .catalog-pane-filter__item a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    line-height: 12px;
    color: #000000;
  }

  .catalog-pane__title {
    display: block !important;
    font-weight: 800;
    font-size: 24px;
    line-height: 25px;
    max-width: 640px;
    margin: 0 auto 0 auto;
  }

  .catalog__title {
    display: none;
  }

  .tabs__btn {
    font-size: 16px;
    line-height: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    width: 100%;
  }

  .tabs__nav {
    position: absolute;
    padding: 12px 24px;
    width: 476px;
    z-index: 10;
    left: 0;
    top: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }

  .catalog-body {
    display: none;
  }

  .catalog-pane-item-big__title {
    font-size: 20px;
    line-height: 21px;
  }

  .catalog-pane-item-big__btn {
    width: 188px;
    height: 28px;
  }

  .catalog-pane-item-big__btn a {
    font-size: 14px;
    line-height: 14px;
  }

  .catalog-pane-item {
    min-height: 280px;
  }

  .catalog-pane-item__img img {
    max-width: 208px;
    height: 150px;
  }

  .catalog-pane-item__btn {
    height: 28px !important;
  }

  .catalog-pane-item__price {
    font-size: 20px;
    line-height: 21px;
  }

  .catalog-pane-item-big__img img {
    max-width: 208px;
    height: 150px;
  }

  .catalog-pane-item__title {
    font-size: 14px;
    line-height: 14px;
  }

  .catalog-pane-item-big__text {
    padding: 30px 0 46px 0;
    font-size: 12px;
    line-height: 12px;
  }

  .catalog-pane-item-big__content {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .catalog {
    padding-top: 50px;
  }

  .catalog__nav-m {
    right: 0;
  }

  .catalog-pane__items {
    gap: 8px;
    grid-template: auto/repeat(auto-fit, minmax(160px, 1fr));
  }

  .catalog-pane-item__img img {
    max-width: 160px;
    height: 125px;
  }

  .catalog-pane-item-big__title {
    font-size: 16px;
    line-height: 17px;
  }

  .catalog-pane-filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .catalog-pane-filter__item {
    width: 70px;
  }

  .catalog-pane-item-big__text {
    padding: 20px 0 10px 0;
    font-size: 8px;
    line-height: 8px;
  }

  .catalog-pane-item-big__btn {
    width: 148px;
    height: 22px;
  }

  .catalog-pane-item-big__btn a {
    font-size: 10px;
    line-height: 10px;
  }

  .catalog-pane-item {
    min-height: 220px;
  }

  .catalog-pane-item__btn {
    height: 22px !important;
  }

  .catalog-pane-item__price {
    font-size: 16px;
    line-height: 17px;
  }

  .catalog-pane-item-big__img img {
    max-width: 160px;
    height: 125px;
  }

  .catalog-pane-item__title {
    font-size: 10px;
    line-height: 10px;
  }

  .tabs__nav {
    width: 329px;
  }
}
.catalog-pane__title {
  display: none;
}

.catalog-pane-body {
  display: none;
}

.catalog-pane-filter {
  display: none;
}

/*---------------------------New page-------------------------------------------------*/
/*---------------------------basket--------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.form_radio_btn {
  display: inline-block;
  margin-right: 10px;
}

.form_radio_btn input[type=radio] {
  display: none;
}

.form_radio_btn label {
  display: inline-block;
  cursor: pointer;
  padding: 15px 15px;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 15px;
  max-width: 330px;
  border: 1px solid #c4c4c4;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.form_radio_btn img {
  margin-right: 35px;
}

.form_radio_btns {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.form_radio_btn input[type=radio]:checked + label {
  background: #a9d992;
  border: 1px solid #a9d992;
}

#highload1 {
  display: none;
}

#highload1 + .lb1,
#highload1 + .lb1::before,
#highload1 + .lb1::after {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#highload1 + .lb1 {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 52px;
  border-radius: 43px;
  cursor: pointer;
}

#highload1 + .lb1::before {
  display: block;
  content: attr(data-offlabel);
  position: absolute;
  top: 18px;
  right: 10px;
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
}

#highload1 + .lb1::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 44px;
  height: 44px;
  background-color: white;
}

#highload1:checked + .lb1::before {
  content: attr(data-onlabel);
  left: 16px;
  right: auto;
  color: #fff;
}

#highload1:checked + .lb1::after {
  left: 52px;
  background-color: #f7f7f7;
}

#highload1 + .lb1 {
  background-color: #ccc;
}

#highload1:checked + .lb1 {
  background: #a9d992;
}

#highload1:checked + .lb1::before {
  color: #fff;
}

.__select {
  position: relative;
  height: 100%;
  width: 100%;
}
.__select[data-state=active] .__select__title::before {
  -webkit-transform: translate(-3px, -50%) rotate(-45deg);
      -ms-transform: translate(-3px, -50%) rotate(-45deg);
          transform: translate(-3px, -50%) rotate(-45deg);
}
.__select[data-state=active] .__select__title::after {
  -webkit-transform: translate(3px, -50%) rotate(45deg);
      -ms-transform: translate(3px, -50%) rotate(45deg);
          transform: translate(3px, -50%) rotate(45deg);
}
.__select[data-state=active] .__select__content {
  opacity: 1;
}
.__select[data-state=active] .__select__label + .__select__input + .__select__label {
  max-height: 40px;
  border-top-width: 1px;
}

.__select__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  cursor: pointer;
}

.reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  padding: 8px 16px;
  margin: 0 auto;
  margin-bottom: 10px;
  border: solid 1px #c7ccd1;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  font-weight: bold;
  background-color: #ffffff;
  color: #333333;
}
.reset:hover {
  color: #ffffff;
}

.__select__content::before {
  position: absolute;
  content: "";
  left: 22px;
  top: 0;
  width: calc(100% - 44px);
  height: 1px;
  background-color: #d9d9d9;
}

.__select__content {
  position: absolute;
  top: 70px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  border-top: 0px solid #fff !important;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  z-index: 8;
}

.__select__input {
  display: none;
}
.__select__input:checked + label {
  background-color: #dedede;
}
.__select__input:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}

.__select__label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  max-height: 0;
  padding: 0 16px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  overflow: hidden;
}

.basket__block {
  gap: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.basket__data {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.basket-data__title {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
}

.basket-data__input {
  width: 100%;
  height: 80px;
}

.basket-data__input:not(:last-child) {
  margin-bottom: 15px;
}

.basket-data__input input {
  padding: 25px;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input input::-webkit-input-placeholder {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input input::-moz-placeholder {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input input:-ms-input-placeholder {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input input::-ms-input-placeholder {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input input::placeholder {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__checkbox {
  font-size: 24px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.basket-data__checkbox label {
  margin-right: 16px;
}

.basket-data__subtitle {
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-data__subtitle span {
  font-weight: 400;
}

.basket-data__inputs {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  gap: 18px;
}

.basket-data__input1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}

.basket-data__input1 input {
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  font-size: 24px;
  line-height: 25px;
  width: 100%;
  height: 100%;
  padding: 28px 27px;
}

.basket-data__input1 input::-webkit-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input1 input::-moz-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input1 input:-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input1 input::-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input1 input::placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__input2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.basket-data__inputs-min {
  height: 80px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "m1 m1 m2 m3 m4 m4";
  gap: 18px;
}

.min-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: m1;
}

.min-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: m2;
}

.min-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: m3;
}

.min-4 {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
  grid-area: m4;
}

.basket-data__input-min input {
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
}

.basket-data__input-min input::-webkit-input-placeholder {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}

.basket-data__input-min input::-moz-placeholder {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}

.basket-data__input-min input:-ms-input-placeholder {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}

.basket-data__input-min input::-ms-input-placeholder {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}

.basket-data__input-min input::placeholder {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}

.basket-data__textarea {
  height: 180px;
  margin: 20px 0 40px 0;
}

.basket-data__textarea textarea {
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 18px 25px;
  font-size: 24px;
  line-height: 25px;
}

.basket-data__textarea textarea::-webkit-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__textarea textarea::-moz-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__textarea textarea:-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__textarea textarea::-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__textarea textarea::placeholder {
  font-size: 24px;
  line-height: 25px;
}

.basket-data__text {
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
  padding: 26px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000;
}

.basket-data__btn {
  height: 60px;
  width: 100%;
  margin: 25px 0 50px 0;
}

.basket-data__btn button {
  width: 100%;
  height: 100%;
  background: #a9d992;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 25px;
  color: #ffffff;
}

.basket-data__subtext {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.basket-data__subtext a {
  color: #000000;
  text-decoration: underline;
}

.basket__order {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.basket-order__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 20px;
}

.basket-order__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.basket-order__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
}

.basket-order-item__body {
  padding: 23px 0 11px 0;
}

.basket-order-item__title {
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
}

.basket-order-item__price {
  margin-top: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
}

.basket-order-item__gram {
  font-size: 16px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.15);
}

.basket-order-item__counter {
  right: 17px;
  bottom: 11px;
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 100px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basket-order-item__counter input {
  background-color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.basket-order__content {
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
  padding-top: 13px;
  margin-top: 80px;
}

.basket-order__text {
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-order__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
}

@media (max-width: 1280px) {
  .basket-data__input {
    height: 60px;
  }

  .basket-data__input input {
    font-size: 20px;
    line-height: 20px;
  }

  .form_radio_btn label {
    padding: 2px 15px;
    font-size: 20px;
    line-height: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #highload1 + .lb1 {
    height: 46px;
    width: 88px;
  }

  #highload1 + .lb1::after {
    width: 38px;
    height: 38px;
  }

  #highload1:checked + .lb1::after {
    left: 46px;
  }

  #highload2 + .lb1 {
    height: 46px;
    width: 88px;
  }

  #highload2 + .lb1::after {
    width: 38px;
    height: 38px;
  }

  #highload2:checked + .lb1::after {
    left: 46px;
  }

  .basket-data__checkbox {
    font-size: 20px;
    line-height: 20px;
  }

  .basket-data__title {
    font-size: 32px;
    line-height: 33px;
  }

  .basket-data__subtitle {
    font-size: 20px;
    line-height: 21px;
  }

  .basket-data__inputs {
    height: 60px;
    font-size: 20px;
    line-height: 20px;
  }

  .basket-data__input1 input {
    padding: 18px;
  }

  .basket-data__inputs-min {
    height: 60px;
    gap: 10px;
  }

  .basket-data__textarea {
    height: 140px;
    font-size: 20px;
    line-height: 20px;
  }

  .basket-data__text {
    font-size: 20px;
    line-height: 21px;
  }

  .basket-data__btn {
    height: 50px;
    margin: 20px 0 14px 0;
  }

  .basket-data__btn button {
    font-size: 20px;
    line-height: 20px;
  }

  .basket-order__item {
    height: 100px;
  }

  .basket-order-item__body {
    padding: 13px 0;
  }

  .basket-order-item__title {
    font-size: 16px;
    line-height: 17px;
  }

  .basket-order-item__price {
    font-size: 16px;
    line-height: 17px;
  }

  .basket-order-item__img img {
    max-width: 92px;
  }

  .basket__block {
    gap: 50px;
  }
}
@media (max-width: 960px) {
  .basket__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 532px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .basket-order__title {
    font-size: 24px;
    line-height: 25px;
  }

  .basket-order__item {
    height: 80px;
  }

  .basket-order-item__img img {
    max-width: 74px;
  }

  .basket-order-item__title {
    font-weight: 14px;
    line-height: 15px;
  }

  .basket-order-item__price {
    font-size: 14px;
    line-height: 15px;
    margin-top: 15px;
    margin-right: 100px;
  }

  .basket-order-item__counter {
    width: 80px;
    height: 24px;
    right: 10px;
    bottom: 8px;
  }

  .basket-order__content {
    display: none !important;
  }

  .basket-order__content-lock {
    display: block !important;
  }

  .basket-order__price {
    display: none !important;
  }

  .basket-order__price-lock {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .basket-data__title {
    font-size: 24px;
    line-height: 25px;
  }

  .basket-data__input {
    height: 50px;
  }

  .basket-data__input input {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__input input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__input input::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__input input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__input input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__input input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .form_radio_btn label {
    width: 160px;
    height: 50px;
    font-size: 14px;
    line-height: 14px;
  }

  .form_radio_btn img {
    max-width: 27px;
    margin-right: 15px;
  }

  .form_radio_btns {
    gap: 8px;
  }

  .form_radio_btn {
    margin: 0;
  }

  ._container {
    padding: 0 25px;
  }

  #highload1 + .lb1 {
    width: 58px;
    height: 30px;
  }

  #highload1 + .lb1::after {
    width: 24px;
    height: 24px;
  }

  #highload1:checked + .lb1::after {
    left: 31px;
  }

  #highload1 + .lb1::after {
    top: 3px;
    left: 3px;
  }

  .basket-data__checkbox {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__subtitle {
    font-size: 20px;
    line-height: 21px;
  }

  .basket-data__inputs {
    height: 50px;
  }

  .basket-data__inputs input {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__subtitle2 {
    display: none;
  }

  .basket-data__subtitle2-lock {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .basket-data__subtitle2-lock a {
    position: absolute;
    right: 0;
    top: 0;
  }

  .basket-data__input-min input {
    font-size: 12px;
    line-height: 12px;
  }

  .basket-data__input-min input::-webkit-input-placeholder {
    font-size: 10px;
    line-height: 10px;
  }

  .basket-data__input-min input::-moz-placeholder {
    font-size: 10px;
    line-height: 10px;
  }

  .basket-data__input-min input:-ms-input-placeholder {
    font-size: 10px;
    line-height: 10px;
  }

  .basket-data__input-min input::-ms-input-placeholder {
    font-size: 10px;
    line-height: 10px;
  }

  .basket-data__input-min input::placeholder {
    font-size: 10px;
    line-height: 10px;
  }

  .basket-data__inputs-min {
    gap: 5px;
    height: 50px;
  }

  .basket-data__textarea textarea {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea textarea::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea textarea:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea textarea::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea textarea::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .basket-data__textarea {
    height: 90px;
  }

  .basket-data__text {
    font-size: 16px;
    line-height: 17px;
    border: 0px;
  }

  .basket-order__content {
    margin-top: 0;
  }

  .basket {
    padding-bottom: 150px;
  }
}
.basket-data__subtitle2 {
  cursor: pointer;
}

.basket-data__subtitle2-block {
  display: none;
}

.basket-data__subtitle2-block.active {
  display: block;
  margin-bottom: 35px;
  margin-top: 25px;
}

.basket-data__subtitle2-lock {
  display: none;
}

.basket-order__content-lock {
  display: none;
}

.basket-order__price-lock {
  display: none;
}

/*---------------------------New page-------------------------------------------------*/
/*---------------------------cabinet--------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.form_radio_group {
  overflow: hidden;
}

.form_radio_group-item {
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  height: 75px;
  width: 100%;
  margin-bottom: 15px;
}

.form_radio_group input[type=radio] {
  display: none;
}

.form_radio_group label {
  cursor: pointer;
  padding: 29px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  width: 100%;
  height: 100%;
}

.form_radio_group-item span {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #e5e5e5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.form_radio_group input[type=radio]:checked + label span {
  background-color: #a9d992;
}

.cabinet__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 135px;
}

.cabinet__data {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.cabinet-data__title {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
}

.cabinet-data__input {
  height: 80px;
  position: relative;
}

.cabinet-data__input:not(:last-child) {
  margin-bottom: 15px;
}

.cabinet-data__input input {
  width: 100%;
  height: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  font-size: 24px;
  line-height: 25px;
  padding: 25px 25px 0 25px;
}

.cabinet-data__title2 {
  margin-top: 75px;
}

.cabinet-data__text {
  font-weight: 800;
  font-size: 16px;
  line-height: 17px;
  left: 25px;
  top: 17px;
  position: absolute;
}

.cabinet-data__input img {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 36px;
  position: absolute;
}

.cabinet-data__address-add {
  height: 75px;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
}

.cabinet-data__address-add a {
  font-size: 20px;
  line-height: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.15);
}

.cabinet-data__btn {
  margin-top: 43px;
  width: 100%;
  height: 75px;
}

.cabinet-data__btn button {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(210, 71, 32, 0.5);
  border-radius: 15px;
}

.cabinet-data__btn:hover button {
  background: #d24720;
}

.cabinet-order {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.cabinet-order__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.cabinet-order__item {
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  padding: 24px 18px;
}

.cabinet-order__item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cabinet-order__item-title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 21px;
}

.cabinet-order__item-text {
  font-size: 20px;
  line-height: 20px;
}

.cabinet-order__item-status {
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
  margin-bottom: 16px;
}

.o-item-1__status {
  color: #eaab06;
}

.cabinet-order__item-price {
  font-size: 20px;
  line-height: 20px;
}

.o-item-1__subtext {
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.o-item-1__items {
  padding: 29px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.o-item-2__status {
  color: #a9d992;
}

.o-item-3__status {
  color: #d24720;
}

.cabinet-order__btn {
  height: 75px;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  margin-top: 15px;
}

.cabinet-order__btn a {
  font-size: 20px;
  line-height: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 1280px) {
  .cabinet__block {
    gap: 90px;
  }
}
@media (max-width: 960px) {
  .cabinet__block {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 532px;
    margin: 0 auto;
  }

  .cabinet-data__title {
    font-size: 24px;
    line-height: 25px;
  }

  .cabinet-data__input {
    height: 50px;
  }

  .cabinet-data__input input {
    font-size: 16px;
    line-height: 16px;
    padding: 16px 15px 0 15px;
  }

  .cabinet-data__text {
    left: 16px;
    top: 10px;
  }

  .cabinet-data__input img {
    max-width: 25px;
  }

  .cabinet-data__title2 {
    margin-top: 40px;
  }

  .form_radio_group label {
    padding: 18px 17px;
    font-size: 16px;
    line-height: 16px;
  }

  .form_radio_group-item {
    height: 50px;
  }

  .form_radio_group-item span {
    width: 24px;
    height: 24px;
  }

  .form_radio_group-item img {
    max-width: 25px;
  }

  .cabinet-data__address-add a {
    font-size: 16px;
    line-height: 16px;
  }

  .cabinet-data__address-add {
    height: 50px;
  }

  .cabinet-data__btn {
    display: none;
  }

  .cabinet-data__btn-lock {
    display: block !important;
  }

  .o-item-1__subbtn {
    font-size: 16px;
    line-height: 16px;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    margin-top: 15px;
  }

  .o-item-1__items {
    display: none;
  }

  .o-item-1__items.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cabinet-order__item-title {
    font-size: 16px;
    line-height: 17px;
  }

  .cabinet-order__item-text {
    font-size: 16px;
    line-height: 16px;
  }

  .cabinet-order__item-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cabinet-order__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
  }

  .cabinet-order__item-status {
    margin: 0;
    font-size: 16px;
    line-height: 17px;
  }

  .cabinet-order__item-price {
    font-size: 16px;
    line-height: 16px;
  }

  .o-item-1__subtext {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px 0;
  }

  .cabinet-order__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .cabinet-order__btn {
    height: 50px;
  }

  .cabinet-data__btn-lock {
    height: 50px;
  }

  .cabinet-data__btn-lock button {
    font-size: 16px;
    line-height: 16px;
  }

  .cabinet {
    padding-bottom: 124px;
  }
}
.cabinet-data__btn-lock {
  display: none;
}

/*---------------------------New page-------------------------------------------------*/
/*-----------------------------order--------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.order__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 134px;
}

.order__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.order__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 52px;
}

.order__subtitle {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 30px;
}

.order__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.order__item {
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 12px;
}

.order-item__img {
  margin-right: 16px;
}

.order-item__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding: 15px 28px 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-item__title {
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
  margin-bottom: 22px;
}

.order-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
}

.order-item__gramm {
  font-size: 16px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.15);
}

.order-item__basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.order__btn {
  margin-top: 30px;
  background: #a9d992;
  border-radius: 15px;
  height: 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.order__btn:hover {
  background: rgba(169, 217, 146, 0.8);
}

.order__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
}

.order__btn svg {
  margin-right: 18px;
}

.order__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  max-width: 446px;
}

.order-body__status {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  text-align: right;
  color: #a9d992;
  margin-bottom: 50px;
}

.order-body__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 30px;
}

.order-body__subtitle {
  font-size: 20px;
  line-height: 21px;
  margin-bottom: 55px;
}

.order-body__subtitle span {
  font-weight: 800;
}

.order-body__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 52px;
}

.order-body__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  line-height: 20px;
}

.order-body__text span {
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
}

.order-body__btn {
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  height: 95px;
  max-width: 446px;
}

.order-body__btn a {
  padding: 0 17px;
  font-size: 20px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
}

.order-body__btn svg {
  margin-right: 35px;
}

@media (max-width: 1280px) {
  .order__block {
    gap: 50px;
  }
}
@media (max-width: 960px) {
  .order__block {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 532px;
    margin: 0 auto;
    position: relative;
  }

  .order__back {
    left: -54px;
    top: 7px;
    position: absolute;
  }

  .order-body__btn {
    margin: 0 auto;
  }

  .order-body__status {
    display: none;
  }

  .order__body {
    max-width: 532px;
  }

  .order__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 40px;
  }

  .order-body__status-lock {
    text-align: left;
    font-size: 24px;
    line-height: 25px;
    display: block !important;
    margin-bottom: 0;
  }
}
.order-body__status-lock {
  display: none;
}

@media (max-width: 767px) {
  .crumbs {
    margin-top: 40px;
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .order__back {
    left: -24px;
  }

  .order__back svg {
    width: 16px;
  }

  .crumbs {
    margin-top: 0px;
    opacity: 0;
  }

  .order__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .order__subtitle {
    display: none;
  }

  .order__item {
    height: 80px;
  }

  .order-item__img img {
    max-width: 70px;
  }

  .order-item__title {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 15px;
  }

  .order-item__price {
    font-size: 14px;
    line-height: 15px;
  }

  .order-item__gramm {
    font-size: 12px;
    line-height: 12px;
  }

  .order-item__body {
    padding: 5px;
  }

  .order__btn {
    height: 40px;
    margin-top: 25px;
  }

  .order__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .order__btn svg {
    width: 22px;
    height: 18px;
    margin-right: 10px;
  }

  .order__block {
    gap: 40px;
  }

  .order-body__title {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .order-body__subtitle {
    font-size: 16px;
    padding-bottom: 15px;
    line-height: 17px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .order-body__subtitle span {
    font-size: 16px;
    line-height: 17px;
  }

  .order-body__text {
    font-size: 16px;
    line-height: 16px;
  }

  .order-body__text span {
    font-size: 16px;
    line-height: 16px;
  }

  .order-body__btn {
    height: 80px;
  }

  .order-body__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .order-body__btn svg {
    margin-right: 28px;
  }

  .order {
    padding-bottom: 60px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*-----------------------------map----------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
@media (max-width: 767px) {
  .map-rhythm__body {
    padding-top: 50px !important;
  }

  .map-rhythm__slider {
    margin-top: -20px;
  }
}
.map {
  padding-top: 100px;
}

.map__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
  margin-bottom: 25px;
}

.map-body__header {
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map-body__text {
  height: 75px;
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 45px;
  border-right: 1px solid #000000;
  margin-right: 45px;
}

.map-body__text a {
  color: #000000;
}

.map-body__text svg {
  margin-right: 19px;
}

.map-body__list {
  margin-right: 43px;
  font-size: 24px;
  line-height: 25px;
}

.map-body__list a {
  color: #000000;
}

.map-body__list svg {
  margin-right: 15px;
}

.map-body__spisok {
  width: 330px;
  height: 60px;
}

.map-body__title {
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
}

.map-body__content {
  background: rgb(238, 238, 238);
  border-radius: 15px;
}

.map-body__input {
  width: 100%;
  height: 60px;
  max-width: 562px;
  margin-left: 18px;
  position: relative;
}

.map-body__input svg {
  position: absolute;
  left: 32px;
  top: 13px;
}

.map-body__input input {
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  font-size: 22px;
  padding: 0 32px 0 70px;
}

.map-body__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.map-body__logo {
  border: 1px solid #000000;
  border-radius: 15px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
  margin-right: 18px;
}

.map__content {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.map__subtitle {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 30px;
}

.map__text {
  font-size: 16px;
  margin-bottom: 30px;
}

.map__text span {
  font-size: 36px;
  line-height: 37px;
}

.map__email {
  margin-bottom: 30px;
}

.map__email a {
  font-size: 36px;
  line-height: 37px;
  color: #000000;
}

.map2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  line-height: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000000;
}

.map2__title1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 15%;
          flex: 0 1 15%;
}

.map2__title2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}

.map2__title3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.map2__title4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.map2__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 40px 0;
  font-size: 24px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map2__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 15%;
          flex: 0 1 15%;
}

.map2__logo svg {
  max-width: 152px;
}

.map2__address {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}

.map2__metro {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.map2__metro svg {
  margin-right: 18px;
}

.map2__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

@media (max-width: 1450px) {
  .map-body__logo svg {
    width: 155px;
  }

  .map-body__logo img {
    width: 155px;
  }
}
@media (max-width: 1280px) {
  .map-body__text {
    padding-right: 10px;
    margin-right: 10px;
    font-size: 20px;
    line-height: 21px;
    white-space: nowrap;
  }

  .map-body__list {
    white-space: nowrap;
    margin-right: 10px;
  }

  .map-body__logo svg {
    width: 104px;
  }

  .map-body__logo {
    height: 40px;
    padding: 0 25px;
  }

  .map-body__logo img {
    width: 104px;
  }

  .basket-data__checkbox label {
    margin: 0 !important;
  }

  .map__content {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .map-body__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .map-body__text {
    display: none;
  }

  .map-body__list {
    display: none;
  }

  .map-body__btn {
    display: none;
  }

  .map-body__spisok-lock2 {
    display: none;
  }

  .map-body__spisok-lock {
    display: block !important;
  }

  .map-body__btn-lock {
    display: block !important;
  }

  .map-body__list-lock {
    display: block !important;
    font-size: 16px;
    line-height: 17px;
  }

  .map-body__text-lock {
    height: 35px;
    font-size: 16px;
    line-height: 17px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .map-body-lock2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .map-body-lock {
    margin: 10px 0 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .map-body__footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .map__title {
    font-size: 24px;
    line-height: 25px;
  }

  .map {
    padding-top: 60px;
  }

  .map-body__spisok {
    width: 188px;
    height: 30px;
    margin-bottom: 18px;
  }

  .map-body-lock {
    position: absolute;
    right: 20px;
    top: 78px;
    max-width: 130px;
  }

  .map-body__content {
    top: 35px;
  }

  .map-body-lock2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }

  .map-body__logo {
    height: 26px;
    padding: 0 15px;
  }

  .map-body__logo svg {
    max-width: 70px;
  }

  .map-body__logo img {
    max-width: 70px;
  }

  #highload1 + .lb1 {
    min-width: 58px;
  }

  .map-body__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .map-body__input {
    height: 30px;
    margin: 0 0 10px 0;
  }

  .map-body__input input {
    font-size: 14px;
    padding-left: 32px;
  }

  .map-body__input svg {
    max-width: 16px;
    max-height: 16px;
    top: 6px;
    left: 15px;
  }

  .map-body__title {
    padding: 0 15px;
    font-size: 14px;
    line-height: 14px;
  }

  .ymaps-2-1-79-map {
    height: 500px !important;
  }

  .map__subtitle {
    font-size: 20px;
    line-height: 21px;
    margin-bottom: 15px;
  }

  .map__text span {
    font-size: 20px;
  }

  .map__text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .map__email {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .map__content {
    margin-top: -120px;
  }
}
.map-body__spisok-lock {
  display: none;
}

.map-body__btn-lock {
  display: none;
}

.map-body__list-lock {
  display: none;
}

.map-body__text-lock {
  display: none;
}

/*---------------------------New page-------------------------------------------------*/
/*-----------------------------club---------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.club-rhythm__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.club-rhythm__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.club-rhythm__slider img {
  padding-top: 36px;
  padding-left: 40px;
}

.club-rhythm {
  min-height: 724px;
}

/*-----------------------------info---------------------------------------------------*/
.info {
  margin-top: 100px;
}

.info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

.info__title {
  margin-bottom: 60px;
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
}

.info__text {
  font-size: 24px;
  line-height: 25px;
}

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

.info__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}

@media (max-width: 1280px) {
  .club-rhythm__slider img {
    width: 442.31px;
    height: 436px;
  }

  .club-rhythm {
    min-height: 633px;
  }
}
@media (max-width: 960px) {
  .club-rhythm__slider img {
    width: 306.37px;
    height: 302px;
  }

  .club-rhythm {
    min-height: 480px;
  }

  .info__title {
    margin-bottom: 34px;
    font-size: 36px;
    line-height: 37px;
  }

  .info__text {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .info__title {
    margin-bottom: 34px;
    font-size: 24px;
    line-height: 25px;
  }

  .info__text {
    font-size: 16px;
    line-height: 16px;
  }

  .info__img {
    display: none;
  }

  .info__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .info {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
/*-----------------------------benefits---------------------------------------------------*/
.benefits {
  padding-bottom: 200px;
}

.benefits__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 30px;
}

.benefits__item {
  background: #a9d992;
  border-radius: 15px;
  height: 200px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.benefits__item svg {
  position: absolute;
  right: -30px;
  bottom: -20px;
}

.benefits__text {
  font-size: 24px;
  line-height: 25px;
  color: #ffffff;
  max-width: 280px;
}

.benefits__text span {
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .benefits {
    padding-bottom: 150px;
  }

  .benefits__text {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
  }

  .benefits__item {
    height: 150px;
    padding-top: 10px;
  }
}
@media (max-width: 960px) {
  .benefits {
    padding-bottom: 100px;
  }

  .benefits__title {
    font-size: 36px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .benefits {
    padding-bottom: 80px;
  }

  .benefits__text {
    font-size: 14px;
    line-height: 14px;
    text-align: center;
  }

  .benefits__text span {
    font-size: 48px;
    line-height: 50px;
  }
}
/*-----------------------------application---------------------------------------------------*/
.application {
  padding-bottom: 200px;
}

.application__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.application__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
}

.application__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 60px;
}

.application__text {
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 25px;
}

.application__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.application__img {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}

@media (max-width: 960px) {
  .application__title {
    font-size: 36px;
    line-height: 37px;
    margin-bottom: 40px;
  }

  .application__text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 840px) {
  .application__img {
    display: none;
  }

  .application__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
@media (max-width: 767px) {
  .application__title {
    font-size: 20px;
    line-height: 21px;
    margin-bottom: 40px;
  }

  .application__text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 16px;
  }

  .application__links img {
    max-width: 150px;
  }
}
/*-----------------------------stock---------------------------------------------------*/
.stock__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
}

.stock__items {
  gap: 18px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "si-1 si-2" "si-3 si-3" "si-4 si-5";
}

.stock__item {
  border-radius: 15px;
  overflow: hidden;
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stock-item {
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
}

.stock__link {
  display: block;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  margin-top: 60px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: rgba(0, 0, 0, 0.5);
}

.stock-item__img img {
  width: 300px;
}

.stock-item__body {
  padding-top: 45px;
}

.stock-item__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  color: #000000;
}

.stock-item__text {
  margin-top: 50px;
  font-size: 24px;
  line-height: 25px;
  color: #000000;
}

.si-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  background-color: #a9d992;
  grid-area: si-1;
}

.si-1 img {
  margin-top: -50px;
}

.si-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  background-color: #92c0e9;
  grid-area: si-2;
}

.si-3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  background-color: #a3a3e0;
  grid-area: si-3;
}

.si-4 {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  background-color: #a9d992;
  grid-area: si-4;
}

.si-4 img {
  margin-top: -50px;
}

.si-5 {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  background-color: #92c0e9;
  grid-area: si-5;
}

@media (max-width: 1280px) {
  .si-1 img {
    margin-top: -30px;
  }

  .stock__item {
    height: 200px;
  }

  .si-4 {
    display: none;
  }

  .si-5 {
    display: none;
  }

  .stock-item__title {
    font-weight: 800;
    font-size: 24px;
    line-height: 25px;
  }

  .stock-item__text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 16px;
  }

  .si-2 img {
    margin-top: 50px;
  }

  .stock-item__img img {
    width: 150px;
  }

  .stock-item__body {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .stock__item {
    height: 230px;
  }

  .stock-item__title {
    font-weight: 800;
    font-size: 16px;
    line-height: 17px;
  }

  .stock-item__text {
    margin-top: 0px;
    font-size: 10px;
    line-height: 10px;
  }

  .stock__item {
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: space-between;
        -ms-flex-align: space-between;
            align-items: space-between;
  }

  .si-2 img {
    margin-top: 0px;
  }

  .stock-item__img {
    text-align: center;
  }

  .stock-item__img img {
    width: 130px;
  }

  .stock__link {
    font-size: 14px;
    line-height: 14px;
    padding-bottom: 80px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*-----------------------------cafe---------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.rent-rhythm {
  min-height: 724px;
}

.cafe {
  padding: 200px 0 100px 0;
}

.cafe__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.cafe__content:first-child {
  margin-bottom: 100px;
}

.cafe__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.cafe__title {
  font-weight: 800;
  margin-bottom: 45px;
  font-size: 48px;
  line-height: 50px;
}

.cafe__items {
  gap: 18px;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cafe__item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cafe-item__title {
  margin-bottom: 26px;
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
}

.cafe-item__text {
  font-size: 24px;
  line-height: 25px;
  text-align: center;
}

.cafe__text {
  font-size: 24px;
  line-height: 25px;
}

.cafe__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 40%;
}

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

@media (max-width: 1280px) {
  .cafe-item__title {
    font-size: 18px;
  }

  .cafe-item__text {
    font-size: 18px;
  }

  .cafe__title {
    font-size: 40px;
  }

  .cafe__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .cafe__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
  }

  .cafe-item__title {
    font-size: 14px;
    margin-bottom: 13px;
  }

  .cafe-item__text {
    font-size: 14px;
  }

  .cafe__title {
    font-size: 32px;
  }

  .cafe__text {
    font-size: 14px;
  }

  .cafe__img {
    padding-bottom: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }

  .cafe__item {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .cafe {
    padding: 50px 0;
  }

  .cafe__content:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 50px;
  }

  .cafe__content:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cafe__content {
    gap: 10px;
  }

  .cafe-item__title {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .cafe-item__text {
    font-size: 12px;
  }

  .cafe__title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .cafe__text {
    font-size: 12px;
  }

  .cafe__img {
    padding-bottom: 60%;
  }

  .cafe__item {
    height: 70px;
  }

  .cafe__items {
    margin-bottom: 15px;
  }
}
/*-----------------------------qualities---------------------------------------------------*/
.rent-taste {
  margin-bottom: 100px;
}

.qualities {
  padding: 0 0 100px 0;
}

.qualities__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.qualities__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.qualities__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 41px;
  margin-bottom: 15px;
}

.qualities__text {
  font-size: 24px;
  line-height: 25px;
}

@media (max-width: 960px) {
  .qualities__title {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .qualities__text {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .rent-taste {
    margin-bottom: 35px;
  }

  .qualities__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .qualities {
    padding-bottom: 50px;
  }
}
/*-----------------------------request---------------------------------------------------*/
.request__block {
  background: rgba(238, 238, 238, 0.5);
  border-radius: 15px;
  max-width: 910px;
  margin: 0 auto;
}

.request__title {
  padding: 46px 0;
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  text-align: center;
}

.request__form {
  padding: 0 116px 69px 116px;
}

.request__form input {
  background: #ffffff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 37px;
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 25px;
}

.request__form input::-webkit-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__form input::-moz-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__form input:-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__form input::-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__form input::placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__input {
  height: 80px;
  margin-bottom: 18px;
}

.request__form div:nth-child(3) {
  margin-bottom: 36px;
}

.request__inputs {
  height: 80px;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.request__inputs input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.file__input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.file__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #000000;
  opacity: 0.5;
}

.file__label img {
  margin-right: 11px;
}

.request__btn {
  height: 80px;
  width: 100%;
}

.request__btn button {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #a9d992;
  border-radius: 15px;
  font-size: 24px;
  line-height: 25px;
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.request__btn button:hover {
  background: rgba(169, 217, 146, 0.8);
}

.request__input-file {
  margin-bottom: 15px;
}

@media (max-width: 1280px) {
  .request__block {
    max-width: 790px;
  }

  .request__btn {
    height: 60px;
  }

  .request__inputs {
    height: 60px;
  }

  .request__input {
    height: 60px;
  }

  .request__form {
    padding: 0 80px 54px 80px;
  }

  .request__form input {
    font-size: 20px;
    line-height: 20px;
  }

  .request__form input::-webkit-input-placeholder {
    font-size: 20px;
    line-height: 20px;
  }

  .request__form input::-moz-placeholder {
    font-size: 20px;
    line-height: 20px;
  }

  .request__form input:-ms-input-placeholder {
    font-size: 20px;
    line-height: 20px;
  }

  .request__form input::-ms-input-placeholder {
    font-size: 20px;
    line-height: 20px;
  }

  .request__form input::placeholder {
    font-size: 20px;
    line-height: 20px;
  }

  .file__label {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 960px) {
  .request__title {
    font-size: 24px;
    line-height: 25px;
    padding: 37px 0 27px 0;
  }

  .request__block {
    max-width: 640px;
  }

  .request__btn {
    height: 50px;
  }

  .request__inputs {
    height: 50px;
  }

  .request__input {
    height: 50px;
  }

  .request__form {
    padding: 0 54px 34px 54px;
  }

  .request__form input {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .file__label {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .request__form div:nth-child(3) {
    margin-bottom: 20px;
  }

  .request__form {
    padding: 0 39px 31px 39px;
  }

  .request__block {
    margin: 0 -5px;
  }

  .request__input {
    margin-bottom: 10px;
  }

  .request__inputs {
    margin-bottom: 10px;
  }

  .request__btn {
    height: 40px;
  }

  .request__inputs {
    height: 40px;
    gap: 10px;
  }

  .request__input {
    height: 40px;
  }

  .request__form input {
    padding-left: 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .request__form input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .file__label {
    font-size: 16px;
    line-height: 16px;
  }

  .request__btn button {
    font-size: 16px;
    line-height: 16px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*-----------------------------supply---------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.supply-benefits {
  padding: 200px 0;
}

.supply-cafe__img {
  padding-bottom: 25%;
}

.supply-items {
  margin: 200px 0 150px 0;
}

.supply-items__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.supply-items__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 45px;
}

@media (max-width: 960px) {
  .supply-items__items div:last-child {
    display: none;
  }

  .supply-items__title {
    font-size: 36px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .supply-items__title {
    font-size: 24px;
    line-height: 25px;
  }

  .supply-items__items div:nth-child(3) {
    display: none;
  }

  .supply-items {
    margin: 50px 0;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*--------------------------franchise-------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.franchise {
  padding-top: 90px;
  padding-bottom: 200px;
}

.franchise__blockk {
  background: #a9d992;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  width: 48px;
  height: 48px;
  position: absolute;
  top: -17px;
  border-radius: 50%;
}

.franchise__title {
  margin-bottom: 220px;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
}

.franchise__line {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(89.57%, #a9d992), color-stop(97.78%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, #a9d992 89.57%, rgba(255, 255, 255, 0) 97.78%);
  background: linear-gradient(90deg, #a9d992 89.57%, rgba(255, 255, 255, 0) 97.78%);
  width: 1352px;
  height: 14px;
}

.franchise__block-1 {
  left: -22px;
}

.franchise__text-1 {
  top: -160px;
}

.franchise__text {
  min-width: 220px;
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 28px;
}

.franchise__text span {
  font-weight: 700;
}

.franchise__block-2 {
  left: 210px;
}

.franchise__text-2 {
  bottom: -156px;
}

.franchise__block-3 {
  left: 442px;
}

.franchise__text-3 {
  top: -160px;
}

.franchise__block-4 {
  left: 674px;
}

.franchise__text-4 {
  bottom: -136px;
}

.franchise__block-5 {
  right: 398px;
}

.franchise__text-5 {
  top: -180px;
}

.franchise__block-6 {
  right: 166px;
}

.franchise__text-6 {
  bottom: -136px;
}

@media (max-width: 1280px) {
  .franchise__line {
    width: 929.87px;
    margin: 0 auto;
  }

  .franchise__block-1 {
    left: -20px;
  }

  .franchise__block-2 {
    left: 140px;
  }

  .franchise__block-3 {
    left: 300px;
  }

  .franchise__block-4 {
    left: 460px;
  }

  .franchise__block-5 {
    right: 276px;
  }

  .franchise__block-6 {
    right: 116px;
  }
}
@media (max-width: 960px) {
  .franchise__title {
    font-size: 36px;
    line-height: 37px;
  }
}
@media (max-width: 800px) {
  .franchise__title {
    font-size: 24px;
    line-height: 25px;
  }

  .franchise__block {
    overflow-x: scroll;
    overflow-y: visible;
    padding: 0 50px;
    height: 600px;
  }

  .info__items {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    max-width: 768px;
  }
}
/*--------------------------info-------------------------------------------------*/
.info__items {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.info__item {
  position: relative;
  background: #a9d992;
  border-radius: 15px;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 25% !important;
          flex: 0 1 25% !important;
  width: 214px;
  height: 328px;
}

.svg-one {
  position: absolute;
  right: -10px;
  bottom: 0;
}

.svg-two {
  position: absolute;
  right: 50%;
  bottom: 20px;
}

.info__text2 {
  font-size: 24px;
  color: #ffffff;
  margin-top: 35px;
  width: 100%;
  padding-left: 35px;
}

.info__text2 span {
  font-weight: 800;
  font-size: 40px;
  line-height: 41px;
}

.franchise-info {
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .franchise-info__body {
    overflow-x: scroll;
  }

  .info__items {
    width: 650px;
  }

  .info__item {
    min-width: 214px;
  }

  .franchise-info {
    margin-bottom: 50px;
  }
}
.info__subtitle {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/*--------------------------investment-------------------------------------------------*/
.investment__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.investment__btn {
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  color: black;
  font-size: 36px;
  line-height: 37px;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 10px;
}

.investment__btn_active {
  font-weight: 800;
  cursor: default;
  border-bottom: 5px solid #a9d992;
}

.investment__content {
  margin-top: 50px;
}

.investment__pane {
  display: none;
}

.investment {
  margin-bottom: 150px;
}

.investment__pane_show {
  display: block;
}

.investment-pane__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.investment__img {
  padding-bottom: 30%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-radius: 15px;
  overflow: hidden;
}

.investment-pane__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.investment-pane__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 46px;
}

.investment-pane__text {
  font-size: 24px;
}

.investment-pane__btn {
  height: 80px;
  max-width: 563px;
  margin-top: 50px;
}

.investment-pane__btn a {
  background: #a9d992;
  border-radius: 10px;
  font-size: 24px;
  line-height: 25px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.investment-pane__btn a:hover {
  background: rgba(169, 217, 146, 0.8235294118);
}

.investment-pane__items-1 {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.investment-pane__item-1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 33px;
  text-align: center;
  color: #000000;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.investment-pane__items-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.investment-pane__item-2 span {
  display: block;
  max-width: 230px;
  margin: 0 auto;
}

.investment-pane__item-2 {
  text-align: center;
  font-size: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

@media (max-width: 960px) {
  .investment-pane__title {
    font-size: 24px;
    line-height: 24px;
  }

  .investment-pane__text {
    font-size: 16px;
  }

  .investment-pane__btn {
    max-width: 262px;
    height: 40px;
  }

  .investment-pane__btn a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .investment {
    display: none;
  }

  .franchise {
    padding: 50px 0;
  }
}
/*--------------------------advantage-------------------------------------------------*/
.advantage {
  margin-bottom: 200px;
}

.advantage__subtitle {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
}

.advantage__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 33px;
  color: #ffffff;
}

.advantage__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.advantage__item {
  padding: 35px;
  background: #a9d992;
  border-radius: 15px;
  position: relative;
  min-height: 328px;
}

.advantage__item svg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.advantage__text {
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .advantage__text {
    font-size: 18px;
  }

  .advantage__title {
    font-size: 20px;
    line-height: 21px;
  }

  .advantage__item {
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .advantage__subtitle {
    font-size: 36px;
    line-height: 37px;
  }

  .advantage__text {
    font-size: 14px;
    line-height: 15px;
  }

  .advantage__title {
    font-size: 14px;
    line-height: 15px;
  }

  .advantage__item {
    padding: 15px;
    min-height: 180px;
  }
}
@media (max-width: 767px) {
  .advantage__subtitle {
    font-size: 36px;
    line-height: 37px;
  }

  .advantage__items {
    overflow-x: scroll;
  }

  .advantage__items2 {
    display: none;
  }

  .advantage {
    margin-bottom: 150px;
  }

  .advantage__item svg {
    position: absolute;
    right: -50px;
    bottom: -50px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*--------------------------franchise-------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.factory-rhythm__item img {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  margin-top: 121px;
}

.factory-rhythm__title {
  font-size: 80px;
  line-height: 83px;
}

@media (max-width: 1280px) {
  .factory-rhythm__item img {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    margin-top: 142px;
    width: 470px;
    height: 487px;
  }
}
@media (max-width: 960px) {
  .factory-rhythm__title {
    font-size: 48px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .factory-rhythm__title {
    font-size: 36px;
    line-height: 37px;
  }

  .factory-rhythm {
    margin-top: 42px;
  }

  .factory-rhythm__item img {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    margin-top: 183px;
    width: 350px;
    height: 363px;
  }

  .factory-rhythm {
    height: 480px;
  }

  .factory-rhythm__btn {
    position: absolute;
    bottom: 48px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*---------------------------New page-------------------------------------------------*/
/*----------------------------team----------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.cafe__items2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin-top: 55px;
  margin-bottom: 100px;
}

.cafe__item2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.taste__btn {
  border-radius: 15px;
  height: 80px;
  max-width: 446px;
  background: #ffffff;
  margin-bottom: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.taste__btn:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}

.taste__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 32px;
  line-height: 33px;
  color: #000000;
}

.team {
  padding: 200px 0;
}

.team__title {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
}

.team__slider {
  overflow: hidden;
}

.swiper-button-n {
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  position: absolute;
  width: 80px;
  height: 80px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-button-n path {
  fill: #808080;
}

.swiper-button-p path {
  fill: #808080;
}

.swiper-button-p {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 80px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team-item {
  padding: 0 76px;
}

.team-item__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100px;
          flex: 0 1 100px;
  min-width: 100px !important;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 18px;
}

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

.team-item__body {
  max-width: 1026px;
}

.team-item__text {
  font-size: 24px;
  line-height: 25px;
}

.team-item__name span {
  font-weight: 800;
}

.team-item__name {
  margin-top: 30px;
  font-size: 24px;
  line-height: 25px;
}

@media (max-width: 960px) {
  .team__title {
    font-size: 36px;
    line-height: 37px;
  }

  .team-item__text {
    font-size: 16px;
    line-height: 16px;
  }

  .team-item__name {
    font-size: 16px;
  }

  .swiper-button-n {
    width: 50px;
    height: 50px;
  }

  .swiper-button-p {
    width: 50px;
    height: 50px;
  }

  .swiper-button-n svg {
    width: 12px;
    height: 21px;
  }

  .swiper-button-p svg {
    width: 12px;
    height: 21px;
  }

  .team-item__img {
    min-width: 50px !important;
    height: 48px;
    width: 48px;
  }

  .team-item__img img {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 767px) {
  .taste__btn {
    position: relative;
    width: 216px;
    height: 40px;
  }

  .taste__btn a {
    font-size: 16px;
    line-height: 16px;
  }

  .team__title {
    font-size: 24px;
    line-height: 25px;
  }

  .team-item {
    padding: 0;
  }

  .swiper-button-n {
    display: none;
  }

  .swiper-button-p {
    display: none;
  }

  .team {
    padding: 80px 0;
  }

  .cafe__items2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .supply-cafe__img {
    padding-bottom: 60%;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*---------------------------provider-------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.provider-cafe__img img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 510px;
  left: 30px;
}

.provider-cafe__img {
  width: 100%;
}

.provider {
  padding-bottom: 200px;
}

.provider__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 15px;
}

.request__textarea {
  height: 115px;
  width: 100%;
  margin-bottom: 15px;
}

.request__textarea textarea {
  height: 100%;
  padding: 25px;
  padding-left: 37px;
  resize: none;
  font-size: 24px;
  line-height: 25px;
  width: 100%;
  border-radius: 15px;
}

.request__textarea textarea::-webkit-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__textarea textarea::-moz-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__textarea textarea:-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__textarea textarea::-ms-input-placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.request__textarea textarea::placeholder {
  font-size: 24px;
  line-height: 25px;
  opacity: 0.4;
}

.provider__text {
  font-size: 24px;
  line-height: 25px;
}

.provider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin-top: 45px;
}

.provider__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

@media (max-width: 1280px) {
  .provider__text {
    font-size: 20px;
    line-height: 20px;
  }

  .provider__title {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 15px;
  }
}
@media (max-width: 960px) {
  .provider__text {
    font-size: 16px;
    line-height: 16px;
  }

  .provider__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }

  .provider__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .provider__title {
    font-size: 36px;
    line-height: 37px;
    margin-bottom: 15px;
  }
}
@media (max-width: 727px) {
  .request__textarea {
    height: 180px;
    width: 100%;
    margin-bottom: 15px;
  }

  .request__textarea textarea {
    font-size: 16px;
    line-height: 16px;
    padding: 15px;
  }

  .request__textarea textarea::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
    opacity: 0.4;
  }

  .request__textarea textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
    opacity: 0.4;
  }

  .request__textarea textarea:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
    opacity: 0.4;
  }

  .request__textarea textarea::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
    opacity: 0.4;
  }

  .request__textarea textarea::placeholder {
    font-size: 16px;
    line-height: 16px;
    opacity: 0.4;
  }

  .provider__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .provider__items {
    margin-top: 35px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .provider__title {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .provider {
    padding-bottom: 80px;
  }
}
/*---------------------------New page-------------------------------------------------*/
/*-------------------------advertising------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.advertising__items {
  max-width: 1150px;
  gap: 18px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
}

.advertising {
  padding: 200px 0;
}

.advertising__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 40px;
}

@media (max-width: 1280px) {
  .advertising-rhythm__item img {
    width: 499px;
    height: 471px;
  }
}
@media (max-width: 960px) {
  .advertising-rhythm__item img {
    width: 271px;
    height: 256px;
  }

  .advertising {
    padding: 100px 0;
  }

  .advertising__title {
    font-size: 36px;
    line-height: 37px;
  }

  .advertising__item img {
    max-width: 100px;
  }

  .advertising__items {
    max-width: 532px;
    gap: 18px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media (max-width: 767px) {
  .advertising-rhythm__item img {
    width: 301px;
    height: 284px;
  }

  .advertising {
    padding: 0px 0 80px 0;
  }

  .advertising__title {
    font-size: 24px;
    line-height: 25px;
  }

  .advertising__item img {
    max-width: 90px;
  }

  .advertising__items {
    max-width: 532px;
    gap: 18px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }
}
/*---------------------------New page-------------------------------------------------*/
/*---------------------------politics-------------------------------------------------*/
/*---------------------------New page-------------------------------------------------*/
.politics__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 30px;
}

.politics__subtitle {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.politics__text p {
  font-size: 20px;
  line-height: 21px;
  display: block;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .politics__title {
    font-weight: 800;
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 30px;
  }

  .politics__subtitle {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .politics__text p {
    font-size: 14px;
    line-height: 16px;
    display: block;
    margin-bottom: 15px;
  }
}
.crumbs {
  margin-bottom: 15px;
}

.crumbs__text a {
  font-size: 20px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.3);
}

.header-menu-1 {
  cursor: pointer;
}

.header__address img {
  max-width: 15px;
  width: 12px;
}

.header__address {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__address:hover {
  font-weight: 800;
}

.header__input {
  margin-top: 5px;
}

.header__address {
  margin-top: 5px;
}

.header__user-block {
  margin-top: 10px;
}

.header__basket {
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.header__user {
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.user-block {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

.header {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.header.fixed {
  position: fixed;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

.header__sublist a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header__sublist a:hover {
  font-weight: 800;
}

.rhythm__slider {
  min-height: 724px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.rhythm__item-img img {
  margin-bottom: 100px;
  margin-right: 30px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.advertising {
  padding-top: 0;
}

.swiper-button-pre,
.swiper-button-nex {
  cursor: pointer;
}

@media (max-width: 1280px) {
  .rhythm__slider {
    min-height: 633px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .rhythm__item-img img {
    margin-bottom: 0px;
    margin-right: 0px;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    width: 400px;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .header__user {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    max-height: 20px;
  }

  .header__basket {
    max-height: 20px;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 0px solid rgba(0, 0, 0, 0);
  }
}
@media (max-width: 767px) {
  .header {
    max-height: 140px;
  }
}
@media (max-width: 640px) {
  .header {
    max-height: 91px;
  }
}
.address-block {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

.o-item-1__subbtn {
  display: none;
}

@media (max-width: 960px) {
  .o-item-1__subbtn {
    display: block;
  }
}
.order__item svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.order__item:hover path {
  fill: #a9d992;
}

.tabs-btn__block {
  display: none;
}

.tabs-btn__block.active {
  display: block;
  padding-left: 0px;
  margin: 10px 0;
}

.tabs__btn-h {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 8px 20px;
  margin-left: 20px;
  margin-bottom: 7px !important;
}

.tabs__btn-h:hover {
  background: rgba(169, 217, 146, 0.2);
  border-radius: 15px;
}

.tabs-btn__button {
  cursor: pointer;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 20px;
  padding-left: 40px;
  color: #000000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tabs-btn__button:hover {
  font-weight: 800;
}

.map-body__logo {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__logo path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__logo:hover {
  border: #a9d992 1px solid;
}
.map-body__logo:hover path {
  fill: #a9d992;
}

.map-body__logo.active {
  border: #a9d992 1px solid;
}
.map-body__logo.active path {
  fill: #a9d992;
}

.catalog-body {
  margin-top: 40px;
}

@media (max-width: 960px) {
  .tabs-btn__button {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px;
    line-height: 16px;
  }
}
.dish__block {
  margin-bottom: 80px;
}

.swiper-button-ne {
  top: calc(50% + 27px) !important;
  background-color: rgba(0, 0, 0, 0) !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.swiper-button-pr {
  top: calc(50% + 27px) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0) !important;
  cursor: pointer;
}

.swiper-button-pr:hover {
  background-color: #fff !important;
}

.swiper-button-ne:hover {
  background-color: #fff !important;
}

.dish__item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 15px;
}

.dish__item:hover {
  background-color: rgba(128, 128, 128, 0.231372549);
}

.request__input-file {
  margin: 25px 0;
}

.header-basket {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 15;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header__user-block:hover + .header-basket {
  opacity: 1;
  visibility: visible;
  top: 50px;
}

@media (max-width: 1200px) {
  .header__user-block:hover + .header-basket {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -1000px;
  }
}
@media (max-width: 960px) {
  .rent-rhythm {
    min-height: 480px;
    max-height: 480px;
  }
}
@media (max-width: 767px) {
  .rent-rhythm {
    min-height: 633px;
    max-height: 633px;
  }
}
.basket-data__input {
  position: relative;
}

.basket-data-text-2.active {
  visibility: visible;
  opacity: 1;
}

.basket-data-text-2 {
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.delivery-item__img {
  text-align: center;
}

.catalog-pane__title2 {
  display: block !important;
}

.map-body__text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__text a:hover {
  color: #a9d992;
}
.map-body__text a path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__text a:hover path {
  fill: #a9d992;
}

.map-body__list a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.map-body__list a:hover {
  color: #a9d992;
}
.map-body__list a path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__list a:hover path {
  fill: #a9d992;
}

.map-body__label {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map-body__label:hover {
  color: #a9d992;
}

.__select__input:checked + label {
  color: #a9d992;
  background-color: rgb(238, 238, 238);
}

@media (max-width: 640px) {
  .catalog-pane-item-big {
    max-height: 180px;
    min-height: 180px;
  }

  .catalog-pane-item-big__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .catalog-pane-item-big__text {
    padding: 10px 0 0 0;
  }

  .catalog-pane-item-big__content {
    padding: 5px 0;
  }

  .catalog {
    padding-top: 0;
  }

  .catalog-pane-body {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0;
    padding: 5px 0 15px 0;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }

  .catalog-pane-body div {
    min-width: 100px;
  }

  .catalog-pane-filter {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: none !important;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 10px;
  }

  .catalog-pane-filter__item {
    position: relative;
    min-width: 80px;
  }

  .footer__block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .basket-order__price-lock {
    margin-top: 8px;
  }

  .dish__slider2 {
    max-height: 300px;
  }

  .dish__title {
    text-align: left;
  }
}
.catalog__nav-m {
  top: 3px;
}

.basket-data-date {
  display: none;
}

.basket-data-date.active {
  display: block;
}

.basket-data-block-1 {
  display: none;
}
.basket-data-block-1.active {
  display: block;
}

.basket-data-block-2 {
  display: none;
}
.basket-data-block-2.active {
  display: block;
}

@media (max-width: 800px) {
  .delivery__title {
    top: 48px;
  }

  .delivery__items {
    gap: 10px;
  }

  .delivery-item {
    border-radius: 5px;
  }
}
@media (max-width: 800px) {
  .part__body {
    min-width: 40%;
  }

  .part-item {
    max-width: 205px;
  }
}
@media (max-width: 960px) {
  .address-block {
    min-width: 100%;
  }

  .tabs__nav {
    width: 100vw;
    min-width: 100vw;
    left: -30px;
  }

  .catalog-body {
    margin: 15px auto;
  }

  .catalog-pane-item-big__btn {
    margin-top: 26px;
  }
}
.header__burger-block.active {
  top: 140px;
}

@media (max-width: 640px) {
  .header__burger-block.active {
    top: 91px;
  }
}
@media (max-width: 800px) {
  .investment__btn {
    font-size: 30px;
  }

  .investment-pane__item-1 {
    font-size: 24px;
  }

  .investment-pane__title {
    margin-bottom: 5px;
  }

  .investment-pane__text {
    line-height: 24px;
  }
}
.svg-1 {
  position: absolute;
  right: 50% !important;
  bottom: 15px !important;
}

.svg-2 {
  right: 15px !important;
  bottom: 50% !important;
}

.svg-3 {
  right: 15px !important;
  bottom: 60% !important;
}

.svg-4 {
  right: 0px !important;
  bottom: 100% !important;
}

.svg-5 {
  right: 35px !important;
  bottom: 80% !important;
}

.svg-6 {
  right: 0px !important;
  bottom: 70% !important;
}

.svg-7 {
  right: 50% !important;
  bottom: 5px !important;
}

.advantage__item svg path {
  fill: rgba(255, 255, 255, 0.5);
}

.info {
  padding-bottom: 200px;
}

.benefits__item svg path {
  fill: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
  .info {
    padding-bottom: 100px;
  }

  .crumbs__text a {
    font-size: 16px;
    line-height: 16px;
  }

  .factory-rhythm__item {
    margin-top: -50px;
    margin-right: 100px;
    width: 100%;
    height: 100%;
  }

  .factory-rhythm__item img {
    width: 350px;
    height: 363px;
    position: absolute;
    right: -50px;
    top: 124px;
    margin-top: -42px;
  }

  .factory-rhythm__slider {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .info {
    padding-bottom: 0;
  }

  .supply-benefits {
    padding: 80px 0;
  }

  .factory-rhythm__btn {
    bottom: 130px;
  }

  .factory-rhythm__item img {
    width: 350px;
    height: 363px;
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    top: 221px;
    margin-top: -42px;
  }
}
@media (max-width: 399px) {
  .factory-rhythm__btn {
    bottom: 160px;
  }

  .factory-rhythm__item img {
    width: 350px;
    height: 363px;
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    top: 184px;
    margin-top: -42px;
  }
}
@media (max-width: 800px) {
  .catalog-pane-item__btn {
    margin-top: 30px;
  }

  .stock__link {
    font-size: 18px;
    margin-top: 20px;
  }

  .application {
    padding-bottom: 80px;
  }

  #highload2 + .lb1 {
    width: 58px !important;
    height: 30px !important;
    min-width: 58px;
  }

  #highload2 + .lb1::after {
    width: 24px !important;
    height: 24px !important;
  }

  #highload2:checked + .lb1::after {
    left: 31px !important;
  }

  #highload2 + .lb1::after {
    top: 3px !important;
    left: 3px !important;
  }

  .cabinet-data__input input {
    padding-right: 0;
  }

  .cabinet-data__input img {
    right: 17px;
  }

  .form_radio_group-item span {
    margin-left: 50px;
  }

  .provider {
    padding-bottom: 100px;
  }

  .taste__btn {
    width: 261px;
    height: 50px;
  }

  .taste__btn a {
    font-size: 20px;
    line-height: 20px;
  }

  .order-item__body {
    padding-right: 0;
  }

  .order-body__btn {
    margin: 0;
  }

  .map__title {
    font-size: 36px;
    line-height: 37px;
  }

  .map-body__text a {
    font-size: 16px;
    line-height: 17px;
  }

  .map-body__list a {
    font-size: 16px;
    line-height: 17px;
  }

  .map-body__title {
    font-size: 16px;
    line-height: 16px;
    padding: 3px;
    white-space: nowrap;
    border-radius: 10px;
  }

  .map-body__spisok {
    height: 30px;
  }
  .map-body__spisok svg {
    max-width: 8px;
    margin-left: 5px;
    margin-top: 3px;
  }

  .map-body__input {
    height: 30px;
  }
  .map-body__input svg {
    max-width: 15px;
    left: 15px;
    top: 0px;
  }

  .map-body__input input {
    font-size: 16px;
    line-height: 16px;
    padding: 5px;
    padding-left: 30px;
  }

  .map-body__text {
    height: 35px;
  }
}
@media (max-width: 500px) {
  .form_radio_group-item span {
    margin-left: 0px;
  }
}
@media (max-width: 960px) {
  .rhythm {
    max-height: 480px;
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .rhythm {
    max-height: 633px;
    min-height: 633px;
  }

  .application__links img {
    max-width: none;
    max-height: 31.5px;
  }
}
#highload2 {
  display: none;
}

#highload2 + .lb1,
#highload2 + .lb1::before,
#highload2 + .lb1::after {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#highload2 + .lb1 {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 52px;
  border-radius: 43px;
  cursor: pointer;
}

#highload2 + .lb1::before {
  display: block;
  content: attr(data-offlabel);
  position: absolute;
  top: 18px;
  right: 10px;
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
}

#highload2 + .lb1::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 44px;
  height: 44px;
  background-color: white;
}

#highload2:checked + .lb1::before {
  content: attr(data-onlabel);
  left: 16px;
  right: auto;
  color: #fff;
}

#highload2:checked + .lb1::after {
  left: 52px;
  background-color: #f7f7f7;
}

#highload2 + .lb1 {
  background-color: #ccc;
}

#highload2:checked + .lb1 {
  background: #a9d992;
}

#highload2:checked + .lb1::before {
  color: #fff;
}

.catalog-tabs__nav {
  min-width: 330px;
}

.catalog-body__rinbow {
  min-width: 164px;
  color: #fff;
  max-width: 164px;
}

.catalog-body__rinbow svg {
  margin-right: 5px;
}

.catalog-body__rinbow img {
  margin-right: 10px;
}

.catalog-body__white {
  padding: 0 12px;
  max-width: 143px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.catalog-body__white img {
  margin-right: 10px;
}

@media (max-width: 1400px) {
  .catalog-body__rinbow {
    min-width: 100%;
    color: #fff;
    max-width: 100%;
  }
}
.index2 {
  padding: 40px 0;
}

.index2__content {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index2__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.index2__list li:not(:last-child) {
  margin-bottom: 15px;
}

.index2__list a {
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 25px;
}

.index2__list a:hover {
  border-bottom: 1px solid #000;
}

@media (max-width: 800px) {
  .index2__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .index2__list {
    margin-bottom: 15px;
  }

  .index2__list a {
    font-size: 18px;
  }
}
.header::before {
  content: "";
  z-index: 2;
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.15);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
      -ms-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
}

@media (max-width: 960px) {
  .header::before {
    top: 140px;
  }
}
@media (max-width: 640px) {
  .header::before {
    display: none;
  }
}
.dish-item__title {
  margin-top: 9px;
}

.crumbs {
  margin-top: 10px;
}

.delivery-item__discount {
  display: block;
  text-align: center;
  line-height: 27px;
}

.header__address span {
  line-height: 20px;
}

.header__basket a span {
  line-height: 48px;
  text-align: center;
}

.user-block2__text {
  max-width: 270px;
  text-align: center;
  margin: 15px auto 0 auto;
}

.user-block2__input {
  margin: 15px 0;
}

.user-block2__checkbox-content {
  margin-left: 4px;
}

.find__btn a {
  display: block;
  text-align: center;
  line-height: 80px;
}

.footer__subtext {
  line-height: 23px;
}

.stay__input input::-webkit-input-placeholder {
  line-height: 79px;
}

.stay__input input::-moz-placeholder {
  line-height: 79px;
}

.stay__input input:-ms-input-placeholder {
  line-height: 79px;
}

.stay__input input::-ms-input-placeholder {
  line-height: 79px;
}

.stay__input input::placeholder {
  line-height: 79px;
}

.catalog-body__rinbow {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 30px;
  padding: 0 7px;
}

.catalog-body__rinbow img {
  margin-top: 3px;
}

.catalog-body__white {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 30px;
}

.catalog-body__white img {
  margin-top: 3px;
}

.catalog-pane-item-big__title {
  font-weight: 800;
}

.delivery-item__gram {
  font-weight: 400;
}

.delivery-item__price {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-item__gram-big {
  color: rgba(255, 255, 255, 0.3);
}

.catalog-pane-item-big__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.catalog__pages a {
  color: #000000;
  opacity: 0.5;
}

.dish__discount {
  display: block;
  line-height: 38px;
  text-align: center;
}

.dish-item__price {
  display: block;
  line-height: 32px;
  text-align: center;
}

.supply-benefits {
  padding: 0;
}

.request__form input {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.order {
  padding-top: 40px;
}

.advertising-cafe {
  padding: 100px 0 200px 0;
}

.supply-items2 {
  margin: 0 0 150px 0;
}

.info2 {
  padding-bottom: 0;
}

.franchise-info {
  padding: 200px 0;
  margin: 0;
}

.franchise-info2 {
  padding-bottom: 0;
}

.header-basket {
  left: 78%;
}

.header__user-block:hover + .header-basket {
  top: 100px;
}

.header-basket:hover {
  top: 300px;
}

.support {
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  min-width: 446px;
  padding: 25px 20px 15px 20px;
}

.support__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 25px;
  color: #000000;
  padding-left: 25px;
}

.support__textarea {
  margin: 23px 0 12px 0;
  width: 100%;
  height: 279px;
}

.fancybox-close-small {
  top: 20px !important;
  right: 10px !important;
}

.fancybox-close-small path {
  fill: rgba(0, 0, 0, 0.15) !important;
}

#support2 {
  max-width: 446px;
  padding: 30px 35px 35px 20px;
}

.support__text {
  margin-top: 30px;
  padding-left: 25px;
  font-size: 20px;
  line-height: 20px;
}

.rhythm__text {
  font-size: 40px;
  line-height: 41px;
  margin-top: 40px;
  color: #ffffff;
}

.support__textarea textarea {
  resize: none;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 20px 25px;
  font-size: 20px;
  line-height: 20px;
}

.support__textarea textarea::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 20px;
}

.support__textarea textarea::-moz-placeholder {
  font-size: 20px;
  line-height: 20px;
}

.support__textarea textarea:-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
}

.support__textarea textarea::-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
}

.support__textarea textarea::placeholder {
  font-size: 20px;
  line-height: 20px;
}

.support__btn {
  width: 100%;
  height: 60px;
}

.support__btn button {
  background: #a9d992;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  color: #ffffff;
}

.basket-time {
  margin-bottom: 55px;
  background: #ffffff;
  border: 3px solid #a9d992;
  border-radius: 15px;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  line-height: 25px;
  color: #000000;
}

.basket-time svg {
  min-width: 64px;
  margin-right: 30px;
  margin: 8px 30px 8px 0;
}

.basket-data__subtext2 {
  margin-top: 26px;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  max-width: 450px;
  margin: 26px auto;
}

.basket-data__btn {
  margin-bottom: 0;
}

.basket-order__items {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 850px;
}

.basket-order__price {
  margin-top: 15px;
}

.basket-order {
  scrollbar-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.2) !important;
  /* «цвет ползунка» «цвет полосы скроллбара» */
  scrollbar-width: thin !important;
  /* толщина */
}

html,
body {
  scrollbar-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.2);
  /* «цвет ползунка» «цвет полосы скроллбара» */
  scrollbar-width: thin;
  /* толщина */
}

.basket-order__items::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(0, 0, 0, 0.05);
}

.basket-order__items {
  padding-right: 10px;
}

.basket-order__items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.326);
  width: 6px;
}

.basket-order__items::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

.request__text {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  margin-top: 30px;
}

.basket-data__input-min input {
  padding-bottom: 10px;
}

.basket-data__subtitle span {
  white-space: nowrap;
}

.si-3 {
  height: 300px;
}

.si-3-text {
  margin-top: 120px;
}

.si-3-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.franchise__title {
  margin-left: -25px;
}

.investment__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

.investment-pane__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}

.advantage__subtitle {
  margin-bottom: 35px;
}

.delivery__cub {
  margin-bottom: 40px;
}

.taste__block {
  max-width: 1500px;
}

.rent-taste {
  margin-bottom: 0;
  margin-top: 100px;
}

.catalog-pane-item-big__btn {
  margin-bottom: 0 !important;
  margin-top: 30px;
}

.basket-data__input input {
  padding-bottom: 32px;
}

.cafe__title-2 {
  font-size: 40px;
  line-height: 41px;
}

.header__m-addres svg {
  max-width: 28px;
}

.cabinet-data__text {
  top: 10px;
}

.form_radio_group label {
  padding-bottom: 32px;
  padding-top: 26px;
}

.cabinet-data__address-add a {
  padding-bottom: 5px;
}

.cabinet-order__btn a {
  padding-bottom: 5px;
}

.rhythm__btn a {
  padding-bottom: 7px;
}

.dish__btn a {
  padding-bottom: 5px;
}

.investment-pane__btn a {
  padding-bottom: 7px;
}

.order__btn a {
  padding-bottom: 7px;
}

.support__btn button {
  padding-bottom: 7px;
}

.request__btn button {
  padding-bottom: 7px;
}

.qualities-rent {
  padding: 100px 0;
}

.delivery-item__btn a {
  padding-bottom: 7px;
}

.find__btn a {
  padding-bottom: 10px;
  line-height: 70px;
}

.stay__title {
  padding-top: 12px;
}

.stay__input input {
  padding-top: 22px;
  padding-bottom: 32px;
}

.stay__email button {
  height: 80px;
  padding-bottom: 7px;
}

.taste__btn {
  position: relative;
  z-index: 2;
}

.taste__btn a {
  padding-bottom: 7px;
}

.catalog-body__rinbow {
  line-height: 28px;
  padding-bottom: 5px;
}

.catalog-body__white {
  line-height: 28px;
  padding-bottom: 5px;
}

.catalog__btn a {
  padding-bottom: 7px;
}

.si-3-text {
  margin-top: 90px;
}

.stock-title-1 {
  padding-top: 65px;
}

.stock-item__text {
  margin-top: 30px;
}

.advantage__title {
  padding-bottom: 20px;
}

.delivery__text {
  padding-left: 55px;
}

#support2 {
  margin-top: 50px;
}

.provider__title2 {
  font-size: 40px;
  line-height: 41px;
}

.catalog-pane-item-big__text {
  margin-bottom: 18px;
}

.catalog-pane-item-big__btn {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .cabinet-data__text {
    top: 4px;
    left: 25px;
  }

  .basket-data__input input {
    padding-bottom: 32px;
  }

  .header__m-addres svg {
    max-width: 15px;
  }

  .request__text {
    margin-top: 25px;
    font-size: 10px;
    line-height: 10px;
  }

  .delivery__cub {
    margin-bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .stock-title-1 {
    padding-top: 0px;
  }

  .franchise__title {
    margin-left: 0;
  }

  .si-3 {
    height: 200px;
  }

  .si-3-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .si-3-img img {
    width: 250px;
  }

  .si-3-text {
    margin-top: 80px;
  }

  .rhythm__item-404 img {
    width: 467px !important;
    height: 353px !important;
    max-width: 467px;
    max-height: 353px;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }

  .rhythm__text {
    font-size: 32px;
    line-height: 33px;
  }

  .delivery-item__discount {
    line-height: 16px;
  }

  .find__btn a {
    line-height: 60px;
  }

  .advertising-cafe {
    padding: 100px 0;
  }
}
@media (max-width: 1100px) {
  .dish-item__price {
    line-height: 15px;
  }

  .dish__discount {
    display: none;
  }
}
@media (max-width: 960px) {
  .stock-title-1 {
    padding-top: 20px;
  }

  .catalog-pane-item__btn {
    margin-top: 10px !important;
  }

  .delivery-item__btn a {
    padding-bottom: 2px;
  }

  .rhythm__text {
    font-size: 20px;
    line-height: 20px;
    margin-top: 20px;
  }

  .find__btn a {
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .stock__item {
    padding-bottom: 0;
  }

  .stock-item__img img {
    max-height: 130px;
    width: auto;
    max-width: 150px;
  }

  .si-3 {
    height: 200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .si-3-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .si-3-img img {
    width: 150px;
  }

  .si-3-text {
    margin-top: 40px;
  }

  .basket-time {
    margin-bottom: 55px;
    background: #ffffff;
    border: 3px solid #a9d992;
    border-radius: 15px;
    padding: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .basket-time svg {
    min-width: 32px !important;
    margin: 0px 15px 0px 0;
  }

  .rhythm__item-404 img {
    width: 328px !important;
    height: 300px !important;
    max-height: 300px !important;
    max-width: 328px !important;
  }

  .franchise-info {
    padding: 80px 0;
    margin: 0;
  }

  .franchise-info2 {
    padding-bottom: 0;
  }

  .supply-items2 {
    margin: 0px 0 50px 0;
  }

  .advertising-cafe {
    padding: 50px 0 80px 0;
  }

  .find__btn a {
    line-height: 34px;
  }

  .crumbs {
    display: none;
  }

  .taste__block {
    background: rgba(163, 163, 224, 0.4);
  }
}