*{
	cursor:url(../cursor.cur), pointer;
}
body{
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.canvas{
}
.menu_box{
	margin: 190px auto 0 auto;
	display: block;
}
.menu_box .menu{
	padding: 10px 30px;
	-webkit-transition: .2s -webkit-filter linear;
	transition: all 0.3s;
	display: inline-block;
	border-radius: 30px;
	background-color: rgba(255,255,255,0.8);
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.menu_box .menu:hover{
	background-color: rgba(255,255,255,0.9);
}
.menu_box .menu .game_name{
	padding: 20px 0;
	font-family: arial;
	font-size: 30px;
    font-variant: small-caps;
    font-weight: bold;
    /*padding: 0 30px;*/
}
.menu_box .menu .buttons button{
	display: block;
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
	border: 2px solid rgb(0,0,0);
	border-radius: 100px;
	padding: 10px 20px;
	margin-bottom: 10px;
	font-size: x-large;
    font-variant: small-caps;
    font-weight: bold;
    outline: none;
}
.menu_box .menu .buttons button:hover{
	transition: all .3s;
	background-color: rgb(255,255,255);
	color: rgb(0,0,0);
}
.menu_box .menu .buttons button img{
	width: 15px;
	-webkit-transition : -webkit-filter .3s linear;
}
.menu_box .menu .buttons button:hover img{
	-webkit-filter: invert(100%);

}
.menu_box .menu .buttons button:last-child{
	margin: 0 0 30px 0;
}
.menu_box .menu .buttons a{
	text-decoration: none;
}
.scene{
	z-index: -999;
	position: absolute;
	left: 200px;
}
.canvas .black_blocks{
	background-color: black;
	height: 80px;
	position: absolute;
	border-radius: 20px;
}
.canvas .img_trap{
	width: 150px;
	height: 50px;
	position : absolute;
	bottom : 80px;
	left : 554px;
}
.canvas .img_flag{
	width: 100px;
	position : absolute;
	bottom : 240px;
	left : 3900px;
}
.canvas .health_bar{
	font-size: x-large;
    font-family: arial;
	font-size: 30px;
    font-variant: small-caps;
    font-weight: bold;
	color: #FFFFFF;
	float: left;
	width: 150px;
	height: 36px;
	/*background-color: #fff;*/
	margin: 29px 0 0 30px;
}
.canvas .health_img{
	width: 25px;
    margin-left: 3px;
    float: left;
}
.canvas .game_sett{
	width: 30px;
    transition: all 0.3s;
    float: right;
    margin: 25px 30px 0 0;
}
.canvas .game_sett:hover{
	opacity: 0.8;
}
.canvas .control_panel{
	background-color: black;
	height: 80px;
	position: fixed;
}
.canvas .map{
	position: relative;
	width: 4000px;
	display: inline-block;
	height: 100%;
}
.canvas .main{
	overflow: hidden;

}
.blur{
	-webkit-transition: .2s -webkit-filter linear;
	-webkit-filter: blur(5px);
}
.settings_panel{
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
}
/*-------PLAYER CSS--------*/
.player{
	background-color: #000;
    width: 25px;
    height: 50px;
    position: absolute;
}
.canvas .empty{
    width: 25px;
    height: 55px;
    position: absolute;
    bottom: 80px;
}
.canvas .empty img{
    height: 55px;
}
.flipped {
    transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -khtml-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
}