
.product-box a {
    text-decoration: none;
    color: black;
}

.product-img-box {
    background-color: #eeeeee;
    height: 102px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #dddddd!important;
}

.product-img-box img {
    display: block;
    max-width: 100%;
    max-height: 100px;
    margin: auto;
}

.product-text-box {
    line-height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 4;*/
    /*line-height: 16px;*/
    height: 70px;
}

.product-title {
    font-weight: 500;
    width: calc(100% - 2.7rem);
    color: #007bff;
}

.product-title:hover {
    text-decoration: underline;
    color: #0062cc;
}

.product-delivery {
    position: absolute;
    float: right;
    top: 2px;
    right: 26px;
    background-color: white;
    color: #bdbdbd;
    font-size: 14pt;
    cursor: pointer;
}

.product-delivery:hover {
    color: gray;
}

.product-cart-button {
    position: absolute;
    float: right;
    top: 0;
    right: 0;
    background-color: white;
}

.product-cart-button svg {
    margin-right: 4px;
}

.product-cart-button:hover {
    cursor: pointer;
}

.product-description {
    margin-top: 4px;
    font-size: 10pt;
    overflow: hidden;
    text-overflow: ellipsis;
}

def {
    display: block;
    color: red;
}

car {
    display: block;
    color: gray;
}

.rating-stars {
    width: 80px;
    position: absolute;
    bottom: 18px;
    right: 5px;
    /*padding-right: 3px;*/
    font-size: 16px;
    /*background-color: white;*/
    text-align: right;
}

.stars-good {
    color: coral;
}

.stars-bad {
    color: #aaaaaa;
}

.product-number-price-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 0.3rem);
    padding-bottom: 1px;
    font-size: 14pt;
    font-weight: 500;
    background-color: white;
}

.product-number {
    display: inline-block;
    overflow: hidden;
    max-width: 9rem;
}

.product-number div{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    display: inline-block;
    float: right;
}

.product-price span {
    margin-left: 2px;
}