/* CATEGORIE */

#mx_webshop_category {
    clear: both;
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.mx_webshop_sort {
    text-align: right;
    clear: both;
    width: 100%;
    margin: 0 0 25px;
}

.mx_webshop_sort label {
    display: inline-block;
    margin-right: 10px;
    font-weight: normal;
}

#mx_webshop_sort {
    min-width: 230px;
    height: 38px;
    padding: 0 10px;
}

#column-content {
    float: left;
    width: calc(100% - 260px);
}

#mx_webshop_category_image {
    position: relative;
    margin-bottom: 25px;
    z-index: 1;
}

#mx_webshop_category_image img {
    width: 100%;
    height: auto;
}

#mx_webshop_category_image_overlay {
    position: absolute;
    width: 100%;
    height: auto;
    color: #FFFFFF;
    text-align: center;
    padding: 25px;
    bottom: 30px;
}

#mx_webshop_category_image_overlay p {
    font-size: 17px;
    margin-bottom: 0;
}

.mx_webshop_category_short_description {
    text-align: center;
}

#mx_webshop_subcategories {
    clear: both;
}

/* SUBCATEGORIES */
.mx_webshop_subcategory {
    float: left;
    width: 31.333%;
    height: auto;
    text-align: center;
    margin: 0 3% 30px 0;
    position: relative;
}

.mx_webshop_subcategory_image img {
    height: auto;
    width: 100%;
    display: block;
}

.mx_webshop_subcategory a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
}

.mx_webshop_subcategory h2 {
    bottom: 0;
    position: absolute;
    width: 100%;
    color: #FFFFFF;
    padding-top: 12px;
    min-height: 50px;
    height: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    font-weight: normal;
    margin: 0;
}

#mx_webshop_category_description p:first-of-type {
    display: none;
}



/* RESPONSIVE */
@media screen and (max-width: 1023px) {

    #column-content {
        width: 100%;
        float: none;
    }

    .mx_webshop_subcategory,
    .mx_webshop_subcategory:nth-of-type(3n) {
        width: 48.5%;
        margin: 0 3% 30px 0;
    }

    .mx_webshop_subcategory:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {

    #mx_webshop_category_image {
        display: none;
    }

    .mx_webshop_subcategory,
    .mx_webshop_subcategory:nth-of-type(3n),
    .mx_webshop_subcategory:nth-of-type(2n) {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .mx_webshop_sort {
        text-align: left;
    }

    #mx_webshop_sort {
        width: 100%;
        min-width: 0;
        margin-top: 10px;
    }
}