.hide {
	display: none;
}

html, body{overflow: hidden;}

body {
	font-family: 'Oxygen', sans-serif;
	position: fixed;
	width: 100%;
	height: 100%;
}

header {
	position: fixed;
	height: 32px;
	background-color: #272827;
	padding-top: 6px;
	text-align: center;
}
header span{
	height: 100%;
	float: left;
	color: #B0BFB6;
	font-size: 14px;
	text-align: left;
	
}

#score{
	padding-left: 6%;
	width: 33%;
}

#lives{
	width: 30%;
}

#stage{
	width: 23%;
}

button{
	width: 13%;
	height: 100%;
	/* padding-right: 6%; */
	float: left;
	color: #B0BFB6;
	font-size: 14px;
	text-align: center;
	background: none;
	/* cursor: pointer; */

	border: 0;
	box-shadow: none;
	outline: none;

	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
	appearance: none;
}

#lives svg{
	width: 11px;
	height:  11px;
	position: relative;
	top: 1px;
	margin-left: 4px;
	
}

#pause svg{
	width: 16px;
	height:  16px;
	cursor: pointer;
	position: relative;
	bottom: 2px;
}


body{
	overflow: hidden;
	text-align: center;
	background-color: rgba(55, 60, 57, 0.9);
}

canvas	{
	background-color: #373C39;
	border: 1px solid #444;
	z-index: 1;
}

#modal {
	position: fixed;
	width: 70%;
	height: 70%;
	margin-left: 15%;
	margin-top: 15%;
	background-color: rgba(190, 227, 231, 0.8);
	padding: 10px;
	z-index: 4;
	border-radius: 10px;
	text-align: center;

	-webkit-box-shadow: 10px 10px 40px -9px rgba(66,133,106,0.76);
	-moz-box-shadow: 10px 10px 40px -9px rgba(66,133,106,0.76);
	box-shadow: 10px 10px 40px -9px rgba(66,133,106,0.76);
}

#go {
	width: 100%;
	height: 100%;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
}

#go p{
	font-size: 26px;
	color: #272827;
	margin-bottom: 3px;
}

#go p.rank{
	font-size: 16px;
	margin-bottom: 3px;
}

#go p.hint{
	font-size: 12px;
	margin-bottom: 3px;
}

#go input{
	font-size: 12px;
	font-weight: 400;
	height:20px;
	width: 85%;
	float: left;
	position: relative;
	bottom: 2px;
	background: rgba(255,255,255,0.7);
	color:#272827;
	border-radius: 5px;
	border: 0;
	box-shadow: none;
	outline: none;

	text-indent: 5px;

	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
	appearance: none;
}

button#submit{
	width: 15%;
	height: 20px;
	opacity: 0.7;
	margin-bottom: 10px;
	border: 0;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
	appearance: none;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

button#submit svg{
	width: 20px;
	height: 20px;
	padding: 2px;
	position: relative;
	bottom: 1px;
	border-radius: 10px;
	border: 2px solid #272827;
}

button#submit svg .fill{
	fill: #272827;
}

table {
	font-size: 15px;
	opacity: 0.8;
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
}

tr{
	width: 100%;
	height: 18px;
	margin-bottom: 7px;
}

td {
	width: 33%;
	text-align: left;
}

td.score {
	width: 33%;
	text-align: right;
}

button#restart {
	width: 100%;
	text-align: center;
	height: 30px;

}

#restart svg {
	width: 30px;
	height: 30px;
	cursor: pointer;
	
}

#restart svg .fill{
	fill: #272827;
	opacity: 0.8;
	
}


#pauseModal{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(180, 180, 180, 0.85);
	text-align: center;
}

#resume {
	width: 100%;
	height: 100%;
	text-align: center;
	background: none;
	/* cursor: pointer; */

	border: 0;
	box-shadow: none;
	outline: none;

	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
	appearance: none;

}

#resume svg {
	width: 50px;
	height: 50px;
	cursor: pointer;
	/* opacity: 0.7; */
	
}

#resume svg .fill{
	fill: #fff;
}