.product_card_short_list{
    ul{
        padding-left: 10px;
        
        li{
            font-size: 12px;
            text-align: left;
            min-height: 20px;
            
            div{
                display: block;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }
        &:hover{
            li{
                div{
                    white-space: unset;
                }
            }
        }
    }
}

.product-title a {
    white-space: pre-line;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    min-height: 79px;
    line-height: 19px;
}

.product_card_body{
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
}

@media (min-width: 992px){
    .product-description-wrapper .product-title {
        line-height: 1.8rem; 
        font-size: 1.8rem !important;
    }
}