
.tags-collections, .field-tags-collectons{
    display: flex;
    gap: 8px;
    padding: 0;
    flex-wrap: wrap;
    @media (max-width: 992px) {
        overflow-y: scroll;
        flex-wrap: nowrap;
    }
    .tags-collection-list-item{



        margin: 0;
        padding: 2px 10px 4px 10px;
        background-color: #DEEEF9;
        border-radius: 12px;

        &:before{
            content: "";
        }
        & a{
            color: #1B1B1B;
            border: none;
            font-size: 14px;
            line-height: 25px;
            text-wrap: nowrap;
            font-weight: 600;

            &:before{
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }
        }


        &:hover{
            background-color: #AAE5FF;
            cursor:pointer;
        }

        &.is_active{
            background-color: #AAE5FF;
            & a:after{
                background: url("/themes/custom_theme/img/svg/arrow-filter-cross.svg") no-repeat;
                width: 12px;
                height: 13px;
                transform: translate(50%, 1px);
                display: inline-block;
                margin-left: 3px;
                background-size: contain;
                content: "";
            }

        }

        &.tags-toggle-button{
            background-color: #FFF;
            & a{
                color: #0072bb;
                font-weight: 400;

            }
            &:after{
                color: #0072bb;
                font-weight: 400;
            }
        }

    }

    .tags-toggle-button::after {
        background: url("/themes/custom_theme/img/svg/arrow-filter-tag.svg") no-repeat;
        width: 12px;
        height: 8px;
        display: inline-block;
        margin-left: 4px;
        background-size: contain;
        content: "";
    }

    &.expanded{
        .tags-toggle-button::after{
            background: url("/themes/custom_theme/img/svg/arrow-filter-tag-active.svg") no-repeat;
            background-size: contain;
        }
    }

}

