* {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	background-color: #262421;
}

/*******************
	top nav
*******************/
#top-nav {
	position: fixed;
	display: flex;
	/* justify-content: space-between; */
	justify-content: center;
	left: 0;
	top: 0;
	right: 0;
	padding: 10px 50px;
}

/*******************
	logo
*******************/
#logo {
	position: relative;
	left: 0;
	top: 0;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	color: #f0f0f0;
}

/*******************
	user info
*******************/
#user-info {
	text-align: center;
	display: none;
}

/*******************
	username
*******************/
#username {
	position: relative;
	border-radius: 30px;
	padding: 5px 20px;
	font-size: 18px;
	cursor: pointer;
	margin: 0 5px;
}

/*******************
	btn
*******************/
.btn {
	position: relative;
	border: 1px solid #000000;
	border-radius: 30px;
	padding: 5px 20px;
	font-size: 16px;
	cursor: pointer;
	margin: 0 5px;
}

.btn-default {
	background-color: #BCBDA1;
	color: #262421;
}

.btn-default:hover {
	background-color: #CBCBB6;
}

.btn-default:active {
	background-color: #EDEEDC;
}

.input {
	position: relative;
	border: 1px solid #f0f0f0;
	border-radius: 30px;
	padding: 5px 20px;
	font-size: 16px;
	cursor: pointer;
	margin: 0 5px;
	color: #ffffff;
}

/*************************
 * GAME
**************************/

/*******************
	body
*******************/
body {
	overflow: hidden;
}

/*******************
	box debug
*******************/
#box-debug {
	position: fixed;
	left: 0;
	top: 0;
	margin: 5px;
}

/*******************
	debug
*******************/
#debug {
	position: fixed;
	bottom: 0;
	left: 0;
	margin: 5px;
}

/*******************
	main
*******************/
#main {
	display: flex;
	flex-direction: column;
	padding: 70px 0px;
	margin-top: 50px;
}

/*******************
	new game
*******************/
#new-game {
	position: relative;
	right: 0;
	top: 0;
	left: 0;
	margin: 0px;
	text-align: center;
	height: auto;
	padding: 1px;
}

/*
	#new-game-button {
		position: relative;
		width: 150px;
		margin: 0 auto;
		margin: 4px;
		padding: 0 10px;
		border: 1.5px solid #e0e0e0;
		color: #606060;
		background-color: #d0d0d0;

	}#new-game-button:hover {
		background-color: #e0e0e0;

	}#new-game-button:active {

	}
*/
#new-game-button {
	margin-top: 10px;
}

/*******************
	game
*******************/
#game {
	position: relative;
	font-size: 0px;
	color: #303030;
	margin: 10px 0 0 0;

}#mines {
	font-size: 14px;
	margin: 0 4px;

}#flags {
	font-size: 14px;
	margin: 0 4px;
}#time {
	font-size: 14px;
	margin: 0 4px;
}

.game-item {
	margin: 0 10px;
	font-size: 14px;
	color: #e0e0e0;
}

/*******************
	game outter
*******************/
#game-outter {
	overflow-x: scroll;
	overflow-y: scroll;
	height: auto;
}

@media only screen and (min-width: 794px) {
	#game-outter {
		overflow: hidden;
	}
}

/*******************
	game container
*******************/
#game-container {
	text-align: center;
	margin: 0px auto;
	position: relative;
}

/*******************
	message
*******************/
#message {
	position: relative;
	margin: 4px;
	text-align: center;
}

/*******************
	bottom bar
*******************/
#bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}

/*******************
	info
*******************/
#info {
	text-align: center;
	
	display: inline-block;
	position: relative;
	left: 0;
	right: 0;
	margin: 10px 0 0 0;
}

/*******************
	how to content
*******************/
#how-to-content {
	visibility: hidden;
	text-align: center;
	color: #303030;
	font-size: 13px;
}

/*******************
	icons
*******************/
.icon {
	display: inline-block;
	font-size: 22px;
	margin: 1px 6px;
	cursor: pointer;
}.icon i{
	color: #909090;
}.icon i:hover {
	color: #707070;
}

/*******************
	buttons
*******************/
.buttons {
	border: 1.5px solid #909090;
	padding: 10px 25px;
	cursor: pointer;
}.buttons:hover {
	background-color: #909090;
	color: #f0f0f0;
}

.icon-buttons {
	margin: 5px;
	background-color: #a0a0a0;
	width: 25px;
	height: 25px;
}.icon-buttons i {
	color: #f0f0f0;
	font-size: 11px;
}

/*******************
	share buttons
*******************/
.share-buttons {
	text-decoration: none;
	font-size: 12px;
}

/*******************
	display none
*******************/
.dn {
	display: none;
}

/****************************
	Scrollbar
****************************/
/* width */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #505050; 
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #202020; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #202020; 
}
