.fsn-note {
	--fsn-bg: #fff3a6;
	--fsn-text: #2a2417;
	--fsn-font: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
	--fsn-width: 280px;
	box-sizing: border-box;
	width: var(--fsn-width);
	max-width: calc(100vw - 24px);
	padding: 2rem 1.65rem 1.55rem;
	color: var(--fsn-text);
	background: var(--fsn-bg);
	border: 1px solid rgb(0 0 0 / 10%);
	border-radius: 2px;
	box-shadow: 0 14px 30px rgb(0 0 0 / 22%), 0 3px 8px rgb(0 0 0 / 14%);
	font-family: var(--fsn-font);
	font-size: 1.05rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: normal;
	text-align: left;
	text-transform: none;
	overflow-wrap: anywhere;
	isolation: isolate;
}

.fsn-note::after {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, rgb(255 255 255 / 22%) 0 49%, rgb(0 0 0 / 13%) 50% 100%);
	box-shadow: -2px -2px 4px rgb(0 0 0 / 7%);
	content: "";
	pointer-events: none;
}

.fsn-note-pin {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 11px;
	height: 11px;
	background: #d44b43;
	border: 2px solid rgb(255 255 255 / 65%);
	border-radius: 50%;
	box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
	transform: translateX(-50%);
}

.fsn-note-close {
	position: absolute;
	z-index: 2;
	top: 6px;
	right: 6px;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	font: 700 24px/1 Arial, sans-serif;
	text-align: center;
	text-decoration: none;
	transform: none;
	cursor: pointer;
	opacity: 0.62;
	appearance: none;
}

.fsn-note-close:hover {
	color: inherit;
	background: rgb(0 0 0 / 10%);
	border: 0;
	opacity: 1;
}

.fsn-note-close:focus-visible {
	color: inherit;
	background: rgb(255 255 255 / 32%);
	border: 0;
	outline: 3px solid currentColor;
	outline-offset: 1px;
	opacity: 1;
}

.fsn-note[data-fsn-dismissed="true"] {
	display: none !important;
}

.fsn-note p {
	margin: 0 0 0.8em;
	color: inherit;
	font: inherit;
}

.fsn-note p:last-child {
	margin-bottom: 0;
}

.fsn-note a,
.fsn-note a:visited {
	color: inherit;
}

.fsn-note-link {
	display: block;
	color: inherit;
	font: inherit;
	font-size: 1.12em;
	font-weight: 700;
	line-height: 1.45;
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.fsn-note-link:hover,
.fsn-note-link:focus-visible {
	color: inherit;
	text-decoration-thickness: 0.14em;
}

.fsn-note-link:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
}

.fsn-desktop-note {
	position: fixed;
	z-index: 9998;
	top: var(--fsn-top-fallback, 24%);
	left: var(--fsn-left-fallback, 82%);
	margin: 0;
	transform: translate(-50%, -50%);
}

.fsn-mobile-note {
	display: none;
	position: relative;
	margin: 1.5rem 0;
}

.fsn-shortcode-note {
	position: relative;
	width: min(var(--fsn-width), 100%);
	margin: 1.5rem auto;
}

@media (max-width: 782px) {
	.fsn-desktop-note {
		display: none !important;
	}

	.fsn-mobile-note {
		display: block;
		width: 100%;
		max-width: 100%;
	}
}

@media print {
	.fsn-desktop-note {
		display: none !important;
	}

	.fsn-mobile-note,
	.fsn-shortcode-note {
		box-shadow: none;
	}
}
