Game Background
Spinning Wheel
Money on Wheel
Wheel Pointer
75% { transform: rotate(2deg); } 90% { transform: rotate(-1deg); } 100% { transform: rotate(0deg); } .swal2-popup.sweetalert-custom-popup { background: transparent !important; width: auto !important; padding: 0 !important; } .swal2-html-container { margin: 0 !important; padding: 0 !important; } /* Wheel specific styles */ #inWheel { transform-origin: center center; transform: rotate(0deg); } /* Spinning state */ #inWheel.spinning { transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1); } /* Final state - lock position */ #inWheel.finished { transition: none !important; } .sweetalert-custom-container { align-items: flex-start !important; padding-top: 100px !important; padding-top: 100px !important; /* make sure to include “px” */ } .sweetalert-custom-popup { margin-top: 10 !important; margin-top: 10px !important; /* include “px” here too */ } @keyframes popupPop { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }