:root {
	--docs-primary: #4b3bd4;
	--docs-primary-dark: #3526ae;
	--docs-primary-soft: #f1efff;
	--docs-accent: #ff5a16;
	--docs-ink: #171821;
	--docs-muted: #626579;
	--docs-line: #e5e7ef;
	--docs-soft: #f7f8fb;
	--docs-white: #fff;
	--docs-header-height: 68px;
	--docs-shadow: 0 18px 60px rgba(25, 20, 72, .14);
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body.saetheme-docs-site {
	margin: 0;
	background: var(--docs-white);
	color: var(--docs-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.saetheme-docs-site button,
.saetheme-docs-site input {
	font: inherit;
}

.saetheme-docs-site button,
.saetheme-docs-site a {
	-webkit-tap-highlight-color: transparent;
}

.saetheme-docs-site a {
	color: var(--docs-primary);
}

.saetheme-docs-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

.docs-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10020;
	transform: translateY(-150%);
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--docs-ink);
	color: var(--docs-white) !important;
	font-weight: 700;
	text-decoration: none;
}

.docs-skip-link:focus {
	transform: translateY(0);
}

.docs-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10010;
	width: 100%;
	height: 3px;
	pointer-events: none;
}

.docs-reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--docs-primary), #7a5cff, var(--docs-accent));
	transition: width .08s linear;
}

.docs-site-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	height: var(--docs-header-height);
	border-bottom: 1px solid rgba(223, 225, 236, .9);
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 1px 12px rgba(20, 21, 35, .025);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.admin-bar .docs-site-header {
	top: 32px;
}

.admin-bar .docs-reading-progress {
	top: 32px;
}

.docs-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100%, 1500px);
	height: 100%;
	margin: 0 auto;
	padding: 0 32px;
}

.docs-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 225px;
	color: var(--docs-ink) !important;
	font-size: 21px;
	font-weight: 850;
	letter-spacing: -.035em;
	text-decoration: none;
}

.docs-brand-word {
	position: relative;
	z-index: 0;
}

.docs-brand-word::after {
	position: absolute;
	right: -2px;
	bottom: 2px;
	left: -2px;
	z-index: -1;
	height: 7px;
	background: #ffe090;
	content: "";
}

.docs-brand-logo {
	width: auto;
	max-width: 170px;
	max-height: 36px;
	object-fit: contain;
}

.docs-brand-badge {
	padding: 3px 8px;
	border: 1px solid #ddd9ff;
	border-radius: 7px;
	background: var(--docs-primary-soft);
	color: var(--docs-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.5;
	text-transform: uppercase;
}

.docs-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.docs-search-trigger,
.docs-back-site,
.docs-sidebar-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 40px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.docs-search-trigger {
	min-width: 240px;
	justify-content: flex-start;
	padding: 0 11px;
	border: 1px solid var(--docs-line);
	background: var(--docs-soft);
	color: #6f7284;
	cursor: pointer;
}

.docs-search-trigger:hover {
	border-color: #c9c4ff;
	background: var(--docs-primary-soft);
	color: var(--docs-primary);
}

.docs-search-trigger svg,
.docs-back-site svg,
.docs-sidebar-trigger svg,
.docs-search-heading svg,
.docs-search-field svg,
.docs-sidebar-mobile-heading svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.docs-search-trigger kbd {
	margin-left: auto;
	padding: 1px 7px;
	border: 1px solid #dadce6;
	border-bottom-width: 2px;
	border-radius: 5px;
	background: var(--docs-white);
	color: #77798a;
	font-family: inherit;
	font-size: 12px;
}

.docs-back-site {
	padding: 0 13px;
	border: 1px solid transparent;
	color: #55586b !important;
}

.docs-back-site:hover {
	border-color: var(--docs-line);
	background: var(--docs-soft);
	color: var(--docs-primary) !important;
}

.docs-back-site svg {
	width: 16px;
	height: 16px;
}

.docs-sidebar-trigger {
	display: none;
	width: 40px;
	padding: 0;
	border: 1px solid var(--docs-line);
	background: var(--docs-white);
	color: var(--docs-ink);
	cursor: pointer;
}

.docs-shell {
	display: grid;
	grid-template-columns: minmax(225px, 270px) minmax(0, 760px) minmax(180px, 220px);
	gap: 46px;
	width: min(100%, 1500px);
	margin: 0 auto;
	padding: 0 32px;
	align-items: start;
}

.docs-sidebar {
	position: sticky;
	top: var(--docs-header-height);
	height: calc(100vh - var(--docs-header-height));
	padding: 32px 26px 48px 0;
	overflow: auto;
	border-right: 1px solid var(--docs-line);
	scrollbar-width: thin;
	scrollbar-color: #d8dae5 transparent;
}

.admin-bar .docs-sidebar,
.admin-bar .docs-toc-wrap {
	top: calc(var(--docs-header-height) + 32px);
	height: calc(100vh - var(--docs-header-height) - 32px);
}

.docs-sidebar-mobile-heading {
	display: none;
}

.docs-nav-group + .docs-nav-group {
	margin-top: 28px;
}

.docs-nav-group h2 {
	margin: 0 0 7px 12px;
	color: #8a8c9c;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.docs-nav-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.docs-nav-group a {
	display: block;
	margin: 2px 0;
	padding: 8px 12px;
	border-radius: 8px;
	color: #55586b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
}

.docs-nav-group a:hover {
	background: var(--docs-soft);
	color: var(--docs-primary);
}

.docs-nav-group a.is-current {
	background: var(--docs-primary-soft);
	color: var(--docs-primary-dark);
	font-weight: 750;
}

.docs-main {
	min-width: 0;
	padding: 35px 0 88px;
	outline: none;
}

.docs-breadcrumbs {
	margin-bottom: 28px;
}

.docs-breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.docs-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #858798;
	font-size: 12px;
	font-weight: 650;
}

.docs-breadcrumbs a {
	color: #717487;
	text-decoration: none;
}

.docs-breadcrumbs a:hover {
	color: var(--docs-primary);
}

.docs-breadcrumbs i {
	color: #bbbcca;
	font-style: normal;
}

.docs-article-header {
	padding-bottom: 34px;
	border-bottom: 1px solid var(--docs-line);
}

.docs-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 12px;
}

.docs-eyebrow span,
.docs-eyebrow i {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .055em;
	line-height: 1.3;
	text-transform: uppercase;
}

.docs-eyebrow span {
	background: var(--docs-primary-soft);
	color: var(--docs-primary);
}

.docs-eyebrow i {
	border: 1px solid #ffd8c8;
	background: #fff7f3;
	color: #cf4309;
}

.docs-article-header h1 {
	max-width: 760px;
	margin: 0;
	color: #11121a;
	font-size: clamp(36px, 4.2vw, 50px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.08;
}

.docs-article-header > p {
	max-width: 700px;
	margin: 17px 0 0;
	color: var(--docs-muted);
	font-size: 18px;
	line-height: 1.65;
}

.docs-article-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 17px;
	color: #8a8c9c;
	font-size: 12px;
	font-weight: 600;
}

.docs-prose {
	color: #333544;
	font-size: 16px;
}

.docs-prose > h2,
.docs-prose > h3 {
	position: relative;
	scroll-margin-top: calc(var(--docs-header-height) + 28px);
}

.docs-prose > h2 {
	margin: 52px 0 17px;
	padding-top: 5px;
	color: #171821;
	font-size: 28px;
	font-weight: 820;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.docs-prose > h3 {
	margin: 34px 0 12px;
	color: #20212c;
	font-size: 21px;
	line-height: 1.35;
}

.docs-heading-anchor {
	position: absolute;
	top: inherit;
	left: -25px;
	width: 21px;
	color: #b5b1df !important;
	font-size: .7em;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}

.docs-prose > h2:hover .docs-heading-anchor,
.docs-prose > h2:focus-within .docs-heading-anchor,
.docs-prose > h3:hover .docs-heading-anchor,
.docs-prose > h3:focus-within .docs-heading-anchor {
	opacity: 1;
}

.docs-prose p {
	margin: 15px 0;
}

.docs-prose strong {
	color: #252632;
}

.docs-prose a:not(.docs-heading-anchor) {
	font-weight: 650;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.docs-prose ul,
.docs-prose ol:not(.docs-steps) {
	margin: 14px 0;
	padding-left: 24px;
}

.docs-prose li {
	margin: 7px 0;
	padding-left: 3px;
}

.docs-prose code:not(.docs-code code) {
	padding: 2px 6px;
	border: 1px solid #e3e1f7;
	border-radius: 5px;
	background: #f5f3ff;
	color: #392aa8;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: .88em;
}

.docs-prose kbd {
	padding: 2px 7px;
	border: 1px solid #d9dbe5;
	border-bottom-width: 2px;
	border-radius: 5px;
	background: var(--docs-white);
	font-family: inherit;
	font-size: .85em;
}

.docs-check-list {
	padding-left: 0 !important;
	list-style: none;
}

.docs-check-list li {
	position: relative;
	padding-left: 29px;
}

.docs-check-list li::before {
	position: absolute;
	top: 3px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e7f8ef;
	color: #087548;
	font-size: 12px;
	font-weight: 900;
	content: "✓";
	place-items: center;
}

.docs-callout {
	position: relative;
	margin: 24px 0;
	padding: 18px 20px 18px 52px;
	border: 1px solid #d8d5ff;
	border-radius: 12px;
	background: #f8f7ff;
	color: #45465a;
}

.docs-callout::before {
	position: absolute;
	top: 18px;
	left: 18px;
	display: grid;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--docs-primary);
	color: var(--docs-white);
	font-size: 13px;
	font-weight: 900;
	content: "i";
	place-items: center;
}

.docs-callout > strong {
	display: block;
	margin-bottom: 4px;
	color: #25214e;
	font-size: 14px;
}

.docs-callout div,
.docs-callout div p {
	margin: 0;
}

.docs-callout-tip {
	border-color: #bfe8d4;
	background: #f1fbf6;
}

.docs-callout-tip::before,
.docs-callout-success::before {
	background: #12865b;
	content: "✓";
}

.docs-callout-tip > strong,
.docs-callout-success > strong {
	color: #0b6846;
}

.docs-callout-warning {
	border-color: #f2d8a6;
	background: #fffaf0;
}

.docs-callout-warning::before {
	background: #c77b00;
	content: "!";
}

.docs-callout-warning > strong {
	color: #8b5704;
}

.docs-callout-success {
	border-color: #bfe8d4;
	background: #f1fbf6;
}

.docs-steps {
	margin: 22px 0 !important;
	padding: 0 !important;
	list-style: none;
	counter-reset: docs-step;
}

.docs-steps li {
	position: relative;
	min-height: 72px;
	margin: 0 !important;
	padding: 0 0 24px 54px !important;
	counter-increment: docs-step;
}

.docs-steps li:last-child {
	min-height: 40px;
	padding-bottom: 0 !important;
}

.docs-steps li::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: grid;
	width: 34px;
	height: 34px;
	border: 4px solid var(--docs-white);
	border-radius: 50%;
	background: var(--docs-primary);
	box-shadow: 0 0 0 1px #d8d4ff;
	color: var(--docs-white);
	font-size: 13px;
	font-weight: 850;
	content: counter(docs-step);
	place-items: center;
}

.docs-steps li:not(:last-child)::after {
	position: absolute;
	top: 34px;
	bottom: 0;
	left: 16px;
	width: 2px;
	background: #dedbea;
	content: "";
}

.docs-steps strong {
	display: block;
	padding-top: 3px;
	font-size: 16px;
}

.docs-steps p {
	margin: 5px 0 0;
	color: var(--docs-muted);
}

.docs-table-wrap {
	max-width: 100%;
	margin: 22px 0 28px;
	overflow-x: auto;
	border: 1px solid var(--docs-line);
	border-radius: 12px;
}

.docs-table-wrap table {
	width: 100%;
	min-width: 560px;
	border: 0;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.5;
}

.docs-table-wrap th,
.docs-table-wrap td {
	padding: 13px 15px;
	border-right: 1px solid var(--docs-line);
	border-bottom: 1px solid var(--docs-line);
	vertical-align: top;
	text-align: left;
}

.docs-table-wrap th:last-child,
.docs-table-wrap td:last-child {
	border-right: 0;
}

.docs-table-wrap tbody tr:last-child th,
.docs-table-wrap tbody tr:last-child td {
	border-bottom: 0;
}

.docs-table-wrap thead th {
	background: #f4f5f9;
	color: #3d3f4f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.docs-table-wrap tbody th {
	width: 28%;
	background: #fbfbfd;
	color: #282a37;
	font-weight: 730;
}

.docs-code {
	margin: 22px 0;
	overflow: hidden;
	border: 1px solid #292c3c;
	border-radius: 12px;
	background: #171923;
	box-shadow: 0 12px 28px rgba(23, 25, 35, .12);
}

.docs-code > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	padding: 0 10px 0 16px;
	border-bottom: 1px solid #303343;
	color: #aeb1c2;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
}

.docs-code button {
	padding: 4px 9px;
	border: 1px solid #424657;
	border-radius: 6px;
	background: #242735;
	color: #e5e7ef;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.docs-code button:hover {
	border-color: #7770e3;
	background: #332c72;
}

.docs-code pre {
	margin: 0;
	padding: 18px;
	overflow-x: auto;
	color: #eef0f7;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	line-height: 1.65;
	tab-size: 2;
}

.docs-code code {
	font: inherit;
	white-space: pre;
}

.docs-card-grid,
.docs-link-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0 30px;
}

.docs-card-grid article {
	padding: 20px;
	border: 1px solid var(--docs-line);
	border-radius: 13px;
	background: var(--docs-white);
}

.docs-card-grid article > span {
	display: inline-grid;
	min-width: 34px;
	height: 34px;
	padding: 0 7px;
	border-radius: 9px;
	background: var(--docs-primary-soft);
	color: var(--docs-primary);
	font-size: 13px;
	font-weight: 850;
	place-items: center;
}

.docs-card-grid h3 {
	margin: 14px 0 6px;
	color: #252632;
	font-size: 16px;
	line-height: 1.35;
}

.docs-card-grid p {
	margin: 0;
	color: var(--docs-muted);
	font-size: 14px;
}

.docs-link-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-link-cards > a {
	display: flex;
	min-height: 190px;
	padding: 20px;
	flex-direction: column;
	border: 1px solid var(--docs-line);
	border-radius: 14px;
	background: var(--docs-white);
	box-shadow: 0 8px 22px rgba(25, 26, 41, .035);
	color: var(--docs-ink) !important;
	text-decoration: none !important;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.docs-link-cards > a:hover {
	transform: translateY(-3px);
	border-color: #cbc6ff;
	box-shadow: 0 14px 30px rgba(44, 33, 131, .1);
}

.docs-link-cards span {
	color: var(--docs-primary);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .075em;
	text-transform: uppercase;
}

.docs-link-cards strong {
	margin-top: 8px;
	font-size: 17px;
	line-height: 1.35;
}

.docs-link-cards p {
	margin: 8px 0 15px;
	color: var(--docs-muted);
	font-size: 13px;
	line-height: 1.55;
}

.docs-link-cards i {
	margin-top: auto;
	color: var(--docs-primary);
	font-size: 12px;
	font-style: normal;
	font-weight: 750;
}

.docs-lead-panel {
	display: grid;
	grid-template-columns: 1fr 120px;
	gap: 25px;
	margin: 32px 0 45px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid #dfdcff;
	border-radius: 18px;
	background: linear-gradient(135deg, #f8f7ff 0%, #efedff 70%, #fff5ef 100%);
}

.docs-lead-panel h2 {
	margin: 13px 0 9px;
	font-size: 27px;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.docs-lead-panel p {
	margin: 0;
	color: var(--docs-muted);
}

.docs-version-pill {
	display: inline-flex;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--docs-primary);
	color: var(--docs-white);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.docs-lead-mark {
	display: grid;
	width: 112px;
	height: 112px;
	align-self: center;
	transform: rotate(-7deg);
	border-radius: 28px;
	background: var(--docs-primary);
	box-shadow: 0 20px 35px rgba(75, 59, 212, .25);
	color: var(--docs-white);
	font-size: 58px;
	font-weight: 900;
	letter-spacing: -.08em;
	place-items: center;
}

.docs-product-intro {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
	gap: 28px;
	margin: 32px 0 44px;
	padding: 26px;
	align-items: center;
	overflow: hidden;
	border: 1px solid #ebe8dd;
	border-radius: 18px;
	background: linear-gradient(135deg, #fbfbfd, #f7f8fb 55%, #fff7ed);
}

.docs-product-intro span {
	display: inline-flex;
	padding: 4px 9px;
	border-radius: 999px;
	background: #fff0e8;
	color: #d94a0e;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .075em;
	text-transform: uppercase;
}

.docs-product-intro h2 {
	margin: 12px 0 10px;
	font-size: 28px;
	letter-spacing: -.03em;
	line-height: 1.2;
}

.docs-product-intro p {
	margin: 0;
	color: var(--docs-muted);
	font-size: 14px;
}

.docs-product-intro img {
	width: 100%;
	aspect-ratio: 1;
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(31, 29, 45, .13);
	object-fit: cover;
}

.docs-page-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 62px;
	padding-top: 28px;
	border-top: 1px solid var(--docs-line);
}

.docs-page-navigation a {
	display: flex;
	min-height: 88px;
	padding: 15px 17px;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--docs-line);
	border-radius: 12px;
	color: var(--docs-ink) !important;
	text-decoration: none;
}

.docs-page-navigation a:hover {
	border-color: #c9c4ff;
	background: #faf9ff;
}

.docs-page-navigation small {
	margin-bottom: 4px;
	color: var(--docs-primary);
	font-size: 11px;
	font-weight: 750;
	text-transform: uppercase;
}

.docs-page-navigation strong {
	font-size: 14px;
	line-height: 1.35;
}

.docs-page-next {
	align-items: flex-end;
	text-align: right;
}

.docs-help-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 34px;
	padding: 20px;
	border: 1px solid #dedbea;
	border-radius: 14px;
	background: var(--docs-soft);
}

.docs-help-card > div {
	display: flex;
	align-items: center;
	gap: 13px;
}

.docs-help-card > div > span {
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--docs-primary);
	color: var(--docs-white);
	font-weight: 850;
	place-items: center;
}

.docs-help-card strong {
	display: block;
	font-size: 13px;
}

.docs-help-card p {
	margin: 3px 0 0;
	color: var(--docs-muted);
	font-size: 12px;
	line-height: 1.5;
}

.docs-help-card > a {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 750;
	text-decoration: none;
}

.docs-toc-wrap {
	position: sticky;
	top: var(--docs-header-height);
	height: calc(100vh - var(--docs-header-height));
	padding: 42px 0 40px;
	overflow: auto;
}

.docs-toc {
	padding-left: 18px;
	border-left: 1px solid var(--docs-line);
}

.docs-toc > strong {
	display: block;
	margin-bottom: 12px;
	color: #3a3c4b;
	font-size: 12px;
	font-weight: 820;
}

.docs-toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.docs-toc li {
	margin: 0;
}

.docs-toc a {
	display: block;
	padding: 5px 0;
	color: #77798a;
	font-size: 12px;
	font-weight: 550;
	line-height: 1.45;
	text-decoration: none;
}

.docs-toc a:hover,
.docs-toc a.is-active {
	color: var(--docs-primary);
}

.docs-toc a.is-active {
	font-weight: 750;
}

.docs-toc li.is-h3 a {
	padding-left: 11px;
}

.docs-site-footer {
	border-top: 1px solid var(--docs-line);
	background: #fafafd;
}

.docs-site-footer > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100%, 1500px);
	min-height: 78px;
	margin: 0 auto;
	padding: 18px 32px;
}

.docs-site-footer p {
	margin: 0;
	color: #7b7d8e;
	font-size: 12px;
}

.docs-site-footer nav {
	display: flex;
	gap: 20px;
}

.docs-site-footer a {
	color: #656778;
	font-size: 12px;
	font-weight: 650;
	text-decoration: none;
}

.docs-site-footer a:hover {
	color: var(--docs-primary);
}

.docs-search-dialog[hidden] {
	display: none;
}

.docs-search-dialog {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	padding: 70px 18px 30px;
	align-items: start;
	justify-items: center;
}

.docs-search-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(16, 17, 26, .62);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	cursor: default;
	opacity: 0;
	transition: opacity .18s ease;
}

.docs-search-panel {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: calc(100vh - 105px);
	padding: 24px;
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 18px;
	background: var(--docs-white);
	box-shadow: var(--docs-shadow);
	transform: translateY(-14px) scale(.985);
	opacity: 0;
	transition: transform .2s ease, opacity .2s ease;
}

.docs-search-dialog.is-open .docs-search-backdrop,
.docs-search-dialog.is-open .docs-search-panel {
	opacity: 1;
}

.docs-search-dialog.is-open .docs-search-panel {
	transform: translateY(0) scale(1);
}

.docs-search-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.docs-search-heading span {
	color: var(--docs-primary);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.docs-search-heading h2 {
	margin: 3px 0 0;
	font-size: 24px;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.docs-search-heading button,
.docs-sidebar-mobile-heading button {
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--docs-line);
	border-radius: 9px;
	background: var(--docs-white);
	color: #55586b;
	cursor: pointer;
	place-items: center;
}

.docs-search-field {
	display: flex;
	align-items: center;
	gap: 11px;
	height: 50px;
	margin-top: 21px;
	padding: 0 14px;
	border: 2px solid #d8d4ff;
	border-radius: 11px;
	background: #fbfaff;
	color: var(--docs-primary);
}

.docs-search-field:focus-within {
	border-color: var(--docs-primary);
	box-shadow: 0 0 0 4px rgba(75, 59, 212, .1);
}

.docs-search-field input {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--docs-ink);
	font-size: 15px;
}

.docs-search-field input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.docs-search-help {
	margin: 8px 2px 15px;
	color: #898b9b;
	font-size: 11px;
}

.docs-search-results {
	display: grid;
	gap: 7px;
}

.docs-search-results > p {
	margin: 10px 0;
	padding: 22px;
	border-radius: 10px;
	background: var(--docs-soft);
	color: var(--docs-muted);
	font-size: 13px;
	text-align: center;
}

.docs-search-result {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 18px;
	padding: 13px 15px;
	border: 1px solid var(--docs-line);
	border-radius: 10px;
	color: var(--docs-ink) !important;
	text-decoration: none;
}

.docs-search-result:hover,
.docs-search-result:focus {
	border-color: #c9c4ff;
	background: #faf9ff;
	outline: none;
}

.docs-search-result strong {
	font-size: 13px;
	line-height: 1.35;
}

.docs-search-result p {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--docs-muted);
	font-size: 11px;
	line-height: 1.5;
}

.docs-search-result span {
	color: var(--docs-primary);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.docs-sidebar-backdrop {
	display: none;
}

body.docs-modal-open,
body.docs-sidebar-open {
	overflow: hidden;
}

@media (max-width: 1180px) {
	.docs-shell {
		grid-template-columns: minmax(220px, 255px) minmax(0, 780px);
		justify-content: center;
	}

	.docs-toc-wrap {
		display: none;
	}

	.docs-back-site span {
		display: none;
	}

	.docs-back-site {
		width: 40px;
		padding: 0;
		border-color: var(--docs-line);
	}
}

@media (max-width: 900px) {
	:root {
		--docs-header-height: 62px;
	}

	.admin-bar .docs-site-header,
	.admin-bar .docs-reading-progress {
		top: 46px;
	}

	.docs-header-inner {
		gap: 12px;
		padding: 0 18px;
	}

	.docs-sidebar-trigger {
		display: inline-flex;
		flex: 0 0 auto;
	}

	.docs-brand {
		min-width: 0;
		margin-right: auto;
	}

	.docs-search-trigger {
		width: 40px;
		min-width: 40px;
		padding: 0;
		justify-content: center;
	}

	.docs-search-trigger span,
	.docs-search-trigger kbd,
	.docs-back-site {
		display: none;
	}

	.docs-shell {
		display: block;
		width: min(100%, 840px);
		padding: 0 24px;
	}

	.docs-sidebar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 9500;
		width: min(330px, 88vw);
		height: 100vh;
		padding: 0 20px 40px;
		border-right: 0;
		background: var(--docs-white);
		box-shadow: 24px 0 60px rgba(15, 16, 25, .2);
		transform: translateX(-105%);
		transition: transform .24s ease;
	}

	.docs-sidebar.is-open {
		transform: translateX(0);
	}

	.admin-bar .docs-sidebar {
		top: 46px;
		height: calc(100vh - 46px);
	}

	.docs-sidebar-mobile-heading {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 68px;
		margin: 0 -4px 22px;
		border-bottom: 1px solid var(--docs-line);
		background: var(--docs-white);
	}

	.docs-sidebar-mobile-heading strong {
		font-size: 14px;
	}

	.docs-sidebar-backdrop {
		position: fixed;
		inset: 0;
		z-index: 9400;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(15, 16, 25, .58);
		cursor: default;
		visibility: hidden;
		opacity: 0;
		transition: opacity .24s ease, visibility .24s ease;
	}

	body.docs-sidebar-open .docs-sidebar-backdrop {
		visibility: visible;
		opacity: 1;
	}

	.docs-main {
		padding-top: 27px;
	}

	.docs-article-header h1 {
		font-size: clamp(34px, 8vw, 44px);
	}

	.docs-heading-anchor {
		display: none;
	}
}

@media (max-width: 640px) {
	.docs-header-inner {
		padding: 0 13px;
	}

	.docs-brand {
		gap: 8px;
		font-size: 18px;
	}

	.docs-brand-logo {
		max-width: 130px;
		max-height: 30px;
	}

	.docs-brand-badge {
		padding: 2px 6px;
		font-size: 9px;
	}

	.docs-shell {
		padding: 0 17px;
	}

	.docs-main {
		padding-bottom: 58px;
	}

	.docs-breadcrumbs {
		margin-bottom: 22px;
		overflow: hidden;
	}

	.docs-breadcrumbs ol {
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: none;
	}

	.docs-article-header {
		padding-bottom: 28px;
	}

	.docs-article-header h1 {
		font-size: 34px;
	}

	.docs-article-header > p {
		font-size: 16px;
	}

	.docs-article-meta {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.docs-prose > h2 {
		margin-top: 42px;
		font-size: 24px;
	}

	.docs-prose > h3 {
		font-size: 19px;
	}

	.docs-lead-panel,
	.docs-product-intro {
		grid-template-columns: 1fr;
		padding: 21px;
	}

	.docs-lead-mark {
		display: none;
	}

	.docs-product-intro img {
		max-height: 400px;
	}

	.docs-card-grid,
	.docs-link-cards {
		grid-template-columns: 1fr;
	}

	.docs-link-cards > a {
		min-height: 155px;
	}

	.docs-callout {
		padding: 17px 17px 17px 47px;
	}

	.docs-callout::before {
		left: 15px;
	}

	.docs-table-wrap {
		margin-right: -17px;
		border-right: 0;
		border-radius: 10px 0 0 10px;
	}

	.docs-page-navigation {
		grid-template-columns: 1fr;
	}

	.docs-page-navigation > span {
		display: none;
	}

	.docs-help-card,
	.docs-help-card > div {
		align-items: flex-start;
	}

	.docs-help-card {
		flex-direction: column;
	}

	.docs-site-footer > div {
		align-items: flex-start;
		padding: 22px 17px;
		flex-direction: column;
	}

	.docs-site-footer nav {
		gap: 13px 18px;
		flex-wrap: wrap;
	}

	.docs-search-dialog {
		padding: 18px 10px;
		align-items: start;
	}

	.docs-search-panel {
		max-height: calc(100vh - 36px);
		padding: 19px;
		border-radius: 14px;
	}

	.docs-search-heading h2 {
		font-size: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.docs-search-backdrop,
	.docs-search-panel,
	.docs-sidebar,
	.docs-sidebar-backdrop,
	.docs-link-cards > a,
	.docs-reading-progress span {
		transition: none !important;
	}
}
