#hypwa-connectivity-notice {
	--hypwa-connectivity-bg: #d32f2f;
	--hypwa-connectivity-color: #ffffff;

	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 999999;

	max-width: 360px;
	width: calc(100% - 40px);

	padding: 14px 18px;

	background: var(--hypwa-connectivity-bg);
	color: var(--hypwa-connectivity-color);

	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

	font-size: 14px;
	line-height: 1.5;
	text-align: left;

	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		transform .25s ease,
		opacity .25s ease,
		visibility .25s ease;
}

#hypwa-connectivity-notice.hypwa-is-visible {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

#hypwa-connectivity-notice .hypwa-connectivity-title {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 600;
}

#hypwa-connectivity-notice .hypwa-connectivity-description {
	font-size: 13px;
	line-height: 1.5;
	opacity: 0.9;
}

@media (max-width: 480px) {
	#hypwa-connectivity-notice {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
		max-width: none;
	}
}