/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 04 2026 | 04:57:09 */
.rank-num {
  height: auto;
  display: inline-block;
  transform-origin: center;
}
@media (prefers-reduced-motion: reduce) {
  .rank-num {
    animation: none !important;
  }
}
@keyframes numLift {
  0%,100% { 
    transform: translateY(0);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  }
  50% { 
    transform: translateY(-4px);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
  }
}
.rank-num.lift {
  animation: numLift 6s ease-in-out infinite;
}

@keyframes numTilt {
  0%,100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.rank-num.tilt {
  animation: numTilt 4s ease-in-out infinite;
}

@keyframes numTilt02 {
  0%,100% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
}
.rank-num.tilt02 {
  animation: numTilt 3s ease-in-out infinite;
}