.product-card .product-card__sidebar {
    background: none;
}

.product-card-sale-details__header,
.product-card-sale-details__holder {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 12px 15px;
}

.product-card-sale-details__header {
    display: block;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 5px;
    padding: 20px 15px;
}

.product-card-sale-details__holder {
    
}

.product-card-sale__row {
    display: none;
    border-top: 1px solid #b6b6b6;
    padding-top: 5px;
    margin-top: 10px;
}

.product-card-sale__row.active {
    display: block;
}

.product-card-sale__row:first-child {
    border-top: 0 none;
    padding-top: 0;
    margin-top: 0;
}

.product-card-sale__cell_type_name {
    width: 100%;
    display: block;
    white-space: normal;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 14px;
    line-height: 18px;
}

.product-card-sale__cell_type_price_cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-card-sale__cell_type_price_cart .quantity-cart {
    display: flex;
    justify-content: space-between;
}

.product-card-sale__cell_type_price .stock {
    font-size: 13px;
}

.product-card-sale__cell_type_price .price {
    font-weight: 700;
}

.product-card-sale__cell.quantity input.ui-spinner-input  {
    background: #fff;
}

.product-card-sale__cell.quantity {
    padding: 0;
    margin: 0;
    width: auto;
    text-align: right;
    margin-right: 10px;
}

.product-card-sale__cell.quantity .ui-button  {
    display: none;
}

.product-card-sale__cell.quantity .spinner-box .ui-spinner {
    padding: 0;
}

.show-more {
    transition: all .3s;
    height: 9px;
    width: 14px;
    background: url(/local/templates/redesign/html/dist/assets/img/icons/accordion-arrow.svg) no-repeat center center;
    content: "";
    margin: 0 auto;
    cursor: pointer;
    transform: rotate(180deg);
}

.show-more.active {
    transform: rotate(0deg);;
}

@media screen and (max-width: 1100px) {
    .product-card .product-card__sidebar {
        height: auto;
    }
}