#top_notify {
	position: fixed;
	top: 20px;
	left: 10px;
	width: 100%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-sizing: border-box;
	z-index: 9999;
}

.top_notify {
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	border-radius: 8px;
	overflow:hidden;
	animation: slideIn 0.3s ease-out;
}

.top_notify_avatar { 
	width:40px;
	vertical-align:top;
}

.top_notify_avatar img { 
	width:40px;
	height:40px;
	border-radius:50%;
}

.top_notify_btn { 
	width:30px;
	text-align:center;
	vertical-align:top;
}

@keyframes slideIn {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 0.95;
	}
}