.sx-product-card-wrapper {
    margin-bottom: 10px;
    margin-top: 5px;
}

.sx-product-additional-btns a .sx-added {
    opacity: 1;
    color: var(--primary-color);
}
.sx-product-additional-btns a:hover {
    text-decoration: none;
    opacity: 1;
}
.sx-product-additional-btns a i {
    opacity: 0.8;
}
.sx-product-additional-btns a:focus,
.sx-product-additional-btns a:active {
    color: gray;
}
.sx-product-additional-btns a {
    margin-left: 0.5rem;
    color: gray;
    font-size: 1.3rem;

}
.sx-product-card {
    border: 1px solid transparent;
    /*border-bottom: none;*/
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: var(--base-radius);
    position: relative;
    background: #fff;
    margin: 0 auto 5px;
    /*max-width: 300px;*/
    display: flex;
    flex-direction: column;
}

.sx-product-list-summary {
    margin-bottom: 5px;
}

.sx-product-card .sx-product-card--photo img {
    width: 100%;
}

.sx-product-card .sx-product-card--photo {
    padding: 5px 5px 5px 5px;
    margin: 0 0 5px 0;
    text-align: center;
    position: relative;
}

.sx-product-card .sx-product-card--info {
    padding: 0 10px 10px 10px;
    zoom: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sx-product-card--title {
    min-height: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    overflow: hidden;
}

.sx-product-card .sx-product-card--actions {
    /*position: absolute;
    bottom: 10px;*/
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.sx-product-card:hover .sx-product-card--photo img {
    opacity: 0.9;
}

.sx-product-card.not-available .sx-product-card--info > *, .sx-product-card.not-available .sx-product-card--photo {
    opacity: .5;
}

.sx-product-card.not-available .sx-product-card--actions {
    opacity: 1;
}

.sx-product-card--title-a {
    /*font-weight: bold;*/
    line-height: 1;
    font-size: 14px;
}

.sx-list-new-price {
    font-size: 20px;
    font-weight: 700;
}
.sx-remove-order-item {
    cursor: pointer;
}

@media (min-width: 992px) {
    .sx-product-card .sx-product-card--actions {
        /*visibility: hidden;*/
    }

    .sx-product-card.hover, .sx-product-card:hover {
        border-color: #dfdfdf;
        z-index: 20;
    }

    .sx-product-card.hover .sx-product-card--actions, .sx-product-card:hover .sx-product-card--actions {
        visibility: visible;
    }


    .sx-product-card.hover {
        z-index: 21;
    }
}


.sx-product-card--sale {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 58px;
    height: 58px;
    text-align: center;
    background: #ffde09d4;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 5;
    font-weight: 700;
    line-height: 16px;
    padding: 14px 0 0;
}

.sx-product-card--sale .number {
    font-size: 1.833333em;
}

.sx-product-card--sale .percent {
    font-size: 1.166667em;
}

.sx-product-card--sale .caption {
    text-transform: uppercase;
    font-size: .666667em;
}

.sx-product-additional-btns {
    display: flex;
}
/*.sx-product-card .sx-favorite-product {
    position: absolute;
    right: 25px;
    top: 22px;
    zoom: 1;
    z-index: 5;
    display: none;
}*/

.sx-product-card:hover .sx-favorite-product {
    display: block;
}



/**
 * Для мобильной версии
 */
@media (max-width: 768px) {
    .sx-product-card--title {
        line-height: 1;
    }

    .sx-product-card--title-a {
        font-size: 12px;
    }

    .sx-list-new-price {
        font-size: 16px;
        font-weight: 700;
    }

    .sx-product-card .sx-product-card--info {
        padding: 0 5px 5px 5px;
    }

    .sx-product-card-wrapper {
        padding-top: 5px;
    }

    .sx-product-card .sx-favorite-product {
        display: block;
        right: 5px;
        top: 1px;
    }
    .sx-product-card--sale {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        text-align: center;
        background: #ffde09d4;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        z-index: 5;
        font-weight: 700;
        line-height: 1;
        padding: 6px 0 0;
    }

    .sx-product-card--sale .number {
        font-size: 1em;
    }
    .sx-product-card--sale .percent {
        font-size: 1em;
    }
    .sx-product-card--sale .caption {
        text-transform: uppercase;
        font-size: .466667em;
    }

}