.meup-notification-bell-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.meup-notification-bell {
	--meup-bell-icon-size: 24px;
	--meup-bell-button-size: 46px;
	--meup-bell-color: #334155;
	--meup-bell-background: #fff;
	--meup-bell-border: #e2e8f0;
	--meup-bell-active-color: #9f0000;
	--meup-bell-active-background: #fff1f2;
	--meup-bell-badge-background: #9f0000;
	--meup-bell-badge-color: #fff;
	position: relative;
	display: inline-grid;
	place-items: center;
	width: var(--meup-bell-button-size);
	height: var(--meup-bell-button-size);
	box-sizing: border-box;
	border: 1px solid var(--meup-bell-border);
	border-radius: 50%;
	background: var(--meup-bell-background);
	color: var(--meup-bell-color);
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.meup-notification-bell:hover,
.meup-notification-bell:focus-visible {
	transform: translateY(-1px);
	border-color: var(--meup-bell-active-color);
	border-color: color-mix(in srgb, var(--meup-bell-active-color) 32%, var(--meup-bell-border));
	box-shadow: 0 12px 30px rgba(15, 23, 42, .13);
	color: var(--meup-bell-active-color);
	outline: none;
}

.meup-notification-bell.is-unread {
	border-color: var(--meup-bell-active-color);
	border-color: color-mix(in srgb, var(--meup-bell-active-color) 24%, var(--meup-bell-border));
	background: var(--meup-bell-active-background);
	color: var(--meup-bell-active-color);
}

.meup-notification-bell .meup-icon {
	width: var(--meup-bell-icon-size);
	height: var(--meup-bell-icon-size);
	flex: 0 0 var(--meup-bell-icon-size);
}

.meup-notification-bell__badge {
	position: absolute;
	top: -5px;
	right: -5px;
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	box-sizing: border-box;
	border: 2px solid var(--meup-bell-background);
	border-radius: 999px;
	background: var(--meup-bell-badge-background);
	color: var(--meup-bell-badge-color);
	font-size: 10px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	white-space: nowrap;
}

.meup-notification-bell__status-dot {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--meup-bell-background);
	border-radius: 50%;
	background: var(--meup-bell-badge-background);
}

.meup-notification-bell__sr {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.meup-notification-bell--small {
	--meup-bell-icon-size: 20px;
	--meup-bell-button-size: 40px;
}

.meup-notification-bell--large {
	--meup-bell-icon-size: 28px;
	--meup-bell-button-size: 54px;
}

@media (prefers-reduced-motion: reduce) {
	.meup-notification-bell { transition: none; }
	.meup-notification-bell:hover,
	.meup-notification-bell:focus-visible { transform: none; }
}
