@charset "UTF-8";
.menu-layout {
  padding-top: 2rem;
  display: flex;
  scroll-behavior: smooth;
}

.menu-aside-nav {
  flex: 0 0 39rem;
  margin-top: 14rem;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 4;
  height: 100%;
  font-family: "IBM Plex Serif";
  position: sticky;
  top: 0;
}

.menu-aside-nav__nav {
  padding-right: calc(100% - 23rem);
  width: 100%;
}

.menu-aside-nav__list {
  padding-top: 2.4rem;
  padding-bottom: 3rem;
  min-width: 23rem;
  max-width: 23rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow-y: auto;
  height: 100%;
  min-height: 100%;
  max-height: calc(100vh - 3rem);
  margin: 1.5rem 0;
}

.menu-aside-nav__list::-webkit-scrollbar {
  width: 10px;
}

.menu-aside-nav__list::-webkit-scrollbar-track {
  -webkit-box-shadow: 2px 2px 2px -2px rgba(34, 60, 80, 0.2) inset;
  background-color: #f9f9fd;
  border-radius: 10px;
}

.menu-aside-nav__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(192, 166, 151, 0.4), rgba(163, 137, 122, 0.4));
}

.menu-aside-nav__list-item {
  padding-bottom: 1.5rem;
}

.menu-aside-nav__list-item.active {
  color: #A3897A;
}

.menu-aside-nav__list-item:last-child {
  padding-bottom: 0;
}

.menu-aside-nav__list-item a:hover {
  color: #A3897A;
}

.menu-aside-nav__list-item a {
  font-size: 2rem;
  line-height: 150%;
}

.menu-main {
  flex: 0 1 calc(100% - 39rem);
  width: 100%;
}

.menu-main__tabs {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 150%;
  padding-bottom: 3rem;
}

.menu-main__tab-title {
  padding-right: 1rem;
}

.menu-main__tab-list {
  display: flex;
  flex-wrap: wrap;
}

.menu-main__tab-item {
  margin-right: 5px;
  margin-bottom: 2px;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  background: rgba(163, 137, 122, 0.1);
  border-radius: 50px;
  color: #A3897A;
  transition: all 0.3s;
  white-space: nowrap;
}

.menu-main__tab-item:last-child {
  margin-right: 0;
}

.menu-main__tab-item:hover, .menu-main__tab-item.menu-main__tab-item_active {
  background: #A3897A;
  color: #fff;
  transition: all 0.3s;
}

.menu-main__delete {
  display: none;
  margin-right: 5px;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  background: #D4D4D4;
  border-radius: 50px;
  color: #656565;
  transition: all 0.3s;
  white-space: nowrap;
  align-items: center;
}

.menu-main__delete:hover {
  background: #191A1C;
  color: #fff;
  transition: all 0.3s;
}

.menu-main__delete:hover path {
  fill: #fff;
  transition: all 0.3s;
}

.menu-main__delete-img {
  display: flex;
  align-items: center;
  margin-right: 3px;
}

.menu-main__delete-img svg {
  width: 20px;
  height: 20px;
}

.menu-main__tab-select {
  display: none;
}

.dn {
  display: none !important;
}

/*главное меню*/
.menu-catalog__item {
  margin-bottom: 7rem;
}

.menu-catalog__item:last-child {
  margin-bottom: 0;
}

.menu-catalog__item-top {
  display: flex;
  justify-content: space-between;
  background-color: #A3897A;
}

.menu-catalog__item-title {
  padding: 6rem 4rem;
  font-family: "IBM Plex Serif";
  font-size: 6rem;
  line-height: 133%;
  color: #fff;
}

.menu-catalog__item-img {
  max-width: 27.5rem;
  min-width: 27.5rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.menu-catalog__item-img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*блюда*/
.menu-dish__list {
  padding-top: 3rem;
}

.menu-dish__item {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-dish__item:hover {
  color: #A3897A !important;
}

.menu-dish__item:last-child {
  padding-bottom: 0;
}

.menu-dish__img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.menu-dish__img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu-dish__item:hover .menu-dish__img img {
  transform: scale(1.4);
}

.menu-dish__item-information {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(100% - 100px);
  width: calc(100% - 100px);
  padding-left: 10px;
}

.menu-dish__top {
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.menu-dish__top:before {
  content: "";
  position: absolute;
  top: 22px;
  z-index: -1;
  width: 100%;
  border-bottom: 1px dashed #A3897A;
}

.menu-dish__top-name {
  display: flex;
  align-items: center;
  padding-right: 3px;
  background-color: #fff;
  transition: top 0.3s, opacity 0.4s;
}

.menu-dish__name {
  font-family: "IBM Plex Serif";
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
}

.menu-dish-tag {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: "Roboto Condensed";
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  margin-left: 5px;
}

.menu-dish-tag_hit {
  background: #ED5432;
}

.menu-dish-tag_new {
  background: #F6AB09;
}

.menu-hover {
  display: none;
  width: 100%;
  border-top: 20px solid #191A1C;
  padding: 40px;
  border-left: 1px solid #A3897A;
  border-right: 1px solid #A3897A;
  border-bottom: 1px solid #A3897A;
  position: relative;
}

.menu-hover_active {
  display: block;
}

.menu-hover__close {
  position: absolute;
  top: 33px;
  right: 30px;
  z-index: 3;
  width: 35px;
  height: 35px;
}

.menu-hover-cont {
  display: flex;
}

.menu-hover__img {
  display: block;
  position: relative;
  width: 100%;
  max-height: 36rem;
  min-height: 36rem;
  height: 100%;
  overflow: hidden;
}

.menu-hover__img-wrapper {
  width: 58rem;
}

.menu-hover__img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-hover__wrapper {
  margin-left: 3rem;
  width: calc(100% - 58rem);
  padding-right: 2rem;
}

.menu-hover__detail {
  max-height: 15rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-hover__detail::-webkit-scrollbar {
  width: 10px;
}

.menu-hover__detail::-webkit-scrollbar-track {
  box-shadow: 2px 2px 2px -2px rgba(34, 60, 80, 0.2) inset;
  background-color: #f9f9fd;
  border-radius: 10px;
}

.menu-hover__detail::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(192, 166, 151, 0.4), rgba(163, 137, 122, 0.4));
}

.menu-hover__title {
  font-family: "IBM Plex Serif";
  font-size: 1.6rem;
  line-height: 150%;
  color: #656565;
  padding-bottom: 5px;
}

.menu-hover__text {
  font-family: "Roboto";
  font-size: 1.4rem;
  line-height: 143%;
}

.menu-dish__information {
  display: flex;
  font-family: "IBM Plex Serif";
  align-items: center;
  background-color: #fff;
  padding-left: 3px;
}

.menu-dish__weight {
  font-size: 1.6rem;
  line-height: 187%;
  white-space: nowrap;
  order: 1;
}

.menu-dish__price {
  padding-left: 10px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 150%;
  white-space: nowrap;
  position: relative;
  order: 2;
}

.red-price {
  color: #EA3710;
}

.menu-dish__price_discount + .menu-dish__price {
  font-size: 1.8rem;
}

.menu-dish__price_discount + .menu-dish__price:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  background-color: #191A1C;
  width: calc(100% - 3px);
  height: 1px;
}

.menu-dish__price_discount {
  order: 3;
}

.menu-dish__consist {
  font-family: "Roboto";
  font-size: 1.4rem;
  line-height: 143%;
  display: flex;
  align-items: flex-end;
  color: #656565;
}

/*catalog-menu*/
.catalog-aside-nav {
  margin-top: 105px;
}

.filters-btn {
  display: none;
  div {
    svg {
      transition: 0.3s;
    }
  }
}

.menu-main-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.catalog-main__tabs {
  padding-bottom: 0;
}

.catalog-menu__link {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  align-items: center;
}

.catalog-menu__link:hover {
  color: #9F897A;
}

.catalog-menu__link span {
  margin-right: 5px;
}

.catalog-menu__link svg {
  margin-top: 5px;
}

.catalog-menu__link:hover svg path {
  stroke: currentColor;
}

.catalog-menu__category-item {
  padding-top: 20px;
}

.catalog-menu__category-item:last-child {
  margin-bottom: 20px;
}

.catalog-menu__category-flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
}

.catalog-menu__category-name {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 100%;
}

.catalog-menu__link.link_add {
  display: none;
}

.catalog-filters {
  display: none;
}

.catalog-menu__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.catalog-menu__item {
  flex: 0 0 calc(33.333% - 30px);
  width: calc(33.333% - 30px);
  margin: 0 15px;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.catalog-menu__item-img {
  margin-bottom: 10px;
  height: 19vw;
  display: block;
  overflow: hidden;
  position: relative;
}

.catalog-menu__item-img img {
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.catalog-menu__item:hover .catalog-menu__item-img img {
  transform: scale(1.4);
}

.catalog-menu__top {
  /* flex:1 0 auto */
}

.catalog-menu__bottom {
  flex: 0 0 auto;
}

.catalog-menu__item-description {
  height: 105px;
  overflow: hidden;
  position: relative;
}

.catalog-menu__item-description:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -27.78%, #FFFFFF 77.25%);
}

@media (max-width: 767px) {
  .catalog-menu__item-description {
    height: -moz-fit-content;
    height: fit-content;
    overflow: inherit;
    position: relative;
  }

  .catalog-menu__item-description:before {
    display: none;
  }
}
.catalog-menu__item-name {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.catalog-menu__item:hover .catalog-menu__item-name {
  color: #A3897A;
}

.catalog-menu__item-composition {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #656565;
  margin-bottom: 15px;
}

.catalog-menu__item-price {
  font-family: "IBM Plex Serif";
  display: flex;
  align-items: baseline;
}

.catalog-menu__item-flex-price {
  display: flex;
  align-items: flex-start;
  margin-right: 10px;
}

.catalog-menu__item-price {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
}

.catalog-menu__item-dics-price {
  font-weight: 500;
  font-size: 20px;
  line-height: 18px;
  position: relative;
  margin-left: 9px;
}

.catalog-menu__item-dics-price:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #9F837A;
  transform: rotate(-12.99deg);
  z-index: 2;
  top: 50%;
  left: 0;
}

.catalog-menu__item-weight {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9F897A;
}

.catalog-menu__not-avail {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #A3897A;
}

.catalog-menu__btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  background-color: #A3897A;
  color: #fff;
  padding: 10px 30px;
  border: 1px solid #A3897A;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
}

.catalog-menu__btn:hover {
  background: #C2A99A;
  border-color: #C2A99A;
  transition: all 0.3s;
}

.catalog-menu__btn.loading {
  opacity: 0.3;
  transition: all 0.8s;
}

.delivery-wrapper {
  display: flex;
}

.delivery-left {
  flex: 0 0 39rem;
  height: 100%;
}

.delivery-right {
  flex: 0 1 calc(100% - 39rem);
  width: 100%;
  height: 530px;
  min-height: 530px;
}

.delivery-wrapper {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.delivery-wrapper h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 50px;
}

.catalog-aside {
  display: none;
}

.delivery-link {
  font-size: 18px;
  transition: all 0.3s ease;
}

.delivery-link a:hover {
  color: #9F897A;
}

.catalog-menu__category-flex .delivery-link {
  display: none;
}

.catalog-menu-popup {
  max-width: 1140px;
  width: 80%;
  padding: 60px 40px 40px !important;
  border-width: 0 3px 3px 3px;
  border-style: solid;
  border-color: #A3897A;
  position: relative;
}
.catalog-menu-popup:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: #191A1C;
}
.catalog-menu-popup-content {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 30px;
}
.catalog-menu-popup-img {
  width: 100%;
  max-height: 364px;
}
.catalog-menu-popup-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog-menu-popup .fancybox-close-small {
  padding: 5px !important;
  top: 20px !important;
  right: 20px !important;
}
.catalog-menu-popup-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog-menu-popup-text .catalog-menu__item-composition {
  margin-top: 24px;
  color: #191A1C;
}
.catalog-menu-popup-text .catalog-menu__item-price {
  margin-top: auto;
}
.catalog-menu-popup-text .catalog-menu__item-price, .catalog-menu-popup-text .catalog-menu__bottom {
  align-self: end;
}

@media (max-width: 1919px) {
  .menu-aside-nav {
    flex: 0 0 33rem;
  }

  .menu-aside-nav__nav {
    padding-right: calc(100% - 23rem);
  }

  .menu-main {
    flex: 0 1 calc(100% - 33rem);
  }

  .menu-catalog__item-title {
    padding: 6rem 3.3rem 6rem;
    font-size: 5.5rem;
    line-height: 145%;
  }

  .menu-catalog__item-img {
    max-width: 23.1rem;
    min-width: 23.1rem;
  }

  /*catalog-menu*/
  .menu-main-flex {
    padding-bottom: 10px;
  }

  .catalog-aside-nav {
    margin-top: 38px;
  }

  .delivery-left {
    flex: 0 0 44rem;
    padding-right: 87px;
  }

  .delivery-right {
    flex: 0 1 calc(100% - 44rem);
    height: 395px;
    min-height: 395px;
  }

  .catalog-menu__item {
    margin-bottom: 40px;
  }

  .delivery-wrapper {
    margin-top: 20px;
  }

  .menu-hover {
    padding: 30px;
  }

  .menu-hover__img-wrapper {
    width: 43rem;
  }

  .menu-hover__img {
    max-height: 32rem;
    min-height: 32rem;
  }

  .menu-hover__wrapper {
    margin-left: 2.5rem;
    width: calc(100% - 43rem);
  }
}
@media (max-width: 1365px) {
  .menu-aside-nav {
    flex: 0 0 30rem;
  }

  .menu-aside-nav__nav {
    padding-right: calc(100% - 27rem);
  }

  .menu-aside-nav__list {
    min-width: 27rem;
    max-width: 27rem;
  }

  .menu-main {
    flex: 0 1 calc(100% - 30rem);
  }

  .menu-catalog__item-title {
    padding: 5.5rem 3rem;
    font-size: 5rem;
    line-height: 120%;
  }

  .menu-catalog__item-img {
    max-width: 21rem;
    min-width: 21rem;
  }

  .catalog-menu__category-flex {
    margin-bottom: 20px;
  }

  /* catalog */
  .catalog-menu__category-name {
    font-size: 30px;
    line-height: 40px;
  }

  .catalog-menu__item {
    margin-bottom: 40px;
  }

  .catalog-menu__item-img {
    height: 22vw;
  }

  .menu-main-flex {
    padding-bottom: 20px;
  }

  .catalog-menu__category-item {
    padding-top: 10px;
  }

  .catalog-menu__category-item:last-child {
    margin-bottom: 10px;
  }

  .delivery-left {
    flex: 0 0 40rem;
    padding-right: 47px;
  }

  .delivery-right {
    flex: 0 1 calc(100% - 40rem);
    height: 357px;
    min-height: 357px;
  }

  .menu-hover__img-wrapper {
    width: 34rem;
  }

  .menu-hover__wrapper {
    margin-left: 2.5rem;
    width: calc(100% - 34rem);
  }

  .menu-hover__close {
    top: 26px;
    right: 24px;
  }
}
@media (max-width: 1279px) {
  .menu-aside-nav {
    flex: 0 0 24rem;
  }

  .menu-aside-nav__nav {
    padding-right: calc(100% - 20.9rem);
  }

  .menu-aside-nav__list {
    min-width: 20.9rem;
    max-width: 20.9rem;
  }

  .menu-aside-nav__list-item a {
    font-size: 1.8rem;
    line-height: 167%;
  }

  .menu-main {
    flex: 0 1 calc(100% - 24rem);
  }

  .menu-catalog__item-title {
    padding: 3.3rem 2.6rem;
    font-size: 3.8rem;
    line-height: 145%;
  }

  .menu-catalog__item-img {
    max-width: 16rem;
    min-width: 16rem;
  }

  .menu-dish__name {
    font-size: 1.8rem;
    line-height: 167%;
  }

  /* catalog */
  .catalog-menu__item-name {
    font-size: 16px;
    line-height: 24px;
  }

  .catalog-menu__item-composition {
    margin-bottom: 10px;
  }

  .catalog-menu__item-flex-price {
    font-size: 24px;
    line-height: 30px;
  }

  .catalog-menu__btn {
    margin-top: 10px;
  }

  .delivery-wrapper {
    margin-top: 10px;
  }

  .delivery-left {
    flex: 0 0 31.7rem;
    padding-right: 27px;
  }

  .delivery-right {
    flex: 0 1 calc(100% - 31.7rem);
    height: 315px;
    min-height: 315px;
  }

  .menu-hover-cont {
    flex-direction: column;
  }

  .menu-hover__img-wrapper {
    width: 100%;
    margin-bottom: 3rem;
  }

  .menu-hover__img {
    max-height: 44rem;
    min-height: 44rem;
  }

  .menu-hover__wrapper {
    margin-left: 0;
    width: 100%;
    padding-left: 0;
  }

  .menu-hover__close {
    top: 34px;
    right: 39px;
  }

  .menu-hover__close svg path {
    fill: #fff;
  }

  .catalog-menu-popup {
    padding: 50px 30px 30px !important;
  }
  .catalog-menu-popup-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .menu-layout {
    flex-direction: column;
  }

  .menu-main-flex .delivery-link {
    display: none;
  }

  .catalog-menu__category-flex .delivery-link {
    display: block;
  }

  .catalog-menu__link.link_main {
    display: none;
  }

  .catalog-menu__category-item:first-child .catalog-menu__link.link_add {
    display: flex;
  }

  .catalog-filters {
    position: relative;
  }

  .catalog-aside {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    /*right: 0;*/
    left: 0;
    z-index: 10;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .catalog-menu__item-img {
    height: 28vw;
  }

  .catalog-aside_active {
    display: block;
  }

  .filters-btn--active {
    div {
      svg {
        transform: rotate(180deg);
      }
    }
  }

  .menu-aside-nav__list {
    min-width: 20.9rem;
    max-width: 20.9rem;
    padding: 2rem;
    min-width: 286px;
    max-width: none;
    height: 100%;
    min-height: 100%;
    max-height: none;
    margin: 0;
  }

  .menu-aside-nav {
    display: none;
  }

  .filters-btn {
    display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    div {
      border: 1px solid #D4D4D4;
      background: #FFF;
      color: #585858;
      font-size: 16px;
      display: flex;
      width: 161px;
      height: 44px;
      padding: 0px 15px;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }
    span {
      font-weight: 400;
      font-size: 16px;
      color: #191A1C;
    }
  }

  .menu-main {
    flex: 0 1 100%;
  }

  .menu-catalog__item-title {
    padding: 3.6rem 2.6rem;
    font-size: 3.7rem;
    line-height: 135%;
  }

  /* catalog */
  .catalog-menu__item {
    margin-bottom: 30px;
  }

  .catalog-filters {
    display: block;
  }

  .delivery-wrapper {
    flex-direction: column;
  }

  .delivery-left {
    flex: 0 0 100%;
    padding-right: 0px;
    text-align: center;
    margin-bottom: 30px;
  }

  .delivery-right {
    flex: 0 1 100%;
    height: 358px;
    min-height: 358px;
  }

  .catalog-menu-popup {
    width: 95%;
    padding: 35px 15px 15px !important;
  }
  .catalog-menu-popup-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .catalog-menu-popup .fancybox-close-small {
    padding: 5px !important;
    top: 40px !important;
    right: 20px !important;
    color: white !important;
  }
  .catalog-menu-popup .catalog-menu-popup-img {
    height: 50vw;
  }
  .catalog-menu-popup-text .catalog-menu__item-composition {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .menu-main__tab-list {
    display: none;
  }

  .menu-main__tab-select-wrapper {
    position: relative;
    width: 100%;
  }

  .menu-main__tab-select {
    display: block;
    width: 100%;
    font-family: "Roboto";
    font-size: 1.6rem;
    line-height: 169%;
    padding: 0.8rem 1.5rem;
    color: #585858;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #FFFFFF;
    border: 1px solid #D5D5D5;
  }

  .menu-main__tab-select-wrapper:after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 15px;
    background-image: url(../../../assets/img/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    cursor: pointer;
    pointer-events: none;
    z-index: 2;
  }

  .menu-catalog__item {
    margin-bottom: 2.5rem;
  }

  .menu-catalog__item-title {
    padding: 1.5rem;
    font-size: 1.6rem;
    line-height: 150%;
  }

  .menu-catalog__item-img {
    max-width: 8rem;
    min-width: 8rem;
  }

  /*блюда*/
  .menu-dish__list {
    padding-top: 1rem;
  }

  .menu-dish__item {
    padding-bottom: 2rem;
    align-items: flex-start;
  }

  .menu-dish__img {
    height: 43px;
    width: 43px;
  }

  .menu-dish__item-information {
    flex: 0 1 calc(100% - 43px);
    width: calc(100% - 43px);
    padding-left: 10px;
  }

  .menu-dish__top {
    padding-bottom: 10px;
    flex-direction: column;
    position: relative;
  }

  .menu-dish__top:before {
    top: 100%;
  }

  .menu-hover {
    padding: 1.5rem;
    border-top: 10px solid #191A1C;
  }

  .menu-hover__img {
    max-height: 20rem;
    min-height: 20rem;
  }

  .menu-hover__img-wrapper {
    margin-bottom: 1.5rem;
  }

  .menu-hover__close {
    top: 20px;
    right: 21px;
  }

  .menu-hover__title {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }

  .menu-hover__text {
    font-size: 1.2rem;
  }

  .menu-dish__name {
    font-size: 1.2rem;
    padding-bottom: 5px;
  }

  .menu-dish__weight {
    font-size: 1.4rem;
    line-height: 143%;
  }

  .menu-dish__price {
    padding-left: 5px;
    font-size: 1.4rem;
    line-height: 143%;
  }

  .menu-dish__price_discount + .menu-dish__price {
    font-size: 1.4rem;
  }

  .menu-dish__consist {
    padding-top: 5px;
    font-size: 1.2rem;
    line-height: 167%;
  }

  .catalog-menu__category-flex {
    flex-direction: column;
  }

  .catalog-menu__category-name {
    order: 1;
  }

  /* catalog-menu*/
  /*  .catalog-menu__category-item:first-child .catalog-menu__link.link_add {
  	display: none;
    }*/
  .catalog-menu__items {
    margin: 0;
  }

  .menu-main-flex {
    padding-bottom: 20px;
  }

  .catalog-menu__item {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .catalog-menu__item-img {
    display: block;
    overflow: hidden;
    padding-bottom: 0;
    height: 400px;
    width: 100%;
  }

  .catalog-menu__item-name {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 7px;
  }

  .catalog-menu__item-price {
    font-size: 24px;
    line-height: 30px;
  }

  .catalog-menu__btn {
    width: 100%;
  }

  .menu-main-flex {
    padding-bottom: 0px;
  }

  .catalog-menu__category-item {
    padding-top: 20px;
  }

  .catalog-menu__category-item:last-child {
    margin-bottom: 20px;
  }

  .delivery-left {
    text-align: left;
    margin-bottom: 20px;
  }

  .delivery-right {
    height: 218px;
    min-height: 218px;
  }

  .catalog-menu__category-flex .delivery-link {
    margin: 5px 0;
  }
}
@media (max-width: 619px) {
  .catalog-menu__item-img {
    height: 300px;
  }
}
@media (max-width: 424px) {
  .catalog-menu__item-img {
    height: 190px;
  }
}