.product-items_wrapper {
    margin-top: 80px;
}

.product-item_wrapper {
    height: 410px;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    border: 1px solid #ddd;
    margin-bottom: 14px;
    font-size: 14px;
    color: #000;
    text-align: center;
    position: relative;
}

.product-item_img {
    width: 172px;
    height: 150px;
    position: absolute;
    left: 50%;
    margin-left: -86px;
    bottom: 20px;
}

.product-item_title {
    font-size: 16px;
    color: #000;
    margin-top: 24px;
    text-align: center;
}

.product-item_desc {
    margin: 14px 0 10px;
}

.product-item_metas {
    display: flex;
    justify-content: center;
}

.product-item_meta {
    padding-right: 20px;
    position: relative;
}

.product-item_meta::after {
    content: '';
    height: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
    border-right: 1px solid rgba(0, 0, 0, 0.7);
}

.product-item_meta:last-of-type {
    padding: 0;
}

.product-item_meta:last-of-type::after {
    border: 0;
}

@media(max-width: 768px) {
    .product-item_wrapper {
        height: 300px;
    }

    .product-item_meta {
        font-size: 12px;
        white-space: nowrap;
        padding-right: 10px;
    }

    .product-item_meta::after {
        right: 4px;
    }
}