.nl-corner,
#nl-popup,
#nl-sidebar-icon,
#nl-se-sidebar {
	--nl-ink: #f8fafc;
	--nl-ink-strong: #ffffff;
	--nl-mute: #dbe4f0;
	--nl-soft: #b6c4d8;
	--nl-accent: #3b82f6;
	--nl-accent-deep: #2563eb;
	--nl-accent-glow: rgba(59, 130, 246, 0.42);
	--nl-surface: #121826;
	--nl-surface-2: #0c1220;
	--nl-edge: rgba(255, 255, 255, 0.14);
	--nl-input-bg: #0a101b;
	--nl-input-edge: rgba(226, 232, 240, 0.22);
	--nl-ok: #34d399;
	--nl-err: #fb7185;
	font-family: Manrope, 'Segoe UI', sans-serif;
}

html:not([data-theme="dark"]) .nl-corner,
html:not([data-theme="dark"]) #nl-popup,
html:not([data-theme="dark"]) #nl-sidebar-icon {
	--nl-ink: #0f172a;
	--nl-ink-strong: #020617;
	--nl-mute: #1e293b;
	--nl-soft: #334155;
	--nl-surface: #ffffff;
	--nl-surface-2: #f1f5f9;
	--nl-edge: rgba(15, 23, 42, 0.12);
	--nl-input-bg: #f8fafc;
	--nl-input-edge: rgba(15, 23, 42, 0.18);
	--nl-accent-glow: rgba(37, 99, 235, 0.28);
}

.nl-corner {
	position: fixed;
	bottom: 16px;
	left: 24px;
	z-index: 500050;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	gap: 12px;
	max-width: calc(100vw - 48px);
	pointer-events: none;
}

.nl-corner > * {
	pointer-events: auto;
}

.nl-inform {
	position: relative;
	flex-shrink: 1;
	min-width: 0;
	max-width: min(480px, calc(100vw - 48px - 52px - 12px));
	transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nl-inform.nl-inform--preopen {
	opacity: 0;
	transform: translateX(14px);
	max-width: 0;
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	transition: none;
}

.nl-inform.nl-inform--open {
	opacity: 1;
	transform: translateX(0);
	max-width: min(480px, calc(100vw - 48px - 52px - 12px));
	max-height: none;
	overflow: visible;
	pointer-events: auto;
}

.nl-inform.nl-inform--collapsed {
	opacity: 0;
	transform: translateX(12px);
	max-width: 0;
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	transition: opacity 0.34s ease, transform 0.34s ease, max-width 0s linear 0.34s, max-height 0s linear 0.34s;
}

.nl-inform.nl-inform--snoozed {
	display: none !important;
}

.nl-inform__bubble {
	position: relative;
	display: flex;
	touch-action: manipulation;
	flex-direction: row;
	align-items: center;
	min-height: 46px;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	padding: 11px 40px 11px 16px;
	border-radius: 12px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.35;
	box-shadow:
		0 10px 28px var(--nl-accent-glow),
		0 2px 8px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.22);
	cursor: pointer;
	transition: filter 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.nl-inform__bubble:hover {
	filter: brightness(1.06);
	box-shadow:
		0 12px 32px var(--nl-accent-glow),
		0 3px 10px rgba(0, 0, 0, 0.24);
}

.nl-inform__text {
	display: block;
	flex: 1;
	min-width: 0;
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.nl-inform__close {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	z-index: 2;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.15s, color 0.15s;
}

.nl-inform__close:hover {
	background: rgba(0, 0, 0, 0.18);
	color: #ffffff;
}

.nl-inform__tail {
	display: block;
	position: absolute;
	left: -6px;
	top: 50%;
	margin-top: -7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 6px 7px 0;
	border-color: transparent #2563eb transparent transparent;
	pointer-events: none;
}

#nl-fab {
	position: relative;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.22);
	padding: 0;
	margin: 0;
	font: inherit;
	border-radius: 50%;
	background: linear-gradient(145deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	box-shadow:
		0 8px 24px var(--nl-accent-glow),
		0 2px 6px rgba(0, 0, 0, 0.25);
	z-index: 500051;
	transition: filter 0.15s ease, box-shadow 0.15s ease;
}

#nl-fab:hover {
	filter: brightness(1.06);
	transform: none;
	box-shadow:
		0 10px 28px var(--nl-accent-glow),
		0 2px 8px rgba(0, 0, 0, 0.28);
}

#nl-fab.open {
	transform: none;
	filter: brightness(1.08);
}

#nl-fab i {
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

#nl-popup {
	position: fixed;
	bottom: 80px;
	left: 24px;
	z-index: 500100;
	width: 320px;
	pointer-events: none;
	opacity: 0;
	transform: translateY(14px) scale(0.97);
	transform-origin: bottom left;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

#nl-popup.open {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0) scale(1);
}

#nl-popup-inner {
	background:
		radial-gradient(ellipse 90% 60% at 50% 0%, rgba(59, 130, 246, 0.16) 0%, transparent 65%),
		linear-gradient(180deg, #171e2d 0%, var(--nl-surface) 100%);
	border: 1px solid var(--nl-edge);
	border-radius: 18px;
	padding: 26px 22px 18px;
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(59, 130, 246, 0.08);
	position: relative;
	text-align: left;
	-webkit-font-smoothing: antialiased;
}

html:not([data-theme="dark"]) #nl-popup-inner {
	background:
		radial-gradient(ellipse 90% 60% at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 65%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow:
		0 18px 42px rgba(15, 23, 42, 0.14),
		0 0 0 1px rgba(15, 23, 42, 0.06);
}

#nl-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--nl-mute);
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.15s, background 0.15s, border-color 0.15s;
}

html:not([data-theme="dark"]) #nl-close {
	background: rgba(15, 23, 42, 0.04);
	border-color: rgba(15, 23, 42, 0.1);
}

#nl-close:hover {
	color: var(--nl-ink-strong);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
}

html:not([data-theme="dark"]) #nl-close:hover {
	background: rgba(15, 23, 42, 0.08);
	border-color: rgba(15, 23, 42, 0.16);
}

#nl-icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(96, 165, 250, 0.28), rgba(37, 99, 235, 0.18));
	border: 1px solid rgba(147, 197, 253, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	flex: 0 0 46px;
	font-size: 18px;
	color: #93c5fd;
}

.nl-popup__intro {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	padding-right: 28px;
}

.nl-popup__intro-copy {
	min-width: 0;
	flex: 1 1 auto;
}

html:not([data-theme="dark"]) #nl-icon-wrap {
	background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.08));
	border-color: rgba(37, 99, 235, 0.2);
	color: #1d4ed8;
}

#nl-title {
	color: var(--nl-ink-strong);
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin: 0 0 6px;
	padding-right: 0;
}

#nl-desc {
	color: var(--nl-mute);
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

#nl-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#nl-email {
	width: 100%;
	background: var(--nl-input-bg);
	border: 1px solid var(--nl-input-edge);
	border-radius: 12px;
	padding: 11px 13px;
	color: var(--nl-ink-strong);
	font-size: 16px;
	font-weight: 600;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
	touch-action: manipulation;
}

#nl-email::placeholder {
	color: var(--nl-soft);
	opacity: 1;
	font-weight: 500;
}

#nl-email:focus {
	border-color: var(--nl-accent);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

#nl-submit {
	width: 100%;
	background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	padding: 11px 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	cursor: pointer;
	box-shadow: 0 8px 20px var(--nl-accent-glow);
	transition: filter 0.15s, box-shadow 0.15s;
}

#nl-submit:hover {
	filter: brightness(1.06);
	opacity: 1;
}

#nl-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

#nl-msg {
	font-size: 0.8125rem;
	font-weight: 700;
	margin-top: 10px;
	min-height: 16px;
	border-radius: 8px;
	padding: 0;
	transition: all 0.2s;
}

#nl-msg.ok {
	color: var(--nl-ok);
}

#nl-msg.err {
	color: var(--nl-err);
}

#nl-privacy {
	color: var(--nl-soft);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 12px 0 0;
}

@media (max-width: 1024px) {
	.nl-corner {
		bottom: calc(76px + env(safe-area-inset-bottom, 0px));
		transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
	}
	.nl-corner:not(.nl-corner--scroll-revealed) {
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
	}
	.nl-corner:not(.nl-corner--scroll-revealed) > * {
		pointer-events: none !important;
	}
	#nl-popup {
		bottom: calc(132px + env(safe-area-inset-bottom, 0px));
	}
}

@media (prefers-reduced-motion: reduce) {
	@media (max-width: 1024px) {
		.nl-corner {
			transition: opacity 0.15s ease, visibility 0.15s ease;
		}
	}
}

@media (max-width: 768px) {
	.nl-corner {
		left: 16px;
		max-width: calc(100vw - 32px);
	}
	.nl-inform,
	.nl-inform.nl-inform--open {
		max-width: min(480px, calc(100vw - 32px - 52px - 12px));
	}
	.nl-inform__bubble {
		font-size: 12.5px;
		padding: 10px 36px 10px 14px;
		min-height: 44px;
		border-radius: 11px;
	}
	#nl-popup {
		left: 12px;
		right: 12px;
		width: auto;
		top: auto;
		transform: translateY(16px) scale(0.96);
		transform-origin: bottom left;
	}
	#nl-popup.open {
		transform: translateY(0) scale(1);
	}
	#nl-popup-inner {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		padding: 24px 18px 16px;
	}
}

body.mobile-menu-open #nl-corner,
body.mobile-menu-open #nl-popup,
body.mobile-menu-open #nl-sidebar-icon {
	display: none !important;
}

#nl-sidebar-icon {
	position: fixed;
	left: 0;
	top: calc(50% + 54px);
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-left: 0;
	border-radius: 0 24px 24px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 17px;
	cursor: pointer;
	z-index: 500060;
	transition: none;
	box-shadow: 3px 3px 12px rgba(37, 99, 235, 0.45);
}

#nl-sidebar-icon:hover {
	background: linear-gradient(135deg, #60a5fa, #2563eb);
	transform: none;
}

body.has-nl-sidebar-icon #nl-popup.open {
	transform-origin: left center;
}

main.main-content > .streameast-video-page ~ #nl-corner {
	z-index: 1200;
}

main.main-content > .streameast-video-page ~ #nl-popup {
	z-index: 500150;
}

main.main-content > .streameast-video-page ~ #nl-sidebar-icon {
	z-index: 1190;
}

main.main-content > .streameast-video-page ~ #nl-corner #nl-fab {
	z-index: 1;
}

body:has(.streameast-video-page) #nl-corner {
	z-index: 1200;
}

body:has(.streameast-video-page) #nl-popup {
	z-index: 500150;
}

body:has(.streameast-video-page) #nl-sidebar-icon {
	z-index: 1190;
}

body:has(.streameast-video-page) #nl-corner #nl-fab {
	z-index: 1;
}

@media (max-width: 1024px) {
	body:has(.streameast-video-page) #nl-corner {
		z-index: 500500;
	}
	body:has(.streameast-video-page) #nl-popup {
		z-index: 500550;
	}
}

#nl-corner[data-nl-hoisted="1"] {
	z-index: 500500;
}

body:has(#nl-se-sidebar) #nl-popup {
	display: none !important;
	pointer-events: none !important;
}

#nl-se-sidebar {
	align-items: flex-start;
	width: var(--se-sb-handle-w, 40px);
	height: 48px;
	min-height: 48px;
	max-height: 48px;
	--nl-ink: #f8fafc;
	--nl-ink-strong: #ffffff;
	--nl-mute: #e2e8f0;
	--nl-soft: #cbd5e1;
	--nl-surface: #121722;
	--nl-input-bg: #0a101b;
	--nl-input-edge: rgba(226, 232, 240, 0.24);
}

#nl-se-sidebar > .se-sidebar__handle {
	align-self: center;
	z-index: 5;
}

#nl-se-sidebar .se-sidebar__panel {
	position: absolute;
	left: calc(var(--se-sb-handle-w, 40px) + 2px);
	top: 50%;
	transform: translateY(-50%);
	margin-left: 0;
	z-index: 6;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail {
	display: block;
	position: absolute;
	left: calc(var(--se-sb-handle-w, 40px) + 8px);
	top: 24px;
	z-index: 4;
	margin: 0;
	width: max-content;
	max-width: min(380px, calc(100vw - 72px));
	pointer-events: none;
	transform: translateY(-50%) translateX(12px);
	opacity: 0;
	transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

#nl-se-sidebar > #nl-inform.nl-inform--rail.nl-inform--open {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	max-width: min(380px, calc(100vw - 72px));
	max-height: none;
	overflow: visible;
	pointer-events: auto;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail.nl-inform--preopen,
#nl-se-sidebar > #nl-inform.nl-inform--rail.nl-inform--collapsed {
	margin: 0;
	opacity: 0;
	transform: translateY(-50%) translateX(12px);
	max-width: 0;
	max-height: 0;
	width: 0;
	overflow: hidden;
	pointer-events: none;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail.nl-inform--preopen {
	transition: none;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail.nl-inform--collapsed {
	transition: opacity 0.34s ease, transform 0.34s ease, max-width 0s linear 0.34s, max-height 0s linear 0.34s, width 0s linear 0.34s;
}

#nl-se-sidebar.is-open > #nl-inform.nl-inform--rail,
#nl-se-sidebar.nl-success-hold > #nl-inform.nl-inform--rail {
	pointer-events: none;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail .nl-inform__bubble {
	white-space: nowrap;
	padding: 10px 44px 10px 18px;
	width: max-content;
	max-width: 100%;
	box-sizing: border-box;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail .nl-inform__text {
	flex: 0 1 auto;
	min-width: 0;
	padding-right: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #ffffff;
}

#nl-se-sidebar > #nl-inform.nl-inform--rail .nl-inform__close {
	right: 8px;
	flex-shrink: 0;
	color: #ffffff;
}

#nl-se-sidebar .se-sidebar__panel {
	width: 0;
	min-width: 0;
	max-width: 0;
	height: 0;
	max-height: 0;
	min-height: 0;
	padding: 0;
	margin-left: 2px;
	box-sizing: border-box;
	border-radius: 16px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
	box-shadow: none;
	background:
		radial-gradient(ellipse 90% 50% at 50% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
		linear-gradient(180deg, #171e2d 0%, #101622 100%);
	border-color: rgba(255, 255, 255, 0.14);
	transition:
		max-width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		min-width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		max-height 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		height 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		padding 0.24s ease,
		opacity 0.18s ease,
		visibility 0s linear 0.24s,
		box-shadow 0.18s ease;
}

#nl-se-sidebar:hover .se-sidebar__panel,
#nl-se-sidebar:focus-within .se-sidebar__panel {
	width: 0;
	min-width: 0;
	max-width: 0;
	height: 0;
	max-height: 0;
	min-height: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
	box-shadow: none;
}

#nl-se-sidebar.is-open .se-sidebar__panel,
#nl-se-sidebar.is-open:hover .se-sidebar__panel,
#nl-se-sidebar.is-open:focus-within .se-sidebar__panel,
#nl-se-sidebar.nl-success-hold .se-sidebar__panel,
#nl-se-sidebar.nl-success-hold:hover .se-sidebar__panel,
#nl-se-sidebar.nl-success-hold:focus-within .se-sidebar__panel {
	width: 312px;
	min-width: 312px;
	max-width: 312px;
	height: auto;
	max-height: min(72vh, 560px);
	min-height: 0;
	padding: 12px;
	margin-left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
	overflow: hidden;
	pointer-events: auto;
	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.48),
		0 0 0 1px rgba(59, 130, 246, 0.16);
	transition:
		max-width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		min-width 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		max-height 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		height 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		padding 0.24s ease,
		opacity 0.18s ease,
		visibility 0s linear 0s,
		box-shadow 0.18s ease;
}

#nl-se-sidebar.nl-sidebar-force-hide .se-sidebar__panel,
#nl-se-sidebar.nl-sidebar-force-hide:hover .se-sidebar__panel,
#nl-se-sidebar.nl-sidebar-force-hide:focus-within .se-sidebar__panel,
#nl-se-sidebar.nl-sidebar-force-hide.is-open .se-sidebar__panel {
	width: 0 !important;
	min-width: 0 !important;
	max-width: 0 !important;
	height: 0 !important;
	max-height: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

#nl-se-sidebar .se-sidebar__panel #nl-popup-inner {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 10px 10px 12px;
	width: 288px;
	min-width: 288px;
	max-width: 288px;
	box-sizing: border-box;
	text-align: left;
}

#nl-se-sidebar .se-sidebar__head {
	width: 288px;
	min-width: 288px;
	box-sizing: border-box;
	padding: 2px 2px 12px 10px;
	margin: 0 0 12px;
	border-bottom: 1px solid rgba(147, 197, 253, 0.28);
	gap: 10px;
	align-items: center;
}

#nl-se-sidebar .se-sidebar__head span {
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
}

#nl-se-sidebar .se-sidebar__head #nl-close {
	position: static;
	top: auto;
	right: auto;
	margin-left: auto;
	flex: 0 0 auto;
	color: #e2e8f0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

#nl-se-sidebar .se-sidebar__head #nl-close:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
}

#nl-se-sidebar #nl-popup-inner #nl-close {
	display: none;
}

#nl-se-sidebar #nl-icon-wrap {
	margin: 0;
}

#nl-se-sidebar .nl-popup__intro {
	margin-bottom: 14px;
	padding-right: 0;
	align-items: center;
}

#nl-se-sidebar #nl-title {
	color: #ffffff;
	font-size: 1.02rem;
}

#nl-se-sidebar #nl-desc {
	color: #e2e8f0;
	font-size: 0.875rem;
	font-weight: 600;
}

#nl-se-sidebar #nl-email {
	background: #0a101b;
	border-color: rgba(226, 232, 240, 0.24);
	color: #ffffff;
}

#nl-se-sidebar #nl-email::placeholder {
	color: #94a3b8;
}

#nl-se-sidebar #nl-privacy {
	color: #cbd5e1;
	font-weight: 600;
}

#nl-se-sidebar #nl-msg.ok {
	color: #6ee7b7;
}

#nl-se-sidebar #nl-msg.err {
	color: #fda4af;
}
