.branschLista {
   position: relative;
}

.branschLista::before,
.branschLista::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%; 
  z-index: 1;
  pointer-events: none;
}

.branschLista::before {
  left: 0;
  background: linear-gradient(to right, var(--third), transparent);
}

.branschLista::after {
  right: 0;
  background: linear-gradient(to left, var(--third), transparent);
}

.branschLista span {
   padding-top: 2rem;
   padding-bottom: 2rem;
}

.branschLista span + span:before {
   content: "•";
   margin: 0 3rem; 

}