/* 헤더 알림 영역 */
.ntf-bell-wrap {
	position: relative;
	display: inline-block;
}
.ntf-bell-wrap .ntf-bell-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: auto;
	height: auto;
	background: none !important;
	border: none;
	cursor: pointer;
	padding: 4px 6px;
	font-size: 18px;
	line-height: 1;
	color: var(--tit_black) !important;
}
.ntf-bell-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	border-radius: 9px;
	background: var(--red) !important;
	color: var(--white) !important;
	font-size: 11px;
	line-height: 16px;
	text-align: center;
}
.ntf-bell-mobile {
	display: inline-block;
}
@media (min-width: 1024px) {
	.ntf-bell-mobile {
		display: none;
	}
}
.ntf-dropdown {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	width: 340px;
	max-width: 90vw;
	max-height: 420px;
	overflow-y: auto;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
	z-index: 1000;
	text-align: left;
}
.ntf-dropdown.ntf-open {
	display: block;
    background: white;
}
.ntf-dropdown-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	font-weight: 700;
	color: var(--tit_black);
}
.ntf-dropdown-header-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ntf-dropdown .ntf-dropdown-header button {
	display: inline-block;
	width: auto;
	height: auto;
	background: none;
	border: none;
	color: var(--blue);
	font-size: 12px;
	cursor: pointer;
}
.ntf-dropdown .ntf-dropdown-header .ntf-delete-all-btn {
	color: var(--text_black);
}
.ntf-dropdown .ntf-list {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ntf-item {
	display: flex;
	padding: 12px 14px;
	border-bottom: var(--line2);
	border-left: 3px solid transparent;
	cursor: pointer;
}
.ntf-item:last-child {
	border-bottom: none;
}
.ntf-item:hover {
	background: var(--white);
}
.ntf-item.ntf-unread {
	border-left-color: var(--blue);
	background: var(--blue_soft);
}
.ntf-item-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
}
.ntf-item .ntf-item-delete-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	background: none;
	border: none;
	border-radius: 50%;
	font-size: 16px;
	line-height: 1;
	color: var(--text_black);
	cursor: pointer;
}
.ntf-item .ntf-item-delete-btn:hover {
	background: #e6e8ec;
	color: var(--tit_black);
}
.ntf-item-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--tit_black);
}
.ntf-item-msg {
	font-size: 12px;
	line-height: 1.5;
	color: var(--ink2);
	word-break: break-all;
}
.ntf-item-date {
	font-size: 11px;
	color: var(--text_black);
}
.ntf-empty {
	padding: 32px 14px;
	text-align: center;
	font-size: 13px;
	color: var(--text_black);
}
