#color-grid {
    margin-bottom: 64px;
    overflow: auto;
    margin-right: -2px;
}

.form-control{
    display: inline !important;
}

#color-grid .color {
    width: calc(16.6666% - 2px);
    height: 130px;
    float: left;
    margin-right: 2px;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}


#color-sub-categories .color-sub-category {
    display: inline-block;
    width: calc(11.5% - 3px);
    cursor: pointer;
    font-size: 10px;
    color: #333;
    margin-bottom: 4px;
}


#color-sub-categories {
    padding: 5px;
    background-color: #fff;
    margin: 5px 5px 15px 5px;
    box-shadow: 0.559px 0.829px 25px 0 rgba(0,0,0,.05);
    border-radius: 4px;
    text-align: center;
}

#color-sub-categories .color-sub-category .image-holder {
    margin-bottom: 8px;
    position: relative;
}

#color-sub-categories .color-sub-category:hover .image-holder:after, #color-sub-categories .color-sub-category.active .image-holder:after {
    display: block;
}

#color-sub-categories .color-sub-category .image-holder:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    content: "";
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: none;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin-bottom: 48px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}



img {
    max-width: 100%;
    height: auto;
}

#color-sub-categories .color-sub-category .image-holder img {
    display: block;
    width: 100%;
    margin: 0;
}

#color-sub-categories .color-sub-category:hover, #color-sub-categories .color-sub-category.active {
    color: #0090c2;
    font-weight: 700;
}


@media (min-width: 320px) and (max-width: 767px) {
    #color-grid .color {
        width: calc(20% - 2px);
        height: 80px;
        float: left;
        margin-right: 2px;
        margin-bottom: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
        font-size: 10px;
    }

    #color-sub-categories .color-sub-category {
        display: inline-block;
        width: calc(33% - 3px);
        cursor: pointer;
        font-size: 10px;
        color: #333;
        margin-bottom: 4px;
    }

}


