html,
body {
	height: 100%;
	min-height: 100%;
	margin: 0px;
	padding: 0px;
	background: #000000;
	font-family: 'Roboto', sans-serif;
	min-width: 720px;
}

* {
	user-select: text;
	outline: none;
}

::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar-thumb {
	background: #444;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
	background: #666;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 6px;
}

.page {
	position: fixed;
	top: 0;
	bottom: 90px;
	width: 100%;
	min-width: 720px;
	padding: 0px;
	overflow-y: auto;
}

.sidebar {
	background: #141414;
	border-right: 1px solid #222;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 90px;
	width: 222px;
}

.site-logo {}

.site-logo img {
	width: 162px;
	padding: 30px;
}

.menu {
	color: #CCCCCC;
	list-style: none;
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	padding: 20px 0;
}

.menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu li {}

.menu a {
	display: block;
	cursor: pointer;
	padding: 10px 0px 10px 30px;
	transition: 0.3s color;
}

.menu a:hover {
	color: #00E676;
}

.menu a.active {
	color: #FFFFFF;
	border-left: 6px solid #00E676;
	padding-left: 24px;
}

.menu span {
	display: block;
	line-height: 24px;
}

.menu span.material-icons {
	float: left;
	padding-right: 10px;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
}

.content {
	width: calc(100% - 222px);
    padding: 0 0 0 222px;
}

.header {
	height: 70px;
  width: calc(100% - 233px);
  position: fixed;
}

.search {

}

.search input {
	padding: 5px 5px 5px 10px;
    margin: 23px;
    width: 200px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    /* background-image: url(../images/search_24-white.svg); */
    /* background-position: 10px 50%; */
    /* background-size: 28px 28px; */
    background-repeat: no-repeat;
    outline: none;
    border: 0px;
    border-radius: 3px;
    float: right;
    transition: all 0.3s;
}

.main {
	height: 1000px;
}

.player {
	position: fixed;
	height: 90px;
	width: 100%;
	min-width: 720px;
	bottom: 0px;
	padding: 0px;
	background: #141414;
	border-top: 1px solid #222;
}