/* 中英文弯引号共享 Unicode 码位，确保引号使用中文字体渲染 */
@font-face {
  font-family: Quotes;
  src: local('PingFang SC Regular'), local('PingFang SC'), local('SimHei'),
  local('Source Han Sans SC');
  unicode-range: U+2018, U+2019, U+201C, U+201D; /* 分别是 ‘’“” */
}
body {
  /* 1. 添加 Quotes 字体以修改引号 */
  /* 2. 暂时删除 Inter 以修复斜体不生效问题，等 vuejs/theme 同步 https://github.com/vuejs/vitepress/pull/777 后观察是否可使用 'Inter var experimental', 'Inter var' 替代 */
  --vt-font-family-base: Quotes, -apple-system, BlinkMacSystemFont,
  'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans',
  'Droid Sans', 'Helvetica Neue', sans-serif;

  /* 修复斜体不生效问题 #574 */
  text-rendering: unset !important;
  font-synthesis: unset !important;
}
/**
 * 不用 --vt-font-family-base 因为如果元素本身没有设置 font-family，会继承外部的 font-family，
 * 在这里设置 --vt-font-family-base 是无效的。不用 :lang(en) 因为这样可以把 font-family 设置范
 * 围控制得小一点。
 */
[lang|='en'] {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  sans-serif;
}
/* always show anchors on /api/ and /style-guide/ pages */
.vt-doc.api h2 .header-anchor,
.vt-doc.style-guide h2 .header-anchor {
  opacity: 1;
}
.vt-doc.sponsor h3 {
  text-align: center;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--vt-c-divider-light);
}
.vt-doc.sponsor h3 .header-anchor {
  display: none;
}
.vt-badge.wip:before {
  content: 'WIP';
}
.vt-badge.ts {
  background-color: #3178c6;
}
.vt-badge.ts:before {
  content: 'TS';
}
.vt-badge.dev-only,
.vt-badge.experimental {
  color: var(--vt-c-text-light-1);
  background-color: var(--vt-c-yellow);
}
.vt-badge.dev-only:before {
  content: 'Dev only';
}
.vt-badge.experimental:before {
  content: 'Experimental';
}
.vt-badge[data-text]:before {
  content: attr(data-text);
}
.next-steps {
  margin-top: 3rem;
}
.next-steps .vt-box {
  border: 1px solid var(--vt-c-bg-soft);
}
.next-steps .vt-box:hover {
  border-color: var(--vt-c-green-light);
  transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vt-doc .next-steps-link {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 0.75em;
  display: block;
  color: var(--vt-c-green);
}
.vt-doc .next-steps-caption {
  margin-bottom: 0;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}
.vt-doc a[href^="https://play.vuejs.org"]:before {
  content: '▶';
  width: 20px;
  height: 20px;
  display: inline-flex;
  border-radius: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  color: var(--vt-c-green);
  border: 2px solid var(--vt-c-green);
  margin-right: 8px;
  margin-left: 4px;
  line-height: 16px;
  padding-left: 4.2px;
  font-size: 11px;
}
.demo {
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: var(--vt-shadow-2);
  margin-bottom: 1.2em;
  transition: background-color 0.5s ease;
}
.dark .demo {
  background-color: var(--vt-c-bg-soft);
}
.demo p {
  margin: 0;
}
.demo button {
  background-color: var(--vt-c-bg-mute);
  transition: background-color 0.5s;
  padding: 5px 12px;
  border: 1px solid var(--vt-c-divider);
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 600;
}
.demo button + button {
  margin-left: 1em;
}
.demo input,
.demo textarea,
.demo select {
  border: 1px solid var(--vt-c-divider);
  border-radius: 4px;
  padding: 0.2em 0.6em;
  margin-top: 10px;
  background: transparent;
  transition: background-color 0.5s;
}
.dark .demo select {
  background: var(--vt-c-bg-soft);
}
.dark .demo select option {
  background: transparent;
}
.demo input:not([type]):focus,
.demo textarea:focus,
.demo select:focus {
  outline: 1px solid blue;
}
.demo select {
  /* this was set by normalize.css */
  -webkit-appearance: listbox;
}
.demo label {
  margin: 0 1em 0 0.4em;
}
.demo select[multiple] {
  width: 100px;
}
.demo h1 {
  margin: 10px 0 0;
}
.nowrap {
  white-space: nowrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.style-example {
  border-radius: 8px 8px 12px 12px;
  margin: 1.6em 0;
  padding: 1.6em 1.6em 0.1px;
  position: relative;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.vt-doc .style-example h3 {
  margin: 0;
  font-size: 1.1em;
}
.style-example-bad {
  background: #f7e8e8;
}
.dark .style-example-bad {
  background: transparent;
  border-color: var(--vt-c-red);
}
.style-example-bad h3 {
  color: var(--vt-c-red);
}
.style-example-good {
  background: #ecfaf7;
}
.dark .style-example-good {
  background: transparent;
  border-color: var(--vt-c-green);
}
.style-example-good h3 {
  color: var(--vt-c-green);
}
.details summary {
  font-weight: bold !important;
}
.style-verb {
  font-size: 0.6em;
  display: inline-block;
  border-radius: 6px;
  font-size: 0.65em;
  line-height: 1;
  font-weight: 600;
  padding: 0.35em 0.4em 0.3em;
  position: relative;
  top: -0.15em;
  margin-right: 0.5em;
  color: var(--vt-c-bg);
  transition: color 0.5s;
  background-color: var(--vt-c-brand);
}
.style-verb.avoid {
  background-color: var(--vt-c-red);
}
.vt-doc summary {
  width: fit-content;
  cursor: pointer;
}
:root {
  --vp-code-tab-active-bar-color: var(--vt-c-green);
  --vp-code-tab-active-text-color: var(--vt-c-text-inverse-1);
  --vp-code-tab-text-color: var(--vt-c-text-inverse-2);
  --vp-code-tab-hover-text-color: var(--vt-c-text-inverse-1);
  --vp-code-tab-bg: #292d3ef0;
  --vp-code-block-bg: #292d3ef0;
}
.dark {
  --vp-code-tab-text-color: var(--vt-c-text-2);
  --vp-code-tab-hover-text-color: var(--vt-c-text-1);
  --vp-code-tab-active-text-color: var(--vt-c-text-1);
  --vp-code-tab-bg: var(--vt-c-black-mute);
  --vp-code-block-bg: var(--vt-c-black-mute);
}
/*@import 'vitepress/dist/client/theme-default/styles/fonts.css';*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * Colors Base
 *
 * These are the pure base color presets. Most of the time, you should not be
 * using these colors directly in the theme but rather use "Colors Theme"
 * instead because those are "Theme (light or dark)" dependant.
 * -------------------------------------------------------------------------- */
:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f9f9f9;
  --vt-c-white-mute: #f1f1f1;

  --vt-c-black: #1a1a1a;
  --vt-c-black-pure: #000000;
  --vt-c-black-soft: #242424;
  --vt-c-black-mute: #2f2f2f;

  --vt-c-indigo: #213547;
  --vt-c-indigo-soft: #476582;
  --vt-c-indigo-light: #aac8e4;

  --vt-c-gray: #8e8e8e;
  --vt-c-gray-light-1: #aeaeae;
  --vt-c-gray-light-2: #c7c7c7;
  --vt-c-gray-light-3: #d1d1d1;
  --vt-c-gray-light-4: #e5e5e5;
  --vt-c-gray-light-5: #f2f2f2;
  --vt-c-gray-dark-1: #636363;
  --vt-c-gray-dark-2: #484848;
  --vt-c-gray-dark-3: #3a3a3a;
  --vt-c-gray-dark-4: #282828;
  --vt-c-gray-dark-5: #202020;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.70);
  --vt-c-text-light-3: rgba(60, 60, 60, 0.33);
  --vt-c-text-light-4: rgba(60, 60, 60, 0.18);
  --vt-c-text-light-code: var(--vt-c-indigo-soft);

  --vt-c-text-dark-1: rgba(255, 255, 255, 0.87);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.60);
  --vt-c-text-dark-3: rgba(235, 235, 235, 0.38);
  --vt-c-text-dark-4: rgba(235, 235, 235, 0.18);
  --vt-c-text-dark-code: var(--vt-c-indigo-light);

  --vt-c-green: #42b883;
  --vt-c-green-light: #42d392;
  --vt-c-green-lighter: #35eb9a;
  --vt-c-green-dark: #33a06f;
  --vt-c-green-darker: #155f3e;

  --vt-c-blue: #3b8eed;
  --vt-c-blue-light: #549ced;
  --vt-c-blue-lighter: #50a2ff;
  --vt-c-blue-dark: #3468a3;
  --vt-c-blue-darker: #255489;

  --vt-c-yellow: #ffc517;
  --vt-c-yellow-light: #ffe417;
  --vt-c-yellow-lighter: #ffff17;
  --vt-c-yellow-dark: #e0ad15;
  --vt-c-yellow-darker: #bc9112;

  --vt-c-red: #ed3c50;
  --vt-c-red-light: #f43771;
  --vt-c-red-lighter: #fd1d7c;
  --vt-c-red-dark: #cd2d3f;
  --vt-c-red-darker: #ab2131;

  --vt-c-purple: #de41e0;
  --vt-c-purple-light: #e936eb;
  --vt-c-purple-lighter: #f616f8;
  --vt-c-purple-dark: #823c83;
  --vt-c-purple-darker: #602960;
}
/**
 * Colors Theme
 * -------------------------------------------------------------------------- */
:root {
  --vt-c-bg: var(--vt-c-white);
  --vt-c-bg-soft: var(--vt-c-white-soft);
  --vt-c-bg-mute: var(--vt-c-white-mute);

  --vt-c-divider: var(--vt-c-divider-light-1);
  --vt-c-divider-light: var(--vt-c-divider-light-2);

  --vt-c-divider-inverse: var(--vt-c-divider-dark-1);
  --vt-c-divider-inverse-light: var(--vt-c-divider-dark-2);

  --vt-c-text-1: var(--vt-c-text-light-1);
  --vt-c-text-2: var(--vt-c-text-light-2);
  --vt-c-text-3: var(--vt-c-text-light-3);
  --vt-c-text-4: var(--vt-c-text-light-4);
  --vt-c-text-code: var(--vt-c-text-light-code);

  --vt-c-text-inverse-1: var(--vt-c-text-dark-1);
  --vt-c-text-inverse-2: var(--vt-c-text-dark-2);
  --vt-c-text-inverse-3: var(--vt-c-text-dark-3);
  --vt-c-text-inverse-4: var(--vt-c-text-dark-4);

  --vt-c-brand: var(--vt-c-green);
  --vt-c-brand-light: var(--vt-c-green-light);
  --vt-c-brand-dark: var(--vt-c-green-dark);
  --vt-c-brand-highlight: var(--vt-c-brand-dark);
}
.dark {
  --vt-c-bg: var(--vt-c-black);
  --vt-c-bg-soft: var(--vt-c-black-soft);
  --vt-c-bg-mute: var(--vt-c-black-mute);

  --vt-c-divider: var(--vt-c-divider-dark-1);
  --vt-c-divider-light: var(--vt-c-divider-dark-2);

  --vt-c-divider-inverse: var(--vt-c-divider-light-1);
  --vt-c-divider-inverse-light: var(--vt-c-divider-light-2);

  --vt-c-text-1: var(--vt-c-text-dark-1);
  --vt-c-text-2: var(--vt-c-text-dark-2);
  --vt-c-text-3: var(--vt-c-text-dark-3);
  --vt-c-text-4: var(--vt-c-text-dark-4);
  --vt-c-text-code: var(--vt-c-text-dark-code);

  --vt-c-text-inverse-1: var(--vt-c-text-light-1);
  --vt-c-text-inverse-2: var(--vt-c-text-light-2);
  --vt-c-text-inverse-3: var(--vt-c-text-light-3);
  --vt-c-text-inverse-4: var(--vt-c-text-light-4);

  --vt-c-brand-highlight: var(--vt-c-brand-light);
}
/**
 * Typography
 * -------------------------------------------------------------------------- */
:root {
  --vt-font-family-base: 'Inter var experimental', 'Inter var', Inter,
  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
  Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --vt-font-family-mono: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
/**
 * Shadows
 * -------------------------------------------------------------------------- */
:root {
  --vt-shadow-1: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --vt-shadow-2: 0 3px 12px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.07);
  --vt-shadow-3: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
  --vt-shadow-4: 0 14px 44px rgba(0, 0, 0, 0.12), 0 3px 9px rgba(0, 0, 0, 0.12);
  --vt-shadow-5: 0 18px 56px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.16);
}
/**
 * Magic Numbers
 * -------------------------------------------------------------------------- */
:root {
  --vt-nav-height: 55px;
}
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--vt-font-family-base);
  letter-spacing: .2px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--vt-c-text-1);
  background-color: var(--vt-c-bg);
  direction: ltr;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  transition: color .5s, background-color .5s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/**
 * Avoid 300ms click delay on touch devices that support the `touch-action`
 * CSS property.
 *
 * In particular, unlike most other browsers, IE11+Edge on Windows 10 on
 * touch devices and IE Mobile 10-11 DON'T remove the click delay when
 * `<meta name="viewport" content="width=device-width">` is present.
 * However, they DO support removing the click delay via
 * `touch-action: manipulation`.
 *
 * See:
 * - http://v4-alpha.getbootstrap.com/content/reboot/#click-delay-optimization-for-touch
 * - http://caniuse.com/#feat=css-touch-action
 * - http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
 */
a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: inherit;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
pre,
code,
kbd,
samp {
  font-family: var(--vt-font-family-mono);
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
button,
input,
optgroup,
select,
textarea {
  border: 0;
  padding: 0;
  line-height: inherit;
  color: inherit;
}
button {
  padding: 0;
  background-color: transparent;
  background-image: none;
}
button,
[role="button"] {
  cursor: pointer;
}
button:focus, button:focus-visible {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
button:focus:not(:focus-visible) {
  outline: none !important;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
table {
  border-collapse: collapse;
}
input {
  background-color: transparent;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--vt-c-text-3);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--vt-c-text-3);
}
input::placeholder,
textarea::placeholder {
  color: var(--vt-c-text-3);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
textarea {
  resize: vertical;
}
select {
  -webkit-appearance: none;
}
fieldset {
  margin: 0;
  padding: 0;
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.vt-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .6);
  transition: opacity .5s;
}
.vt-backdrop.fade-enter-from,
.vt-backdrop.fade-leave-to {
  opacity: 0;
}
.vt-backdrop.fade-leave-active {
  transition-duration: .3s;
}
@media (min-width: 960px) {
  .vt-backdrop {
    display: none;
  }
}
.vt-code-group {
  display: flex;
  flex-direction: column;
}
.vt-code-group-contents .vt-code-group-content div[class*='language-'] {
  margin-top: 0;
  border-top-left-radius: 0;
}
.vt-code-group-tabs {
  display: flex;
  overflow: auto;
}
.vt-code-group-tab {
  white-space: pre;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--vt-c-text-inverse-1);
  background: #292d3ef0;
  border-bottom-color: rgba(255, 255, 255, 0.3);
  padding: 6px 24px;
  border-width: 2px;
  border-style: solid;
  border-top: transparent;
  border-right: transparent;
  border-left: transparent;
  cursor: pointer;
  transition: border, background-color .2s;
  transition-property: border, background-color;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
}
.vt-code-group-tab.vt-code-group-tab-active {
  background: #292d3e;
  border-bottom: 2px solid var(--vt-c-brand);
}
.vt-code-group-tab:first-child {
  border-top-left-radius: 8px;
}
.vt-code-group-tab:last-child {
  border-top-right-radius: 8px;
}
.dark .vt-code-group-tab {
  color: var(--vt-c-text-1);
}
.dark .vt-code-group-tab:not(.vt-code-group-tab-active) {
  border-bottom: 2px solid rgba(255, 255, 255, .2);
  background: var(--vt-c-black-mute);
}
.dark .vt-code-group-tab.vt-code-group-tab-active {
  background: var(--vt-c-black-soft);
}
@media (max-width: 639px) {
  .vt-code-group-tabs {
    margin: 0 -24px;
  }

  .vt-code-group-tab, .vt-code-group-tab:first-child, .vt-code-group-tab:last-child {
    flex-grow: 1;
    border-radius: 0;
  }
}
.vt-doc {
  font-size: 16px;
  line-height: 1.7;
}
.vt-doc h1,
.vt-doc h2,
.vt-doc h3,
.vt-doc h4,
.vt-doc h5,
.vt-doc h6 {
  position: relative;
  font-weight: 600;
  line-height: 1.5;
  outline: none;
}
.vt-doc h1 {
  margin: 0 0 3rem;
  font-size: 38px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.vt-doc h2 {
  margin: 4rem 0 1.8rem;
  border-top: 1px solid var(--vt-c-divider-light);
  padding-top: 1.8rem;
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .vt-doc h1 {
    font-size: 32px;
    margin-bottom: 1.8rem;
  }

  .vt-doc h1 + h2 {
    margin-top: 36px;
  }
}
.vt-doc h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 3rem 0 1.25rem;
}
.vt-doc h2 + h3 {
  margin-top: 0;
}
.vt-doc h4 {
  font-size: 17px;
  margin: 1.8rem 0 1rem;
}
.vt-doc .header-anchor {
  float: left;
  margin-left: -0.87em;
  padding-right: 0.23em;
  font-weight: 500;
  opacity: 0;
  transition: color 0.25s, opacity 0.25s;
}
.vt-doc .header-anchor:before {
  content: '#';
}
.vt-doc h1:hover .header-anchor,
.vt-doc h1 .header-anchor:focus,
.vt-doc h2:hover .header-anchor,
.vt-doc h2 .header-anchor:focus,
.vt-doc h3:hover .header-anchor,
.vt-doc h3 .header-anchor:focus,
.vt-doc h4:hover .header-anchor,
.vt-doc h4 .header-anchor:focus,
.vt-doc h5:hover .header-anchor,
.vt-doc h5 .header-anchor:focus,
.vt-doc h6:hover .header-anchor,
.vt-doc h6 .header-anchor:focus {
  opacity: 1;
}
.vt-doc hr {
  border: none;
  border-top: 1px solid var(--vt-c-divider-light);
  margin: 1.8rem 0;
}
.vt-doc p,
.vt-doc ul,
.vt-doc ol,
.vt-doc summary {
  margin-bottom: 1.2em;
}
.vt-doc a {
  font-weight: 500;
  color: var(--vt-c-brand);
  transition: color 0.25s;
  text-decoration-style: dotted;
}
.vt-doc a:hover {
  color: var(--vt-c-brand-highlight);
}
.vt-doc strong {
  font-weight: 600;
}
.vt-doc table {
  display: block;
  border-collapse: collapse;
  margin: 1rem 0;
  overflow-x: auto;
}
.vt-doc tr {
  border-top: 1px solid var(--vt-c-divider);
  transition: background-color 0.5s;
}
.vt-doc tr:nth-child(2n) {
  background-color: var(--vt-c-bg-soft);
}
.vt-doc th,
.vt-doc td {
  border: 1px solid var(--vt-c-divider);
  padding: 0.6em 1em;
}
.vt-doc blockquote {
  margin: 1rem 0;
  border-left: 0.2rem solid var(--vt-c-divider);
  padding-left: 1rem;
  transition: border-color 0.5s;
}
.vt-doc blockquote > p {
  margin: 0;
  font-size: 16px;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}
.vt-doc figure {
  margin: 0;
}
.vt-doc img {
  max-width: 100%;
}
.vt-doc p > img {
  margin: 28px auto;
}
.vt-doc ol {
  counter-reset: item;
}
.vt-doc ol[start='2'] {
  counter-reset: item 1;
}
.vt-doc ol[start='3'] {
  counter-reset: item 2;
}
.vt-doc ol[start='4'] {
  counter-reset: item 3;
}
.vt-doc ol[start='5'] {
  counter-reset: item 4;
}
.vt-doc ol[start='6'] {
  counter-reset: item 5;
}
.vt-doc ol[start='7'] {
  counter-reset: item 6;
}
.vt-doc ol[start='8'] {
  counter-reset: item 7;
}
.vt-doc ol[start='9'] {
  counter-reset: item 8;
}
.vt-doc ol[start='10'] {
  counter-reset: item 9;
}
.vt-doc ol > li {
  counter-increment: item;
  position: relative;
  padding-left: 1.5rem;
}
.vt-doc ol > li:before {
  position: absolute;
  left: 2px;
  top: 1px;
  font-weight: bold;
  font-size: 14px;
  color: var(--vt-c-text-3);
  content: counter(item) '.';
}
@media (min-width: 768px) {
  .vt-doc ol > li:before {
    top: 2px;
  }
}
.vt-doc li {
  position: relative;
  margin: 1px 0;
}
.vt-doc ul {
  padding-left: 1.25rem;
}
.vt-doc ul > li:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--vt-c-text-3);
  transition: background-color 0.5s;
  left: -1.25rem;
  top: 0.75rem;
}
.vt-doc .video::before {
  display: block;
  content: '';
  padding-top: 56.25%;
}
.vt-doc .video {
  overflow: hidden;
  width: calc(100% + 48px);
  min-width: 415px;
  position: relative;
  margin: 0 -24px 18px;
}
.vt-doc .video-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 640px) {
  .vt-doc .video {
    border-radius: 8px;
  }
}
@media (max-width: 463px) {
  .vt-doc .video {
    width: 100%;
    margin: 0 calc((100vw - 463px) / 2) 18px;
  }
}
.vt-doc {
  --vt-doc-code-font-size: 14px;
  --vt-doc-code-line-height: 1.5;
}
/* inline code */
.vt-doc :not(pre) > code {
  background-color: var(--vt-c-bg-mute);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  color: var(--vt-c-text-code);
  transition: color 0.5s, background-color 0.5s;
}
.vt-doc a > code {
  color: var(--vt-c-brand-dark);
}
.vt-doc :not(pre, h1, h2, h3, h4, h5, h6) > code {
  font-size: var(--vt-doc-code-font-size);
}
@media (min-width: 768px) {
  .vt-doc :not(pre) > code {
    white-space: nowrap;
  }
}
.vt-doc div[class*='language-'] {
  position: relative;
  margin: 28px -24px;
  background-color: #292d3e;
  overflow-x: auto;
  transition: background-color 0.5s;
}
.dark .vt-doc div[class*='language-'] {
  background-color: var(--vt-c-bg-soft);
}
@media (min-width: 640px) {
  .vt-doc div[class*='language-'] {
    margin: 28px 0;
    border-radius: 8px;
  }
}
@media (max-width: 639px) {
  .vt-doc li div[class*='language-'] {
    border-radius: 8px 0 0 8px;
  }
}
.vt-doc div[class*='language-'] + div[class*='language-'],
.vt-doc div[class$='-api'] + div[class*='language-'],
.vt-doc div[class*='language-'] + div[class$='-api'] > div[class*='language-']:first-child {
  margin-top: -16px;
}
.vt-doc [class*='language-'] pre,
.vt-doc [class*='language-'] code {
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
.vt-doc [class*='language-'] pre {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px 0;
  background: transparent;
  overflow-x: auto;
}
.vt-doc [class*='language-'] code {
  display: block;
  padding: 0 24px;
  width: fit-content;
  min-width: 100%;
  line-height: var(--vt-doc-code-line-height);
  font-size: var(--vt-doc-code-font-size);
  color: #a6accd;
  transition: color 0.5s;
}
.vt-doc [class*='language-'] code .highlighted {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s;
  margin: 0 -24px;
  padding: 0 24px;
  width: calc(100% + 2 * 24px);
  display: inline-block;
}
.dark .vt-doc [class*='language-'] code .highlighted {
  background-color: rgba(255, 255, 255, 0.05);
}
.vt-doc div[class*='language-'].line-numbers-mode {
  padding-left: 32px;
}
.vt-doc .line-numbers-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-right: 1px solid var(--vt-c-divider-light);
  padding: 13px 0 11px;
  width: 32px;
  text-align: center;
  font-family: var(--vt-font-family-mono);
  line-height: var(--vt-doc-code-line-height);
  font-size: var(--vt-doc-code-font-size);
  color: var(--vt-c-text-3);
  transition: border-color 0.5s, color 0.5s;
}
.vt-doc [class*='language-'] > span.lang {
  position: absolute;
  top: 4px;
  right: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-dark-3);
  transition: color 0.5s;
}
@media (max-width: 480px) {
  .vt-doc [class*='language-'] > span.lang {
    top: 1px;
    right: 5px;
    font-size: 11px;
  }

  .vt-doc [class*='language-'] pre {
    padding: 18px 0 12px;
  }
}
.vt-doc [class*='language-'] > button.copy {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 3;
  display: block;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  background-color: #292d3e;
  opacity: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 20px;
  background-repeat: no-repeat;
  transition: opacity 0.4s;
}
.dark .vt-doc [class*='language-'] > button.copy {
  background-color: var(--vt-c-bg-soft);
}
.vt-doc [class*='language-']:hover > button.copy,
.vt-doc [class*='language-'] > button.copy:focus {
  opacity: 1;
}
.vt-doc [class*='language-'] > button.copy:hover,
.vt-doc [class*='language-'] > button.copy.copied,
.vt-doc [class*='language-'] > button.copy:hover.copied,
.vt-doc [class*='language-'] > button.copy.copied::before,
.vt-doc [class*='language-'] > button.copy:hover.copied::before {
  background-color: #343848;
}
.dark .vt-doc [class*='language-'] > button.copy:hover,
.dark .vt-doc [class*='language-'] > button.copy.copied,
.dark .vt-doc [class*='language-'] > button.copy:hover.copied,
.dark .vt-doc [class*='language-'] > button.copy.copied::before,
.dark .vt-doc [class*='language-'] > button.copy:hover.copied::before {
  background-color: #2f2f2f;
}
.vt-doc [class*='language-'] > button.copy.copied,
.vt-doc [class*='language-'] > button.copy:hover.copied {
  border-radius: 0 4px 4px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E");
}
.vt-doc [class*='language-'] > button.copy.copied::before,
.vt-doc [class*='language-'] > button.copy:hover.copied::before {
  position: relative;
  left: -65px;
  display: block;
  border-radius: 4px 0 0 4px;
  padding-top: 10px;
  width: 64px;
  height: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-dark-2);
  white-space: nowrap;
  content: 'Copied';
}
.vt-doc [class*='language-']:hover > button.copy + span.lang,
.vt-doc [class*='language-'] > button.copy:focus + span.lang {
  opacity: 0;
}
.vt-doc .custom-block {
  margin: 28px 0;
  padding: 20px 24px 4px 42px;
  border-radius: 8px;
  overflow-x: auto;
  transition: color 0.5s, background-color 0.5s;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  background-color: var(--vt-c-bg-soft);
}
.dark .vt-doc .custom-block {
  color: var(--vt-c-text-2);
}
.vt-doc .custom-block:before {
  content: 'ⓘ';
  position: absolute;
  font-weight: 600;
  font-size: 15px;
  top: 20px;
  left: 17px;
}
.vt-doc .custom-block.warning:before,
.vt-doc .custom-block.danger:before {
  content: '⚠';
  font-size: 17px;
  top: 19px;
  left: 16px;
}
.vt-doc .custom-block .custom-block-title {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--vt-c-text-1);
  transition: color 0.5s;
}
.vt-doc .custom-block.tip {
  border: 1px solid var(--vt-c-brand);
}
.vt-doc .custom-block.tip:before {
  color: var(--vt-c-brand);
}
.vt-doc .custom-block.warning {
  border: 1px solid var(--vt-c-yellow);
}
.vt-doc .custom-block.warning:before {
  color: var(--vt-c-yellow);
}
.vt-doc .custom-block.danger {
  border: 1px solid var(--vt-c-red);
}
.vt-doc .custom-block.danger .custom-block-title,
.vt-doc .custom-block.danger:before {
  color: var(--vt-c-red);
}
.vt-doc .custom-block ul li:before {
  top: 0.55rem;
}
.vt-doc .custom-block ol li:before {
  top: 1px;
  font-size: 13px;
}
.vt-doc .custom-block :not(pre) > code {
  font-size: 13px;
  background-color: rgba(27, 31, 35, 0.05);
}
.dark .vt-doc .custom-block :not(pre) > code {
  background-color: rgba(0, 0, 0, 0.2);
}
.vt-flyout {
  position: relative;
}
.vt-flyout:hover {
  color: var(--vt-c-bland);
  transition: color .25s;
}
.vt-flyout:hover .vt-flyout-button-text {
  color: var(--vt-c-text-2);
}
.vt-flyout:hover .vt-flyout-button-icon {
  fill: var(--vt-c-text-2);
}
.vt-flyout:hover .vt-flyout-menu,
.vt-flyout-button[aria-expanded="true"] + .vt-flyout-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vt-flyout-button {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: var(--vt-nav-height);
  color: var(--vt-c-text-1);
  transition: color .5s;
}
.vt-flyout-button-text {
  display: flex;
  align-items: center;
  line-height: var(--vt-nav-height);
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-c-text-1);
  transition: color .25s;
  white-space: nowrap;
}
.vt-flyout-button-text-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.vt-flyout-button-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill .25s;
}
.vt-flyout-menu {
  display: flex;
  position: absolute;
  top: calc(var(--vt-nav-height) / 2 + 15px);
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .25s, visibility .25s, transform .25s;
  max-height: calc(100vh - var(--vt-nav-height) - var(--vt-banner-height, 0px));
}
.vt-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vt-hamburger:hover .vt-hamburger-top {
  top: 0;
  left: 0;
  transform: translateX(4px);
}
.vt-hamburger:hover .vt-hamburger-middle {
  top: 6px;
  left: 0;
  transform: translateX(0);
}
.vt-hamburger:hover .vt-hamburger-bottom {
  top: 12px;
  left: 0;
  transform: translateX(8px);
}
.vt-hamburger.is-active .vt-hamburger-top {
  top: 6px;
  transform: translateX(0) rotate(225deg);
}
.vt-hamburger.is-active .vt-hamburger-middle {
  top: 6px;
  transform: translateX(16px);
}
.vt-hamburger.is-active .vt-hamburger-bottom {
  top: 6px;
  transform: translateX(0) rotate(135deg);
}
.vt-hamburger.is-active:hover .vt-hamburger-top,
.vt-hamburger.is-active:hover .vt-hamburger-middle,
.vt-hamburger.is-active:hover .vt-hamburger-bottom {
  background-color: var(--vt-c-text-2);
  transition: top .25s, background-color .25s, transform .25s;
}
.vt-hamburger-container {
  position: relative;
  width: 16px;
  height: 14px;
  overflow: hidden;
}
.vt-hamburger-top,
.vt-hamburger-middle,
.vt-hamburger-bottom {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: var(--vt-c-text-1);
  transition: top .25s, background-color .5s, transform .25s;
}
.vt-hamburger-top {
  top: 0;
  left: 0;
  transform: translateX(0);
}
.vt-hamburger-middle {
  top: 6px;
  left: 0;
  transform: translateX(8px);
}
.vt-hamburger-bottom {
  top: 12px;
  left: 0;
  transform: translateX(4px);
}
.vt-link-icon {
  display: inline-block;
  margin-top: -2px;
  margin-left: 4px;
  width: 11px;
  height: 11px;
  fill: var(--vt-c-text-3);
  transition: fill 0.25s;
}
.vt-menu {
  border-radius: 8px;
  padding: 12px 0;
  min-width: 192px;
  border: 1px solid transparent;
  background: var(--vt-c-bg);
  box-shadow: var(--vt-shadow-3);
  transition: background-color .5s;
  overflow: auto;
}
.dark .vt-menu {
  background: var(--vt-c-bg);
  box-shadow: var(--vt-shadow-1);
  border: 1px solid var(--vt-c-divider-light);
}
.vt-menu-items {
  transition: border-color .5s;
}
.vt-menu .vt-menu-group {
  padding: 0 0 12px;
}
.vt-menu .vt-menu-group + .vt-menu-group {
  border-top: 1px solid var(--vt-c-divider-light);
  padding: 11px 0 12px;
}
.vt-menu .vt-menu-group:last-child {
  padding-bottom: 0;
}
.vt-menu .vt-menu-group + .vt-menu-item-item {
  border-top: 1px solid var(--vt-c-divider-light);
  padding: 11px 16px 0;
}
.vt-menu .vt-menu-item {
  padding: 0 16px;
  white-space: nowrap;
}
.vt-menu-label {
  flex-grow: 1;
  line-height: 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color .5s;
}
.vt-menu-action {
  padding-left: 24px;
}
.vt-menu-badge {
  display: inline-block;
  padding: 3.5px 4px;
  margin-left: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .2px;
  border-radius: 6px;
  background: var(--vt-c-blue);
  color: var(--vt-c-white-soft);
}
.vt-menu-badge.secondary {
  background: var(--vt-c-gray-light-5);
  color: var(--vt-c-blue-dark);
}
.vt-menu-badge.success {
  background: var(--vt-c-green);
}
.vt-menu-badge.info {
  background: var(--vt-c-indigo-soft);
}
.vt-menu-badge.warning {
  background: var(--vt-c-yellow-light);
  color: var(--vt-c-black-soft);
}
.vt-menu-badge.danger {
  background: var(--vt-c-red);
}
.vt-menu-group-title {
  padding: 0 18px;
  line-height: 28px;
  font-size: 10px;
  font-weight: 600;
  color: var(--vt-c-text-3);
  text-transform: uppercase;
  transition: color .25s;
}
.vt-menu-link {
  display: block;
  padding: 0 18px;
  line-height: 28px;
  font-size: 13px;
  font-weight: 400;
  color: var(--vt-c-text-1);
  white-space: nowrap;
  transition: color .25s;
}
.vt-menu-link:hover {
  color: var(--vt-c-brand);
}
.vt-locales-btn-icon {
  margin: 0 0.5rem;
}
.vt-locales-btn-icon-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vt-locales-btn-icon {
  width: 1rem;
  height: 1rem;
  fill: var(--vt-c-text-1);
}
.vt-locales-menu-hr-divider {
  margin-top: 4px;
  margin-bottom: 4px;
  width: 100%;
  height: 1px;
  background-color: var(--vt-c-divider-light);
}
.vt-locales-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  font-size: .875rem;
  position: relative;
}
.vt-locales-menu-item-text {
  cursor: pointer;
}
.vt-locales-menu-item-text:hover {
  color: var(--vt-c-brand);
}
.vt-locales-menu-item.join-translations {
  margin-top: 8px;
  padding: 0 14px;
}
.VPNavBarLocaleScreen .vt-locales-menu-item.join-translations {
  padding: 0;
}
.vt-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--vt-c-text-2);
  transition: color .5s;
}
.vt-social-link.is-small {
  width: 36px;
  height: 36px;
}
.vt-social-link.is-small .vt-social-link-icon {
  width: 20px;
  height: 20px;
}
.vt-social-link.is-medium {
  width: 48px;
  height: 48px;
}
.vt-social-link.is-medium .vt-social-link-icon {
  width: 24px;
  height: 24px;
}
.vt-social-link:hover {
  color: var(--vt-c-text-1);
  transition: color .25s;
}
.vt-social-link-icon {
  fill: currentColor;
}
.vt-social-links {
  display: flex;
  justify-content: center;
}
.vt-switch {
  position: relative;
  border-radius: 11px;
  display: block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--vt-c-divider);
  background-color: var(--vt-c-bg-mute);
  transition: border-color 0.25s, background-color 0.25s;
}
.vt-switch:hover {
  border-color: var(--vt-c-gray);
}
.vt-switch-check {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--vt-c-white);
  box-shadow: var(--vt-shadow-1);
  transition: background-color 0.25s, transform 0.25s;
}
.dark .vt-switch-check {
  background-color: var(--vt-c-black);
}
.vt-switch-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
}
.vt-switch-icon svg {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  fill: var(--vt-c-text-2);
}
.dark .vt-switch-icon svg {
  fill: var(--vt-c-text-1);
  transition: opacity 0.25s;
}
.vt-switch-appearance-sun {
  opacity: 1;
}
.vt-switch-appearance-moon {
  opacity: 0;
}
.dark .vt-switch-appearance-sun {
  opacity: 0;
}
.dark .vt-switch-appearance-moon {
  opacity: 1;
}
.dark .vt-switch-appearance .vt-switch-check {
  transform: translateX(18px);
}
.vt-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vt-box-container .vt-box {
  background-color: var(--vt-c-bg-soft);
  transition: color 0.5s, background-color 0.5s;
  padding: 28px 36px;
  border-radius: 8px;
  flex: 0 32%; /* default 3 column */
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .vt-box-container .vt-box {
    flex: 0 100%;
    margin-bottom: 20px;
  }
}
.vt-badge {
  display: inline-block;
  border-radius: 6px;
  font-size: 0.65em;
  line-height: 1;
  font-weight: 600;
  padding: 0.35em 0.4em 0.3em;
  position: relative;
  top: -0.65em;
  margin-left: 0.5em;
  color: var(--vt-c-bg);
  transition: color 0.5s;
  background-color: var(--vt-c-brand);
}
.vt-badge.warning {
  color: var(--vt-c-text-light-1);
  background-color: var(--vt-c-yellow);
}
/**
 * Layouts
 * -------------------------------------------------------------------------- */
:root {
  /* Z Indexes */
  --vp-z-index-local-nav: 10;
  --vp-z-index-nav: 20;
  --vp-z-index-banner: 30;
  --vp-z-index-backdrop: 40;
  --vp-z-index-sidebar: 50;

  /* Screen Size */
  --vp-screen-max-width: 1376px;
}
/**
 * Component: Sidebar
 * -------------------------------------------------------------------------- */
:root {
  --vp-sidebar-width-mobile: 320px;
  --vp-sidebar-width-small: 272px;
}
html.dark {
  color-scheme: dark;
}

.VPNavBarTitle[data-v-16fec58f] {
  display: flex;
  align-items: center;
  padding-top: 1px;
  height: var(--vt-nav-height);
  transition: opacity 0.25s;
}
.VPNavBarTitle[data-v-16fec58f]:hover {
  opacity: 0.6;
}
.logo[data-v-16fec58f] {
  position: relative;
}
.logo + .text[data-v-16fec58f] {
  padding-left: 8px;
}
.text[data-v-16fec58f] {
  font-size: 16px;
  font-weight: 500;
}
/*! @docsearch/css 3.9.0 | MIT License | © Algolia, Inc. and contributors | https://docsearch.algolia.com */
:root{--docsearch-primary-color:#5468ff;--docsearch-text-color:#1c1e21;--docsearch-spacing:12px;--docsearch-icon-stroke-width:1.4;--docsearch-highlight-color:var(--docsearch-primary-color);--docsearch-muted-color:#969faf;--docsearch-container-background:rgba(101,108,133,.8);--docsearch-logo-color:#5468ff;--docsearch-modal-width:560px;--docsearch-modal-height:600px;--docsearch-modal-background:#f5f6f7;--docsearch-modal-shadow:inset 1px 1px 0 0 hsla(0,0%,100%,.5),0 3px 8px 0 #555a64;--docsearch-searchbox-height:56px;--docsearch-searchbox-background:#ebedf0;--docsearch-searchbox-focus-background:#fff;--docsearch-searchbox-shadow:inset 0 0 0 2px var(--docsearch-primary-color);--docsearch-hit-height:56px;--docsearch-hit-color:#444950;--docsearch-hit-active-color:#fff;--docsearch-hit-background:#fff;--docsearch-hit-shadow:0 1px 3px 0 #d4d9e1;--docsearch-key-gradient:linear-gradient(-225deg,#d5dbe4,#f8f8f8);--docsearch-key-shadow:inset 0 -2px 0 0 #cdcde6,inset 0 0 1px 1px #fff,0 1px 2px 1px rgba(30,35,90,.4);--docsearch-key-pressed-shadow:inset 0 -2px 0 0 #cdcde6,inset 0 0 1px 1px #fff,0 1px 1px 0 rgba(30,35,90,.4);--docsearch-footer-height:44px;--docsearch-footer-background:#fff;--docsearch-footer-shadow:0 -1px 0 0 #e0e3e8,0 -3px 6px 0 rgba(69,98,155,.12)}html[data-theme=dark]{--docsearch-text-color:#f5f6f7;--docsearch-container-background:rgba(9,10,17,.8);--docsearch-modal-background:#15172a;--docsearch-modal-shadow:inset 1px 1px 0 0 #2c2e40,0 3px 8px 0 #000309;--docsearch-searchbox-background:#090a11;--docsearch-searchbox-focus-background:#000;--docsearch-hit-color:#bec3c9;--docsearch-hit-shadow:none;--docsearch-hit-background:#090a11;--docsearch-key-gradient:linear-gradient(-26.5deg,#565872,#31355b);--docsearch-key-shadow:inset 0 -2px 0 0 #282d55,inset 0 0 1px 1px #51577d,0 2px 2px 0 rgba(3,4,9,.3);--docsearch-key-pressed-shadow:inset 0 -2px 0 0 #282d55,inset 0 0 1px 1px #51577d,0 1px 1px 0 #0304094d;--docsearch-footer-background:#1e2136;--docsearch-footer-shadow:inset 0 1px 0 0 rgba(73,76,106,.5),0 -4px 8px 0 rgba(0,0,0,.2);--docsearch-logo-color:#fff;--docsearch-muted-color:#7f8497}.DocSearch-Button{align-items:center;background:var(--docsearch-searchbox-background);border:0;border-radius:40px;color:var(--docsearch-muted-color);cursor:pointer;display:flex;font-weight:500;height:36px;justify-content:space-between;margin:0 0 0 16px;padding:0 8px;user-select:none}.DocSearch-Button:active,.DocSearch-Button:focus,.DocSearch-Button:hover{background:var(--docsearch-searchbox-focus-background);box-shadow:var(--docsearch-searchbox-shadow);color:var(--docsearch-text-color);outline:none}.DocSearch-Button-Container{align-items:center;display:flex}.DocSearch-Search-Icon{stroke-width:1.6}.DocSearch-Button .DocSearch-Search-Icon{color:var(--docsearch-text-color)}.DocSearch-Button-Placeholder{font-size:1rem;padding:0 12px 0 6px}.DocSearch-Button-Keys{display:flex;min-width:calc(40px + .8em)}.DocSearch-Button-Key{align-items:center;background:var(--docsearch-key-gradient);border:0;border-radius:3px;box-shadow:var(--docsearch-key-shadow);color:var(--docsearch-muted-color);display:flex;height:18px;justify-content:center;margin-right:.4em;padding:0 0 2px;position:relative;top:-1px;transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:20px}@media (prefers-reduced-motion){.DocSearch-Button-Key{transition:none}}.DocSearch-Button-Key--pressed{box-shadow:var(--docsearch-key-pressed-shadow);transform:translate3d(0,1px,0)}@media (max-width:768px){.DocSearch-Button-Keys,.DocSearch-Button-Placeholder{display:none}}.DocSearch--active{overflow:hidden!important}.DocSearch-Container,.DocSearch-Container *{box-sizing:border-box}.DocSearch-Container{background-color:var(--docsearch-container-background);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:200}.DocSearch-Container a{text-decoration:none}.DocSearch-Link{appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;font:inherit;margin:0;padding:0}.DocSearch-Modal{background:var(--docsearch-modal-background);border-radius:6px;box-shadow:var(--docsearch-modal-shadow);flex-direction:column;margin:60px auto auto;max-width:var(--docsearch-modal-width);position:relative}.DocSearch-SearchBar{display:flex;padding:var(--docsearch-spacing) var(--docsearch-spacing) 0}.DocSearch-Form{align-items:center;background:var(--docsearch-searchbox-focus-background);border-radius:4px;box-shadow:var(--docsearch-searchbox-shadow);display:flex;height:var(--docsearch-searchbox-height);margin:0;padding:0 var(--docsearch-spacing);position:relative;width:100%}.DocSearch-Input{appearance:none;background:transparent;border:0;color:var(--docsearch-text-color);flex:1;font:inherit;font-size:1.2em;height:100%;outline:none;padding:0 0 0 8px;width:80%}.DocSearch-Input::placeholder{color:var(--docsearch-muted-color);opacity:1}.DocSearch-Input::-webkit-search-cancel-button,.DocSearch-Input::-webkit-search-decoration,.DocSearch-Input::-webkit-search-results-button,.DocSearch-Input::-webkit-search-results-decoration{display:none}.DocSearch-LoadingIndicator,.DocSearch-MagnifierLabel,.DocSearch-Reset{margin:0;padding:0}.DocSearch-MagnifierLabel,.DocSearch-Reset{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}.DocSearch-Container--Stalled .DocSearch-MagnifierLabel,.DocSearch-LoadingIndicator{display:none}.DocSearch-Container--Stalled .DocSearch-LoadingIndicator{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Reset{animation:none;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;right:0;stroke-width:var(--docsearch-icon-stroke-width)}}.DocSearch-Reset{animation:fade-in .1s ease-in forwards;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;padding:2px;right:0;stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Reset[hidden]{display:none}.DocSearch-Reset:hover{color:var(--docsearch-highlight-color)}.DocSearch-LoadingIndicator svg,.DocSearch-MagnifierLabel svg{height:24px;width:24px}.DocSearch-Cancel{display:none}.DocSearch-Dropdown{max-height:calc(var(--docsearch-modal-height) - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height));min-height:var(--docsearch-spacing);overflow-y:auto;overflow-y:overlay;padding:0 var(--docsearch-spacing);scrollbar-color:var(--docsearch-muted-color) var(--docsearch-modal-background);scrollbar-width:thin}.DocSearch-Dropdown::-webkit-scrollbar{width:12px}.DocSearch-Dropdown::-webkit-scrollbar-track{background:transparent}.DocSearch-Dropdown::-webkit-scrollbar-thumb{background-color:var(--docsearch-muted-color);border:3px solid var(--docsearch-modal-background);border-radius:20px}.DocSearch-Dropdown ul{list-style:none;margin:0;padding:0}.DocSearch-Label{font-size:.75em;line-height:1.6em}.DocSearch-Help,.DocSearch-Label{color:var(--docsearch-muted-color)}.DocSearch-Help{font-size:.9em;margin:0;user-select:none}.DocSearch-Title{font-size:1.2em}.DocSearch-Logo a{display:flex}.DocSearch-Logo svg{color:var(--docsearch-logo-color);margin-left:8px}.DocSearch-Hits:last-of-type{margin-bottom:24px}.DocSearch-Hits mark{background:none;color:var(--docsearch-highlight-color)}.DocSearch-HitsFooter{color:var(--docsearch-muted-color);display:flex;font-size:.85em;justify-content:center;margin-bottom:var(--docsearch-spacing);padding:var(--docsearch-spacing)}.DocSearch-HitsFooter a{border-bottom:1px solid;color:inherit}.DocSearch-Hit{border-radius:4px;display:flex;padding-bottom:4px;position:relative;scroll-margin-top:40px}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--deleting{transition:none}}.DocSearch-Hit--deleting{opacity:0;transition:all .25s linear}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--favoriting{transition:none}}.DocSearch-Hit--favoriting{transform:scale(0);transform-origin:top center;transition:all .25s linear;transition-delay:.25s}.DocSearch-Hit a{background:var(--docsearch-hit-background);border-radius:4px;box-shadow:var(--docsearch-hit-shadow);display:block;padding-left:var(--docsearch-spacing);width:100%}.DocSearch-Hit-source{background:var(--docsearch-modal-background);color:var(--docsearch-highlight-color);font-size:.85em;font-weight:600;line-height:32px;margin:0 -4px;padding:8px 4px 0;position:sticky;top:0;z-index:10}.DocSearch-Hit-Tree{color:var(--docsearch-muted-color);height:var(--docsearch-hit-height);opacity:.5;stroke-width:var(--docsearch-icon-stroke-width);width:24px}.DocSearch-Hit[aria-selected=true] a{background-color:var(--docsearch-highlight-color)}.DocSearch-Hit[aria-selected=true] mark{text-decoration:underline}.DocSearch-Hit-Container{align-items:center;color:var(--docsearch-hit-color);display:flex;flex-direction:row;height:var(--docsearch-hit-height);padding:0 var(--docsearch-spacing) 0 0}.DocSearch-Hit-icon{height:20px;width:20px}.DocSearch-Hit-action,.DocSearch-Hit-icon{color:var(--docsearch-muted-color);stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Hit-action{align-items:center;display:flex;height:22px;width:22px}.DocSearch-Hit-action svg{display:block;height:18px;width:18px}.DocSearch-Hit-action+.DocSearch-Hit-action{margin-left:6px}.DocSearch-Hit-action-button{appearance:none;background:none;border:0;border-radius:50%;color:inherit;cursor:pointer;padding:2px}svg.DocSearch-Hit-Select-Icon{display:none}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Select-Icon{display:block}.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:rgba(0,0,0,.2);transition:background-color .1s ease-in}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{transition:none}}.DocSearch-Hit-action-button:focus path,.DocSearch-Hit-action-button:hover path{fill:#fff}.DocSearch-Hit-content-wrapper{display:flex;flex:1 1 auto;flex-direction:column;font-weight:500;justify-content:center;line-height:1.2em;margin:0 8px;overflow-x:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap;width:80%}.DocSearch-Hit-title{font-size:.9em}.DocSearch-Hit-path{color:var(--docsearch-muted-color);font-size:.75em}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Tree,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-action,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-icon,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-path,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-text,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-title,.DocSearch-Hit[aria-selected=true] mark{color:var(--docsearch-hit-active-color)!important}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:rgba(0,0,0,.2);transition:none}}.DocSearch-ErrorScreen,.DocSearch-NoResults,.DocSearch-StartScreen{font-size:.9em;margin:0 auto;padding:36px 0;text-align:center;width:80%}.DocSearch-Screen-Icon{color:var(--docsearch-muted-color);padding-bottom:12px}.DocSearch-NoResults-Prefill-List{display:inline-block;padding-bottom:24px;text-align:left}.DocSearch-NoResults-Prefill-List ul{display:inline-block;padding:8px 0 0}.DocSearch-NoResults-Prefill-List li{list-style-position:inside;list-style-type:"» "}.DocSearch-Prefill{appearance:none;background:none;border:0;border-radius:1em;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;font-size:1em;font-weight:700;padding:0}.DocSearch-Prefill:focus,.DocSearch-Prefill:hover{outline:none;text-decoration:underline}.DocSearch-Footer{align-items:center;background:var(--docsearch-footer-background);border-radius:0 0 8px 8px;box-shadow:var(--docsearch-footer-shadow);display:flex;flex-direction:row-reverse;flex-shrink:0;height:var(--docsearch-footer-height);justify-content:space-between;padding:0 var(--docsearch-spacing);position:relative;user-select:none;width:100%;z-index:300}.DocSearch-Commands{color:var(--docsearch-muted-color);display:flex;list-style:none;margin:0;padding:0}.DocSearch-Commands li{align-items:center;display:flex}.DocSearch-Commands li:not(:last-of-type){margin-right:.8em}.DocSearch-Commands-Key{align-items:center;background:var(--docsearch-key-gradient);border:0;border-radius:2px;box-shadow:var(--docsearch-key-shadow);color:var(--docsearch-muted-color);display:flex;height:18px;justify-content:center;margin-right:.4em;padding:0 0 1px;width:20px}.DocSearch-VisuallyHiddenForAccessibility{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}@media (max-width:768px){:root{--docsearch-spacing:10px;--docsearch-footer-height:40px}.DocSearch-Dropdown{height:100%}.DocSearch-Container{height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);position:absolute}.DocSearch-Footer{border-radius:0;bottom:0;position:absolute}.DocSearch-Hit-content-wrapper{display:flex;position:relative;width:80%}.DocSearch-Modal{border-radius:0;box-shadow:none;height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);margin:0;max-width:100%;width:100%}.DocSearch-Dropdown{max-height:calc(var(--docsearch-vh, 1vh)*100 - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height))}.DocSearch-Cancel{appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;flex:none;font:inherit;font-size:1em;font-weight:500;margin-left:var(--docsearch-spacing);outline:none;overflow:hidden;padding:0;user-select:none;white-space:nowrap}.DocSearch-Commands,.DocSearch-Hit-Tree{display:none}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}
.VPNavBarSearch {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
@media (min-width: 768px) {
.VPNavBarSearch {
    flex-grow: 1;
}
}
.DocSearch {
  --docsearch-primary-color: var(--vt-c-brand);
  --docsearch-highlight-color: var(--docsearch-primary-color);
  --docsearch-text-color: var(--vt-c-text-1);
  --docsearch-muted-color: var(--vt-c-text-2);
  --docsearch-searchbox-shadow: none;
  --docsearch-searchbox-focus-background: transparent;
  --docsearch-key-gradient: transparent;
  --docsearch-key-shadow: none;
  --docsearch-modal-background: var(--vt-c-bg-soft);
  --docsearch-footer-background: var(--vt-c-bg);
}
.dark .DocSearch {
  --docsearch-modal-shadow: none;
  --docsearch-footer-shadow: none;
  --docsearch-logo-color: var(--vt-c-text-2);
  --docsearch-hit-background: var(--vt-c-bg-mute);
  --docsearch-hit-color: var(--vt-c-text-2);
  --docsearch-hit-shadow: none;
}
.dark .DocSearch-Footer {
  border-top: 1px solid var(--vt-c-divider);
}
.dark .DocSearch-Form {
  background-color: var(--vt-c-bg-mute);
}
.DocSearch-Form {
  background-color: white;
  border: 1px solid var(--vt-c-brand);
}
.DocSearch-Button-Container {
  align-items: center;
  display: flex;
}
.DocSearch-Button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 48px;
  height: 55px;
  background: transparent;
}
.DocSearch-Button:hover {
  background: transparent;
}
.DocSearch-Button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.DocSearch-Button:focus:not(:focus-visible) {
  outline: none !important;
}
@media (min-width: 768px) {
.DocSearch-Button {
    justify-content: flex-start;
    width: 100%;
}
}
.DocSearch-Button .DocSearch-Search-Icon {
  color: var(--vt-c-text-2);
  transition: color 0.5s;
  fill: currentColor;
  width: 18px;
  height: 18px;
  position: relative;
}
.DocSearch-Button:hover .DocSearch-Search-Icon {
  color: var(--vt-c-text-1);
}
@media (min-width: 768px) {
.DocSearch-Button .DocSearch-Search-Icon {
    top: 1px;
    margin-right: 10px;
    width: 15px;
    height: 15px;
}
}
.DocSearch-Button-Placeholder {
  transition: color 0.5s;
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  display: none;
  padding: 0 10px 0 0;
}
.DocSearch-Button:hover .DocSearch-Button-Placeholder {
  color: var(--vt-c-text-1);
}
@media (min-width: 960px) {
.DocSearch-Button-Placeholder {
    display: inline-block;
}
}
.DocSearch-Button .DocSearch-Button-Keys {
  display: none;
  gap: 2px;
  min-width: auto;
  box-sizing: border-box;
  border: 1px solid var(--vt-c-text-3);
  border-radius: 4px;
  padding: 0 6px;
  font-family: inherit;
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  font-weight: 500;
  transition:
    color 0.5s,
    border-color 0.5s;
}
.DocSearch-Button:hover .DocSearch-Button-Keys {
  border-color: var(--vt-c-brand-light);
}
@media (min-width: 768px) {
.DocSearch-Button .DocSearch-Button-Keys {
    display: flex;
}
}
.DocSearch-Button .DocSearch-Button-Key {
  width: auto;
  min-width: auto;
  font-family: inherit;
  font-size: 12px;
  height: 22px;
  padding: 0;
  margin: 0;
  color: var(--vt-c-text-3);
  transition: color 0.5s;
}
.DocSearch-Button:hover .DocSearch-Button-Key {
  color: var(--vt-c-brand-light);
}
.DocSearch-Button .DocSearch-Button-Key--pressed {
  box-shadow: none;
  transform: none;
}

.VPNavBarMenuLink[data-v-2c56dfea] {
  display: block;
  padding: 0 12px;
  line-height: calc(var(--vt-nav-height) - 1px);
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-c-text-1);
  transition: color 0.25s;
  white-space: nowrap;
}
.VPNavBarMenuLink.active[data-v-2c56dfea] {
  border-bottom: 1px solid var(--vt-c-brand);
}
.VPNavBarMenuLink[data-v-2c56dfea]:hover {
  color: var(--vt-c-brand);
}

.VPNavBarMenuGroup.active[data-v-8b111f06] {
  border-bottom: 2px solid var(--vt-c-brand);
  height: var(--vt-nav-height);
}

.vt-locales-menu-item[data-v-0f6a1f64] {
  padding-bottom: 0;
}

.vt-locales-btn-icon-container[data-v-86018a5c]::before,
.vt-locales-btn-icon-container[data-v-86018a5c]::after {
  width: 1px;
  height: 24px;
  background-color: var(--vt-c-divider-light);
  content: '';
}
.vt-locales-btn-icon-container[data-v-86018a5c]::before {
  margin-right: 4px;
}
.vt-locales-btn-icon-container[data-v-86018a5c]::after {
  margin-left: 4px;
}
.vt-menu-items[data-v-86018a5c] {
  padding: 0 14px;
}

.VPNavBarMenu[data-v-e50a5752] {
  display: none;
}
@media (min-width: 768px) {
.VPNavBarMenu[data-v-e50a5752] {
    display: flex;
}
}

.VPNavBarAppearance[data-v-266c1383] {
  display: none;
}
@media (min-width: 1280px) {
.VPNavBarAppearance[data-v-266c1383] {
    display: flex;
}
.VPNavBarAppearance[data-v-266c1383]::before,
  .VPNavBarAppearance[data-v-266c1383]::after {
    width: 1px;
    height: 24px;
    background-color: var(--vt-c-divider-light);
    content: '';
}
.VPNavBarAppearance[data-v-266c1383]::before {
    margin-right: 12px;
}
.VPNavBarAppearance[data-v-266c1383]::after {
    margin-left: 12px;
}
}

.VPNavBarSocialLinks[data-v-4b7dcefc] {
  display: none;
  margin-right: -10px;
}
@media (min-width: 1280px) {
.VPNavBarSocialLinks[data-v-4b7dcefc] {
    display: flex;
}
}

.VPNavBarExtra[data-v-4c35e6f8] {
  display: none;
}
@media (min-width: 768px) {
.VPNavBarExtra[data-v-4c35e6f8] {
    display: block;
}
}
@media (min-width: 1280px) {
.VPNavBarExtra[data-v-4c35e6f8] {
    display: none;
}
}
.item[data-v-4c35e6f8] {
  display: flex;
  align-items: center;
}
.action[data-v-4c35e6f8] {
  margin-right: -2px;
}
.social-links[data-v-4c35e6f8] {
  margin: -4px -8px;
}

.VPNavBarHamburger[data-v-39f8fb06] {
  width: 40px;
  height: var(--vt-nav-height);
}
@media (min-width: 768px) {
.VPNavBarHamburger[data-v-39f8fb06] {
    display: none;
}
}

.VPNavBar[data-v-9bdf6d49] {
  position: relative;
  border-bottom: 1px solid var(--vt-c-divider-light);
  padding: 0 12px 0 24px;
  height: var(--vt-nav-height);
  background-color: var(--vt-c-bg);
  white-space: nowrap;
  transition:
    border-color 0.5s,
    background-color 0.5s;
}
@media (min-width: 768px) {
.VPNavBar[data-v-9bdf6d49] {
    padding: 0 12px 0 32px;
}
}
@media (min-width: 1280px) {
.VPNavBar[data-v-9bdf6d49] {
    padding: 0 32px;
}
}
.container[data-v-9bdf6d49] {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--vp-screen-max-width);
  position: relative;
}
.content[data-v-9bdf6d49] {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.menu + .appearance[data-v-9bdf6d49] {
  margin-left: 8px;
}
.menu + .social-links[data-v-9bdf6d49] {
  margin-left: 12px;
}
.appearance + .social-links[data-v-9bdf6d49] {
  margin-left: 12px;
}

.VPNavScreenMenuLink[data-v-1a99c8a1] {
  display: block;
  border-bottom: 1px solid var(--vt-c-divider-light);
  padding: 12px 0 11px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vt-c-text-1);
  transition:
    border-color 0.5s,
    color 0.25s;
}
.VPNavScreenMenuLink[data-v-1a99c8a1]:hover {
  color: var(--vt-c-brand);
}

.VPNavScreenMenuGroupLink[data-v-30268bf5] {
  display: block;
  line-height: 32px;
  font-size: 13px;
  font-weight: 400;
  color: var(--vt-c-text-1);
  transition: color 0.25s;
  margin-left: 0.6em;
}
.VPNavScreenMenuGroupLink[data-v-30268bf5]:hover {
  color: var(--vt-c-brand);
}

.VPNavScreenMenuGroupSection[data-v-15a1a616] {
  display: block;
}
.title[data-v-15a1a616] {
  line-height: 32px;
  font-size: 11px;
  font-weight: 700;
  color: var(--vt-c-text-2);
  text-transform: uppercase;
  transition: color 0.25s;
}

.VPNavScreenMenuGroup[data-v-af415e45] {
  border-bottom: 1px solid var(--vt-c-divider-light);
  height: 48px;
  overflow: hidden;
  transition: border-color 0.5s;
}
.VPNavScreenMenuGroup .items[data-v-af415e45] {
  visibility: hidden;
}
.VPNavScreenMenuGroup.open .items[data-v-af415e45] {
  visibility: visible;
}
.VPNavScreenMenuGroup.open[data-v-af415e45] {
  padding-bottom: 10px;
  height: auto;
}
.VPNavScreenMenuGroup.open .button[data-v-af415e45] {
  padding-bottom: 6px;
  color: var(--vt-c-brand);
}
.VPNavScreenMenuGroup.open .button-icon[data-v-af415e45] {
  transform: rotate(45deg);
}
.button[data-v-af415e45] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 11px 0;
  width: 100%;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}
.button[data-v-af415e45]:hover {
  color: var(--vt-c-brand);
}
.button-icon[data-v-af415e45] {
  width: 14px;
  height: 14px;
  fill: var(--vt-c-text-2);
  transition:
    fill 0.5s,
    transform 0.25s;
}
.group[data-v-af415e45]:first-child {
  padding-top: 4px;
}
.group + .group[data-v-af415e45] {
  padding-top: 8px;
}
.group + .item[data-v-af415e45] {
  padding-top: 8px;
}

.VPNavScreenAppearance[data-v-4626d091] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 12px 14px 12px 16px;
  background-color: var(--vt-c-bg-soft);
  transition: background-color 0.5s;
}
.text[data-v-4626d091] {
  line-height: 24px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}

.VPNavBarLocaleScreen[data-v-edb7818d] {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 12px 14px 12px 16px;
  background-color: var(--vt-c-bg-soft);
  transition: background-color 0.5s;
  margin: 16px 0;
}
.title[data-v-edb7818d] {
  line-height: 24px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
  margin-bottom: 6px;
}

.VPNavScreen[data-v-45159f36] {
  position: fixed;
  top: calc(var(--vt-nav-height) + var(--vt-banner-height, 0px));
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 32px;
  width: 100%;
  background-color: var(--vt-c-bg);
  transition: background-color 0.5s;
  overflow-y: auto;
}
.VPNavScreen.fade-enter-active[data-v-45159f36],
.VPNavScreen.fade-leave-active[data-v-45159f36] {
  transition: opacity 0.25s;
}
.VPNavScreen.fade-enter-active .container[data-v-45159f36],
.VPNavScreen.fade-leave-active .container[data-v-45159f36] {
  transition: transform 0.25s ease;
}
.VPNavScreen.fade-enter-from[data-v-45159f36],
.VPNavScreen.fade-leave-to[data-v-45159f36] {
  opacity: 0;
}
.VPNavScreen.fade-enter-from .container[data-v-45159f36],
.VPNavScreen.fade-leave-to .container[data-v-45159f36] {
  transform: translateY(-8px);
}
@media (min-width: 768px) {
.VPNavScreen[data-v-45159f36] {
    display: none;
}
}
.container[data-v-45159f36] {
  margin: 0 auto;
  padding: 24px 0 96px;
  max-width: 288px;
}
.menu + .appearance[data-v-45159f36] {
  margin-top: 24px;
}
.menu + .social-links[data-v-45159f36] {
  margin-top: 16px;
}
.appearance + .social-links[data-v-45159f36] {
  margin-top: 12px;
}

.VPNav[data-v-44f6ebdb] {
  position: relative;
  top: 0;
  left: 0;
  z-index: var(--vp-z-index-nav);
}
@media (min-width: 960px) {
.VPNav[data-v-44f6ebdb] {
    position: fixed;
    top: var(--vt-banner-height, 0);
    width: 100%;
}
}

.root[data-v-23606873] {
  position: relative;
  z-index: 1;
}
.nested[data-v-23606873] {
  padding-left: 1em;
}
.outline-link[data-v-23606873] {
  color: var(--vt-c-text-2);
  transition: color 0.5s;
  line-height: 28px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.outline-link[data-v-23606873]:hover,
.outline-link.active[data-v-23606873] {
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}

.VPLocalNavOutlineDropdown[data-v-82760005] {
  padding: 12px 20px 11px;
}
.VPLocalNavOutlineDropdown button[data-v-82760005] {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
  position: relative;
}
.VPLocalNavOutlineDropdown button[data-v-82760005]:hover {
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}
.VPLocalNavOutlineDropdown button.open[data-v-82760005] {
  color: var(--vt-c-text-1);
}
.icon[data-v-82760005] {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  width: 14px;
  height: 14px;
  fill: currentColor;
}
[data-v-82760005] .outline-link {
  font-size: 14px;
  font-weight: 500;
  padding: 2px 0;
}
.open > .icon[data-v-82760005] {
  transform: rotate(90deg);
}
.items[data-v-82760005] {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 60px;
  background-color: var(--vt-c-bg);
  padding: 4px 20px 16px;
  border: 1px solid var(--vt-c-divider);
  border-radius: 8px;
  max-height: calc(var(--vt-vh, 100vh) - 86px);
  overflow: scroll;
  box-shadow: var(--vt-shadow-3);
}
.top-link[data-v-82760005] {
  display: block;
  color: var(--vt-c-brand);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 0;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--vt-c-divider);
}
.flyout-enter-active[data-v-82760005] {
  transition: all 0.2s ease-out;
}
.flyout-leave-active[data-v-82760005] {
  transition: all 0.15s ease-in;
}
.flyout-enter-from[data-v-82760005],
.flyout-leave-to[data-v-82760005] {
  opacity: 0;
  transform: translateY(-16px);
}

.VPLocalNav[data-v-941900d7] {
  position: sticky;
  top: var(--vt-banner-height, 0px);
  left: 0;
  z-index: var(--vp-z-index-local-nav);
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--vt-c-divider-light);
  background-color: var(--vt-c-bg);
  transition:
    border-color 0.5s,
    background-color 0.5s;
}
@media (min-width: 960px) {
.VPLocalNav[data-v-941900d7] {
    display: none;
}
}
.menu[data-v-941900d7] {
  display: flex;
  align-items: center;
  padding: 0 24px;
  line-height: 47px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}
.menu[data-v-941900d7]:hover {
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}
@media (min-width: 768px) {
.menu[data-v-941900d7] {
    padding: 0 32px;
}
}
.menu-icon[data-v-941900d7] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.top-link[data-v-941900d7] {
  padding: 0 24px;
  line-height: 47px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}
.top-link[data-v-941900d7]:hover {
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}
@media (min-width: 768px) {
.top-link[data-v-941900d7] {
    padding: 0 32px;
}
}

.VPSkipLink[data-v-332b5a46] {
  top: 0.25rem;
  left: 0.25rem;
  padding: 0.65rem 1.5rem;
  z-index: 999;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  color: var(--vt-c-green);
  box-shadow: var(--vt-shadow-3);
  background-color: var(--vt-c-bg);
  border-radius: 8px;
}
.dark .VPSkipLink[data-v-332b5a46] {
  color: var(--vt-c-green);
}
.VPSkipLink[data-v-332b5a46]:focus {
  height: auto;
  width: auto;
  clip: auto;
  clip-path: none;
}

.link[data-v-1c9a74da] {
  display: block;
  padding: 6px 0;
}
@media (min-width: 960px) {
.link[data-v-1c9a74da] {
    padding: 4px 0;
}
}
.link:hover .link-text[data-v-1c9a74da] {
  color: var(--vt-c-brand-text-1);
  transition: color 0.25s;
}
.link.active .link-text[data-v-1c9a74da] {
  font-weight: 600;
  color: var(--vt-c-brand);
  transition: color 0.25s;
}
.link-text[data-v-1c9a74da] {
  line-height: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
}

.title[data-v-2c12497f] {
  padding: 6px 0;
}
@media (min-width: 960px) {
.title[data-v-2c12497f] {
    padding: 4px 0;
}
}
.title-text[data-v-2c12497f] {
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-c-text-1);
  transition: color 0.5s;
}

.VPSidebar[data-v-98b467d8] {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: var(--vp-z-index-sidebar);
  padding: 0 32px 96px;
  width: calc(100vw - 64px);
  max-width: var(--vp-sidebar-width-mobile);
  opacity: 0;
  background-color: var(--vt-c-bg);
  box-shadow: var(--vt-c-shadow-3);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-100%);
  transition:
    background-color 0.5s,
    opacity 0.5s,
    transform 0.3s ease;
  /* -ms-overflow-style: none; */
  /* scrollbar-width: none; */
}
#VPSidebarNav[data-v-98b467d8] {
  padding-top: 24px;
  outline: 0;
}

/* .VPSidebar::-webkit-scrollbar {
  display: none;
} */
@media (min-width: 960px) {
.VPSidebar[data-v-98b467d8] {
    top: calc(var(--vt-nav-height) + var(--vt-banner-height, 0px));
    z-index: 1;
    border-right: 1px solid var(--vt-c-divider-light);
    width: var(--vp-sidebar-width-small);
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0);
    transition:
      border-color 0.5s,
      background-color 0.5s;
}
}
@media (min-width: 1440px) {
.VPSidebar[data-v-98b467d8] {
    padding: 0 32px 96px calc((100% - var(--vp-screen-max-width)) / 2);
    width: calc((100% - var(--vp-screen-max-width)) / 2 + var(--vp-sidebar-width-small));
}
}
.VPSidebar.open[data-v-98b467d8] {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    background-color 0.5s,
    opacity 0.25s,
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.dark .VPSidebar[data-v-98b467d8] {
  box-shadow: var(--vt-shadow-1);
}
.group + .group[data-v-98b467d8] {
  padding-top: 24px;
}
@media (min-width: 960px) {
.group + .group[data-v-98b467d8] {
    padding-top: 16px;
}
}

.VPFooter[data-v-ad664b31] {
  border-top: 1px solid var(--vt-c-bg-soft);
  padding: 20px 21px 21px;
  background-color: var(--vt-c-bg-soft);
  transition:
    border-top 0.5s,
    background-color 0.5s;
}
.dark .VPFooter[data-v-ad664b31] {
  border-top: 1px solid var(--vt-c-divider-light);
  background-color: var(--vt-c-bg);
}
.license[data-v-ad664b31],
.copyright[data-v-ad664b31] {
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-c-text-2);
  transition: color 0.25s;
}
.link[data-v-ad664b31] {
  color: var(--vt-c-text-1);
  transition: color 0.25s;
}
.link[data-v-ad664b31]:hover {
  color: var(--vt-c-text-2);
}

.VPContentDocOutline[data-v-9ceeef97] {
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.outline-title[data-v-9ceeef97] {
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
}
.outline-marker[data-v-9ceeef97] {
  opacity: 0;
  position: absolute;
  background-color: var(--vt-c-green);
  border-radius: 4px;
  width: 4px;
  height: 20px;
  top: 32px;
  left: -12px;
  z-index: 0;
  transition:
    top 0.25s cubic-bezier(0, 1, 0.5, 1),
    opacity 0.25s,
    background-color 0.5s;
}

.VPContentDocFooter[data-v-6eced129] {
  border-top: 1px solid var(--vt-c-divider-light);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}
a[data-v-6eced129] {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  max-width: 48%;
}
.desc[data-v-6eced129] {
  font-size: 11px;
  color: var(--vt-c-text-2);
  display: block;
}
.title[data-v-6eced129] {
  color: var(--vt-c-brand);
  transition: color 0.25s;
}
a:hover .title[data-v-6eced129] {
  color: var(--vt-c-brand-highlight);
}
.next-link[data-v-6eced129] {
  margin-left: auto;
  text-align: right;
}
.vt-link-icon[data-v-6eced129] {
  margin: -2px 0 0;
  vertical-align: middle;
}

.VPCarbonAds {
  margin: 28px 0;
  padding: 20px 24px;
  background-color: var(--vt-c-bg-soft);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--vt-c-text-2);
  text-align: center;
  transition:
    color 0.5s,
    background-color 0.5s;
}
.VPCarbonAds img {
  margin: 0 auto 12px;
  border-radius: 4px;
}
.VPCarbonAds .carbon-poweredby {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  transition: color 0.5s;
  color: var(--vt-c-text-3);
  font-size: 10px;
}

.VPContentDoc[data-v-3c14429c] {
  padding: 32px 24px 96px;
}
.vt-doc[data-v-3c14429c] {
  margin-bottom: 54px;
}
.content[data-v-3c14429c] {
  margin: 0 auto;
  max-width: 688px;
  position: relative;
}
.aside[data-v-3c14429c] {
  position: relative;
  display: none;
  flex-shrink: 0;
  padding-left: 64px;
  width: 476px;
}
.aside-container[data-v-3c14429c] {
  position: sticky;
  width: 380px;
  top: calc(var(--vt-nav-height) + var(--vt-banner-height, 0px) + 54px);
  bottom: 0;
}
.aside-container[data-v-3c14429c]::-webkit-scrollbar {
  display: none;
}
.edit-link[data-v-3c14429c] {
  margin: 0 0 32px;
  /* text-align: center; */
}
.edit-link .vt-link[data-v-3c14429c] {
  font-size: 14px;
  color: var(--vt-c-brand);
  font-weight: 500;
}
.vt-icon[data-v-3c14429c] {
  width: 18px;
  height: 18px;
  color: var(--vt-c-brand);
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
@media (min-width: 768px) {
.VPContentDoc[data-v-3c14429c] {
    padding: 48px 32px 96px;
}
}
@media (min-width: 960px) {
.VPContentDoc[data-v-3c14429c] {
    padding: 54px 64px 96px;
}
}
@media (min-width: 1280px) {
.VPContentDoc[data-v-3c14429c] {
    padding: 54px 0 96px 64px;
}
.VPContentDoc[data-v-3c14429c]:not(.has-sidebar.has-aside) {
    padding-left: calc((100vw - 688px) / 2);
}
.VPContentDoc.has-aside[data-v-3c14429c]:not(.has-sidebar) {
    padding-left: calc((100vw - 688px - 320px) / 2);
}
.container[data-v-3c14429c] {
    display: flex;
}
.content[data-v-3c14429c] {
    min-width: 620px;
    margin: 0;
    order: 1;
}
.VPContentDoc:not(.has-aside) .content[data-v-3c14429c] {
    min-width: 688px;
}
.aside[data-v-3c14429c] {
    display: block;
    order: 2;
}
}
@media (min-width: 1440px) {
.VPContentDoc[data-v-3c14429c] {
    padding: 54px 0 96px 96px;
}
.aside[data-v-3c14429c] {
    padding-left: 96px;
}
}

.vt-doc[data-v-396d2a1d] {
  padding: 32px 48px;
  background-color: var(--vt-c-bg-soft);
  margin: 32px;
  border-radius: 8px;
}
.not-found-path[data-v-396d2a1d] {
  font-family: var(--vt-font-family-mono);
  color: var(--vt-c-text-code);
}

@media (max-width: 768px) {
.VPContent[data-v-dc508de5] {
    overflow-x: hidden;
}
}
@media (min-width: 960px) {
.VPContent[data-v-dc508de5] {
    padding-top: var(--vt-nav-height);
}
.VPContent.has-sidebar[data-v-dc508de5] {
    padding-left: var(--vp-sidebar-width-small);
}
}
@media (min-width: 1440px) {
.VPContent.has-sidebar[data-v-dc508de5] {
    padding-left: calc((100vw - var(--vp-screen-max-width)) / 2 + var(--vp-sidebar-width-small));
}
}

.VPApp[data-v-a80a3646] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--vt-c-bg);
  transition: background-color 0.5s;
  padding-top: var(--vt-banner-height);
}
.backdrop[data-v-a80a3646] {
  z-index: var(--vp-z-index-backdrop);
}

.giscus-container[data-v-ef4dee6e] {
  margin-top: 2rem;
  width: 100%;
}
.vp-code-group {
  margin-top: 16px;
}

.vp-code-group .tabs {
  position: relative;
  display: flex;
  margin-right: -24px;
  margin-left: -24px;
  padding: 0 12px;
  background-color: var(--vp-code-tab-bg);
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: inset 0 -1px var(--vp-code-tab-divider);
}

@media (min-width: 640px) {
  .vp-code-group .tabs {
    margin-right: 0;
    margin-left: 0;
    border-radius: 8px 8px 0 0;
  }
}

.vp-code-group .tabs input {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.vp-code-group .tabs label {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding: 0 12px;
  line-height: 48px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-code-tab-text-color);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s;
}

.vp-code-group .tabs label::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  z-index: 1;
  height: 2px;
  border-radius: 2px;
  content: '';
  background-color: transparent;
  transition: background-color 0.25s;
}

.vp-code-group label:hover {
  color: var(--vp-code-tab-hover-text-color);
}

.vp-code-group input:checked + label {
  color: var(--vp-code-tab-active-text-color);
}

.vp-code-group input:checked + label::after {
  background-color: var(--vp-code-tab-active-bar-color);
}

.vp-code-group div[class*='language-'],
.vp-block {
  display: none;
  margin-top: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.vp-code-group div[class*='language-'].active,
.vp-block.active {
  display: block;
}

.vp-block {
  padding: 20px 24px;
}

.bash-explorer[data-v-29986da7] {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: var(--vt-font-family-base);
}

/* 系统切换器样式 */
.top-controls[data-v-29986da7] {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.system-toggle[data-v-29986da7] {
  display: flex;
  background-color: var(--vt-c-bg-soft);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--vt-c-divider-light);
}
.system-toggle button[data-v-29986da7] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--vt-c-text-2);
}
.system-toggle button.active[data-v-29986da7] {
  background-color: var(--vt-c-bg);
  color: var(--vt-c-brand);
  box-shadow: var(--vt-shadow-1);
}

/* 搜索框样式 */
.search-section[data-v-29986da7] {
  margin-bottom: 20px;
}
.search-input-wrapper[data-v-29986da7] {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--vt-c-bg-soft);
  border: 2px solid var(--vt-c-divider);
  border-radius: 12px;
  padding: 16px 24px;
  transition: all 0.3s;
}
.search-input-wrapper[data-v-29986da7]:focus-within {
  border-color: var(--vt-c-brand);
  background-color: var(--vt-c-bg);
  box-shadow: 0 0 0 4px rgba(66, 184, 131, 0.1);
}
.prefix[data-v-29986da7] {
  font-family: var(--vt-font-family-mono);
  font-weight: 700;
  color: var(--vt-c-brand);
  font-size: 24px;
  margin-right: 15px;
  user-select: none;
}
input[data-v-29986da7] {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--vt-c-text-1);
  font-family: var(--vt-font-family-mono);
}
input[data-v-29986da7]:focus {
  outline: none;
}
.search-hint[data-v-29986da7] {
  position: absolute;
  right: 24px;
  font-size: 12px;
  color: var(--vt-c-text-3);
  pointer-events: none;
}

/* 结果列表样式 */
.results-container[data-v-29986da7] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cmd-item[data-v-29986da7] {
  background-color: var(--vt-c-bg-soft);
  border: 1px solid var(--vt-c-divider-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}
.cmd-header[data-v-29986da7] {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.title-row[data-v-29986da7] {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.name[data-v-29986da7] {
  font-size: 20px;
  font-weight: 700;
  color: var(--vt-c-text-1);
  font-family: var(--vt-font-family-mono);
}
.desc[data-v-29986da7] {
  font-size: 14px;
  color: var(--vt-c-text-2);
}
.preview-row[data-v-29986da7] {
  background-color: var(--vt-c-black-soft);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid transparent;
}
.preview-row[data-v-29986da7]:hover {
  border-color: var(--vt-c-brand);
}
.preview-row code[data-v-29986da7] {
  color: #42d392;
  font-family: var(--vt-font-family-mono);
  font-size: 14px;
}
.copy-hint[data-v-29986da7] {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
}

/* 二级抽屉样式 */
.options-drawer[data-v-29986da7] {
  background-color: var(--vt-c-bg-mute);
  padding: 16px 20px;
  border-top: 1px solid var(--vt-c-divider-light);
}
.drawer-title[data-v-29986da7] {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vt-c-text-3);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.options-tags[data-v-29986da7] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-tag[data-v-29986da7] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--vt-c-bg);
  border: 1px solid var(--vt-c-divider);
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}
.option-tag[data-v-29986da7]:hover:not(.disabled) {
  border-color: var(--vt-c-brand);
}
.option-tag.selected[data-v-29986da7] {
  background-color: var(--vt-c-brand);
  border-color: var(--vt-c-brand);
  color: white;
}
.option-tag.selected .flag[data-v-29986da7] {
  color: white;
}
.option-tag .flag[data-v-29986da7] {
  font-family: var(--vt-font-family-mono);
  font-weight: 700;
  color: var(--vt-c-brand);
}
.option-tag.disabled[data-v-29986da7] {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: transparent;
}
.empty-state[data-v-29986da7], .initial-state[data-v-29986da7] {
  padding: 60px;
  text-align: center;
  color: var(--vt-c-text-3);
}
.hint-card[data-v-29986da7] {
  background-color: var(--vt-c-bg-soft);
  padding: 30px;
  border-radius: 16px;
  border: 1px dashed var(--vt-c-divider);
}
.hint-card h3[data-v-29986da7] {
  margin-top: 0;
  color: var(--vt-c-text-1);
}
@media (max-width: 768px) {
.title-row[data-v-29986da7] { flex-direction: column; gap: 4px;
}
.preview-row code[data-v-29986da7] { font-size: 12px;
}
}

/* Define GitHub-like colors for contribution levels */
:root {
  /* Light mode defaults */
  --color-contrib-text: #24292f;
  --color-legend-text: rgba(36, 41, 47, 0.7);
  --color-contrib-level-0: #ebedf0;
  --color-contrib-level-1: #9be9a8;
  --color-contrib-level-2: #40c463;
  --color-contrib-level-3: #30a14e;
  --color-contrib-level-4: #216e39;
}
html.dark {
  /* Dark mode overrides */
  --color-contrib-text: #c9d1d9;
  --color-legend-text: rgba(201, 209, 217, 0.7);
  --color-contrib-level-0: #222830;
  --color-contrib-level-1: #0e4429;
  --color-contrib-level-2: #006d32;
  --color-contrib-level-3: #26a641;
  --color-contrib-level-4: #39d353;
}
.contribution-grid-wrapper {
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 68, 77, 0.5) transparent;
}
.contribution-grid-wrapper::-webkit-scrollbar {
  height: 10px;
}
.contribution-grid-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.contribution-grid-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(61, 68, 77, 0.5);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.15s ease;
}
.contribution-grid-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(61, 68, 77, 0.7);
}
html.dark .contribution-grid-wrapper {
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
html.dark .contribution-grid-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.25);
}
html.dark .contribution-grid-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.45);
}
.contribution-grid-wrapper::-webkit-scrollbar-track-piece {
  background: transparent;
}

.contribution-calendar[data-v-0fa2d541] * {
  transition:
    color 0.5s,
    background-color 0.5s;
}
.error-message[data-v-0fa2d541] {
  color: var(--vt-c-text-1);
  margin-top: 20px;
  font-size: 12px;
}
.contribution-calendar[data-v-0fa2d541] {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.contribution-grid-wrapper[data-v-0fa2d541] {
  overflow-x: auto;
}
.contribution-grid[data-v-0fa2d541] {
  border-collapse: separate;
  border-spacing: 3px;
  min-width: max-content;
}
.contribution-grid thead[data-v-0fa2d541] {
  font-size: 12px;
  color: var(--color-contrib-text);
  position: relative;
  top: 5px;
}
.month-header[data-v-0fa2d541] {
  font-weight: normal;
  text-align: left;
  padding-bottom: 0;
  white-space: nowrap;
}
.weekday-spacer[data-v-0fa2d541],
.weekday-label[data-v-0fa2d541] {
  display: table-cell;
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: var(--vt-c-bg);
  box-shadow: 3px 0 0 0 var(--vp-c-bg-soft);
}
.weekday-label[data-v-0fa2d541] {
  font-size: 12px;
  color: var(--color-contrib-text);
  font-weight: normal;
  text-align: left;
  padding-right: 1px;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
}
.contribution-cell[data-v-0fa2d541] {
  width: 14px;
  height: 14px;
  padding: 0;
  background-color: var(--color-contrib-level-0);
  border-radius: 3px;
  outline: 2px solid transparent;
}
.contribution-grid .contribution-cell[data-v-0fa2d541]:not(.contribution-cell-empty):hover {
  outline-color: rgba(0, 0, 0, 0.2);
}
html.dark .contribution-grid .contribution-cell[data-v-0fa2d541]:not(.contribution-cell-empty):hover {
  outline-color: rgba(255, 255, 255, 0.4);
}
.contribution-cell.contribution-cell-empty[data-v-0fa2d541] {
  background-color: transparent;
}
.cell-link[data-v-0fa2d541] {
  display: block;
  width: 100%;
  height: 100%;
}
.contrib-level-0[data-v-0fa2d541] {
  background-color: var(--color-contrib-level-0);
}
.contrib-level-1[data-v-0fa2d541] {
  background-color: var(--color-contrib-level-1);
}
.contrib-level-2[data-v-0fa2d541] {
  background-color: var(--color-contrib-level-2);
}
.contrib-level-3[data-v-0fa2d541] {
  background-color: var(--color-contrib-level-3);
}
.contrib-level-4[data-v-0fa2d541] {
  background-color: var(--color-contrib-level-4);
}
.calendar-footer[data-v-0fa2d541] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 4px 0 0 0;
  font-size: 12px;
  gap: 8px;
}
.legend[data-v-0fa2d541] {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.legend-label[data-v-0fa2d541] {
  color: var(--color-legend-text);
  margin: 0 4px;
  white-space: nowrap;
}
.legend-colors[data-v-0fa2d541] {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3px;
}
.legend-colors li[data-v-0fa2d541] {
  width: 14px;
  height: 14px;
}
.footer-link[data-v-0fa2d541] {
  color: var(--color-legend-text);
  text-decoration: none;
  text-align: left;
}
.footer-link[data-v-0fa2d541]:hover {
  color: var(--vt-c-green);
  text-decoration: underline;
}
.contribution-tooltip[data-v-0fa2d541] {
  position: absolute;
  padding: 8px 12px;
  background-color: var(--vt-c-bg-soft);
  color: var(--color-contrib-text);
  border-radius: 6px;
  font-size: 14px;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-100%) translateY(-8px);
  box-sizing: border-box;
}
.contribution-tooltip[data-v-0fa2d541]::after {
  content: '';
  position: absolute;
  top: 100%; /* Position arrow at the bottom of the tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--vt-c-bg-soft) transparent transparent transparent; /* Arrow pointing downwards */
}

#sitemap {
  background: var(--vt-c-bg-soft);
}
#sitemap .container {
  max-width: 900px;
  margin: 0 auto;
  columns: 1;
  padding: 24px 32px;
}
@media (min-width: 768px) {
#sitemap .container {
    columns: 2;
}
}
@media (min-width: 1024px) {
#sitemap .container {
    columns: 3;
}
}
#sitemap h4 {
  font-weight: 500;
  color: var(--vt-c-text-1);
  margin-bottom: 0.25em;
}
.sitemap-col {
  margin-bottom: 2em;
  break-inside: avoid;
}
#sitemap .vt-link {
  font-size: 0.9em;
  color: var(--vt-c-text-2);
}

.formatted-time[data-v-aacaf786] {
  font-size: 0.8em;
  color: var(--vt-c-text-2);
}

section[data-v-0ff49c7e] {
  padding: 42px 32px;
}
#time-tag[data-v-0ff49c7e] {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  padding: 0 12px 0 24px;
}
@media (min-width: 768px) {
#time-tag[data-v-0ff49c7e] {
    padding: 0 12px 0 32px;
}
}
@media (min-width: 1280px) {
#time-tag[data-v-0ff49c7e] {
    padding: 0 32px;
}
}

/* Inner container: handles max-width, centering, and flex layout for content */
.time-tag-content[data-v-0ff49c7e] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--vp-screen-max-width);
}
#hero[data-v-0ff49c7e] {
  padding-top: 72px;
  position: relative;
  text-align: center;
}
.tagline[data-v-0ff49c7e] {
  font-size: 56px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -1.5px;
  max-width: 960px;
  margin: 0 auto;
}
html:not(.dark) .accent[data-v-0ff49c7e],
.dark .tagline[data-v-0ff49c7e] {
  background: -webkit-linear-gradient(315deg, #42d392 25%, #647eff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.description[data-v-0ff49c7e] {
  max-width: 960px;
  line-height: 1.5;
  color: var(--vt-c-text-2);
  transition: color 0.5s;
  font-size: 22px;
  margin: 24px auto 40px;
}
.actions a[data-v-0ff49c7e] {
  font-size: 16px;
  display: inline-block;
  background-color: var(--vt-c-bg-mute);
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 8px;
  transition:
    background-color 0.5s,
    color 0.5s;
}
.actions .get-started[data-v-0ff49c7e],
.actions .setup[data-v-0ff49c7e] {
  margin-right: 18px;
}
.actions .icon[data-v-0ff49c7e] {
  display: inline;
  position: relative;
  top: -1px;
  margin-left: 2px;
  fill: currentColor;
  transition: transform 0.2s;
}
.actions .get-started[data-v-0ff49c7e]:hover {
  transition-duration: 0.2s;
}
.actions .get-started:hover .icon[data-v-0ff49c7e] {
  transform: translateX(2px);
}
.actions .get-started[data-v-0ff49c7e],
.actions .setup[data-v-0ff49c7e] {
  color: var(--vt-c-text-code);
}
.actions .get-started[data-v-0ff49c7e]:hover,
.actions .setup[data-v-0ff49c7e]:hover {
  background-color: var(--vt-c-gray-light-4);
  transition-duration: 0.2s;
}
.dark .actions .get-started[data-v-0ff49c7e]:hover,
.dark .actions .setup[data-v-0ff49c7e]:hover {
  background-color: var(--vt-c-gray-dark-3);
}
.actions .get-started[data-v-0ff49c7e] {
  font-size: 16px;
  display: inline-block;
  border-radius: 8px;
  transition:
    background-color 0.5s,
    color 0.5s;
  position: relative;
  font-weight: 600;
  background-color: var(--vt-c-green);
  color: #fff;
  margin-right: 18px;
  padding: 8px 1em;
}
.dark .actions .get-started[data-v-0ff49c7e] {
  color: var(--vt-c-indigo);
}
.actions .get-started[data-v-0ff49c7e]:hover {
  background-color: var(--vt-c-green-dark);
  transition-duration: 0.2s;
}
.dark .actions .get-started[data-v-0ff49c7e]:hover {
  background-color: var(--vt-c-green-light);
}
#highlights[data-v-0ff49c7e] {
  max-width: 960px;
  margin: 0px auto;
  color: var(--vt-c-text-2);
}
#highlights h2[data-v-0ff49c7e] {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--vt-c-text-1);
  transition: color 0.5s;
  margin-bottom: 0.75em;
}
#highlights p[data-v-0ff49c7e] {
  font-weight: 400;
  font-size: 15px;
}
#highlights .vt-box[data-v-0ff49c7e] {
  background-color: transparent;
}
#sponsors[data-v-0ff49c7e] {
  max-width: 900px;
  margin: 0px auto;
}
#sponsors h2[data-v-0ff49c7e] {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1em;
}
@media (max-width: 960px) {
.tagline[data-v-0ff49c7e] {
    font-size: 64px;
    letter-spacing: -0.5px;
}
.description[data-v-0ff49c7e] {
    font-size: 18px;
    margin-bottom: 48px;
}
}
@media (max-width: 768px) {
.tagline[data-v-0ff49c7e] {
    font-size: 48px;
    letter-spacing: -0.5px;
}
}
@media (max-width: 576px) {
.description[data-v-0ff49c7e] {
    font-size: 16px;
    margin: 18px 0 30px;
}
#highlights h2[data-v-0ff49c7e] {
    margin-bottom: 0.6em;
}
#highlights .vt-box[data-v-0ff49c7e] {
    padding: 20px 36px;
}
.actions a[data-v-0ff49c7e] {
    margin: 18px 0;
}
}
@media (max-width: 370px) {
.tagline[data-v-0ff49c7e] {
    font-size: 36px;
}
}
#contribution-chart[data-v-0ff49c7e] {
  text-align: center;
}
#contribution-chart h2[data-v-0ff49c7e] {
  color: var(--vt-c-text-1);
  transition: color 0.5s;
  margin-bottom: 0.75em;
  font-size: 20px;
  font-weight: 600;
}

.project-index[data-v-9c9898f1] {
  padding: 40px 20px;
  max-width: 970px;
  margin: 0 auto;
}
.hero[data-v-9c9898f1] {
  text-align: center;
  padding: 48px 0;
}
.title[data-v-9c9898f1] {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(315deg, #42d392 25%, #647eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.tagline[data-v-9c9898f1] {
  font-size: 20px;
  color: var(--vt-c-text-2);
  margin: 24px auto 0;
  max-width: 700px;
}
#demo[data-v-9c9898f1] {
  text-align: center;
  display: block;
  justify-content: center;
  background-color: inherit;
}
#demo h2[data-v-9c9898f1] {
  color: var(--vt-c-text-1);
  transition: color 0.5s;
  margin-bottom: 0.75em;
  font-size: 20px;
  font-weight: 600;
}
.features[data-v-9c9898f1] {
  padding: 58px 58px;
  border-bottom: 1px solid var(--vt-c-divider-light);
}
.grid[data-v-9c9898f1] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.item h2[data-v-9c9898f1] {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--vt-c-brand);
  border: none;
  padding: 0;
}
.item p[data-v-9c9898f1] {
  color: var(--vt-c-text-2);
  line-height: 1.6;
}
.action-section[data-v-9c9898f1] {
  text-align: center;
  margin-top: 30px;
}

/* Base button styles */
.action-button[data-v-9c9898f1],
.github-repo[data-v-9c9898f1] {
  font-size: 16px;
  display: inline-block;
  border-radius: 24px;
  transition: background-color 0.5s, color 0.5s;
  position: relative;
  font-weight: 600;
  padding: 8px 18px;
  text-decoration: none;
}
.action-button[data-v-9c9898f1] {
  background-color: var(--vt-c-green);
  color: #fff;
  margin-right: 18px;
}
.dark .action-button[data-v-9c9898f1] {
  color: var(--vt-c-indigo);
}
.action-button[data-v-9c9898f1]:hover {
  background-color: var(--vt-c-green-dark);
  transition-duration: 0.2s;
}
.dark .action-button[data-v-9c9898f1]:hover {
  background-color: var(--vt-c-green-light);
}
.github-repo[data-v-9c9898f1] {
  font-weight: 500;
  background: linear-gradient(var(--vt-c-bg-mute), var(--vt-c-bg-mute)) padding-box,
              linear-gradient(45deg, #42d392, #647eff) border-box;
  border: 2px solid transparent;
  color: var(--vt-c-text-code);
}
.github-repo[data-v-9c9898f1]:hover {
  background: linear-gradient(var(--vt-c-gray-light-4), var(--vt-c-gray-light-4)) padding-box,
              linear-gradient(45deg, #42d392, #647eff) border-box;
  transition-duration: 0.2s;
}
.dark .github-repo[data-v-9c9898f1]:hover {
  background: linear-gradient(var(--vt-c-gray-dark-3), var(--vt-c-gray-dark-3)) padding-box,
              linear-gradient(45deg, #42d392, #647eff) border-box;
}
.action-button .icon[data-v-9c9898f1],
.github-repo .icon[data-v-9c9898f1] {
  display: inline;
  position: relative;
  top: -1px;
  margin-left: 2px;
  fill: currentColor;
  transition: transform 0.2s;
}
.github-repo .icon[data-v-9c9898f1] {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.action-button:hover .icon[data-v-9c9898f1] {
  transform: translateX(2px);
}
@media (max-width: 768px) {
.title[data-v-9c9898f1] {
    font-size: 40px;
}
.tagline[data-v-9c9898f1] {
    font-size: 18px;
}
.action-button[data-v-9c9898f1] {
    margin-right: 18px;
}
}

.icon-showcase[data-v-4fc69175] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.icon-wrapper[data-v-4fc69175] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--vt-c-divider);
  border-radius: 8px;
}
.icon-wrapper[data-v-4fc69175] svg {
  width: 24px;
  height: 24px;
  color: var(--vt-c-text-1);
}
.icon-name[data-v-4fc69175] {
  font-size: 12px;
  color: var(--vt-c-text-2);
}
