#GAME_KIL_Main_Container{
	width:100%;
	height:100%;
	
	background-image:url('../../images/KIL_Board.png');
	background-position:center;
	background-repeat:no-repeat;
	background-size:110% auto;
	
	display:flex;
	align-items:center;
	justify-content:center;
}

#GAME_KIL_Left_Container, #GAME_KIL_right_Container{
	width:20%;
	height:100%;
	display:flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-evenly;
	transition: width 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_KIL_Left_Container, .GAMEFRAME_Input_Visible #GAME_KIL_right_Container{
	width:23%;
}

#GAME_KIL_Middle_Container{
	width:60%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: width 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_KIL_Middle_Container{
	width:54%;
}

#GAME_KIL_DARTBOARD_Container{
	position: relative;
	width:100%;
	height:90%;
	transition: height 0.3s ease;
}
.GAMEFRAME_Input_Visible #GAME_KIL_DARTBOARD_Container{
	height:80%;
}



.GAME_KIL_Player_Info_Left, .GAME_KIL_Player_Info_Right{
	height: 120px;
	width: 100%;
	color: #d5d5d5;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.GAME_KIL_Player_Info_Left{
	border-radius: 0 25px 25px 0;
}
.GAME_KIL_Player_Info_Right{
	border-radius: 25px 0 0 25px;
}

.GAME_KIL_Player_Info_Left.GAME_KIL_Player_Dead, .GAME_KIL_Player_Info_Right.GAME_KIL_Player_Dead{
	background: #595959!important;
}

.GAME_KIL_Player_Info_Left.GAME_KIL_Player_Active, .GAME_KIL_Player_Info_Right.GAME_KIL_Player_Active{
	color: #FFFFFF;
	border: 5px solid #FFFFFF;
	box-shadow: 0px 0px 25px #000000;
	height: 130px;
}
.GAME_KIL_Player_Info_Left.GAME_KIL_Player_Active{
	border-left: none;
}
.GAME_KIL_Player_Info_Right.GAME_KIL_Player_Active{
	border-right: none;
}

.GAME_KIL_Player_Info_Number{
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight:bold;
	font-size: 60px;
	text-shadow: 0px 0px 10px #000000;
}

.GAME_KIL_Player_Dead .GAME_KIL_Player_Info_Number{
	color: #737373!important;
}

.GAME_KIL_Player_Info_Detail_Container_Left, .GAME_KIL_Player_Info_Detail_Container_Right{
	width: 75%;
	height: 90%;
    background: #1A1A1A;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: padding 0.3s ease;
}
.GAME_KIL_Player_Info_Detail_Container_Left{
	padding-left: 15px;
}
.GAME_KIL_Player_Info_Detail_Container_Right{
	padding-right: 15px;
}
.GAMEFRAME_Input_Visible .GAME_KIL_Player_Info_Detail_Container_Left{
	padding-left: 5px;
}
.GAMEFRAME_Input_Visible .GAME_KIL_Player_Info_Detail_Container_Right{
	padding-right: 5px;
}
.GAME_KIL_Player_Info_Name{
	width: 100%;
	height: 40%;
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-weight:bold;
	font-size: 40px;
	text-shadow: 0px 0px 10px #000000;
	transition: font 0.3s ease;
}
.GAMEFRAME_Input_Visible .GAME_KIL_Player_Info_Name{
	font-size: 35px;
}
.GAME_KIL_Player_Dead .GAME_KIL_Player_Info_Name{
	color: #737373!important;
}

.GAME_KIL_Player_Info_Lives{
	width: 100%;
	height: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.GAME_KIL_Player_Info_Life{
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.GAME_KIL_Icon_Heart{
	width: 90%;
	height: 90%;
	stroke-width: 5px;
}
.GAME_KIL_Icon_Skull{
	width: 80%;
	height: 80%;
}
.GAME_KIL_Icon_Grave{
	width: 80%;
	height: 80%;
	fill: #595959;
}