html,body {
	height: 100%;
}
#main {
	display: flex;
	flex-direction: row;
	height: 100%;
}
/* Nav */
#main > #nav {
	background: #333;
	flex-basis: 230px;
	flex-shrink: 0;
	/*overflow-y: auto;*/
	padding: 1rem;
}
#main > #nav > #top-logo {
	display: flex;
	align-content: center;
	justify-content: center;
	margin-bottom: 2rem;
	margin-top: 1rem;
}
#main > #nav .menu-label {
	color: #666;
}
#main > #nav .menu-list a {
	color: #bbb;
}
#main > #nav .menu-list a:hover {
	color: #333;
}
#main > #nav .menu-list a.is-active {
    color: #fff!important;
}
#main > #nav .menu-list li ul {
	border-left: 1px solid #444;
}
/* Conent */
#main > #content {
	flex: 1 1 0;
	overflow: auto;
	display: flex;
	flex-direction: column;
}
#main > #content > #content-top {
	display: flex;
	flex-direction: row;
	padding: 1rem 1rem 0px 1rem;
	justify-items: center;
	align-items: center;
}
#main > #content > #content-top > #btn-menu-collapse {
	margin-bottom: 2px;
	margin-left: 0.5rem;
	cursor: pointer;
	color: #999;
}
#main > #content > #content-top > #top-label {
	font-size: 1.5rem;
	font-weight: 300;
	padding-left: 1rem;
	font-family: "Google Sans",sans-serif;
}
#main > #content > #content-top > #top-img-profile{
	margin-left: auto;
	height: 36px;
	width: 36px;
	border-radius: 290486px;
}

#main > #content > #content-bottom {
	display: flex;
	justify-content: left;
}

#menu {
	height: calc(100% - 93px);
}

#game-list {
	overflow-y: auto;
	height: calc(100% - 240px);
}

#top-label > span {
	font-weight: 500;
	color: #999;
}

#top-label > span::after {
	content: "\\";
	padding-left: 0.3rem;
	font-weight: 100;
}

#top-label > span:last-child {
	color: #333;
}

#top-label > span:last-child::after {
	content: "";
}

@media screen and (max-width: 768px) {
	#main > #content > #content-top > #top-label {
		font-size: 1.1rem;
		flex: 1 1 0;
		display: flex;
	}
	#main > #nav {
		width: 242px;
		position: absolute;
		z-index: 100;
	}
}
