@charset "utf-8";

/* 홈페이지 좌측 메뉴 영역 */
.body-left{
	position: fixed;
	top: 0; left: 0;
	z-index: 1000;
	max-width: 250px;
	width: 100%;
	height: 100vh;
/*	background-color: var(--white);*/
	background-color: #333;
	box-sizing: border-box;
	padding: 20px 15px;
	/* box-shadow: 0px 0px 10px rgba(255,90,90,0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
	
	/* 아래 4줄을 삭제하거나 주석 처리합니다. */
	/* padding-bottom: 165px; */
	/* overflow-y: auto; */
	/* scrollbar-width: thin; */
	/* scrollbar-color: var(--red01) #eee; */
}

.body-left::-webkit-scrollbar{
    width: 5px;
    background: #eee;
}
.body-left::-webkit-scrollbar-thumb{
    border-radius: 13px ;
    background: #de8786;
}

.body-left .logo-box{
	width: 80%;
	margin: 0 auto;
}

.body-left .logo-box a{
	display: block;
	width: 100%;
}

.body-left .logo-box a img{
	/* filter: invert(28%) sepia(60%) saturate(2141%) hue-rotate(337deg) brightness(98%) contrast(86%); */
}
.body-left-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.body-left .category-list{
	height: auto;
	overflow-y: auto;
	scrollbar-width: thin;
    scrollbar-color: var(--red01) #eee; 
}

.body-left .category-list:nth-of-type(1){
	flex-grow: 1; /* 이 속성을 추가합니다. */
	overflow-y: auto; /* 스크롤을 위해 이 속성은 유지합니다. */
	margin-top: var(--space-25);
	/* max-height: 49vh; 속성은 삭제합니다. */
}
.body-left hr{
	margin-top: var(--space-20);
	border: 0;
	border-top: 1px dashed #ccc;
}

.body-left .category-list:nth-of-type(2){
	margin-top: 10px;
}

.body-left .category-list::-webkit-scrollbar{
    width: 5px;
    background: #eee;
}

.body-left .category-list::-webkit-scrollbar-thumb{
    border-radius: 13px ;
    background: var(--red01);
}

.body-left .category-list .category-list-item:not(:first-child){
	margin-top: 10px;
}

.body-left .category-list .category-list-item .depth01{
	position: relative;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	gap: 7px;
	box-sizing: border-box;
	padding: 12px 20px;
	transition: var(--transition);
	border-radius: 5px;
	cursor: pointer;
}

.body-left .category-list .category-list-item .depth01 h3::after{
	content: "";
	width: 8px; height: 8px;
	border-top: 2px solid var(--gray02);
	border-right: 2px solid var(--gray02);
	transition: var(--transition);
	position: absolute;
	top: calc( 50% - 2px ); right: 0;
	transform: translateY(-50%) rotate(135deg);
}

.body-left .category-list .category-list-item.active .depth01 h3::after{
	top: calc( 50% + 2px );
	transform: translateY(-50%) rotate(-45deg);
/*	border-color: var(--red01);*/
	border-color: #fff;
}

/* 화살표 방향 반대 (마이페이지용) */
.body-left .category-list .category-list-item.arrow-reverse .depth01 h3::after{
	top: calc( 50% + 2px );
	transform: translateY(-50%) rotate(-45deg);
	border-color: var(--gray02);
}

.body-left .category-list .category-list-item.arrow-reverse.active .depth01 h3::after{
	top: calc( 50% - 2px );
	transform: translateY(-50%) rotate(135deg);
	border-color: #fff;
}

.body-left .category-list .category-list-item:hover .depth01{
	background-color: var(--red03);
}

.body-left .category-list .category-list-item.active .depth01{
/*	background-color: var(--red02);*/
	background-color: #666;
}

.body-left .category-list .category-list-item .depth01 h3{
	position: relative;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 7px;
	position: relative;
	width: 100%;
}

.body-left .category-list .category-list-item .depth01 .coin-cost{
	display: none;
	width: 100%;
	box-sizing: border-box;
	padding: 5px 10px;
	background-color: var(--white);
	border-radius: 5px;
	border: 1px solid #efb0cb;
}

.body-left .category-list .category-list-item .depth01 .coin-cost p{
	font-size: 12px;
	text-align: center;
	color: #707070;
}

.body-left .category-list .category-list-item .depth01 .coin-cost p strong{
	font-size: inherit;
	color: var(--red01);
}


.body-left .category-list .category-list-item *{
	color: var(--gray02);
	transition: color 0.4s;
}

/* .body-left .category-list .category-list-item.active *{
	color: var(--red01);
	color: #fff;
} */

.body-left .category-list .category-list-item i{
	font-size: 1.125rem;
}

.body-left .category-list .category-list-item.active i{
	font-weight: var(--fw-700);
}

.body-left .category-list .category-list-item i.icn-daum{
	width: 17px; height: 17px;
	position: relative;
}

.body-left .category-list .category-list-item i.icn-daum svg{
	width: 15px;
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
}

.body-left .category-list .category-list-item i.icn-daum svg path{
	fill: var(--gray02);
	transition: var(--transition);
}

.body-left .category-list .category-list-item.active i.icn-daum svg path{
	fill: var(--red01);
}




.body-left .category-list .category-list-item span{
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
}

.body-left .category-list .category-list-item.active span{
	font-weight: var(--fw-800);
}

.body-left .category-list .category-list-item .depth02{
	margin-top: 5px;
	margin-bottom: var(--space-20);
	display: none;
}

.body-left .category-list .category-list-item .depth02 h4{
	padding: 0 20px;
	font-size: 0.875rem;
	font-weight: var(--fw-600);
}
.body-left .category-list .category-list-item .depth02 h4:first-of-type{
	margin-top: 15px;
}

.body-left .category-list .category-list-item .depth02 hr{
	width: calc(100% - 40px);
    margin: 15px auto 20px;
}

.body-left .category-list .category-list-item .depth02 ul{
	margin-top: 10px;
}

.body-left .category-list .category-list-item .depth02 li{}

.body-left .category-list .category-list-item .depth02 li a{
	display: block;
	box-sizing: border-box;
	padding: 10px 20px;
	padding-left: 35px;
	font-size: 0.875rem;
	font-weight: var(--fw-500);
/*	color: var(--gray02);*/
	color: #fff;
	position: relative;
	opacity: 0.8;
	transition: var(--transition);
}

.body-left .category-list .category-list-item .depth02 li a:hover,
.body-left .category-list .category-list-item .depth02 li a:hover small{
	color: #ffa3c8;
/*	color: var(--red01);*/
	opacity: 0.6;
}

.body-left .category-list .category-list-item .depth02 li.active a,
.body-left .category-list .category-list-item .depth02 li.active a small{
	color: var(--red01);
	opacity: 0.8;
}

.body-left .category-list .category-list-item .depth02 li a::before{
	content: "";
	width: 4px; height: 4px;
	background-color: var(--gray02);
	border-radius: 50%;
	position: absolute;
	left: 23px;
	top: 50%;
	transform: translateY(-50%);
}

.body-left .category-list .category-list-item .depth02 li a:hover::before,
.body-left .category-list .category-list-item .depth02 li a:hover small::before,
.body-left .category-list .category-list-item.active .depth02 li.active a::before,
.body-left .category-list .category-list-item.active .depth02 li.active a small::before{
	background-color: var(--red01);
}

.body-left .category-list .category-list-item .depth02 li a::after{
	content: "";
    font-family: xeicon;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
	font-size: 1rem;
	opacity: 0;
	transition: var(--transition);
}

.body-left .category-list .category-list-item .depth02 li a:hover::after,
.body-left .category-list .category-list-item .depth02 li a:hover small::after{
	opacity: 1;
	right: 20px;
}

.body-left .company-info{
	position: relative;
    /* bottom: -80px; */
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    /* transition: var(--transition); */
    margin-top: var(--space-55);
}

.body-left .company-info.on{
	bottom: -255px;
	transition: var(--transition);
}

.body-left .company-info .info-top{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
	color: var(--gray02);
	padding: 7px 0;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}

.body-left .company-info .info-top h4,
.body-left .company-info .info-top i{
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.body-left .company-info .info-top i{
	font-weight: var(--fw-500);
	transition: var(--transition);
	transform: rotate(180deg);
}

.body-left .company-info.on .info-top i{
	transform: rotate(0deg);
}

.body-left .company-info .info-bottom{
	padding-top: 10px;
}

.body-left .company-info .info-bottom p{
	font-size: 0.75rem;
	color: var(--gray01);
	word-break: keep-all;
	opacity: 0.7;
}

.body-left .company-info .info-bottom p:not(:first-child){
	margin-top: 3px;
}

.body-left .company-info .info-bottom span{
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	cursor: pointer;
}

.body-left .company-info .info-bottom p:last-child{
	margin-top: 15px;
}


.body-left .user-info-box{
	flex-shrink: 0; /* 이 속성을 추가합니다. */
	/*position: absolute;*/
	/*bottom: 20px; left: 50%;*/
	/*transform: translateX(-50%);*/
	/*width: calc(100% - 30px);*/
	box-sizing: border-box;
/*	background-color: var(--red03);*/
	/* background-color: #bbb; */
	background-color: #222;
	border-radius: 5px;
	padding: 10px 20px;
}

.body-left .user-info-box > div,
.body-left .user-info-box .btn-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}

.body-left .user-info-box .user-name{}

.body-left .user-info-box .user-name .profile-img{
	display: block !important;
	width: 38px !important;
	height: 38px !important;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
}

.body-left .user-info-box .user-name .profile-img img{
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
}

.body-left .user-info-box .user-name p,
.body-left .user-info-box .coin-info p{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	color: var(--gray02);
}

.body-left .user-info-box .user-name p strong,
.body-left .user-info-box .coin-info p strong,
.body-left .user-info-box .coin-info strong{
	display: inline-block;
	max-width: 91%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space:  nowrap;
	font-size: 15px;
	/* color: var(--black); */
	color: #fff;
}

.body-left .user-info-box .coin-info strong{
	max-width: 100%;
}

.body-left .user-info-box .coin-info{
	margin-top: 10px;
    justify-content: center;
}

.body-left .user-info-box .coin-info h4{
	font-size: 11px;
	font-weight: var(--fw-500);
	background-color: var(--red02);
	color: var(--red01);
	padding: 5px;
	border-radius: 2px;
}


.body-left .user-info-box .btn-box{
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #ccc;
	flex-wrap: wrap;
}

.body-left .user-info-box .btn-box li{
	width: calc( (100% - 5px) / 2);
	border-radius: 3px;
	transition: var(--transition);
}

.body-left .user-info-box .btn-box li:hover{
	opacity: 0.7;
}

.body-left .user-info-box .btn-box li a{
	display: block;
	text-align: center;
	font-size: 0.8125rem;
	box-sizing: border-box;
	padding: 7px 10px;
	color: inherit;
}

.body-left .user-info-box .btn-box li.btn-charge,
.body-left .user-info-box .btn-box li.btn-login{
	background-color: var(--red01);
	color: var(--white);
}

.body-left .user-info-box .btn-box li.btn-logout{
	background-color: #e3e3e3;
	color: var(--gray01);
}

.body-left .user-info-box .btn-box li.btn-login{
	width: 100%;
}

.body-left .user-info-box .btn-box li.btn-kakao{
	background-color: #ffe000;
	color: #471809;
	width:  calc((100% - 7px) / 2);

}


/* 홈페이지 우측 콘텐츠 영역 */
.body-right-head{
	position: fixed;
	top: 20px; left: calc( 250px + 20px );
	width: calc( 100% - 250px - 40px );
	box-sizing: border-box;
	padding: 15px 20px;
	background-color: var(--white);
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
/*	box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15);*/
	z-index: 999;
	background:#333;
	border:1px solid #222;
}

.body-right-head .logo-box a{
	display: none;
}

.body-right-head .header-right{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.body-right-head .util-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.body-right-head .util-box .dark-mode-toggle{
	cursor: pointer;
	background-color: transparent;
	border: 0;
	outline: none;
}

.body-right-head .util-box .dark-mode-toggle i{
	font-size: 1.25rem;
	color: var(--red01);
	opacity: 0.7;
	transition: var(--transition);
}

.body-right-head .util-box .dark-mode-toggle:hover i{
	opacity: 1;
}

.body-right-head .util-box .btn_login{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	background-color: var(--red01);
	box-sizing: border-box;
	padding: 12px 20px;
	border-radius: 5px;
	transition: var(--transition);
}

.body-right-head .util-box .btn_login:hover{
	opacity: 0.9;
}

.body-right-head .util-box .btn_login *{
	color: var(--white);
}

.body-right-head .util-box .btn_login i{
	font-size: 1.125rem;
}

.body-right-head .util-box .btn_login span{
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
}

.body-right-head .util-box .user-profile-area{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.body-right-head .util-box .user-profile-area .user-info{
	text-align: right;
}

.body-right-head .util-box .user-profile-area .user-info p{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 3px;
}

.body-right-head .util-box .user-profile-area .user-info p.user-name{
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
}

.body-right-head .util-box .user-profile-area .user-info p.current-coin{
	font-size: 0.9375rem;
	color: var(--gray02);
	margin-top: 2px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
	padding: 6px 15px;
	border: 1px solid var(--red01);
	border-radius: 50px;
}

.body-right-head .util-box .user-profile-area .user-info p.current-coin i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px; height: 20px;
	font-size: 0.8125rem;
	font-weight: var(--fw-600);
	color: var(--white);
	background-color: var(--red01);
	border-radius: 50%;
	font-style: normal;
}

.body-right-head .util-box .user-profile-area .user-info p.current-coin span{
	font-size: 0.8125rem;
	color: inherit;
}

.body-right-head .util-box .user-profile-area .user-info p.current-coin span strong{
	font-size: 1rem;
	color: var(--red01);
	font-weight: var(--fw-600);
}

.body-right-head .util-box .user-profile-area .user-img-area{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	position: relative;
}

.body-right-head .util-box .user-profile-area .user-img{
	display: block;
	width: 30px; height: 30px;
	border-radius: 50%;
	margin-left: 5px;
}

.body-right-head .util-box .user-profile-area .user-img img{}

.body-right-head .util-box .user-profile-area .user-img-area > i{
	color: var(--gray02);
	font-size: 1.125rem;
	transition: var(--transition);
}

.body-right-head .util-box .user-profile-area .user-img-area:hover > i{
	color: var(--red01);
}

.body-right-head .util-box .user-profile-area .user-img-area.active > i{
	color: var(--red01);
	/* transform: rotate(180deg); */
}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box{
	position: absolute;
	top: calc(100% + 30px); right: 0;
	width: 170px;
	background-color: var(--white);
    border-radius: 5px;
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
	box-sizing: border-box;
	padding: 10px;
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}

.body-right-head .util-box .user-profile-area .user-img-area.active .user-status-box{
 	opacity: 1;
 	pointer-events: all;
 }

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li{}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	padding: 10px 12px;
	color: var(--gray02);
	transition: var(--transition);
}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a:hover{
	background-color: var(--red02);
}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a i,
.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a span{
	color: inherit;
	transition: var(--transition);
}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a:hover i,
.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a:hover span{
	color: var(--red01);
}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a i{}

.body-right-head .util-box .user-profile-area .user-img-area .user-status-box li a span{
	font-size: 0.875rem;
	font-weight: var(--fw-500);
}

.body-right-head .header-right .hamburger_btn{
	position: relative;
	width: 25px; height: 20px;
	background: transparent;
	border: 0;
	outline: none;
	display: none;
}

.body-right-head .header-right .hamburger_btn span{
	position: absolute;
	left: 0;
	display: block;
	width: 100%; height: 3px;
	background-color: var(--red01);
	transition: var(--transition);
	border-radius: 5px;
}

.body-right-head .header-right .hamburger_btn span:nth-child(1){
	top: 0;
}

.body-right-head .header-right .hamburger_btn span:nth-child(2){
	top: 50%;
	transform: translateY(-50%);
}

.body-right-head .header-right .hamburger_btn span:nth-child(3){
	top: calc( 100% - 3px );
}

.body-right-head.active .header-right .hamburger_btn span:nth-child(1){
	top: 50%; left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.body-right-head.active .header-right .hamburger_btn span:nth-child(2){
	transform: translate(5px, -50%);
	opacity: 0;
}

.body-right-head.active .header-right .hamburger_btn span:nth-child(3){
	top: 50%; left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}

.body-right-head .notification-box{
	position: relative;
}

.body-right-head .notification-box .btn-noti{
	font-size: 20px;
	color: var(--gray02);
	background-color: transparent;
	padding: 10px 15px;
	transition: var(--transition);
	border-radius: 2px;
	border: 0;
	outline: none;
}

.body-right-head .notification-box .btn-noti:hover{
	color: var(--gray01);
}

.body-right-head .notification-box .btn-noti i{
	font-size: inherit;
	color: inherit;
}

.body-right-head .notification-box .btn-noti::after{
	content: "";
	width: 5px; height: 5px;
	background-color: var(--orange01);
	border-radius: 50%;
	position: absolute;
	top: 10px; right: 8px;
}

.body-left .category-list .category-list-item .sub-label{
    display: flex !important;
    flex-direction: column;
    gap: 3px;
    font-size: 0.7em;
    opacity: 0.8;
    color: #fff;
    margin-top: 2.5px;
    line-height: 1.25;
}
/* common.css * { line-height: 1 } 보다 우선 — span 에 직접 타이포 복구 */
.body-left .category-list .category-list-item .sub-label > span{
    display: block;
    line-height: 1.35 !important;
    letter-spacing: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
}

.body-left .category-list .category-list-item .depth02 .depth02-item a:hover .sub-label,
.body-left .category-list .category-list-item .depth02 .depth02-item.active a .sub-label{
    color: #ffa3c8;
    opacity: 1;
}

.sub-label {
  font-size: 0.7em;
  opacity: 0.8;
}

.gnb-list-item.active .sub-label {
  opacity: 1;
  color: inherit;
}

/* category-divider, always-open, badge-icon, hover-label, coin-cost */
.category-divider {
  height: 0;
  border-top: 1px solid #e0e4ed;
  margin: 6px 12px;
  pointer-events: none;
}

.body-left .category-list .category-list-item.always-open .depth02 {
  display: block !important;
}

.badge-icon {
  color: #f7c948;
  font-size: 13px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.hover-label {
  display: none;
  font-size: 11px;
  color: #777;
  margin-left: 3px;
  vertical-align: middle;
  transition: opacity 0.2s ease;
  opacity: 0;
}

.premium-link:hover .hover-label {
  display: inline;
  opacity: 1;
}

.premium-link:hover .badge-icon {
  color: #ffbf00;
  transform: scale(1.1);
}

.depth02-item.active .badge-icon {
  color: #ffbf00;
  transform: scale(1.1);
}

.coin-cost-wrap{
	display:block;
	width:100%;
}

.coin-cost{
	display:block;
	width:100%;
}

.coin-cost p{
	word-break:keep-all;
	line-height:1.2;
}

@media screen and (max-width: 1200px){
	.body-left{
		height: calc(100vh - 75px);
		top: 75px;
		left: auto;
		right: -50%;
		max-width: 40%;
		transition: 0.7s;
	}
	
	.body-left.active{
		right: 0;
	}

	.body-left .logo-box{
		display: none;
	}

	.body-left .category-list{
		margin-top: 0;
	}

	.body-left .category-list:nth-of-type(1){
		margin-top: 0;
	}

	.body-right-head{
		width: 100%;
		height: 75px;
		top: 0; left: 0;
		border-radius: 0;
		z-index: 90909090;
	}

	.body-right-head .logo-box{
		width: 170px;
	}

	.body-right-head .logo-box a{
		display: block;
		width: 100%;
	}

	.body-right-head .logo-box img{
		/* filter: invert(28%) sepia(60%) saturate(2141%) hue-rotate(337deg) brightness(98%) contrast(86%); */
	}

	.body-right-head .header-right .hamburger_btn{
		display: block;
	}
}

@media screen and (max-width: 1100px){
	.body-left .category-list .category-list-item i.icn-daum svg{
		width: 14px;
	}
}

@media screen and (max-width: 900px){
	.body-left .category-list .category-list-item i.icn-daum svg{
		width: 13px;
	}	
}

@media screen and (max-width: 767px){
	.body-left{
		max-width: 45%;
		right: -45%;
	}

	.body-right-head .logo-box{
		width: 145px;
	}

	.body-right-head .header-right .hamburger_btn{
		width: 22px; height: 18px;	
	}

	.body-right-head .util-box .user-profile-area .user-img-area,
	.body-right-head .util-box .user-profile-area{
		gap: 5px;
	}
}

@media screen and (max-width: 500px){
	.body-left{
		max-width: 70%;
		right: -70%;
		top: 60px;
		height: calc(100vh - 60px);
	}

	.body-right-head{
		height: 60px;
		padding: 15px;
	}
	.body-right-head .logo-box{
		width: 130px;
	}

	.body-right-head .util-box .btn_login{
		padding: 9px 12px;
		gap: 3px;
	}
	
	.body-right-head .util-box .btn_login span{
		font-size: 0.875rem;
	}

	.body-right-head .util-box,
	.body-right-head .header-right{
		gap: 10px;
	}

	.body-right-head .util-box .dark-mode-toggle{
		display: none;
	}
	.body-right-head .util-box .user-profile-area .user-img-area .user-status-box {
		top: calc(100% + 25px);
	}

	.body-right-head .util-box .user-profile-area .user-img{
		width: 25px; height: 25px;
	}

	.body-right-head .util-box .user-profile-area .user-info p.current-coin{
		padding: 4px 10px;
		gap: 5px;
	}
	
	
}

/* 알림(notification) 패널 */
.notification { position: relative; }
.btn-noti { position:relative; display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; border:0; background:#f5f7fb; cursor:pointer; }
.btn-noti .fa-bell { font-size:18px; }
.noti-badge { position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 5px; border-radius:9px; background:#ff4d4f; color:#fff; font-size:11px; line-height:18px; text-align:center; }

.noti-panel { position:absolute; right:0; top:46px; width:420px; max-height:70vh; overflow:auto; background:#fff; border:1px solid #e6e9f0; border-radius:12px; box-shadow:0 12px 32px rgba(18,38,63,.15); }
.noti-head { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid #eef1f6; }
.noti-head strong { font-size:16px; }
.noti-close { background:none; border:0; font-size:20px; line-height:1; cursor:pointer; color:#6b778c; }

.noti-list { list-style:none; margin:0; padding:8px 0; }
.noti-item { padding:10px 12px; }
.noti-item + .noti-item { border-top:1px dashed #eef1f6; }
.noti-link { display:block; text-decoration:none; color:inherit; }
.noti-title { display:block; font-weight:600; font-size:14px; line-height:1.35; margin-bottom:4px; }
.noti-body { display:block; font-size:13px; color:#5a6b88; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.noti-empty { padding:24px; text-align:center; color:#8a94a7; }
.noti-foot { padding:10px 12px; border-top:1px solid #eef1f6; text-align:center; }
.noti-more { display:inline-block; padding:8px 12px; font-size:13px; color:#1b63d1; text-decoration:underline; }
.noti-item.is-read .noti-title{font-weight:500;color:#6b778c}
.noti-item.is-read .noti-dot{display:none}

.noti-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.noti-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4f;
  flex-shrink: 0;
  display: inline-block;
}

.noti-item.is-read .noti-circle {
  display: none;
}

.noti-actions {
  display: flex;
  gap: 8px;
}

.noti-readall {
  padding: 4px 10px;
  font-size: 14px;
  border: 1px solid #d0d7e2;
  border-radius: 6px;
  background: #f9fbfd;
  color: #50607a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.noti-readall:hover {
  background: #e6f0ff;
  border-color: #9cbcf5;
  color: #1b63d1;
}

.noti-readall:active {
  background: #dbe8ff;
  border-color: #7da6f0;
  color: #1748a0;
}

@media (max-width:480px){
  .noti-panel { width:80vw; }
}