body {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	background: black;
	font-family: Arial;
	font-size: 20px;
	position: relative;
}

.world {
	background: rgb(230, 230, 230);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
.ground1, .ground2 {
	background: rgb(147, 147, 242);
}

.move_obj {
	background: black;
}

.man {
	background: url('../img/utka_s_bantikom.png');
	background-size: cover;
	background-position: 0px;
}
.man.run {
	/*animation: run 0.4s steps(4) infinite;*/
}
@keyframes run {
	100% {
		background-position: -176px;
	}
}

.ground {
	transition: bottom 0.2s;
}
.ground.w_24 {
	background: black;
	/*background: url('../img/block24.png') center -2px no-repeat;*/
}
.ground.w_35 {
	background: black;
	/*background: url('../img/block35.png') center -2px no-repeat;*/
}
.ground.w_55 {
	background: black;
	/*background: url('../img/block55.png') center -2px no-repeat;*/
}
.ground.w_75 {
	background: black;
	/*background: url('../img/block75.png') center -2px no-repeat;*/
}
.ground.w_91 {
	background: black;
	/*background: url('../img/block91.png') center -2px no-repeat;*/
}
.ground.w_97 {
	background: black;
	/*background: url('../img/block97.png') center -2px no-repeat;*/
}
.ground.w_110 {
	background: black;
	/*background: url('../img/block110.png') center -2px no-repeat;*/
}
.ground.top {
	transform: scaleY(-1);
}

.score_anim {
	opacity: 0.2;
	position: absolute;
	z-index: 99;
	transform: none;
	font-size: 16px;
	color: #3d3d3d;
}
.score_anim.anim {
	transition: transform 1.5s cubic-bezier(0.1, 0, 0.5, 1.5);
	transform: scale(20) translateY(-100px) translateX(-100px);
}

.in_game_panel, .menu {
	position: absolute;
	z-index: 100;
}
.in_game_panel {
	width: 100%;
	color: #3d3d3d;
	font-size: 26px;
}
.in_game_panel .left {
	float: left;
    margin: 7px 10px;
    background: #79797991;
    border-radius: 5px;
    padding: 6px 15px;
    color: white;
    font-size: 16px;
}
.in_game_panel .right {
	float: right;
	margin: 7px 10px;
	background: #fcf8f4;
	border-radius: 5px;
	padding: 6px 50px 6px 15px;
}
.menu {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	/*background: url(../img/start2.png) center no-repeat;*/
	background-size: contain;
	position: absolute;
}
.menu .ui_wrap {
	width: 400px;
	height: 184px;
	margin: 160px auto 0;
	position: relative;
	transition: margin 500ms;
}
.button {
	cursor: pointer;
	transform: scale(0.96);
	transition: transform 0.2s;
}
.button:hover {
	transform: scale(1);
}
.button.start {
	width: 146px;
    height: 54px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 73px);
    background: rgb(255, 255, 255, 36%);
    text-align: center;
    line-height: 54px;
    font-size: 34px;
    font-weight: bold;
    border: solid 2px white;
    color: white;
}
.menu .top.gameover {
	width: 100%;
    height: 60px;
    position: absolute;
    top: -77px;
    background: rgb(255, 255, 255, 36%);
    text-align: center;
    line-height: 60px;
    font-size: 44px;
    color: white;
	border-radius: 5px;
}
.menu .top.logo {
	background-size: contain;
	width: 100%;
	height: 130px;
	position: absolute;
	top: -111px;

	background: rgb(255, 255, 255, 36%);
	text-align: center;
    line-height: 130px;
    font-size: 50px;
    color: white;
	border-radius: 10px;
}
.menu .info {
	color: #b8b8b8;
	font-size: 30px;
	position: absolute;
	top: 28px;
	right: calc(50% + -40px);
	text-align: right;
}
.menu .info #line1n, .menu .info #line2n {
	position: absolute;
	left: 102%;
	top: 2px;
	background: #161616;
	border-radius: 7px;
	color: #ffffff;
	padding: 0 10px;
	font-size: 24px;
}
.menu .info #line2n {
	top: 37px;
}
