@font-face {
	font-family: 'NEXONLv1Gothic';
	src: url(https://lwi.nexon.com/fonts/nexonlv1gothic.eot);
	src: url(https://lwi.nexon.com/fonts/nexonlv1gothic.eot?#iefix) format('embedded-opentype'), url(https://lwi.nexon.com/fonts/nexonlv1gothic.woff) format('woff'), url(https://lwi.nexon.com/fonts/nexonlv1gothic.ttf) format('truetype')
}

* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

.lnb {
	position: sticky;
	height: 0;
	width: 220px;
	left: 0px;
	top: 0px;
	z-index: 500;
	background-color: #222;
	transition: transform .4s ease-in-out;
	font-family: 'NEXONLv1Gothic';
}

.lnb.lnb_hide {
	transform: translateX(-100%);
}

.lnb .lnb_inner {
	/* position: sticky;
	left: 0;
	top: 0; */
	background-color: #222;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}
.lnb .lnb_inner::-webkit-scrollbar {
	width: 10px;
}
.lnb .lnb_inner::-webkit-scrollbar-thumb {
	background-color: gray;
	border-radius: 5px;
}
.lnb .lnb_inner::-webkit-scrollbar-track {
	background-color: #000;
	/* border: 1px solid #aaa; */
}

.lnb .lnb_inner .lnb_title {
	height: 134px;
	display: flex;
	justify-content: center;
	position: relative;
	align-items: center;
	border-bottom: 1px dotted #302f39;
	box-sizing: border-box
}

.lnb .lnb_inner ul {
	list-style: none;
}

.lnb .lnb_inner ul li {
	position: relative;
	border-bottom: 1px dotted #302f39;
	box-sizing: border-box;
}


.lnb .lnb_inner ul li.active,
.lnb .lnb_inner ul li:hover {
	background-color: #353535
}

.lnb .lnb_inner ul li.active a,
.lnb .lnb_inner ul li:hover a {
	color: #efefef
}

.lnb .lnb_inner ul li.active a .lnb_icon,
.lnb .lnb_inner ul li:hover a .lnb_icon {
	border-color: #636363;
	filter: grayscale(0);
}

.lnb .lnb_inner ul li a {
	display: flex;
	width: 220px;
	min-height: 100px;
	align-items: center;
	color: #7f7e7e;
	font-size: 14px;
	line-height: 18px
}

.lnb .lnb_inner ul li a .lnb_icon {
	margin: 0 12px 0 28px;
	display: flex;
	width: 52px;
	font-size: 0;
	height: 52px;
	justify-content: center;
	align-items: baseline;
	background-repeat: no-repeat;
	background-position: center top;
	border: 2px solid #464646;
	box-sizing: border-box;
	overflow: hidden;
	filter: grayscale(1);
}
.lnb .lnb_inner ul li a .lnb_icon > img {
	width: 100%;
}

.lnb .lnb_inner .lnb_close {
	position: absolute;
	right: -44px;
	top: 0;
	width: 44px;
	height: 44px;
	font-size: 0;
	border: 0;
	overflow: hidden;
	display: flex;
	justify-content: baseline;
	cursor: pointer;
}

.lnb.lnb_hide .lnb_close {
	justify-content: end;
}