@keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  .aisw-popup-container {
    background: linear-gradient(
      110deg,
      #79b833 20%,
      rgb(160, 255, 160) 45%,
      #79b833 70%
    );
    background-size: 200% 100%;
    animation: shimmer 5s infinite linear;
  }