.spin-popup-dialog { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9; background: rgba(0, 0, 0, 0.7); display: none; opacity: 0; } .spin-popup-dialog.show { display: flex; animation: shows .5s linear 2.5s forwards; } @keyframes shows { 0% { opacity: 0; } 100% { opacity: 1; } } .spin-popup-block { background: #FDFDFD; border-radius: 14px; width: 310px; margin: auto; padding: 15px 30px; display: flex; flex-direction: column; align-items: center; position: relative; color: #000000; } .spin-popup-button.off { pointer-events: none; } .spin-popup-block p { font-weight: 700; font-size: 16px; line-height: 19px; text-align: center; margin-bottom: 15px; } .spin-popup-block > img { margin: 0 auto 15px; } .popup-close { position: absolute; top: 0; right: 0; border: none; background: none; padding: 0; height: auto; padding: 13px; } .border-win { position: absolute; top: 50%; height: 125px; transform: translateY(-50%); right: -10px; left: -10px; border: 10px solid; border-left: 15px solid; border-right: 15px solid; box-shadow: 0px 0px 8px rgb(0 0 0 / 80%); display: none; border-image-slice: 1; border-image-source: linear-gradient(180deg, #FFE600 0%, #E68E0C 100%); opacity: 0; } .border-win.show { display: block; animation-name: slot; animation-duration: 0.2s; animation-delay: 4.9s; animation-timing-function: linear; animation-fill-mode: forwards; } @keyframes slot { 0% { opacity: 0; } 100% { opacity: 1; } } @media screen and (max-width: 600px) { .spinners { max-width: 330px; width: 100%; margin: 0 auto 15px; } .reelcase { height: 200px !important; padding: 10px 17px; } .border-win { top: 47%; height: 90px; } }