body {
    background-color: rgb(244, 244, 244);
}

.product-box {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
    background-color: white;
}
.product-content-box {
    background-color: white;
}
.product-list-widget {
    .product-content-box {
        background-color: transparent;
    } 
}

.product-box-inner {
    .product-image-box {
        background-color: white;
        max-height: 125px;
        min-height: 125px;
        img {
            min-width: 125px;
            max-height: 125px;
        }
    }
}

.product .product-content-box .product-title  {
    max-height: 72px;
    overflow: hidden;
    min-height: 72px;
    display: block;

    h2 {
        text-overflow: ellipsis;
        white-space: normal;
        text-align: left;
    }
}
.product .category-box .product-content-box  {
    padding: 10px 10px 10px 10px;

    .product-title{
        max-height: 48px;
        overflow: hidden;
        min-height: 48px;
        display: block;
    }
}
.product .product-content-box {
    border-top:none;
}

.product .star-ratings  {
    text-align: left;
    ul li i  {
        font-size:10px;
    }
}

.price {
    text-align: left; 
    
    .product-Price-amount {
        font-weight: 700;
        font-size: 20px;
        color: var(--main-color);
    }
    small {
        text-align: right;
        float: right;
    }
    
}

@media screen and (max-width: 767px) {
   
    .product {
        width: 100%;
    }
    
}
table.cart_table .Price-amount {
    white-space: nowrap;
}

#ratingFeedback.stars li {
    font-size: xx-large;
}