/* Copyright @ Balbooa, http://www.gnu.org/licenses/gpl.html GNU/GPL */
 #item-17543041022554 .ba-btn-transition {
    background: linear-gradient(to left, #065e72, #50d2e9, #065e72); 
    background-size: 200% 100%;
    animation: gradientAnimation 1.5s linear infinite; 
  }
  
  @media (hover: hover) {
    #item-17543041022554 .ba-btn-transition:hover {
        animation-play-state: paused;
        background: #2b96a8;
    }
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 100% 0;
    }
    100% {
      background-position: -100% 0; 
    }
  } 