
/*tagtile*/
.container-unit
{
    display: -webkit-box;
    display: block;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d2d3;
}
.container-unit .title {
    display: block;
    padding-top: 4px;
    margin: 7px 0 6px 0px;
    font-size: 16px;
    line-height: 13px;
    color: #000;
    font-weight: 900;
}

.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 12px 6px 0;;
    font-size: 16px;
    line-height: 13px;
    color: #666;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid #f3e300c7;
    border-radius: 12px;
    background: #f4f4f4;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-weight: 200 !important;*/
    display: block;
    padding: 0px 0px 0px;
    margin: 5px 12px 5px 0;
    font-size: 14px;
    line-height: 13px;
    color: #000;
    white-space: nowrap;
    text-decoration: underline;
    border: 0px;
    border-radius: 12px;
    background: transparent;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-weight: 200 !important;
}

.container-unit .tag:hover {
    /*color: #d60000;
    border-color: #d60000;
    background: #f3e300c7;*/
    text-decoration: none;
}

/*/tagtile*/