﻿.product-card {
    background-color: #fff;
    position: relative;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    overflow: hidden;
}
.product-card:hover {
    border-color: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.product-card .product-card-body
{
    display: flex;
    justify-content: center;
}
.product-label {
    font-size: 85.71%;
    width: 50px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    text-transform: uppercase;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 20px;
    z-index: 4;
}
.new-label {
    background-color: #161B21;
    color: #fff;
    right: 20px;
}
.sale-label {
    background-color: #9c2d94;
    color: #fff;
    left: 20px;
}
.product-details {
    padding: 15px 15px 15px;
}
.product-details .category-name {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 92.85%;
}
.product-details .category-name a {
    color: #161B21;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    hyphens: auto;
    word-wrap: break-word;
}
.product-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin: 0 0 12px;
    display: block;
    hyphens: auto;
    word-wrap: break-word;
    font-size: 16px
}
    .product-item-name a {
        color: #161B21;
        font-family: 'Poppins', sans-serif;;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        padding: 6px 0;
    }
.product-item-name a:hover {
    color: #5089FD;
}
.product-rating .fa {
    color: lightgray
}
.product-rating .checked {
    color: orange;
}
.product-price .new-price {
    color: #9c2d94;
    font-size: 20px;
    font-weight: 600;
}
.product-price .old-price {
    text-decoration: line-through;
    font-size: 15px;
}
.btn-cart {
    height: 44px;
    line-height: 44px;
    background-color: #f5f5f5;
    width: 44px !important;
    color: #525252;
    margin-top: -15px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
