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

.side {
	z-index: 999;
	color: var(--text-color);
	display: flex;
	height: 100vh;
	padding: 0 0 0 40px;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.side {
		flex-direction: row;
		width: 100%;
		height: 60px;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 0 12px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		align-items: center;
		justify-content: space-around;
		margin-top: 20px;
	}
}

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

@media (max-width: 768px) {
	.side ul{
		display: flex;
		justify-content: center;
		width: 100%;
		text-align: center;
	}
	
}

.side ul li{
	width: 60px;
	height: 60px;
	background-color: var(--icon-bg);
	border-radius: 100%;
	cursor: pointer;
	margin: 10px 0;
	line-height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.side ul li i{
	font-size: 16px;
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
}

/* 테마 아이콘 스타일 */
.side ul li.theme-toggle i.theme-icon {
	font-size: 16px;
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
}

.header .inner .logo a{
    font-size: 24px;
    color: #ffffff !important;
    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: var(--side-color);
	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: var(--accent-color);
}
.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: var(--accent-hover);
}
