body {
    padding: 0px;
    margin: 0px;
    width:100%;
	overflow-x:hidden;
	background:#ffff;
    position: relative;
    background: linear-gradient(
        rgba(82, 83, 84, 0.4),
        rgba(48, 49, 49, 0.4)
      ), url(../image/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}
html {
    scroll-behavior: smooth;
}
*{
    padding: 0px;
    margin: 0px;
}
/*--------------------------------------------------------------
# navbar css
--------------------------------------------------------------*/
.nav_section{
    padding:20px 0px ;
}
.navbar{
    float: right;
    background: none !important;
    margin-left: 0px;
    padding: 0px;
    margin-top: -15px ;
}
.navbar .nav-item{
    margin-left: 10px;
}
.navbar .nav-item .nav-link{
   color: #ffff;
   font-size: 18px;
   transition: all 0.2s ease;
   position: relative;
}
.navbar .nav-item .nav-link:hover,.navbar .nav-item .nav-link.activenav{
   color: #0bb98a;
}
.navbar .nav-item .nav-link:after,.navbar .nav-item .nav-link.activenav::after{
    content: '';
    width: 0%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 2px;
    background: #0bb98a;
    transition: all 0.3s ease;
}
.navbar .nav-item .nav-link:hover:after,.navbar .nav-item .nav-link.activenav::after{
    width: 100% ;
}
/*--------------------------------------------------------------
# search box css
--------------------------------------------------------------*/
.search-box{
    width: fit-content;
    height: fit-content;
    position: fixed;
    bottom: 20px;
    z-index: 1800;
    left: 10px;
}
.input-search{
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: #f9ac2c;
    padding-right: 40px;
    color:#fff;
}
.input-search::placeholder{
    color:rgba(254, 253, 253, 0.8);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}
.btn-search{
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color:#f6f3f3 ;
    background-color:#f9ac2c;
    pointer-events: painted;  
}
.btn-search:focus ~ .input-search{
    width: 300px;
    color: #fff;
    border-radius: 20px 100px 100px 20px;
    background-color: rgb(172, 170, 170);
    border-bottom:1px solid rgb(172, 170, 170);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search:focus{
    width: 300px;
    color: #fff;
    border-radius: 20px 100px 100px 20px;
    background-color: rgb(172, 170, 170);
    border-bottom:1px solid rgb(172, 170, 170);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.signbtn{
   padding: 0px;
   float: right;
   margin: 0px;
   margin-right: 8px;
   list-style-type: none;
}
.signbtn a{
    text-decoration: none;
    color: #ffff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.signbtn a:hover{
    opacity: 0.5;
}

/*--------------------------------------------------------------
# main section
--------------------------------------------------------------*/
.main-section{
    background:#F3F3F3;
   padding-top: 10px;
}

.card {
    border: none !important;
    box-shadow: none !important;
    padding: 0px !important;
    border-radius: 0px;
    padding-top: 0px !important;
}
/*--------------------------------------------------------------
# main catagory header
--------------------------------------------------------------*/
.menuCatagory{
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
    font-size: 18px;
    background: #7e7e7e;
    color: #fff;
    padding: 10px 20px;
}
/*--------------------------------------------------------------
#  main catagor column
--------------------------------------------------------------*/
.list-group::-webkit-scrollbar {
    display: none;
}
.list-group{
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}
.list-group{
    height: 95vh;
    overflow-y: auto;
}
.list-group .list-group-item{
    border: none;
    font-size: 14px;
    color: rgb(143, 142, 142);
    font-weight: 300;
    transition: all 0.3s ease;
}
.list-group .list-group-item:hover{
    
    font-weight: 500;
}
.list-group-item.active{
    background: #acaaaa;
    color: #fff;
    font-weight: bold;
    border-radius: 0px !important;
}

.items-search{
   position: absolute;
}
.items-menu::-webkit-scrollbar {
    display: none;
}
.items-menu{
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

/*--------------------------------------------------------------
#  food section column or middle column
--------------------------------------------------------------*/
.all-food{
    border: 1px solid rgba(100,100,100,0.2);
}
.all-food:nth-of-type(odd) {
    background-color:#f5fcf7;
}      
.items-menu .option-items{
   display: flex;
   float: right;
   margin-bottom: 0px;
   margin-top: 30px;
}
.items-menu .option-items h6{
    font-size: 14px;
    word-break: break-all;
}
.items-menu .option-items p{
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}
.button {
    position: relative;
    background-color: #0bb98a;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
    padding: 0px;
    width: 40px;
    height: 40px;
    margin-top: -10px;
    text-align: center;
    -webkit-transition-duration: 0.4s; 
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
}  
.button:after {
    content: "";
    background: #f9ac2c;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px!important;
    margin-top: -120%;
    opacity: 0;
    transition: all 3s
}
.button:hover{
    opacity: 0.5;
}
.button:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}
.food-details{
   margin-top: 15px;
}
.food-details h3{
    font-size: 16px;
    font-weight: bold;
}
.food-details p{
    font-size: 14px;
    opacity: 0.8;
}
/*--------------------------------------------------------------
# your oder column or last column
--------------------------------------------------------------*/
.navs-tabs .nav-tabs {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    background: #e6e8e8;
    border-radius: 100px;
    padding: 5px;
}
.navs-tabs .nav-tabs {
    text-align:center;
}
.navs-tabs .nav-tabs .active{
   background: #7e7e7e;
   border-radius: 100px;
}
.navs-tabs .nav-tabs li a{
   display: block;
    justify-content: center;
    align-items: center;
   height: 60px;
   text-align: center;
   position: relative;
}
.navs-tabs .nav-tabs li a p:nth-child(1) {
   float: left;
   margin-left: 20px;
   margin-top: 12px;
}
.navs-tabs .nav-tabs li .active p:nth-child(1) i ,.navs-tabs .nav-tabs li .active p:nth-child(2),.navs-tabs .nav-tabs li .active p:nth-child(3){
   color: rgb(255, 249, 249);
}
.navs-tabs .nav-tabs li a p:nth-child(1) i ,.navs-tabs .nav-tabs li a p:nth-child(2),.navs-tabs .nav-tabs li a p:nth-child(3){
    color: rgb(53, 52, 52);
    font-weight: bold;
}
.navs-tabs .nav-tabs li a p:nth-child(1) i{
  
  font-size: 22px;
}
.navs-tabs .nav-tabs li a p:nth-child(2) ,.navs-tabs .nav-tabs li a p:nth-child(3){
  
   margin:0 auto;
   left: 0;
   margin-left: 20px !important;
   margin-top: 8px ;
   right: 0;
   display: block;
   position: absolute;
   font-size: 15px;
}
.navs-tabs .nav-tabs li a p:nth-child(3){
    margin-top: 30px;
    font-size: 12px;
}
.navs-tabs .tab-content ul{
    padding: 0px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    float: left;
    display: flex;
    margin-top: 10px;
    width: 100%;
    align-items: center;
    text-align: center;
}
.navs-tabs .tab-content ul li{
    list-style-type: none;
    text-align: center;
}
.navs-tabs .tab-content ul li{
   margin-left: 2px;
   margin-right: 2px;
} 
.cart-items{
    height: 95vh;
    overflow-y: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.cart-items::-webkit-scrollbar {
    display: none;
}

.cart-items{
  -ms-overflow-style: none; 
  scrollbar-width: none; 
 
}
.cart-insert{
    margin-top:50px;
    padding-top: 10px;
    max-height: 250px;
    width: 100%;
    overflow-y: auto;
    position: relative;
    display: block;
    left: 0px;
    margin-left: 0px; 
    border-top: 1px solid rgba(100,100,100,0.2);
    border-bottom: 1px solid rgba(100,100,100,0.2);
}
.cart-insert::-webkit-scrollbar {
    display: none;
}

.cart-insert{
  -ms-overflow-style: none; 
  scrollbar-width: none; 
 
}
.cart-insert ul,.subtotal-price ul{
    padding: 0px;
    margin: 0px;
    float: left;
    margin-top: 20px;
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 0px;
    margin-bottom: -2px;
}
.cart-insert ul li{
    list-style-type: none;
    
}
.cart-insert ul .quantity{
    display: flex;
}
.cart-insert ul .quantity button{
     padding: 0px !important;
     margin: 0px;
     height: 20px;
     align-items: center;
     justify-content: center;
     display: block;
     outline: none;
     box-shadow: none;
     border: none;
     font-size: 17px;
     cursor: pointer;
     margin-top: -2px;
     background: none;
     font-weight: bold;
}
.cart-insert ul .quantity button:nth-child(1) {
    color: #7e7e7e;
    font-weight: bold;
}
.cart-insert ul .quantity button:nth-child(3){
    color: #f9ac2c;
}
.cart-insert ul .quantity p{
    padding-left: 5px;
    padding-right: 5px;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}
.cart-insert ul .p-name{
    font-size: 14px;
    margin-left: 10px;
   
}
.cart-insert ul .price{
    float: right;
    position: absolute;
   right: 10px;
   font-size: 14px;
}

.subtotal-price ul{
    margin-top: 5px !important;
}
.subtotal-price ul li{
   display: inline-block;
   list-style-type: none;
}
.subtotal-price ul li:nth-child(1){
    font-size: 15px;
    font-weight: bold;
}
.subtotal-price ul li:nth-child(2){
    position: absolute;
    right: 10px;
    font-size: 14px;
}
.checkout .btn{
    box-shadow: none;
    border-radius: 0px;
    outline: none;
    background: #0bb98a;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
/*--------------------------------------------------------------
#  footer section
--------------------------------------------------------------*/

.footer{
    background: #242424;
    padding-top: 50px;
    padding-bottom: 10px;
}
.footer .s-link p{
    font-size: 20px;
    color: #fff;
}
.footer .s-link ul{
    padding: 0px;
    margin: 0px;
    color:#fff;

}
.footer .s-link ul li{
    list-style-type: none;
    line-height: 30px;
}
.footer .s-link ul li a{
    text-decoration: none;
    color:  #fff;
    transition: all 0.3s ease;
}
.footer .s-link ul li a:hover{
    opacity: 0.7;
}
.footer .payment{
    display: flex;
}
.footer .payment img{
    width: 70px;
}
.footer .copyright {
    color: #fff;
    text-align: center;
    margin-top: 50px;
    font-size: 12px;
}

/*--------------------------------------------------------------
# back to top
--------------------------------------------------------------*/
#js-top {
	position: fixed;
	bottom: -200px;
	right: 20px;
	padding:10px 14px 10px 14px;
	z-index:1000000;
	outline:none;
	box-shadow:none;
	border-radius:100px;
	background:#0bb98a;
	border:1px solid #0bb98a;
	z-index:1700;
	transition: all ease 0.4s;
}
#js-top i{
	color:#fff;
}
#js-top:hover i{
	color:#ffff;
}
#js-top:hover {
    background:radial-gradient(circle at 71% 51%,#0bb98a,#0bb98a 57%);
    border:1px solid #0bb98a;
    transition: all 0.4s;
}

/*--------------------------------------------------------------
#  responsive mobile or tab section
--------------------------------------------------------------*/

.mainCatgory-mobile{
    display: none;
}
.cart-mobile{
    display: none;
}
#dismiss{
    display: none;
}


@media only screen and (max-width: 1292px) {
    .navs-tabs .nav-tabs li a p:nth-child(1){
        margin-left: 5px;
        font-size: 15px;
    }
    .navs-tabs .nav-tabs li a p:nth-child(2), .navs-tabs .nav-tabs li a p:nth-child(3){
        margin-left: 30px;
    }
    .cart-insert ul .p-name {
       
        width: 90px;
        
        height: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

@media only screen and (max-width: 992px) {
    #js-top{
        bottom: 43px !important;
        right: 3px;
    }
    .search-box{
        
        bottom: 43px;
        z-index: 1800;
        left: 3px;
      }
    .mainCatgory-mobile{
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        height: 40px;
        width: 50%;
        background: #0bb98a;
        z-index: 2000;
    }
    .mainCatgory-mobile p,.cart-mobile p{
        font-size: 20px;
        text-align: center;
        color: #fff;
        font-weight: 700;
        margin-top: 5px;
    }
    .cart-mobile{
        display: block;
        position: fixed;
        bottom: 0px;
        right: 0px;
        height: 40px;
        width: 50%;
        background: #f9ac2c;
        z-index: 2000;
        
    }
    .also-cart-mobile{
        padding-left: 5px !important;
    }
    .also-mobilemenu{
        padding-right: 5px !important;
    }
    .also-mobilemenu,.also-cart-mobile{
        position: fixed;
        z-index: 1800;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        padding: 5px;
        background: #fff;
        display: none;
    }
    .navs-tabs .nav-tabs li a p:nth-child(1){
        margin-left: 10px;
    }
    .checkout{
        margin-bottom: 50px;
    }
    .items-menu{
        margin-bottom: 50px;
    }
    .items-menu .option-items{
        margin-left: 10px;
    }
    .footer .copyright {
      margin-bottom: 50px;
    }
}



@media (max-width: 768px) {
    
    .navbar .nav-item .nav-link:hover:after,.navbar .nav-item .nav-link.activenav::after{
        width: 120px ;
    }
    .navbar .nav-item .nav-link{
        color: #000;
    }
    .navbar-nav{
        margin-top: 100px;
    }
    .navbar-expand-md .navbar-toggler{
        display: block;
        border: none;
        box-shadow: none !important;
        outline: none !important;
        color: #fff;
    }
    .navbar-light .navbar-toggler-icon{
        color: #fff;
        filter: brightness(1) invert(1);
    }
    #navbar-sidebar {
      position: fixed;
      top: 0;
      opacity: 0;
      left: -150%;
      display: block;
      width: 100%;
      height: 100vh;
      z-index: 2500;
      background: #d7d4d4ee;
      overflow-y: scroll;
      padding: 0 15px;
      box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
      -webkit-overflow-scrolling: touch;
      -webkit-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in;
    }
  
    #navbar-sidebar.active {
      left: 0;
      opacity: 1;
      
    }
  
    #dismiss {
      display: block;
      width: 35px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      position: absolute;
      top: 10px;
      font-size: 25px;
      right: 10px;
      cursor: pointer;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }
  
    #dismiss:hover {
      background: #fff;
      color: #666;
    }
  
   .searcdiv {
    position: fixed;
    bottom: 30px;
    left: 10px;
    z-index: 1800;
   }
   .searcdiv .search_input{
    background: #b1aeae;
   }
   .footer .s-link p{
    margin-top: 40px;
   }
}

@media (max-width: 568px) {
    .signbtn a{
        font-size: 16px;
    }
.logo-image{
    width: 150px !important;
}
.mobile-fiex{
    margin-top: -60px;
}
.navbar-expand-md .navbar-toggler{
    margin-top: -10px;
}

}
