/* 適用於所有元素 */
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
/* Games Active */
.gamesActive {
  box-shadow: inset 0 2px 1px #788CBE;
}
.gamesActive p {
  color: white;
}
/* /betting */
.statusActive {
  color: #FFC30E;
  background: none !important;
  border: 1px solid #FFC30E;
}
@keyframes moveLeftAnimation {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(50px); }
}
@keyframes moveRightAnimation {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(-50px); }
}
.move-left { animation: moveLeftAnimation 40s infinite !important; }
.move-right { animation: moveRightAnimation 40s infinite !important; }

/* @keyframes animateLogo {
  50%, 100%{opacity: 1;}
  0%{
    background-image: url('/images/new/v1/images/img-logo-1.png');
    opacity: 0.5;
  }
  50%{ background-image: url('/images/new/v1/images/img-logo-2.png');
  }
  100%{ background-image: url('/images/new/v1/images/img-logo-3.png'); }
}
.animateLogo { animation: animateLogo 2s infinite !important; } */