.industry-filter ul{
    list-style: none;
    display: flex;
    text-decoration: underline;
    padding: 0;
    margin-bottom: 3px;
    flex-wrap: wrap;
}
.industry-filter ul li{
    color: black;
    margin: 0 2px;
    line-height: 18px;
}
.industry-filter ul li::after{
   content: ",";
   font-size: 1.25rem;
}
.industry-filter ul li:last-child::after{
    content: '';
}
.industry-filter ul li a{
    color: black;
}
.industry_filter{
    display: block;
    position: relative;
}
.industry_filter p{
    display: block;
    align-self: start;
    font-family: var(--pnb);
    font-size: 1rem;
    margin-left: 25px;
    margin-bottom: 0;
}
.industry_filter p::before{
    content: "";
    position: absolute;
    background: url('clientlib-industry-filter/resources/tag.png');
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 0;
    top:2px;
}
@media screen and (min-width: 769px) { 
.industry_filter{
    display: flex;
}
.industry_filter p{
    display: inline-block;
    white-space: nowrap;
}
.industry-filter ul{
    margin-left: 10px;
}
}