/**
 * 站内通知：侧栏头像红点（有未读才出现）。列表在个人中心「消息」Tab。
 */

.mytheme-login-account {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mytheme-login-avatar-wrap {
	position: relative;
	display: flex;
	flex-shrink: 0;
}

.mytheme-login-name {
	font-size: 15px;
	font-weight: 400;
	color: #666666;
}

.mytheme-login-vip {
	font-size: 13px;
	font-weight: 500;
}

.mytheme-notify-avatar-dot {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #e03030;
	border: 2px solid #ffffff;
	box-sizing: content-box;
	pointer-events: none;
}

@media (max-width: 639px) {
	#mount-login-box-mobile .mytheme-login-name,
	#mount-login-box-mobile .mytheme-login-vip {
		display: none;
	}
}

html.mytheme-sidebar-collapsed .app-sidebar__login .mytheme-login-account {
	justify-content: center;
}
