#sp-popup-container-9482 {
	position: fixed;
	bottom: 30px;
	z-index: 99999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#sp-popup-container-9482.sp-show {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

#sp-popup-container-9482.sp-pos-bottom-left {
	left: 30px;
}

#sp-popup-container-9482.sp-pos-bottom-right {
	right: 30px;
}

.sp-popup-content {
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	padding: 15px;
	width: 320px;
	position: relative;
	border-left: 4px solid var(--sp-color);
}

.sp-close-btn {
	position: absolute;
	top: 5px;
	right: 8px;
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 2px;
}

.sp-close-btn:hover {
	color: #334155;
}

.sp-img-wrapper {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	margin-right: 15px;
	border-radius: 6px;
	overflow: hidden;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sp-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-text-wrapper {
	flex-grow: 1;
}

.sp-main-text {
	margin: 0 0 5px 0;
	font-size: 13px;
	line-height: 1.4;
	color: #334155;
}

.sp-main-text strong {
	color: #0f172a;
}

.sp-meta-text {
	font-size: 11px;
	color: #64748b;
	display: flex;
	align-items: center;
}

.sp-check-icon {
	color: var(--sp-color);
	font-weight: bold;
	margin-right: 4px;
}

.sp-dot {
	margin: 0 6px;
}

@media (max-width: 480px) {
	#sp-popup-container-9482.sp-pos-bottom-left,
	#sp-popup-container-9482.sp-pos-bottom-right {
		left: 15px;
		right: 15px;
		bottom: 15px;
	}
	.sp-popup-content {
		width: auto;
	}
}