/* ==== Jackpot Style ==== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

#jackpot_body {
    background:#000;
    margin:30px 0;
}
.jackpot-left {
    width:350px;
}
.jackpot-right {
    width:720px;
}
.jackpot-title-1 {
	font-family: 'Orbitron', sans-serif;
    text-align: center;
	font-size:40px;
    margin:0;
	text-transform: uppercase;
    z-index:10;
    color:#4887b8;
    letter-spacing: 2px;
}
.jackpot-title-2 {
	font-family: 'Orbitron', sans-serif;
    text-align: center;
	font-size:25px;
	margin:0;
	text-transform: uppercase;
    letter-spacing:2px;
    z-index:10;
    color:#FFF;
    letter-spacing: 2px;
}
#jackpot-currency {
	color:#00638c;
}
#jackpot-text {
	font-family: 'Quantico', sans-serif;
    text-align: center;
	font-size:65px; 
	padding:0;
	margin:0;
}

.box {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.1rem 0.2rem;
	background-image: linear-gradient(90deg, #4887b8, #4887b8, #57aa8e);
	-webkit-background-clip: text;
			background-clip: text;
	color: transparent;
    height:100px;
}

[class^=line-] {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 0.3rem);
	height: calc(100% + 0.3rem);
	overflow: hidden;
	}
	[class^=line-]:before, [class^=line-]:after {
	content: "";
	position: absolute;
}

.line-x:before,
.line-x:after {
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, transparent, #004a8b 20% 80%, transparent);
}

.line-x:before {
	top: 0;
	-webkit-animation: move-x 2s both infinite linear;
			animation: move-x 2s both infinite linear;
}

.line-x:after {
	bottom: 0;
	animation: move-x 2s both infinite linear reverse;
}

@-webkit-keyframes move-x {
	from {
		left: -100%;
	}
	to {
		left: 100%;
	}
}

@keyframes move-x {
	from {
		left: -100%;
	}
	to {
		left: 100%;
	}
}
.line-y:before, .line-y:after {
	width: 5px;
	height: 100%;
	background-image: linear-gradient(0deg, transparent, #004a8b 20% 80%, transparent);
}

.line-y:before {
	left: 0;
	-webkit-animation: move-y 2s -1s both infinite linear;
			animation: move-y 2s -1s both infinite linear;
}

.line-y:after {
	right: 0;
	animation: move-y 2s -1s both infinite linear reverse;
}

@-webkit-keyframes move-y {
	from {
		top: 100%;
	}
	to {
		top: -100%;
	}
}
@keyframes move-y {
	from {
		top: 100%;
	}
	to {
		top: -100%;
	}
}

/* ==== Jackpot Style ==== */