.CategoryControl {
        margin-bottom: var(--margin-bottom);
        box-shadow: var(--box-shadow);
        padding: var(--padding-box);
        border-radius: var(--rounded);
        background: var(--color-white);
        border: 1px solid #f1f1f1;
}
.CategoryControl .Header {
        border-bottom: 1px solid #EEEEEE;
        padding-bottom: 10px;
        position: relative;
}
.CategoryControl .Header:before {
        content: '';
        width: 80px;
        height: 1px;
        background: #ce1126;
        position: absolute;
        left: 0;
        bottom: 0;
}
.CategoryControl .Header > span {
        text-transform: uppercase;
        white-space: normal;
        font-size: 18px;
        font-family: 'Inter';
        color: #ce1126;
        font-weight: 500;
        display: block;
        position: relative;
        padding-left: 0;
        text-align: left;
        letter-spacing: -1px;
}
.CategoryControl .Detail {
        padding: 10px 0;
}
.CategoryControl .Detail a{
        font-size: 16px;
        color: var(--color-black);
}
.CategoryControl .Detail .UserItem {
        background: rgba(0, 0, 0, 0) url("images/arr.png") no-repeat scroll left center;
        padding: 5px 0 5px 20px;
}

@media only screen and (max-width: 768px){
        div.CategoryControl{
                max-width: calc(100% - 20px);
                margin: auto;
                margin-bottom: 10px;
        }
}
