@charset "UTF-8";
/***!  /media/templates/site/avenir/css/com_tags_tags.css?5c8d27  !***/

.tagsList{
    display: flex;
    flex-direction: column;
    gap: var(--global-spacing);
}
    .tagsList_title{
    }
    .tagsList_tags{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
        .tagsList_tag{
            height: 30px;
            padding: 0 15px;
            border-radius: 15px;
            background: var(--color-4);
            color: var(--color-2);
            line-height: 30px;
            font-size: 14px;
            font-weight: 800;
            white-space: nowrap;

            transition: background .2s ease-in-out;

            &:hover {
                background: var(--color-4-darker);
            }
        }

