.isjackpot .jackpot-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 99999;
    transition: transform 0.5s ease-out;
}

.isjackpot .jackpot-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: shake 0.8s ease-in-out 0.5s 2;
}

@keyframes shake {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    25% { transform: translate(-50%, -50%) scale(1.05) rotate(3deg); }
    50% { transform: translate(-50%, -50%) scale(1.05) rotate(-3deg); }
    75% { transform: translate(-50%, -50%) scale(1.05) rotate(2deg); }
}

.isjackpot .jackpot-container {
    position: relative;
    display: inline-block;
}

.isjackpot .jackpot-container img.bg {
    width: 680px;
    user-select: none;
    pointer-events: none;
}
.isjackpot .jackpotinfo{
	position: absolute;
    top: 515px;
    left: 52%;
}
.isjackpot .jackpot-logo {
    transform: translateX(-50%);
    width: 65px;
    max-height: 30px;
    /* height: 100px; */
    object-fit: contain;
    margin-bottom: 2px;
}

.isjackpot .jackpot-name {
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    width: 130px;
    text-align: center;
    line-height: 15px;
}

.isjackpot .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ff2e2e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 32px;
    display: flex;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 0 10px #000;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto';
}

.isjackpot .close-btn:hover {
    background: #ff6666;
}
.isjackpot .log {
    font-size: 13px;
    color: #aaa;
    position: fixed;
    bottom: 10px;
}
@media (max-width: 767px) {
	.isjackpot .jackpot-container img.bg {
	    width: 375px;
	   
	}
	.isjackpot .jackpotinfo
	{
		top: 278px;
	}
	.isjackpot .jackpot-logo {
	    
	    width: 25px;
	    max-height: 15px;
	}
	.isjackpot .jackpot-name {
	    font-size: 9px;
	    width: 68px;
	    line-height: 10px;
	}
	
}