.card-product {}
.card-product__header {}
.card-product__img_wrp {
    width: 160px;
    max-width: 100%;
    height: 160px;
    margin: 20px auto 8px;
    text-align: center;
}
.card-product__img {
    height: 100%;
    object-fit: contain;
}
.card-product__tags {
    position: absolute;
    top: 9px;
    left: 9px;
}
.card-product__tag_percent {
    background: #f1665e;
    color: #fff;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: bold;
}
.card-product__tag_special {
    background: #a9cf44;
    color: #fff;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: bold;
}
.card-product__tag_popular {
    background: #a9cf44;
    color: #fff;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: bold;
}
.card-product__quantity {
    position: absolute;
    top: 10px;
    right: 10px;
}
.card-product__quantity_not-available {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 25px;
    background: #f1665e;
}
.card-product__quantity_last-available {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 25px;
    background: #fff601;
}
.card-product__quantity_available {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 25px;
    background: #00b956;
    vertical-align: top;
}

.card-product__main {
    overflow: hidden;
    width: 100%;
}
.card-product__footer {
    /*height: 30px;*/
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 48px;
}
.card-product__title {
    height: 50px;
    margin-bottom: 10px;
    overflow: hidden;
}
.card-product__link {
    font-size: 15px;
    color: #2e4057;
}
.card-product__desc {
    font-size: 13px;
    color: #979daa;
    /*height: 36px;*/
    height: 16px;
}
.card-product__desc div{
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.card-product__prices {
    font-weight: 700;
    line-height: 28px;
    font-size: 16px;
}
.card-product__actions {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .2s 0s,visibility 0s .2s;
    -moz-transition: opacity .2s 0s,visibility 0s .2s;
    transition: opacity .2s 0s,visibility 0s .2s;
}
.card-product__price_discount {}
.card-product__price_original {
    font-weight: normal;
    text-decoration: line-through;
    color: #e94b35;
    margin-left: 10px;
    font-size: 14px;
}
.card-product__btn {
    padding: 0 20px;
    height: 34px;
    color: #3c3c3c;
    font-size: 14px;
    border-radius: 4px;
    background: #fff;
    background: none;
    border: 1px solid #E8E9F2;
    white-space: nowrap;
}
.card-product__btn:hover {
    background: rgb(169, 207, 68);
    color: #fff;
}
.card-product__sl:not(:empty) {
    font-size: 12px;
    background-color: #C5E319;
    padding: 5px 7px;
    display: inline-block;
    margin-top: 10px;
}

/* Media Queries
--------------------------------------*/
@media only screen and (max-width: 768px) {
    .card-product__img_wrp {
        height: 120px;
        margin: 20px auto 15px;
    }
    .card-product__actions {
        opacity: 1;
        visibility: visible;
    }
}