/* ---------------------------------------- Main Container --------------------------------------- */
#GAME_BSH_Main_Container{
	width:100%;
	height:100%;
	
	background: linear-gradient(to right, 
		#222 0%,
		#444 10%,
		rgba(225,217,237,1) 25%,
		rgba(225,217,237,1) 75%,
		#444 90%,
		#222 100% 
	  );
	
	display:flex;
}
/* ----------------------------------------------------------------------------------------------- */

/* ----------------------------------- Left & Right Containers ----------------------------------- */
#GAME_BSH_Left_Container, #GAME_BSH_right_Container{
	width:20%;
	height:100%;
	display:flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-evenly;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Left_Container, .GAMEFRAME_Input_Visible #GAME_BSH_right_Container{
	width:23%;
}

.GAME_BSH_Player_Info_Left, .GAME_BSH_Player_Info_Right{
	height: 150px;
	width: 100%;
	color: #d5d5d5;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible .GAME_BSH_Player_Info_Left, .GAMEFRAME_Input_Visible .GAME_BSH_Player_Info_Right{
	height: 135px!important;
}
.GAME_BSH_Player_Info_Left{
	border-radius: 0 25px 25px 0;
}
.GAME_BSH_Player_Info_Right{
	border-radius: 25px 0 0 25px;
}
.GAME_BSH_Player_Info_Left.GAME_BSH_Player_Active, .GAME_BSH_Player_Info_Right.GAME_BSH_Player_Active{
	color: #FFFFFF;
	border: 5px solid #FFFFFF;
	box-shadow: 0px 0px 25px #000000;
	height: 155px;
}
.GAME_BSH_Player_Info_Left.GAME_BSH_Player_Active{
	border-left: none;
}
.GAME_BSH_Player_Info_Right.GAME_BSH_Player_Active{
	border-right: none;
}

.GAME_BSH_Player_Info_Detail_Container_Left, .GAME_BSH_Player_Info_Detail_Container_Right{
	width: 98%;
	height: 90%;
    background: #1A1A1A;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: 0.3s ease;
}
.GAME_BSH_Player_Dead .GAME_BSH_Player_Info_Detail_Container_Left, .GAME_BSH_Player_Dead  .GAME_BSH_Player_Info_Detail_Container_Right{
	background: #595959!important;
}
.GAME_BSH_Player_Info_Detail_Container_Left{
	padding-left: 15px;
	border-radius: 0 20px 20px 0;
}
.GAME_BSH_Player_Info_Detail_Container_Right{
	padding-right: 15px;
	border-radius: 20px 0 0 20px;
	margin-left: 2%;
}
.GAMEFRAME_Input_Visible .GAME_BSH_Player_Info_Detail_Container_Left{
	padding-left: 5px;
}
.GAMEFRAME_Input_Visible .GAME_BSH_Player_Info_Detail_Container_Right{
	padding-right: 5px;
}
.GAME_BSH_Player_Info_Name{
	width: 100%;
	height: 35%;
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-weight:bold;
	font-size: 45px;
	text-shadow: 0px 0px 10px #000000;
	transition: 0.3s ease;
}
.GAME_BSH_Player_Dead .GAME_BSH_Player_Info_Name{
	color: #737373!important;
}
.GAMEFRAME_Input_Visible .GAME_BSH_Player_Info_Name{
	font-size: 40px;
}

.GAME_BSH_Player_Info_Lives{
	width: 100%;
	height: 55%;
	display: flex;
	align-items: baseline;
	justify-content: center;
}
.GAME_BSH_Player_Info_Life{
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.GAME_BSH_Icon_Heart{
	width: 90%;
	height: 90%;
	stroke-width: 7px;
}
.GAME_BSH_Player_Dead  .GAME_BSH_Icon_Heart{
	fill: #737373!important;
	stroke: #737373!important;
}
/* ----------------------------------------------------------------------------------------------- */









/* --------------------------------------- Middle Container -------------------------------------- */
#GAME_BSH_Middle_Container{
	position: relative;
	width:60%;
	height:100%;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Middle_Container{
	width:54%;
}
/* ----------------------------------------------------------------------------------------------- */














#GAME_BSH_Current_Player{
	position: absolute;
	width: 100%;
	height: 200px;
	
	color:#FFFFFF;
	font-size: 110px;
	font-weight:bold;
	text-shadow: 5px 10px 10px #515151;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 1.0);
	
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Current_Player{
	font-size: 95px;
}





#GAME_BSH_Animation_Gif{
	position: absolute;
	width:830px;
	height:480px;
	
	top: 68%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Gif{
	width:750px;
	height:430px;
}
#GAME_BSH_Animation_Progress_Container{
	position: absolute;
    width: 101px;
    height: 314px;
    bottom: 16.5%;
    left: 24.8%;
	background-color:rgb(49 49 49);
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Progress_Container{
    left: 18.4%;
	width: 90px;
    height: 279px;
    bottom: 18.3%;
}
#GAME_BSH_Animation_Progress{
	position: absolute;
    width: 100px;
    height: 60%;
    bottom: 0px;
    background-color: #ffd700;
}
#GAME_BSH_Animation_Target{
	position: absolute;
    width: 100px;
    height: 30%;
    bottom: 0px;
	border-top: red solid 8px;
}
#GAME_BSH_Animation_Score_Container{
	position: absolute;
	top: 24%;
	left: 16%;
	width: 300px;
	height: 200px;
	background-color: #0c0c0c;
	border-radius: 50px;
	border: 15px solid rgba(254, 51, 51, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Score_Container{
	top: 29.0%;
    left: 7.5%;
	width: 270px;
    height: 175px;
	font-size: 100px;
	border: 12px solid rgba(254, 51, 51, 1);
}
#GAME_BSH_Animation_Score{
	width: 88%;
	height: 85%;
	border-radius: 20px;
	background-color: #373737;
}

#GAME_BSH_Animation_Points_Shaddow{
	position: absolute;
    font-family: 'Digital Display',monospace;
	font-size: 150px;
	font-weight: bold;
    padding-left: 11px;
	
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #232323;
	transition: 0.3s ease;
	
	display:none;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Points_Shaddow{
	font-size: 130px;
}

#GAME_BSH_Animation_Points_Target{
	position: absolute;
    font-family: 'Digital Display',monospace;
    font-size: 150px;
	font-weight: bold;
    padding-left: 11px;
	
	top: 50%;
    left: 50%;
	width:78%;
    transform: translate(-50%, -50%);

    color: red;
	transition: 0.3s ease;
	justify-content: end;
	
	display:none;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Points_Target{
	font-size: 130px;
}

#GAME_BSH_Animation_Points{
	position: absolute;
    font-family: 'Digital Display',monospace;
    font-size: 150px;
	font-weight: bold;
    padding-left: 11px;
	
	top: 50%;
    left: 50%;
	width:78%;
    transform: translate(-50%, -50%);

    color: white;
	transition: 0.3s ease;
	justify-content: end;
	
	display:none;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Points{
	font-size: 130px;
}

@font-face {
    font-family: 'Digital Display';
    src: url('https://praxeds.github.io/scrimba-basketball-scoreboard/Assets/Digital-Display.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#GAME_BSH_Animation_Points_Result{
	position: absolute;
    font-size: 75px;
	font-weight: bold;
	
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
	transition: 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_BSH_Animation_Points_Result{
	font-size: 65px;
}