

.btn-product-des{
    cursor: pointer;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 700px;
    right: 8px;
    
}
.btn-product-des i{
    cursor: pointer;
    color: #df6400;
    font-size: 20px;
   
}

/* Menu lateral */


.product-des{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255); 
    width: 400px;
    height: auto;
    position: absolute;
    top: 700px;
    /* float: left; */
    right: 0;
    z-index: 99;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border-radius: 15px;
}

.product-des-container{
    width: 400px;
    height: auto;
    background-color: rgb(255, 255, 255);
    position: absolute;
    z-index: 99;
    transition: all 500ms ease;
    transform:  translateX(100%);
    border-radius: 15px;
    box-shadow: -3px 2px 10px rgb(0 0 0 / 19%);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

#btn-product-des:checked ~ .product-des{
    opacity: 1;
    visibility: visible;
}

#btn-product-des:checked ~ .product-des .product-des-container{
    transform:  translateX(0%);
}

.detached-dishes{
    width: 100%;
    height: auto;
    padding: 20px;
    color: c7c7c7;
    border-bottom: 1px solid rgb(165, 165, 165);
}
.dishes-title{
    width: 100%;
    font-size: 20px;
    text-align: center;
}
.row-dishes{
    height: auto;
}
.rowcontent{
    height: 100%;
    width: 100%;
}

.row-dishes-container{
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid rgb(211, 211, 211) ;
}

.dishes-img{
    width: 8em;
    height: 5.5em;
    border-radius: 8px;
    background: rgb(3, 153, 223);
    float: left;  
    position: relative;
    overflow: hidden;
}
.dishes-img img{
    position: absolute;
    top: 4px;
    left: -29px;
    right: 0px;
    bottom: 0px;
    max-width: 170%;
    max-height: 120%;
    margin: auto;
    
}

.dishes-info{
    text-align: center;
    float: left;
    width: 140px;
}

.dishes-info p{
    font-weight: 800;
    color: rgb(54, 54, 54);
}
.dishes-info p a{
    text-decoration: none;
    color: rgb(107, 107, 107);
    list-style: none;
}

.dishes-info p a:hover{
    color: rgb(255, 102, 0);
}


.dishes-stars{
    width: 150px;
}
.dishespromotion{
    width: 100%;
    height: 40px;
    padding: 10px;
}

.dishes-sold{
    width: 100%;
    height: auto;
    padding: 20px;
    color: c7c7c7;
    border-bottom: 1px solid rgb(192, 192, 192);
    
}

.new-dishes{
    width: 100%;
    height: 33%;
    padding: 20px;
    color: c7c7c7;
    border-bottom: 1px solid rgb(192, 192, 192);
}

.product-des .product-des-container label{
    position: absolute;
    color: white;
    width: 20px;
    height: 20px;
    left: 7px;
    top: 7px;
    
}
.product-des .product-des-container label i{
    color: #df6400;
    cursor: pointer;
    font-size: 20px
}

/*submenu-categorias*/

.btn-product-cat{
    cursor: pointer;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 700px;
    left: 8px;
    transition: all 900ms ease;
}
.btn-product-cat i{
    cursor: pointer;
    color: #df6400;
    font-size: 20px;
   
}

.product-cat{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255); 
    width: 250px;
    height: auto;
    position: absolute;
    top: 700px;
    /* float: left; */
    left: 0;
    z-index: 99;
    transition: all 800ms ease;
    opacity: 0;
    visibility: hidden;
    border-radius: 15px;
    box-shadow: -3px 2px 10px rgb(0 0 0 / 19%);
    transform:  translateX(-100%);
}
#btn-product-cat:checked ~ .product-cat{
    opacity: 1;
    visibility: visible;
    transform:  translateX(0%);
}

#btn-product-cat:checked ~ .btn-product-cat{
    display: none;
    
}



.product-cat label{
    position: absolute;
    color: white;
    width: 20px;
    height: 20px;
    right: 7px;
    top: 7px;
    
}
.product-cat label i{
    color: #df6400;
    cursor: pointer;
    font-size: 20px
}

.content-cat{
    width: 100%;
    display: flex;
    /* text-align: center; */
    flex-direction: column;
    align-items: center;
}

.dishes-info-cat{
    text-align: center;
    
    width: 120px;
}