#ntf-container {
	position: fixed;
	z-index: 9999;
	max-width: 320px;
}
.ntf-pos-bottom-left { left: 20px; bottom: 20px; }
.ntf-pos-bottom-right { right: 20px; bottom: 20px; }
.ntf-pos-top-left { left: 20px; top: 20px; }
.ntf-pos-top-right { right: 20px; top: 20px; }
.ntf-pos-bottom-center { left: 50%; bottom: 20px; transform: translateX(-50%); }
.ntf-pos-top-center { left: 50%; top: 20px; transform: translateX(-50%); }

.ntf-bubble {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.18);
	padding: 12px 16px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	cursor: default;
}
.ntf-bubble.ntf-show {
	opacity: 1;
	transform: translateY(0);
}
.ntf-bubble a {
	text-decoration: none;
	color: inherit;
}
.ntf-bubble .ntf-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	/* background: #f2f2f2; */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.ntf-bubble .ntf-close {
	margin-left: auto;
	cursor: pointer;
	color: #999;
	font-size: 14px;
	padding-left: 8px;
}
.ntf-bubble .ntf-btn {
	display: inline-block;
	margin-top: 6px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid currentColor;
}
@media (max-width: 480px) {
	#ntf-container { max-width: calc(100% - 40px); }
}
