
/* 헤더 */
.header{
	position: fixed;
	height: 60px;
	line-height: 60px;
	padding: 10px 0;
	font-size: 24px;
	top: 0;
	right: 0;
	width: calc(100% - 60px);
	z-index: 2;
}

.side {
	background-color:#2b353d;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 2;
	color:#fefefe;
	display: flex;
	padding: 60px 10px;
	width: 60px;
	height: 100vh;
	flex-direction: column-reverse;
}

.side ul{
	width: 100%;
	text-align: center;
}

.side ul li{
	cursor: pointer;
	margin: 10px 0;
}

.header .inner .logo a{
    font-size: 24px;
	color: #fefefe;
    font-weight: 400;
    letter-spacing: 0;
	display: block;
	width: 100%;
}
.header .right-menu ul{
	display: flex;
}
.header .right-menu ul li{
	margin: 24px 8px;
	padding: 2px 0;
    width: 94px;
    font-size: 13px;
    color: #fcfcfc;
	cursor: pointer;
	border: 1px solid #4b4b4b;
	background-color: #3a393f;
	border-radius: 4px;
	font-weight: 300;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
}
.header .right-menu ul li.start{
    background-color: #0176f9;
}
.header .right-menu ul li.pause{
    background-color: #dc0000;
}

.header .right-menu ul li i{margin-right: 5px;}
.header .right-menu ul li:hover{
	color: #78F8EC;
	
}
