/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  /* CSS */
}
/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
@media (min-width: 1025px) and (max-width: 1280px) {
  /* CSS */
}
/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) 
{
.top-header {
  position: fixed;
  top: 105px;
  left:28px;
  right:30px;
  height: 60px;
}

  .mnu-item-wrapper {
    padding: 0px 10px;
    margin-bottom: 30px;
    transition: 0.3s ease all;
    width: 20%;
    text-align: center;
    line-height: 18px;
  }
}
/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* CSS */
}
/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
@media (min-width: 481px) and (max-width: 767px) {
  /* CSS */
}
/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
@media (min-width: 320px) and (max-width: 480px) 
{
    .top-header {
  position: fixed;
  top: 105px;
  left:0px;
  right:5px;
  height: 60px;
}
  .mnu-item-wrapper {
    padding: 0px 10px;
    margin-bottom: 30px;
    transition: 0.3s ease all;
    width: 33%;
    text-align: center;
    line-height: 18px;
  }
  .dish-wrapper h2.dish-name {
    font-size: 14px;
    color: #3f1a03;
  }
  .dish-wrapper .dish-price {
    font-size: 13px;
    color: #3f1a03;
    font-weight: 600;
  }
  .dish-wrapper .dish-desc {
    font-size: 12px;
    line-height: 14px;
  }
  .dish-wrapper .meal-pic {
    width: 30%;
  }
  .dish-wrapper .meal-pic .dish-img {
    width: auto;
    height: 110px;
    padding: 5px;
  }
  .dish-wrapper .rating {
    margin-bottom: 10px;
    border: 1px solid #d6d0cd;
    display: inline-block;
    border-radius: 3px;
    padding: 0px 5px;
  }
  .dish-wrapper .rating .fa {
    font-size: 14px;
    color: #ff9100;
  }
  .group-qty {
   
  }
  .group-qty .btn-minus {
    border: 1px solid #ccc;
    height: 30px;
    width: 30px;
    border-radius: 50px 0px 0px 50px;
    text-align: center;
    padding: 5px 10px;
    background-color: #d6d0cd;
    color: #3f1a03;
  }
  .group-qty .btn-minus:hover {
    background-color: #3f1a03;
    color: #fff;
  }
  .group-qty .btn-plus {
    border: 1px solid #ccc;
    height: 30px;
    width: 30px;
    border-radius: 0px 50px 50px 0px;
    text-align: center;
    padding: 5px 10px;
    background-color: #d6d0cd;
    color: #3f1a03;
  }
  .group-qty .btn-plus:hover {
    background-color: #3f1a03;
    color: #fff;
  }
  .group-qty .txt-total {
    text-align: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    line-height: 10px;
    color: #3f1a03;
  }
}
