﻿.cat-container {
    text-align: right;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cat-item, .cat-item:hover, .cat-item:focus {
    width: 32%;
    display: inline-block;
    text-align: center;
    color: #000;
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    padding: 10px 5px;
    font-size: 11px;
    vertical-align: middle;
    margin-left: 2%;
    text-decoration: none;
    outline: none;
}

    .cat-item:nth-child(3n) {
        margin-left: 0;
    }

.cat-img-box {
    height: 80px;
    margin-bottom: 10px;
}

    .cat-img-box img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.cat-title-box {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    line-height: 1.7;
}

