.card{
    background-color: #fff;
    box-shadow: 0px 0px 14px rgb(202 202 202);
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 30px;
}
.card-thumbnail img{
    border-radius: 5px;
    margin-bottom: 10px;
    min-height: 140px;
}
.card-title{
    line-height: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
    height: 50px;
}
.profile{
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.profile h6 .inst-name{
    font-size: 13px;
    line-height: 17px;
    margin-left: 5px;
    color: #6c6c6c;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
   -webkit-box-orient: vertical;
}
.mdisplay{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 25%;
    object-fit: cover;
}
.card-price{
    font-family: 'Kanit', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EEF0F1;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
.price del{
    color: rgb(124, 124, 124); 
    margin-top: 10px;
    font-size: 14px;
}
.card-price .newprice, .price{
    font-size: 19px;
    font-weight: 500;
}
.card-price .currency{
    font-size: 10px;
}
.card-price .btn-sale{
    font-family: 'Kanit', sans-serif;
    transition: background-color 5ms ease-out 1s;
    background-color: #4F4F50;
    border-radius: 5em;
    float: right;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.card-price .btn-sale:hover{
    background-image: linear-gradient(#eb8123,#eb6123);
    color: #fff;
}
.card-footer{
    font-family: 'Kanit', sans-serif;
    color: #fd8f00;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
