body, html {
    height: 100%;
}
#appbar {
	height: 50px;
}
#appbar a {
	text-decoration: none;
}
#appbar i, #appbar span {
	vertical-align: middle;
}
#main {
	padding-bottom: 90px;
}
.fastbody #main {
	padding-top: 50px;
}
#sidebar {
	position: fixed;
	top: 52px;
	left: 0;
	bottom: 0;
	width: 200px;
	color: #4b4d4c;
	background-color: #fff;
	border-right: 1px solid #F0E3E4;
	margin-left: -200px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 5;
	transition: margin 0.2s ease;
}
.sideopen #sidebar {
	margin-left: 0;
}
.sidemenu>li>a, .sub-menu>li>a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #4b4d4c;
	overflow: hidden;
}
.sidemenu i {
	display: inline-block;
	vertical-align: middle;
	width: 1.5rem;
}
.sidemenu span {
	vertical-align: middle;
}
.sidemenu>li>a:hover, .sidemenu>li.active>a {
	text-decoration: none;
	color: #111;
}
.sidemenu>li.active>a {
	color: #000;
	background-color: #F2F1F1;
}
.sidemenu>li.active>a i {
	color: #007BFF;
}
.sidemenu a:hover {
	color: #000;
	background-color: #fafafa;
}
.sub-menu>li>a:hover {
	text-decoration: none;
	color: #111;
	background-color: #F2F1F1;
}
.sub-menu>li.active>a {
	text-decoration: none;
	color: #000;
	background-color: #F2F1F1;
}
.icon-spin {
	-webkit-animation: icon-spin 2s infinite linear;
	animation: icon-spin 2s infinite linear;
}
@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes icon-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.fullbody #appbar, .fullbody #sidebar, .fullbody #playingnow {
	display: none;
}
.fullbody #main {
	padding: 0!important;
}

/* home */
.hero {
	position: relative;
	height: 160px;
	background-repeat: no-repeat;
	background-position: center 10%;
	background-size: cover;
	margin: 0 -15px;
}
.hero .bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	line-height: 1.1;
	color: #fff;
	background-color: rgba(42, 44, 49, .6);
}
.hero a, .hero a:hover, .hero a:active, .hero a:visited {
	text-decoration: none;
	color: #fff;
}
.mainmenu a, .mainmenu a:hover, .mainmenu a:active, .mainmenu a:visited {
	text-decoration: none;
	color: #4b4d4c;
}
.mainmenu .badge {
	margin: -6px -6px 0 0;
}

@media (min-width: 1024px) {
	#sidebar {
		margin-left: 0;
	}
	#main {
		min-height: calc(100% - 50px);
		padding-left: 200px;
	}
}

@media (min-height: 480px) {
	.hero {
		height: 200px;
	}
}