@font-face {
    font-family: MuseoSansCyrl; 
    font-weight: 500;
    src: url("/static/fonts/MuseoSansCyrl-500.ttf") format("opentype");
}

@font-face {
    font-family: MuseoSansCyrl-300; 
    font-weight: 300;
    src: url("/static/fonts/MuseoSansCyrl-300.ttf") format("opentype");
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
::-webkit-scrollbar {display: none;}
html{scroll-behavior: smooth;height: 100%;}
body {
    font-family: 'MuseoSansCyrl';
    display: flex;
    flex-direction: column;
    height: 100%;
}
ul {
   /* list-style-image: url(/static/marker.png); /* Путь к изображению маркера */
}

.btn {
    background-color: rgba(227, 30, 36, 1);
    border-radius: 5px;
    color: white;
    width: 256px;
    height: 48px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    line-height:48px;
    cursor: pointer;
}

.btn_gray {
    background-color: gray;
    border-radius: 5px;
    color: white;
    width: 256px;
    height: 48px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    line-height:48px;
    cursor: pointer;
}

.home {
    background-image: url(/static/bg.png);
}

/*=======================================МОДАЛЬНОЕ ОКНО=============================================*/

.page-content {flex: 1 1 auto;position: relative;/* need this to position inner content */overflow-y: scroll;}

.d-none {display: none;}
.d-inline-grid {display: inline-grid;}
/*.d-block {
    display: block;
}*/
.container_flex {display: flex;align-items: center;}
.container {
  margin-left: 12px;
  margin-right: 12px;}
.container_top_margin {margin-top: 48px;}

.gg-add {
box-sizing: border-box;
position: relative;
display: block;
width: 22px;
height: 22px;
border: 2px solid;
transform: scale(var(--ggs,1));
border-radius: 22px
}

.paginator_ul {list-style-type: none;margin: 0;padding: 0;overflow: hidden;margin-bottom: 24px;}
.paginator_li {/*display: block;*/float: left;margin: 5px;/*color: white;text-align: center;*/}

/*=======================стили для элементов форм==========================ы*/
input, select, textarea, input[type='date'] {
/*width: 100%;
padding: 8px;*/
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}

label {
padding: 5px 5px 5px 0;
display: inline-block;
}

/*
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}


input[type=submit]:hover {
background-color: #45a049;
}
*/

.form_container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 10px 20px 10px 20px;
}

.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}

.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* ======================стили для таблиц========================= */
.table {
width: 100%;
border: none;
margin-bottom: 20px;
border-collapse: separate;
}
.table thead th {
font-weight: bold;
text-align: left;
border: none;
padding: 10px 15px;
background: #EDEDED;
font-size: 14px;
border-top: 1px solid #ddd;
}
.table tr th:first-child, .table tr td:first-child {
border-left: 1px solid #ddd;
}
.table tr th:last-child, .table tr td:last-child {
border-right: 1px solid #ddd;
}
.table thead tr th:first-child {
border-radius: 20px 0 0 0;
}
.table thead tr th:last-child {
border-radius: 0 20px 0 0;
}
.table tbody td {
text-align: left;
border: none;
padding: 10px 15px;
font-size: 14px;
vertical-align: middle;
}
.table tbody tr:nth-child(even) {
background: #F8F8F8;
}
.table tbody tr:last-child td{
border-bottom: 1px solid #ddd;
}
.table tbody tr:last-child td:first-child {
border-radius: 0 0 0 20px;
}
.table tbody tr:last-child td:last-child {
border-radius: 0 0 20px 0;
}



/*=============================Главное меню==========================*/

.header {
  width: 100%; 
  flex: 0 0 auto;
  border-top: 1px solid rgba(229, 229, 229, 1);
  border-bottom: 1px solid rgba(229, 229, 229, 1);

}
.header__wrapper {
  margin-left: 24px;
  margin-right: 24px;
}

.burger-menu {
  display: none;
  cursor: pointer;
  margin-top: 6px;
  margin-left: 4px;
}


.test {
  display: flex;
}

.header__logo img{
  width: 11.25rem;
  height: 2.375rem;
  margin-top: 3px;
}

.header__navbar {
  display: flex;
  justify-content: space-between;
  margin-left: 88px;
  padding-top: 8px;
}

.header__navbar li {
  position: relative;
  font-family: 'Museo Sans Cyrl 500',sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #0D0D0D;
  padding-left: 25px;
  cursor: pointer;
  white-space: nowrap;
}

.header__navbar a{
  color: #000000;
}

.header__navbar li:first-child {
  padding-left: 0;
}

.header__navbar li:after {
  margin-top: 5px;
  display: block;
  content: "";
  width: 0%;
  height: 3px;
  background: #EB1825;
  transition: width 0.3s linear;

}

.active:after {
  width: 100%!important;
}

.header__navbar li:hover:after{
  content: "";
  width: 100%;
  height: 3px;
}
.header__navbar li img {
  position: absolute;
  width: 8px;
  height: 8px;
  right: -8px;
  top: 0px;
}
.header__info {
  /*margin-left: 322px;*/
  white-space: nowrap;
  margin-left: 200px;
  padding-top: 1px;
}

.header__info-head {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}

.header__info-text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #999999;
}

.header__card {
  display: flex;
  margin-left: 75px;
  padding-top: 9px;
}

.header__card-icon {
  width: 16px;
  height: 16px;
}

.header__card-price {
  margin-left: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
}


/*
.header {
    width: 100%; 
    flex: 0 0 auto;
    border-top: 1px solid rgba(229, 229, 229, 1);
    border-bottom: 1px solid rgba(229, 229, 229, 1);

}
.header__wrapper {
    margin-left: 24px;
    margin-right: 24px;

}
.header a {text-decoration: none;}
.navbar {
    display: flex; 
    justify-content: space-between; 
    padding-top: 18px;
    padding-bottom: 18px;
}
.navbar_section1 {display: flex;align-items: center;}
.burger {display: none;cursor: pointer;margin-top: 6px;margin-left: 4px;}
.text_navbars {
    color: rgba(13, 13, 13, 1);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 6px 12px 6px 12px;
}
.telegram {width: 36px;margin-top: 4px}
.header__company_name {font-size: 10px;}
.navbar_active {border-bottom: 3px solid;font-weight: bold;transition: .3s ease;}   
.account_pic {display: none;} 

.box {
    display: flex;
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 9px 21px 9px 21px;
    border-radius: 21px;

}*/


/*====================footer===============*/
.footer {
background-color: black;
}

.wrapper__footer {padding: 0px 6px 0px 6px;}

.wrapper__footer-logo {
width: 114px;
height: 35px;
}

.wrapper__footer-text {
/*display: inline-block;*/
/*padding-top: 14px;*/
}

.wrapper__footer-text a {
font-weight: 400;
font-size: 12px;
line-height: 150%;
color: #FFFFFF;
opacity: 0.5;
padding-right: 10px;
white-space: nowrap;
}

.wrapper__footer-text a:last-child {
/*padding-left: 102px;*/
}


/*===========================панель с датой доставки==========================*/

.cafe-item__li:hover::after { 
  /*content: attr(id); */
  content: "Тут очень длинная подсказка"; 
  /*position: absolute; /* Абсолютное позиционирование */
  left: 10%; top: 20%; /* Положение подсказки */
  z-index: 1; /* Отображаем подсказку поверх других элементов */
  background: rgba(255,255,230,0.9); /* Полупрозрачный цвет фона */
  font-size: 14px; /* Размер текста подсказки */
  padding: 5px 5px; /* Поля */
  border: 1px solid #333; /* Параметры рамки */
  border-radius: 5px;
 }

.wrapper__delivery {
  display: flex;
}

.delivery {
  /*border: 1px solid #E5E5E5;*/
  padding-top: 12px;
  padding-bottom: 12px;
  /*position: fixed;*/
  width: 100%;
  /*top: 39px;*/
  background: white;
  /*z-index: 1;*/
}

.delivery__date {
  overflow: scroll;
  /*margin-left: 92px;*/
}

.delivery__date-items,.delivery__date {
  display: flex;
}

.delivery__date-items img {
  width: 24px;
  height: 24px;
  margin: auto;
}

.delivery__date-items p {
margin: auto auto auto 14.79px;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 22px;
white-space: nowrap;
}

.delivery__date li {
position: relative;
}

.delivery__button button {
background-color: transparent;
}

.delivery-items-order {
margin-left: 15px;
display: flex;
justify-content: center;
align-items: center;
padding: 0.6875em 1.0625em;
width: 13.0625rem;
height: 2.5rem;
background: #E6E6E6;
border-radius: 5px;
font-weight: 400;
font-size: 14px;
line-height: 18px;
}

.delivery-items {
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6875em 1.0625em;
  width: 9.0625rem;
  height: 2.5rem;
  background: #E6E6E6;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}  


.date-number {
position: absolute;
color: white;
width: 1.25rem;
height: 1.25rem;
border-radius: 50%;
background: #EB1825;
opacity: 1!important;
top: 0.5rem;
left: 13.25rem;
text-align: center;
line-height: 1.25rem;
}

.date-active {
color: #000000!important;
opacity: 0.4;
flex: none!important;
order: 0!important;
flex-grow: 0!important;
margin: 0px 10px!important;
border: 1px solid #cbc6c6!important;
box-sizing: border-box!important;
border-radius: 5px!important;
}

.delivery__button {
display: none; /*flex*/
}

.delivery__button  button {
margin-left: 16px;
}
/*
.delivery__mobile-version input[type='time'] , input[type='date']  {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 12px;
position: static;
width: 187px;
height: 48px;
left: 0px;
top: 0px;
border: 1px solid #e8e5e5;
box-sizing: border-box;
border-radius: 4px;
flex: none;
order: 0;
flex-grow: 0;
margin: 0px 8px;
font-size: 15px;
line-height: 24px;
}
*/
.arrow {
width: 40px;height: 40px;margin-left: 5px;cursor: pointer;
}
.arrow-left {
width: 40px; height: 40px; margin-left: 20px; margin-right: 5px;cursor: pointer;
}


.wrapper__category_menu {
display: flex;
position: relative;
flex: 1 1 auto;
overflow-y: auto;
}
/*=====================Категории=====================*/

.category {
  /*overflow-y: initial;*/
  overflow-y: auto;
  position: sticky;
  top: 0;
  margin-right: 48px;
  z-index: 10;
  min-width: 210px;
}

.category-filter {
display: none;
}

.wrapper__category {
/*z-index: 1;
position: fixed;*/
width: 100%;
/*top: 155px;*/
/*top: 152px;*/
background: white;
}

.wrapper__category  li{
white-space: nowrap;
}

.category__item {
font-weight: 400;
font-size: 16px;
line-height: 18px;
color: #0D0D0D;
margin: 10px auto;
cursor: pointer;
}

.category__a {
color: #0D0D0D;
}

.category__item-active {
color: #ED454A;
}
/*=====================меню=====================*/

.wrapper__tester {display: flex;}

.menu {/*margin-left: 228px;*//*margin-top: 110px;*/}
.wrapper__menu {display: flex;flex-wrap: wrap;}
.menu__header {font-weight: 700;font-size: 26px;line-height: 46px;}
.menu__text {padding-top: 12px;padding-bottom: 24px;font-weight: 300;font-size: 18px;line-height: 170%;}
.menu__card {
  display: flex; flex-direction: column; justify-content: space-between; 
  max-width: 19.115rem;
  margin: 10px 11px;
  position: relative;
  border-radius: 20px;
  border: none;
  box-shadow: 0 8px 20px rgba(83, 83, 83, 0.08);
  background: rgba(217, 217, 217, 0.00);}
.menu__card-image {border-radius: 18px 18px 0 0;width: 100%;height: auto;}
.menu__card-image-new {width: 64px;position: absolute;top:4px;left:4px;}
.menu__card__item-text {padding: 16px 16px 16px 16px;}
.menu__card-header {font-weight: 600;font-size: 16px;line-height: 140%;color: #0D0D0D;flex: none;order: 0;flex-grow: 0;margin-bottom: 4px;}
.menu__card-text {font-weight: 400;font-size: 12px;line-height: 16px;color: #979797;flex: none;order: 1;flex-grow: 0;margin-bottom: 4px;}
.menu__card__item-text small {font-weight: 300;font-size: 12px;line-height: 16px;color: #979797;opacity: 0.8;flex: none;order: 2;flex-grow: 0;margin: 4px 0px;}

.menu__card-price {
  font-size: 24px; 
  font-weight: bold; 
  border-radius: 20px;
  /*padding: 8px;*/
  margin-right: center;
  width: fit-content;
  /*max-height: 34px;*/
}
.menu__card-price-base {font-size: 14px;padding: 8px;text-align: center;width: fit-content;max-height: 34px;text-decoration: line-through; margin-left: 5px;text-decoration-color: red;}

.menu__card-count {font-weight: 600;font-size: 24px;/*line-height: 40px;*/text-align: center;letter-spacing: 0.05em;}
.menu__card-items-count {position: relative;width: 64px;}
.plus,.mines {position: absolute;font-weight: 600;font-size: 24px;line-height: 24px;letter-spacing: 0.05em;color: #EB1825;cursor: pointer;}
.plus {top: 0px;right: 0;}
.mines {top: 0px;right: 48px;}
.menu__card-wrapper{display: flex;justify-content: space-between;align-items: center;margin: 0 16px 16px 16px;}
.menu__card-btn {font-weight: 600;font-size: 14px;line-height: 9px;letter-spacing: 0.04em;text-transform: uppercase;color: #ED454A;flex: none;order: 0;flex-grow: 0;margin: 0px 0px;background: #E6E6E6;border-radius: 5px;padding: 12px;cursor: pointer;}

/*
@media screen and (min-width: 1920px) {
.wrapper__menu {
grid-template-columns: repeat(4,21.333rem);
}
}

@media screen and (min-width: 1366px) {
.wrapper__menu {
grid-template-columns: repeat(3,21.333rem);
}
}
*/

@media screen and (max-width: 800px) {
/*=========================общие обертки=======================*/  
.container {margin-left: 12px;margin-right: 12px;}
.wrapper__category_menu {display: block;}
/*=========================мобильное меню=======================*/  
.burger {display: block;}
.account_pic {display: block;}
.account_text {display: none;}
.navbar_section1 {display: inline-grid;}
.text_navbars {text-align: unset;}
.offer_logo_block1 {width: 100%;}

/*===========================мобильное футер========================*/  
.wrapper__footer {padding: 0px 6px 0px 6px;}
/*===========================home========================*/  
.offer {flex-wrap: wrap;margin-left: 5px;margin-right: 5px;}
.offer_logo {width: 100%;padding: 6px;flex-wrap: wrap;}
.offer_texts {width: 100%;border-left: unset;}
.container_dontworry {flex-wrap: wrap;}
.column {width: 100%;}
.product_cart {width: 100%;}
.block4__text1 {font-size: 14px;line-height: 16px;}
.image_wh {display: none;}
.slider_wh {display: block;}
.image_a {display: none;}
.slider_a {display: block;}


/*===========================дата доставки========================*/ 
.delivery {padding: 0;} 
.delivery__label {display: none;}
.arrow {display: none;}
.arrow-left {display: none;}
.delivery-items {padding: 6px;}
/*===========================категориии========================*/  
.category {margin-right: 0;}
.wrapper__category {width: 100%;display: flex;overflow: auto;}
.category-filter {display: block;margin-right: 12px;margin-left: 5px;}
.category__item {padding: 8px 8px;background: #E6E6E6;border-radius: 6px;margin-right: 4px;}
/*===========================мобильное меню========================*/  
.wrapper__menu {margin-left: 0px;}
}
@media screen and (max-width: 600px) {
/*=========================общие обертки=======================*/  
.container {margin-left: 0px;margin-right: 0px;}
/*===========================мобильное меню========================*/  
.wrapper__menu {margin-left: 0px;}
.menu__card {max-width: none;}
/*=========================для форм=======================*/  
.col-25, .col-75, input[type=submit] {width: 100%;margin-top: 0;}
}
@media screen and (max-width: 340px) {
.block4__text1 {font-size: 14px;line-height: 16px;}
.block4__text2 {font-size: 12px;line-height: 14px;}
.block4_column1 {margin: 12px;}
}  


/*.container {
    max-width: 1376px;
    margin: 0 auto;
  }
*/  
  
  .menu {
    margin-top: 20px;
    height: 646px;
  }
  .menu h2 {
    margin-bottom: 40px;
    color: #212121;
    font-family: MuseoSansCyrl;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  .menu__wrapper {
    display: flex;
    justify-content: space-between;
  }
  @media screen and (max-width: 1376px) {
    .menu__wrapper {
      justify-content: space-around;
    }
  }
  .menu__item {
    position: relative;
  }
  @media screen and (max-width: 1376px) {
    .menu__item img {
      max-width: 330px;
    }
  }
  .menu__descr {
    position: absolute;
    bottom: -230px;
    width: 445px;
    height: 284px;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.04);
  }
  @media screen and (max-width: 1376px) {
    .menu__descr {
      max-width: 330px;
    }
  }
  .menu__descr p {
    margin-bottom: 16px;
    color: #212121;
    font-family: MuseoSansCyrl-300;
    font-size: 18px;
    font-style: norma;
    font-weight: 600;
    line-height: 110%;
  }
  .menu__descr ul {
    padding-left: 24px;
  }
  .menu__descr ul li {
    list-style: disc;
    color: #263238 x;
    font-family: MuseoSansCyrl-300;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  
  .order {
    margin-top: 80px;
  }
  .order h2 {
    margin-bottom: 40px;
    color: #212121;
    font-family: MuseoSansCyrl;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  .order__wrapper {
    display: flex;
    align-items: center;
  }
  .order__item {
    display: flex;
    margin-bottom: 24px;
  }
  .order__item p {
    color: #263238;
    font-family: MuseoSansCyrl-300;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  .order__item img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
  }
  .order__item ul {
    padding-left: 24px;
  }
  .order__item ul li {
    list-style: disc;
    color: #263238;
    font-family: MuseoSansCyrl-300;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  .order__pay {
    min-width: 678px;
    height: 368px;
    margin-left: 20px;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #E31E24;
    background: #FFF;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.04);
  }
  .order__header {
    color: #000;
    text-align: center;
    font-family: MuseoSansCyrl;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.24px;
  }
  .order__tabl {
    margin-top: 32px;
  }
  .order__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
  }
  .order__line p {
    width: 305px;
    height: 71px;
    padding-top: 24px;
    border-right: 1px solid #E5E5E5;
    color: #263238;
    font-family: MuseoSansCyrl-300;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  .order__line p:last-child {
    padding-left: 20px;
    border-right: none;
  }
  .order__line span {
    font-weight: 600;
  }
  .order__line_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
  }
  .order__line_header p {
    width: 305px;
    height: 44px;
    border-right: 1px solid #E5E5E5;
    color: #000;
    font-family: MuseoSansCyrl-300;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.2px;
  }
  .order__line_header p:last-child {
    padding-left: 20px;
    border-right: none;
  }



/*==================НОВОЕ ЧТО Я ВСТАВИЛ========================*/

@media screen and (max-width: 1444px) {
    .header__info {
        margin-left: auto;
    }
}

@media screen and (max-width: 1429px) {


    /*.category {
        left: 38px;
    }*/
    html {
        font-size: 1.23648vw;
    }
    .header__navbar li,.header__card-price,.delivery__date-items p,.category__item,.menu__text {
        font-size: 0.993315em;
    }
    .menu__card-header{
        font-size: 0.893315em;
    }
    .menu__card-text,.menu__card__item-text small{
        font-size: 0.693315em;
    }
    .menu__card-text {
        font-size: 0.75em;
    }
    .menu__header {
        font-size: 2.375em;
    }
    .header__info p,.delivery-items {
        white-space: nowrap;
        font-size: 0.8em;
    }

    .menu__card-price,.menu__card-items-count p {
        font-size: 1.5em;
    }
    .menu__card-btn {
        font-size: 0.875em;
    }
    .delivery-items {
        justify-content: center;
        align-items: center;
    }
    .header__info {
        margin-left: auto;
    }

    .menu__header,.menu__text,.wrapper__menu {
        /*margin-left: 21vw;*/
    }

    .wrapper__menu {
        grid-template-columns: repeat(3, 20.333rem);
    }
    .menu__card {
        width: 19rem;
    }
    .menu__card-wrapper {
        width: 18rem;
    }

}
@media screen and (max-width: 1150px) {
    .header__card {
        display: flex;
        margin-left: auto;
    }
}

@media screen and (max-width: 968px) {
    .header__navbar {
        margin-left: 44px;
    }
    .delivery__date {
        margin-left: 8px;
        /*margin-left: 50px;*/
    }
}

@media screen and (max-width: 1280px) {


    /*.wrapper__menu {
        grid-template-columns: 1fr 1fr;
        width: 749px;
        margin: 0 auto;
    }*/

    .mobile {
        display: none;
    }


}

@media screen and (max-width: 768px) {

    .arrow {
        display: none;
    }

    .container {
        padding: 0 12px 0 12px;
    }

    html {
        font-size: 16px;
    }

    .wrapper__delivery {
        justify-content: space-between;
    }

    .test {
        justify-content: space-between;
    }

    /*.delivery__mobile-version  input[type='date'] {
        margin: 0;
    }*/

    .delivery {
        border-left: 0px;
        border-right: 0px;
    }

    .delivery__label {
        display: none;
    }

    .menu__header,.menu__text {
        margin-left: 3vw;
    }

    .menu__card {
        width: 22rem;
    }
    .wrapper__category {
        max-width: 22.5rem;
    }

    .category__item {
        margin: 15px 10px;
    }

    .wrapper__menu {
        grid-template-columns: 1fr 1fr;
        width: 749px;
        margin: 0 auto;
    }

    .header__navbar, .header__info /*.header__card , .delivery__date , .delivery__button*/ {
        display: none;
    }

    .delivery__date {
        overflow: auto;
        padding-top: 10px;
    }
    
    .burger-menu,delivery__button{
        display: block;
    }

    /*.delivery__mobile-version,*/ .wrapper__category {
        display: flex;
    }
    .category-filter {
        display: block;
        margin-right: 12px;
    }

    .wrapper__category {
        justify-content: space-between;
        width: 700px;
    }

    .category {
        /*top: 183px;*/
        background: none;
    }

    .menu {
        /*margin-top: 276px;*/
        margin-left: 0;
    }
    .category__item {
        padding: 11px 8px;
        background: #E6E6E6;
        border-radius: 5px;

    }

    .header__navbar {
        position: absolute;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        margin: 76px 0 0 0;
        background: white;
        z-index: 999;
    }
    .header__navbar li{
        padding-left: 0;
        text-align: center;
        font-size: 24px;
        margin: 20px 0;
    }
    .header__navbar a {
        color: black;
    }
    
    .wrapper__home {
        margin-top: 50px;
    }

    .advantages__home {
        display: inline-block;
        margin-top: 20px; 
    }

    .advantages_box__home {
        width: 100%; 
    }

    .advantages_left_home {
        margin-left: 0px; 
    }
    
}

@media screen and (max-width: 600px) {
  .wrapper__menu {
      grid-template-columns: 1fr;
      width: 100%;
  }

    .wrapper__footer {
        padding: 4px 4px 0px 4px;
    }

    .category-mobile {
        display: none;
    }

    .wrapper__category {
        width: 100%;
        max-width: 94vw;
        overflow: auto;
        margin-right: 5px;
    }

    .delivery__date-items p {
       font-size: 12px;
    }

    .delivery__mobile-version input[type='time'], input[type='date'] {
        width: 168px;
    }

    .menu__card {
        margin: 10px auto;
    }
    .menu__card__item-text {
        padding: 16px 16px 50px 16px;
    }
    .menu__card-wrapper {
        width: 20rem;
    }
}

@media screen and (max-width: 430px) {
    .menu__card-wrapper {
        width: 19.1875rem;
    }
}

@media screen and (max-width: 360px) {
    .category__item {
        margin: 15px 2px;
    }
    .wrapper__menu {
        width: 100%;
    }
    .menu__card {
        width: 21rem;
    }
}
