.single-product-card {
    width: 250px;
    height: auto;
    min-height: 400px;
    margin-bottom: 20px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    position: relative;
    text-align: center;
}

.single-product-card-image {
    max-height: 250px;
    max-width: 100%;
    width: auto;
}

.single-product-card-body {
    padding: 15px 15px 5px;
}

.single-product-card-author {
    font-size: 14px;
    margin-top: 0;
}

.single-product-card-author a {
    display: none;
}

.single-product-card-title {
    font-size: 16px;
    margin-bottom: 0;
}

.single-product-card-title:hover {
    color: #137d7a;
}

.single-product-card-footer {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #333333;
    color: #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
}

.single-product-card-footer > form {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
}

.single-product-card-btn {
    border: none;
    outline: none;
    background: transparent;
    color: #FFF;
    height: 40px;
    width: 45px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.single-product-card-btn:hover {
    background: #ed6663;
    color: #FFF;
}

.single-product-card-btn i {
    font-size: 20px;
    line-height: 40px;
}

.single-product-card-btn:focus {
    color: #FFF;
    border: none;
}

.add-to-cart-btn i {
    font-size: 25px;
    line-height: 36px;
}

.single-product-card-price {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 15px;
    height: 40px;
    line-height: 40px;
}

.single-product-card-price span {
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    margin-left: 10px;
}

.single-product-card-price .base-price.strike {
    font-size: 14px;
    text-decoration: line-through;
    color: #ccc;
}

.single-product-card-price .sale-price.sale-price-promo {
    color: #ed6663;
}

.ebook-product-label,
.out-of-stock-label {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: 0 10px;
    background-color: rgba(213, 87, 80, 0.8);
}

.out-of-stock-label-card {
    line-height: 1;
    color: rgba(213, 87, 80, 1);
    font-weight: bold;
    text-align: center;
    font-size: 12px;
}