.bkr_cpt_products {
    display: flex;
    flex-flow: row;
    justify-content: center;
    flex-wrap: wrap;
}

.bkr_cpt_product {
    border-radius: 20px;
    border: solid 1px #dfdfdf;
    display: flex;
    flex-flow: column;
    position: relative;

    max-width: 300px;
    overflow: hidden;
    margin: 1rem;
    box-sizing: border-box;
}

@media (max-width: 500px) {
    .bkr_cpt_product {
        /* Account for the parent margin */
        max-width: calc(100vw - 2rem);
    }
}

.bkr_cpt_product_thumbnail {
    padding: 0 !important;
    box-sizing: border-box;
}

.bkr_cpt_product_thumbnail img {
    max-width: 100%;
    height: auto;
    border-bottom: solid 1px #dfdfdf;
}

.bkr_cpt_product_content {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 1rem;
    flex-grow: 1;
}

.bkr_cpt_product_title {
    margin: 0;
}

.bkr_cpt_product_title a {
    text-decoration: none;
}

.bkr_cpt_product_price {
    margin: 0;
}

.bkr_cpt_product_price s {
    color: grey;
}

.bkr_cpt_product_availability {
    font-size: 0.8rem;
    color: red;
    margin: 0;
}

.bkr_cpt_product_availability.has_stock {
    color: green;
}

.bkr_cpt_product_discount {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 2px;
    border-radius: 10px;
    background: orange;
    font-size: 0.8rem;
    margin: 0;
    font-weight: bold;
}

.bkr_cpt_product_tags {
    list-style-type: none;
    display: flex;
    flex-flow: row;
    padding: 0;
    margin: 0;
}

.bkr_cpt_product_tags li {
    padding: 2px;
    border-radius: 5px;
    background: #dfdfdf;
    margin: 2px;
    display: inline-block;
    font-size: 0.7rem;
}

.bkr_cpt_product_tags a {
    text-decoration: none;
}

