.product{
    display:flex;
    flex-direction:column;
}
.container-fluid a{
    color: black;
    text-decoration: none;
}

.product_desc{
    display: flex;
    flex-direction: column;
    margin-top: 7px;
    
    color: black;
}
/* #product_name{
    font-size: 24px;
    font-weight: 600;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;  number of lines to show 
    line-clamp: 1;
    -webkit-box-orient: vertical;
} */

/* #product_description{
    font-size: 18px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; number of lines to show 
    line-clamp: 1;
    -webkit-box-orient: vertical;
} */

#product_name {
    font-size: 24px;
    font-weight: 600;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
#product_description {
    font-size: 18px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
#product_price{
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}
#add_cart_btn{
    float: left;
    margin: 5px 0px 5px 0px;
}
