header {
	display: flex;
	background-color: rgb(253, 253, 253);
	/* border-bottom: 2px solid #2e3753; */
	width: 100%;
	align-items: center;
	height: 65px;
	font-size: 13px;
    justify-content: center;
}

a {
	color: #000;
    text-decoration: none;
}

.header_nav {
	padding: 0px 24px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	position: relative;
    max-width: 1160px;
    min-width: 1040px;
}

.header_left {
	display: flex;
	align-items: center;
}

.horizontal {
	border: none;
	flex-shrink: 0;
	background: rgba(255, 255, 255);
	display: block;
	width: 1px;
	margin: 0px 20px 0px 18px;
	height: 16px !important;
}

/*  */


nav {
	background-color: transparent;
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
}

nav>ul>li {
	position: relative;
	text-align: center;
}

.nav_top_menu {
	font-size: 14px;
}

.nav_top_menu>i {
	transition: transform 0.3s ease;
}


.nav_top_menu.userid {
	border: 1px solid rgb(29, 29, 29);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	color: rgb(29, 29, 29);
	font-weight: 500;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	transition: all 0.3s ease 0s;
	width: 30px;
	height: 30px;
	font-size: 14px;
	padding: 0;

}

.nav_top_menu:hover i {
	transform: rotate(-180deg);
}

nav ul li a {
	display: block;
	padding: 15px;
	color: rgb(29, 29, 29);
	text-decoration: none;
}

nav ul li a:hover {
	color: #01bc8d;
}

.dropdown {
	position: relative;
}

.dropdown-content {
	position: absolute;
	width: 200px;
	top: 100%;
	left: 0;
	background-color: rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s ease;
	border-radius: 20px;
}

.service-menu {
	border-radius: 20px;
	background-color: rgb(255, 255, 255);
}

.service-menu>ul>li>a:hover {
	background-color: rgba(29, 29, 29, 0.02);
	border-radius: 10px;
}

.service-menu ul {
	list-style-type: none;
	/* padding: 12px 0px; */
	margin: 0;
	display: flex;
	flex-direction: column;
}

.service-menu ul li {
	padding: 10px 12px;
	border-radius: 20px;
}



.sub-menu {
	/* display: none; */
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 100%;
	background-color: rgba(255, 255, 255);
	/* background-color: rgba(243, 243, 243, 0.02); */
	width: 200px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
	border-radius: 0px 20px 20px 0px;
	transition: transform 0.3s ease;
	transform: translateX(-5px);
}

.service-menu ul li:hover .sub-menu {
	visibility: visible;
	display: block;
	transform: translateX(0px);
}

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

.sub-menu ul li {
	padding: 10px;
}

.sub-menu ul li a {
	color: rgb(29, 29, 29);
	text-decoration: none;
	border-radius: 20px;
}

.sub-menu ul li a:hover {
	background-color: rgba(29, 29, 29, 0.02);
	border-radius: 10px;
}

.dropdown:hover .dropdown-content {
	visibility: visible;
	opacity: 1;
}


/*  */



.top_menu .logo {
	height: auto;
}

.left_mobile {
	list-style: none;
	width: 100px;
	height: 72px;
}

.top_menu .left_menu {
	width: 100%;
	max-width: 900px;
	height: auto;
	font-family: 'Noto Sans KR', sans-serif;
	transition: all 0.5s;
}

.top_menu>.left_menu>.top_btn {
	float: left;
	margin: 10px auto;
	overflow: visible;
}


.top_menu ul,
.top_menu ul li {
	list-style: none;
}

.coin_menu {
	text-decoration: none;
	font-size: 20px;
	color: #fff;
	display: inline-block;
	margin: 10px;
	text-transform: uppercase;
	overflow: visible;
	transition: all 0.5s;
}

.sp_effect:after {
	display: block;
	content: '';
	margin: 10px auto 0;
	border-bottom: solid 2px #7162ce;
	width: 30px;
}

.user_info a {
	color: #fff;
}

.info_btn {
	background: #130f1d;
	color: #fff;
	padding: 16px;
	font-size: 16px;
	border: none;
}

.user_info {
	display: inline-block;
}

.drop_contents {
	display: none;
	position: absolute;
	background-color: #FFFFFF;
	margin-top: 20px;
	width: 100px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	text-align: center;
}

.drop_contents a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.drop_contents a:hover {
	background-color: #ddd;
}


.user_info:hover .drop_contents {
	display: block;
}

.user_info:hover .info_btn {
	color: #7162ce;
}

.user_info:hover .arrow {
	border-color: #7162ce;
}


.btns a {
	color: #fff;
}

.arrow {
	border: solid #fff;
	margin: 0 0 3px 3px;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;

}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.big {
	margin-left: 10px;
	padding: 4px;
}



.right-mobile img {
	width: 25px;
	height: 20px;
}


.slide-top img {
	position: absolute;
	height: 15px;
	top: 10px;
	right: 20px;
}

.sbsk {
	display: block;
	width: 100%;
	height: 80%;
	float: right;
	position: fixed;
	top: 0;
	right: 0;
	background: #f7f7f7;
	transform: translateX(100%);
	transition: all 0.3s;
	z-index: 999;
}


.act {
	transform: translateX(0%)
}

.hd-logout {
	width: unset;
	cursor: pointer;
	padding: 9px 12px;
	font-weight: 500;
	font-size: 12px;
	line-height: 130%;
	text-align: center;
	color: rgb(29, 29, 29);
	margin: 0px;
	transition: all 0.3s ease 0s;
	border: unset;
	border-radius: 24px;
}

.right-pc {
	display: flex;
	line-height: 1;
	justify-content: center;
	align-items: center;
}

.hd-mypage {
	width: unset;
	padding: 6px 16px;
	border-radius: 90px;
	font-weight: 700;
	font-size: 12px;
	line-height: 130%;
	text-align: center;
	color: rgb(29, 29, 29);
	background: rgb(1, 188, 141);
	position: relative;
	transition: all 0.3s ease 0s;
}

.hd-logout:hover {
	opacity: 0.6;
}

.closeicon {
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border: 2px solid rgba(243, 243, 243, 0.08);
	border-radius: 100%;
	cursor: pointer;
	margin-top: 5px;
	margin-right: 5px;
}

.MenuBox {
	background: rgba(243, 243, 243, 0.04);
	border-radius: 50%;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	display: flex;
	width: 32px;
	height: 32px;
	line-height: 30px;
	font-size: 14px;
}

@media (max-width:1200px) {

	.right-mobile {
		display: flex;
	}

	.right-pc {
		display: none;
	}

	nav,
	.horizontal {
		display: none;
	}

	.top_menu {
		min-width: 100px;
	}

	.right_menu {
		min-width: 50px;
		width: 50px;
	}

	.sbsk {
		display: block;
	}

	.act {
		width: 100%;
		height: 100%;
	}


}


@media (max-width:767px) {
	.header_nav {
		padding: 0px 16px;
        min-width: 0;
	}

}



.sbsk {
	border-left: 1px solid #ffffff10;
}

.slide-logo {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.slide-logo img {
	height: 66px
}

.sbsk .divider {
	height: 1px;
	background: rgba(243, 243, 243, 0.04);
	border: none;
	margin: 16px 32px;
}

.slide-top {
	position: absolute;
	display: flex;
	justify-content: end;
	align-items: center;
	width: 100%;
	top: 5px;
	right: 5px;
}

.slide-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.slide-info .info-subtitle {
	color: #7c7c7c;
}

.slide-info .info-money {
	font-size: 23px;
	font-weight: 700;
	color: #000;
}

.slide-btn-assets {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.slide-btn-assets .popa {
	background-color: rgba(243, 243, 243, 0.04);
	display: flex;
	padding: 10px 20px;
	color: #000;
	align-items: center;
	gap: 5px;
	justify-content: center;
	line-height: 1;
	font-size: 15px;
}

.mb-logout {
	width: 100%;
	cursor: pointer;
	padding: 9px 12px;
	font-weight: 500;
	font-size: 15px;
	line-height: 130%;
	text-align: center;
	color: rgb(29, 29, 29);
	margin: 0px;
	transition: all 0.3s ease 0s;
	background-color: rgba(243, 243, 243, 0.04)
}

.sbsk-logout {
	width: 100%;
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
}

.sbsk .slide-menu {
	text-align: center;
	display: flex;
	flex-direction: column;

}

.sbsk .slide-menu li {
	padding: 17.7px 12px;
	font-size: 16px;
	line-height: 130%;
	font-weight: 500;
	color: #ffffff;
	border-radius: 8px;
}

.container .clickbg {
	background: #1f1f1f00;
}

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


.mobile_menu {
	display: none !important;
}

.pc_menu {
	display: block !important;
}

@media (max-width:1200px) {
	.mobile_menu {
		display: block !important;
	}

	.pc_menu {
		display: none !important;
	}
}

.ICMenu_svg__icon {
	fill: #000;
}

.closeicon svg {
	fill: #000;
}