/* SUBCATEGORIES */
.mx_webshop_subcategory {
    float: left;
    width: 170px;
    height: 198px;
    border: 1px #DDD solid;
    text-align: center;
    margin: 0 10px 10px 0;
}

.mx_webshop_subcategory_image {
    height: 150px;
    width: 150px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.mx_webshop_subcategory a {
    display: block;
    padding: 10px;
    width: 150px;
    height: 178px;
    text-decoration: none;
    color: #333;
}

.mx_webshop_subcategory h2 {
    font-size: 14px;
    color: #333;
    padding: 0;
    margin: 10px 0 0 0;
    height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    font-weight: normal;
}

/* PRODUCTS */
.mx_webshop_category_product {
    float: left;
    width: 170px;
    height: 253px;
    border: 1px #DDD solid;
    text-align: center;
    margin: 0 10px 10px 0;
}

.mx_webshop_category_product_image {
    height: 150px;
    width: 150px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.mx_webshop_category_product a {
    display: block;
    padding: 10px;
    width: 150px;
    height: 240px;
    text-decoration: none;
    color: #333;
}

.mx_webshop_category_product h2 {
    font-size: 14px;
    color: #333;
    padding: 0;
    margin: 10px 0;
    height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    font-weight: normal;
}

.mx_webshop_category_prices {
    font-size: 18px;
    margin: 10px 0;
    height: 20px;
}

.mx_webshop_category_old_price {
    text-decoration: line-through;
    font-size: 12px;
    font-weight: normal;
}

.mx_webshop_category_new_price {
    color: red;
}

.mx_webshop_category_product footer {
    background: #f9f9f9;
    width: 100%;
    height: 25px;
    line-height: 25px;
    margin: 10px -10px 0 -10px;
    padding: 0 10px 0 10px;
    font-weight: normal;
}

.mx_webshop_sort {
    clear: both;
    width: 100%;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .mx_webshop_category_product {
        width: 48%;
        margin: 1%;
        box-sizing: border-box;
    }
    .mx_webshop_category_product_image {
        display: inline-block;
        width: 100%;
    }
    .mx_webshop_category_product_image img {
        max-width: 100%;
    }
    .mx_webshop_category_product a {
        box-sizing: border-box;
        width: 100%;
    }
}