.product_cards {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25em -0.625em;
    justify-content: center;
    min-height: 15em;
}
.product_cards.slick-slider {
    margin: 0 -0.625em;
}
.product_cards .slick-prev {
    background-image: url(../../img/icons/chevron-left-000.svg);
}
.product_cards .slick-next {
    background-image: url(../../img/icons/chevron-right-000.svg);
}
.product_card {
    margin: 1.25em 0.625em;
    box-sizing: border-box;
    line-height: 1.5;
    color: inherit;
    cursor: pointer;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column;
    width: calc(100% - 1.25em);
}
.product_card:hover {
    text-decoration: none;
}
.product_card.slick-slide {
    margin: 0 0.625em;
    width: auto;
}
.product_card_thumb_wrap {
    height: 15em;
    position: relative;
    margin: 0 0 0.625em;
    box-sizing: border-box;
    border: 1px solid #ECECEC;
    border-radius: 0.5em;
}
.product_card_thumb_wrap img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: calc(100% - 2.5em);
    max-height: calc(100% - 2.5em);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
}
.product_card_thumb_wrap .img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 2.5em);
    height: calc(100% - 2.5em);
    transform: translate(-50%, -50%);
    max-width: 300px;
    max-height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.product_card_title {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    margin: 0;
    text-overflow: ellipsis;
    min-height: 1.5em;
    display: -webkit-box;
    /*
    -webkit-line-clamp: 1;*/
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -moz-box-orient: vertical;
    display: -moz-box;
}
.product_card_title:not(:last-child) {
    margin-bottom: 0.5em;
}
.product_card_excerpt {
    color: #6C727F;
    font-size: 0.875em;
    margin: 0;
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -moz-box-orient: vertical;
    display: -moz-box;
}
.product_card_excerpt:not(:last-child) {
    margin-bottom: 0.5em;
}
.product_card_price {
    color: #2C2F34;
    margin-top: auto;
    font-weight: 600;
}
.product_card_info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product_card_info.centered {
    text-align: center;
}
.product_card .marks {
    position: static;
}
.product_card .marks_side {
    height: calc(100% - 1em);
    justify-content: flex-end;
}
.product_card .marks .status_mark {
    margin-bottom: auto;
}