:root {
  --snooker_green: #016e1d;
  --snooker_green_light: #36855e;
}
*{
	font-family: "Orbitron", sans-serif;
	transition: all 0.8s;
}
body{
	background: #ccc;
}
.favicon{
	width: 32px;
	height: 32px;
	background-color: #0f0;
	margin-right: 10px;
	border-radius: 50%;

    position: relative;
    left: -100px;
    animation: spinball 2s ease-out forwards;
}

@keyframes spinball {
    0% {
        left: -100px;
        transform: rotate(0deg);
    }
    100% {
        left: 0;
        transform: rotate(720deg); /* or 360deg if you want 1 spin */
    }
}

.fouls{
	color: #fff;
}

/* SCORE */
.score{
	color: #fff;
	font-size: 80px;
	margin: 0px;
}
/* SCORE */

/* FRAME */
.frames, .game_type{
	color: #fff;
	font-size: 24px !important;
	background-color: var(--snooker_green_light);
	cursor: pointer;
	user-select: none;
}
/* FRAME */

/* PLAYER */
.player{
	background-color: var(--snooker_green);
	position: relative;
	overflow: hidden;
}
.player_name{
	background-color: var(--snooker_green_light);
	color: #fff;
	font-size: 34px !important;
	cursor: pointer;
}
/* PLAYER */

/* POINTS ON TABLE */
.point_on_table_cnt {
	background-color: var(--snooker_green_light);
	margin: 0px !important;
	padding: 0px !important;
	width: 100%;
	position: relative;
	top: -8px;
	border-top: 4px #fff solid;
}
.red_ball_on_table,
.point_on_table{
	color: #fff;
	font-size: 28px !important;
	cursor: pointer;
	width: 100%;
}
/* POINTS ON TABLE */

/* BALLS */
.balls{
	margin: 0px !important;
	padding: 0px !important;
}
.cue_balls li, .balls li{
	list-style: none;
	display: inline-block;
}
.balls li.sep{
	margin: 0px 0px 0px 50px;
	font-size: 0px;
	padding: 0px;
}
.balls li a{
	text-decoration: none;
}
.balls li a:hover .ball{
	background-color: #fff;
	color: #000;
}
.reset_ball .num span{
	font-size: 14px !important;
}
.cue .num{
	font-size: 28px !important;
}
/* BALLS */

/* SYMBOLS */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  cursor: pointer;
}
/* SYMBOLS */

/* BREAK AMOUNT */
.brk_amt {
	width: 285px;
	background: #ededed;
	border-radius: 15px;
	max-height: 500px;
	position: absolute;
	top: 0px;
	padding: 15px;
	display: none;
	right: 10px;
	z-index: 1;
}
.score_back {
	display: flex;
	flex-direction: row;
}
.score_screen{
	background-color: var(--snooker_green_light);
	font-size: 34px;
	width: 170px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.back_btn{
	background-color: #cb0002;
	font-size: 54px !important;
	color: #fff;
}
.btn_chk{
	font-size: 53px !important;
	position: relative;
	top: 6px;
}
.btns ul{
	margin: 0px;
	padding: 0px;
	width: 250px;
}
.btns ul li{
	list-style: none;
	display: inline-block;
}
.btns ul li a{
	text-decoration: none;
}
.btns ul li a .num_btn{
	background-color: #aeffd4;
	border: thin solid #000;
	border-radius: 10px;
	width: 75px;
	height: 75px;
	text-align: center;
	font-size: 50px;
	color: #000;
	margin: 10px 0px;
	font-weight: bold;
}
.num_btn.back_tick{
	width: 150px !important;	
}
/* BREAK AMOUNT */

/* NAV */
.nav-item{
	margin: 0px !important;
	padding: 0px !important;
	height: 34px !important;
	width: 50%;
}
.nav-link{
	margin-bottom: 0px !important;
	padding-bottom: 10px !important;
	color: #000;
	width: 100%;
}
.nav-link.active{
	background-color: var(--snooker_green) !important;
	color: #fff !important;
	border: none !important;
}
.nav-item:hover .nav-link{
	background-color: var(--snooker_green_light);
	color: #fff !important;
	border: none !important;
	height: 34px !important;
}
/* NAV */

/* MEDIA QUERIES */
@media   ( max-width: 440px ) {
	.balls {
		display: flex;
		gap: 15px !important;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	.balls li.sep{
		display: none;
	}
	.container-fluid{
		overflow: hidden;
	}
}
/* MEDIA QUERIES */