#category-children {
    margin-top: 25px;
    margin-bottom: 25px;
}
#category-children .child {
    position: relative;
    display: block;
    margin-bottom: 25px;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
}
#category-children .child-image {
    position: relative;
    text-align: center;
    overflow: hidden;
}
#category-children .child-image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    background-color: #fff;
    opacity: .7;
    transition: opacity .2s ease-in-out;
}
#category-children .child:hover .child-image img {
    opacity: 1;
}
#category-children .child-name {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: rgba(238,238,238,.8);
    font-size: 12px;
    color: #e4001b;
    font-weight: 700;
    border-radius: 2px;
}
#category-children .product-count {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    color: #999;
    padding: 0 3px;
    background-color: rgba(255,255,255,.8);
}
