.woocommerce-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: inherit
}

.woocom_product {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    width: calc(33.33% - 20px);
    box-sizing: border-box
}

.woocom_image {
    max-width: 100%;
    height: auto;
    margin: 0 auto
}

.woocom_name_overlay {
    position: relative;
    font-size: 23px;
    line-height: 1.2em;
    text-align: center
}

.woocom_name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.8);
    display: contents;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    padding: 10px;
    opacity: 0;
    transition: opacity .3s ease
}

.woocom_name_overlay:hover .woocom_name {
    opacity: 1
}

.woocom_prices {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-weight: 700;
    align-items: center;
    padding: 10px 0;
    background: #f2f2f2
}

.woocom_price {
    text-decoration: line-through;
    color: gray !important;
    padding-left: 3px;
    font-size: 18px !important;
    margin-bottom: 0 !important
}

.woocom_special_price {
    margin-right: 11px !important;
    font-weight: 600;
    letter-spacing: .62px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    background: #901e4c;
    padding: 5px 19px;
    color: #fff !important;
    margin-bottom: 0 !important;
    border-radius: 30px;
    font-size: 19px;
    box-shadow: 0 0 7px #5c152a !important;
    transition: all .5s;
    margin-top: 10px;
    margin-bottom: 0 !important
}

@media (max-width: 1380px) {
    .magento-products {
        flex-direction:column;
        width: 100%
    }

    .woocom_product {
        width: 100%
    }

    .woocom_image {
        margin: 0
    }
}