.jackpot-area {
	width: 100%;
}

.jackpot-area .jackpot-wrap- {
	width: 100%;
	position: relative;
	min-height: 250px;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 10px;
}

.jackpot-area .jackpot-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8%;
	z-index: 1;
}

.jackpot-area .jackpot-content {
	position: relative;
	z-index: 2;
	width: 50%;
	padding: 50px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.jackpot-area .jackpot-label {
	color: var(--BODY_TXT_COLOR);
	text-transform: uppercase;
	font-family: var(--SECONDARY_FONT_FAMILY);
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	margin-bottom: 15px;
	line-height: 1.2;
}

.jackpot-area .jackpot-amount-box {
	background: var(--CARD_2_BG);
	border-radius: 12px;
	padding: 25px 50px;
    width: 467px;
    height: 91px;
	display: inline-block;
}

.jackpot-area .jackpot-count {
	color: #F7ED48;
	font-size: var(--JACKPOT_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
	font-family: var(--SECONDARY_FONT_FAMILY);
	text-align: center;
	white-space: nowrap;
	line-height: 1.2;
}

.jackpot-area .jackpot-count span {
	color: #F7ED48;
}

