.ndssl-widget,
.ndssl-widget * {
	box-sizing: border-box;
}

.ndssl-widget {
	--ndssl-button-bg: #0c2d4a;
	--ndssl-button-text: #fff;
	--ndssl-panel-bg: #fff;
	--ndssl-panel-text: #102a43;
	--ndssl-accent: #f5a623;
	--ndssl-offset-x: 24px;
	--ndssl-offset-y: 24px;
	position: fixed;
	bottom: calc(var(--ndssl-offset-y) + env(safe-area-inset-bottom));
	left: calc(var(--ndssl-offset-x) + env(safe-area-inset-left));
	z-index: 2147483000;
	font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	text-transform: none;
}

.ndssl-widget--right {
	right: calc(var(--ndssl-offset-x) + env(safe-area-inset-right));
	left: auto;
}

.ndssl-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 184px;
	min-height: 66px;
	margin: 0;
	padding: 10px 10px 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-color: color-mix(in srgb, var(--ndssl-button-text) 68%, transparent);
	border-radius: 999px;
	background: var(--ndssl-button-bg);
	box-shadow: 0 10px 30px rgba(5, 24, 42, 0.25);
	color: var(--ndssl-button-text);
	cursor: pointer;
	font: inherit;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.ndssl-trigger:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(5, 24, 42, 0.32);
}

.ndssl-trigger:focus-visible,
.ndssl-close:focus-visible,
.ndssl-link:focus-visible {
	outline: 3px solid var(--ndssl-accent);
	outline-offset: 3px;
}

.ndssl-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
}

.ndssl-brand img {
	display: block;
	width: auto;
	height: auto;
	max-width: 146px;
	max-height: 42px;
	margin: 0;
	object-fit: contain;
}

.ndssl-brand-text {
	display: block;
	max-width: 160px;
	overflow: hidden;
	color: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ndssl-trigger-icon {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--ndssl-accent);
	color: #102a43;
	place-items: center;
	transition: transform 180ms ease;
}

.ndssl-widget[data-open="true"] .ndssl-trigger-icon {
	transform: rotate(-90deg);
}

.ndssl-trigger-icon svg,
.ndssl-link svg,
.ndssl-close svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ndssl-panel {
	position: absolute;
	bottom: calc(100% + 14px);
	left: 0;
	width: min(370px, calc(100vw - 48px));
	margin: 0;
	padding: 26px;
	border: 0;
	border-radius: 14px;
	background: var(--ndssl-panel-bg);
	box-shadow: 0 18px 55px rgba(5, 24, 42, 0.28);
	color: var(--ndssl-panel-text);
	opacity: 0;
	transform: translateY(10px) scale(0.98);
	transform-origin: bottom left;
	transition: opacity 160ms ease, transform 180ms ease;
}

.ndssl-widget--right .ndssl-panel {
	right: 0;
	left: auto;
	transform-origin: bottom right;
}

.ndssl-widget--right .ndssl-panel::after {
	right: 24px;
	left: auto;
}

.ndssl-panel::after {
	position: absolute;
	bottom: -7px;
	left: 24px;
	width: 16px;
	height: 16px;
	background: var(--ndssl-panel-bg);
	content: "";
	transform: rotate(45deg);
}

.ndssl-panel[hidden] {
	display: none;
}

.ndssl-widget[data-open="true"] .ndssl-panel {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.ndssl-close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	place-items: center;
	-webkit-appearance: none;
	appearance: none;
}

.ndssl-close:hover {
	background: rgba(16, 42, 67, 0.07);
	background: color-mix(in srgb, var(--ndssl-panel-text) 8%, transparent);
}

.ndssl-close svg {
	width: 18px;
	height: 18px;
}

.ndssl-eyebrow {
	margin: 0 44px 5px 0;
	color: var(--ndssl-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ndssl-title {
	margin: 0 44px 12px 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-size: 28px;
	font-style: normal;
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.1;
	text-transform: none;
}

.ndssl-message {
	margin: 0 0 20px;
	padding: 0;
	color: inherit;
	font: inherit;
	font-size: 15px;
	line-height: 1.55;
}

.ndssl-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--ndssl-accent);
	box-shadow: none;
	color: #102a43;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: filter 160ms ease, transform 160ms ease;
}

.ndssl-link:hover {
	color: #102a43;
	text-decoration: none;
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.ndssl-link svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 520px) {
	.ndssl-widget {
		bottom: calc(14px + env(safe-area-inset-bottom)) !important;
		left: calc(14px + env(safe-area-inset-left)) !important;
		right: auto !important;
	}

	.ndssl-widget--right {
		left: auto !important;
		right: calc(14px + env(safe-area-inset-right)) !important;
	}

	.ndssl-trigger {
		min-width: 166px;
		min-height: 58px;
		padding: 8px 8px 8px 16px;
	}

	.ndssl-brand img {
		max-width: 128px;
		max-height: 36px;
	}

	.ndssl-trigger-icon {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.ndssl-panel {
		width: calc(100vw - 28px);
		padding: 22px;
	}

	.ndssl-title {
		font-size: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ndssl-trigger,
	.ndssl-trigger-icon,
	.ndssl-panel,
	.ndssl-link {
		transition: none;
	}
}
