    
    .burgerMenuDiv{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      background: #f1e973;
      z-index:99999;
      transition:height 0.5s;
      display:flex;
      flex-direction:column;
      justify-content: center;
      align-items: center;
      overflow:hidden;
      gap:20px;
    }

    .burgerMenuDiv::-webkit-scrollbar {
      display: none;
    }
    @media only screen and (max-height: 700px) { 

      .burgerMenuDiv{
        height:auto;
        justify-content: flex-start;
      }
    }


.menu_cat{
  width:80%;
  max-width:500px;
  height:auto;
  border-radius: 15px;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content: flex-start;
  align-items: center;
  padding-top:3%;
  padding-bottom:3%;
  gap:10px;
}

@media only screen and (min-width: 765px) { 

  .menu_cat{
    padding-top:1.5%;
    padding-bottom:1.5%;
  }
}

@media only screen and (min-width: 900px) { 

  .menu_cat{
    max-width:700px;
  }
}

.menu_cat img{
  width:80%;
  max-width:150px;
}

.menu_cat_kc{
  max-width:120px;
}

@media only screen and (min-width: 765px) { 
  .menu_cat img{
    width:80%;
    max-width:200px;
  }
  
  .menu_cat_kc{
    max-width:170px;
  }
  
}

@media only screen and (max-width: 400px) { 
  .menu_cat img{
    width:35%;
    max-width:130px;
  }

  .menu_cat_bottom{
    margin-top:0px;
  }

  .burgerMenuDiv{
gap:0px;
  }
}

.menu_cat_nyb{
  margin:10px 0;
}

@media only screen and (max-height: 700px) { 

  .menu_cat_nyb{
    margin-top: 30px;
  }
  .menu_cat_bottom{
    margin-bottom:30px;
  }
}

.menu_subcat{
  width:90%;
  height:auto;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top:2%;
}

.menu_subcat a{
  width:80%;
  height:auto;
  max-height:50px;
  background-color:grey;
  border-radius:5px;
  margin:5px;
  padding:5px 10px;
  font-size:24px;
  color:white;
  text-align: center;
}


.a_kc{
  background-color: #b464a8 !important;
}