
/* ==============================================================================
/* ====== PARENT CATEGORY
/* ============================================================================= */

.parent-category {
    list-style: none;
}

.parent-category li {
    display: table;
    margin-bottom: 15px;
}

.parent-category li a {
    background: #F3F3F3;
    border: 1px solid #DDD;
    color: #555;
    display: table-cell;
    padding: 0 10px;
    text-align: center;
    vertical-align: middle;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.parent-category li.cat-img a {
    background: #fff;
}

.parent-category li a:hover {
    background: #EEE;
    color: #555;
}

.parent-category li.cat-img a:hover {
    background: #fff;
}

/* Overwrite last float right element */
.parent-category [class*="column"] + [class*="column"]:last-child {
    float: left;
}

/* === SMALL === */
@media only screen and (min-width: 320px) and (max-width: 767px) {

    .parent-category li a {
        padding: 7px 0;
    }

    .parent-category li {
        margin-bottom: 3px;
    }

    .parent-category li.cat-img img {
        max-height: 65px;
    }
}

/* === MEDIUM & ABOVE === */
@media only screen and (min-width: 768px) {

    .parent-category li {
        height: 150px;
    }

}