/*f3_>*/        
/*tagtile*/
.container-unit
{
/*    display: -webkit-box;
    display: flex;*/
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 8px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d2d3;
}
.container-unit .title {
    display: block;
    padding-top: 4px;
    margin-top: 7px;
    font-size: 13px;
    line-height: 13px;
    color: #000;
    white-space: nowrap;
    text-transform: uppercase;
}

.container-unit .subcategories {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 100%;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.container-unit .tag {
    display: block;
    padding: 4px 11px 5px;
    margin: 6px 0 6px 12px;
    font-size: 14px;
    line-height: 13px;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 12px;
}

.over-container-unit .toggle .show-tag {
    border-bottom: 1px dashed #5e5e5e;
    /*font-size: 17px;*/
}
.container-unit.-active .subcategories
{
    height: auto;
    flex-wrap: wrap;
}
.over-container-unit .button-desk{
    position: relative;
    left: 46%;
    top: -8px;
}
.container-unit .button_mob
{
    display: block;
    position: relative;
    width: 40px;
}
.container-unit .button_mob:before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    left: -28px;
    background: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(50%,#fff));
    background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff",endColorstr="#ffffff",GradientType=1);
}

.over-container-unit{
    margin-bottom: 10px;
}

/*/tagtile*/

/*.container-unit .button_mob
{
    display: none;
}        */
.container-unit .subcategories
{
    /*flex-wrap: nowrap;*/
}
@media (max-width: 467px){
    .over-container-unit .button-desk {
        display: none;
    }
/*    .over-container-unit .toggle .show-tag {
        display: none;
    }*/
    
    .container-unit .button_mob
    {
        display: block;
        position: relative;
        width: 40px;
    }        
    .container-unit .button_mob:before {
        position: absolute;
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        left: -28px;
        background: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(50%,#fff));
        background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff",endColorstr="#ffffff",GradientType=1);
    }
    .container-unit .toggle {
        top: 14px;
        right: 13px;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .container-unit .item_link {
        position: absolute;
        margin-top: -7px;
        right: 14px;
        height: 20px;
        width: 20px;
        display: block;
        background-color: #e6e6e6;
        border-radius: 50%;
        text-decoration: none;
    }
    .item_link:before {
        width: 6px;
        height: 10px;
        content: ">";
        display: block;
        margin: 0 0 0 6px;
        color: red;
        font-size: 18px;
        font-family: arial;
    }
    .container-unit.-active .toggle {
        top: 15px;
        right: 14px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .over-container-unit .item_link span
    {
        display: none !important;
    }
}
/*<_f3*/