.sponsored-links {
    display: none !important;
}
.sponsored-brands {
    display: flex;
}
p.sponsored-brand-name {
    padding: 5px 10px;
    background: linear-gradient(-225deg, #28a745 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
    border-radius: 6px;
    background-size: 200% 100%;
    animation: gradient-animation 5s linear infinite;
    font-weight: 600;
    margin-right: 10px;
    line-height: 16px;
}
@keyframes gradient-animation {
      0% {
      background-position: 200% 0;
      }
  100% {
      background-position: -200% 0;
      }
  }