.bingo_card {
	margin-left: auto;
	margin-right: auto;
}

.card_slot {
	background-color: #ffffff;
	border: 1px solid #4871c9;
	text-align: center;
	color: #4871c9;
	font-size: 22px;
	font-weight: bold;
}

.bingo_2 .card_slot {
	background-color: rgb(8, 104, 1);
	border-color: #fff;
	color: #fff;
}


.bingo_3 .card_slot {
	background-color: rgb(61, 1, 104);
	border-color: #fff;
	color: #fff;
}

#board {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

.ball {
	height: 34px;
	width: 34px;
	border-radius: 50%;
	color: #4871c9;
	text-align: center;
	padding: auto;
	vertical-align: middle;
	margin: 5px 2px;
	font-weight: bold;
	font-size: 18px;
	display: flex; /* or inline-flex */
	align-items: center; 
	justify-content: center;	
}

.winner-card-slot {
	background-color: #fff;
	background-image: url(/assets/web/img/cross.png);
	background-position: center center;
	background-repeat: no-repeat no-repeat;
	background-size: cover;
}

.prize-card-slot {
	background-color: lightgreen !important;
	background-image: none;
}

.ball-10 { background-color: rgb(247, 247, 9); color: #000; }
.ball-20 { background-color: rgb(239, 116, 1); color: #fff; }
.ball-30 { background-color: rgb(131, 18, 18); color: #fff; }
.ball-40 { background-color: rgb(244, 23, 211); color: #fff; }
.ball-50 { background-color: rgb(101, 22, 105); color: #fff; }
.ball-60 { background-color: rgb(34, 6, 170); color: #fff; }
.ball-70 { background-color: rgb(12, 167, 238); color: #000; }
.ball-80 { background-color: rgb(28, 81, 15); color: #fff; }


/* XS */
@media only screen and (max-width: 575px) {
	#board {
		margin-top: 50px;
	}
}

/* SM */
@media only screen and (min-width: 576px) {

}

/* MD */
@media only screen and (min-width: 768px) { 
	#board {
		margin-top: 0;
	}
}

/* LG */
@media only screen and (min-width: 992px) { 
	.ball {
		height: 50px;
		width: 50px;
		margin: 10px 5px;
	}
}
