
*{margin:0;padding:0;}
#jackpot-bar {
	/* background-image:url(../images/jackpot_bar.jpg);
	background-size:100% 100%;
	background-repeat: no-repeat; */
	background-color: black;
	height:100vh;
	width:100vw;	
}

#jackpot_winner
{
	display:none;
	position:absolute;
	top:0px;
	left:5px;
	width:200px;
	height:50px;
	background-image:url(../images/redbg.gif);
	background-color: rgba(0,0,0,0.7);
	border-radius: 5px;
	z-index:500;
	border: 1px solid black;
	overflow:hidden;
}
#jackpot_winner_title
{
	color:yellow;
	font-weight:bold;
	font-size:13px;
	font-family:Tahoma;	
	text-align:center;
}
#jackpot_winner_name
{
	color:white;
	font-size:12px;
	font-family:Tahoma;	
	text-align:center;
}
#jackpot_winner_amount
{
	color:cyan;
	font-size:12px;
	font-family:Tahoma;	
	text-align:center;
}

#jplogo{
	display:inline-block;
	text-align:center;
	color:white;
	font-family:thiaga;
	font-size:40px;
	line-height:50px;
	height:50px;
	width: 24%;			
	text-shadow:2px 2px #000000;
}

#jpboxes{	
	height:52px;	
}

.jackpotbox {	
	display:inline-block;
	text-align:center;
	background-color:#222;
	color:#0f0;
	font-family:digitsFont;
	font-size:40px;
	line-height:50px;
	height:50px;
	width: 24%;	
	padding:0;
	border:0;
}

@font-face {
  font-family: digitsFont;
  src: url(digital-7.ttf);
}

@font-face {
  font-family: thiaga;
  src: url(thiaga.otf);
}

.blinking{
    animation:blinkingBG 1s infinite;
}
@keyframes blinkingBG{
    0%{     color: #0f0;    }
    25%{    color: #444; }
    50%{    color: #0f0; }
    75%{    color: #444;  }
    100%{   color: #0f0;    }
}