/* ==============================
   Manufacturer Category Tree
   Only leaf categories are clickable
================================= */

.brand-info-list dl dt .brand-category-root {
    display: block;
    color: #111111;
    font-weight: 700;
    cursor: default;
}

.brand-info-list dl dt .brand-category-root-leaf {
    display: inline-block;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.brand-info-list dl dt .brand-category-root-leaf:hover {
    color: #0093e6;
}

.brand-info-list dl dd.brand-category-tree {
    align-items: stretch;
    flex-wrap: wrap;
}

.brand-info-list dl dd .brand-category-parent,
.brand-info-list dl dd .brand-category-leaf {
    display: block;
    width: 32.3%;
    min-height: 38px;
    margin: 0 0.5%;
    padding: 8px 10px;
    overflow: hidden;
    line-height: 22px;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}

.brand-info-list dl dd .brand-category-parent {
    color: #303b46;
    font-weight: 700;
    background: #f6f9fb;
    border-left: 3px solid #0093e6;
    cursor: default;
}

.brand-info-list dl dd .brand-category-parent i {
    margin-right: 7px;
    color: #0093e6;
}

.brand-info-list dl dd .brand-category-leaf {
    height: auto;
    color: #333333;
    text-decoration: none;
    background: #ffffff;
}

.brand-info-list dl dd .brand-category-leaf::before {
    display: inline-block;
    margin-right: 7px;
    color: #0093e6;
    content: "·";
}

.brand-info-list dl dd .brand-category-leaf:hover {
    color: #0093e6;
    background: #f5fbff;
}

.brand-info-list dl dd .brand-category-depth-3,
.brand-info-list dl dd .brand-category-depth-4,
.brand-info-list dl dd .brand-category-depth-5 {
    padding-left: 16px;
}

@media (max-width: 768px) {
    .brand-info-list dl dd .brand-category-parent,
    .brand-info-list dl dd .brand-category-leaf {
        width: 100%;
        margin: 0;
    }
}
