.featured-products-wrapper :is(.owl-prev, .owl-next) {
    height: 39.625rem;
    width: 3rem;
    top: .325rem;
    margin-bottom: 0;
    &:hover {
        transition: background-color .25s ease-in-out;
        animation-name: slideBtnBcAni;
        animation-duration: 4s;
        animation-iteration-count: 1;
    }
}

.product-card {
    height: 39.625rem;
    padding: .625rem;
    text-align: left;
}

.product-card .product-details {
    height: 29.5rem;
    overflow: hidden;
}

.product-card .product-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

li.product-card .product-img {
    max-width: 240px;
}

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

.product-card .product-name {
    color: #151515;
    font-size: 1rem;
    font-weight: 500;
    margin: .5rem 0 .5rem 0;
}

.product-card .product-desc {
    color: #151515;
    overflow: hidden;
    font-size: .875rem;
    line-height: 1rem;
}

.product-card .product-desc :is(p,ul,dl,ol) {
    margin-bottom: .5rem;
    font-size: .875rem;
    line-height: 1rem;
    list-style: initial;
}

.product-card .price {
    font-size: 1rem;
}

.product-card .original-price {
    color: #151515;
}

.product-card .sale {
    float: right;
    color: #ec1d25;
}

.product-card .sku {
    color: #7f7f7f;
    font-size: .875rem;
}

.product-card .product-order {
    height: 5.675rem;
}

.wishlist-remove {
    text-align: center;
    position: absolute;
    top: 0;left: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0px 0 0 0px;
    margin: 0;
    color: #ec1d25;
    background: none;
    transition-property: background,color;
    transition-duration: .25s;
    transition-timing-function: linear
}

.wishlist-remove:hover {
    color: #ffffff;
    background: #ec1d25;
}

.wishlist-remove i {
    top: 0;position: absolute;
    top: 50%;left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}