.wcmsn-sticky-notice {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 99999;
	max-width: 360px;
	background: #3ec7e8;
	color: #ffffff;
	padding: 14px 40px 14px 18px;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.wcmsn-sticky-notice.wcmsn-visible {
	opacity: 1;
	transform: translateY(0);
}

.wcmsn-sticky-notice__text a {
	color: #8ecaff;
	text-decoration: underline;
}

.wcmsn-sticky-notice__close {
	position: absolute;
	top: 6px;
	right: 8px;
	background: transparent;
	border: 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 6px;
	opacity: 0.75;
}

.wcmsn-sticky-notice__close:hover {
	opacity: 1;
}

@media (max-width: 480px) {
	.wcmsn-sticky-notice {
		left: 10px;
		right: 10px;
		bottom: 90px;
		max-width: none;
	}
}
