@font-face {
  font-family: "Rubik";
  src: url("Rubik.ttf") format("truetype");
}
@font-face {
  font-family: "Fira Code";
  src: url("FiraCode.ttf") format("truetype");
}
:root {
  --black-rgb: 0, 0, 0;
  --black-hover-rgb: 10, 10, 10;
  --black-pressed-rgb: 0, 0, 0;
  --black-text-rgb: 255, 255, 255;
  --black-transparent-button-rgb: 0, 0, 0;
  --blue-rgb: 72, 92, 176;
  --blue-hover-rgb: 82, 102, 186;
  --blue-pressed-rgb: 62, 82, 166;
  --blue-text-rgb: 255, 255, 255;
  --blue-transparent-button-rgb: 72, 92, 176;
  --yellow-rgb: 243, 215, 75;
  --yellow-hover-rgb: 253, 225, 85;
  --yellow-pressed-rgb: 233, 205, 65;
  --yellow-text-rgb: 0, 0, 0;
  --yellow-transparent-button-rgb: 143, 115, 0;
  --red-rgb: 179, 39, 26;
  --red-hover-rgb: 189, 49, 36;
  --red-pressed-rgb: 169, 29, 16;
  --red-text-rgb: 255, 255, 255;
  --red-transparent-button-rgb: 179, 39, 26;
  --primary-rgb: 72, 92, 176;
  --primary-hover-rgb: 82, 102, 186;
  --primary-pressed-rgb: 62, 82, 166;
  --primary-text-rgb: 255, 255, 255;
  --primary-transparent-button-rgb: 72, 92, 176;
  --bg-rgb: 255, 255, 255;
  --text-rgb: 0, 0, 0;
  --muted-rgb: 68, 68, 68;
  --border-rgb: 221, 221, 221;
  --hover-rgb: 238, 238, 238;
  --pressed-rgb: 221, 221, 221;
  --code-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.turbolinks-progress-bar {
  height: 0.25rem;
  background-color: rgb(var(--primary-rgb));
}

html {
  width: 100%;
  height: 100%;
  font-family: Rubik, sans-serif;
  background: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
  font-feature-settings: "liga" 0;
  font-variant-ligatures: none;
}

html.dark {
  --black-rgb: 255, 255, 255;
  --black-hover-rgb: 245, 245, 245;
  --black-pressed-rgb: 255, 255, 255;
  --black-text-rgb: 0, 0, 0;
  --black-transparent-button-rgb: 255, 255, 255;
  --blue-text-rgb: 0, 0, 0;
  --red-text-rgb: 0, 0, 0;
  --bg-rgb: 0, 0, 0;
  --text-rgb: 255, 255, 255;
  --muted-rgb: 153, 153, 153;
  --border-rgb: 34, 34, 34;
  --hover-rgb: 24, 24, 24;
  --pressed-rgb: 31, 31, 31;
  --code-shadow: 0 0 0 1px #333;
}

html.dark img:not(.no-dark-shadow), html.dark svg:not(.no-dark-shadow) {
  filter: drop-shadow(0 0 1px white);
}

button {
  font-family: Rubik, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
}

pre, code {
  font-family: "Fira Code", monospace !important;
  font-weight: 500;
}

a {
  color: rgb(var(--text-rgb));
}

subject, .XDocsTextSubject {
  color: #485cb0;
  font-weight: 500;
}

keyword, .XDocsTextKeyword {
  color: #c678dd;
  font-weight: 500;
}

html.mobile [data-hidden-on-mobile=true] {
  display: none;
}

.XDocsPage {
  width: 100%;
  min-height: 100%;
  display: flex;
}
.XDocsPage .XDocsPageNavigation {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background: rgb(var(--bg-rgb));
  border-right: 1px solid rgb(var(--border-rgb));
  scrollbar-width: thin;
}
html.mobile .XDocsPage .XDocsPageNavigation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-right: none;
}

.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem:not(:first-child) {
  position: sticky;
  top: 89.91px;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationHead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(var(--bg-rgb));
  border-bottom: 1px solid rgb(var(--border-rgb));
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationHead .XDocsPageNavigationHeadLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationHead .XDocsPageNavigationHeadLogo img {
  width: 50px;
  height: 50px;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooterWrapperSpaceBefore {
  min-height: 7.5rem;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooterWrapper {
  margin-top: auto;
  position: sticky;
  z-index: 11;
  right: 0;
  bottom: 0;
  left: 0;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter {
  position: relative;
  width: 320px;
  min-height: 2.5rem;
  background: rgb(var(--bg-rgb));
  color: rgb(var(--muted-rgb));
  border-top: 1px solid rgb(var(--border-rgb));
  border-right: 1px solid rgb(var(--border-rgb));
  display: flex;
  align-items: center;
  justify-content: center;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter a {
  display: flex;
  align-items: center;
  justify-content: center;
}
html.mobile .XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter {
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-right: none;
}

.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterConfigButton {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  background-color: rgb(var(--bg-rgb));
  color: rgb(var(--muted-rgb));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterConfigButton svg {
  height: 1rem;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterConfigButton:hover {
  background-color: rgb(var(--hover-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterConfigButton:active {
  background-color: rgb(var(--pressed-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterTeoButton {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  background-color: rgb(var(--bg-rgb));
  color: rgb(var(--muted-rgb));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterTeoButton svg {
  height: 0.8rem;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterTeoButton:hover {
  background-color: rgb(var(--hover-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationFooter .XDocsPageNavigationFooterTeoButton:active {
  background-color: rgb(var(--pressed-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem {
  z-index: 9;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  background: rgb(var(--bg-rgb));
  text-decoration: none;
  border: none;
  border-bottom: 1px solid rgb(var(--border-rgb));
  font-size: 1rem;
  cursor: pointer;
  color: rgb(var(--text-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem .XDocsPageNavigationItemArrow {
  margin-left: auto;
  margin-right: 0.33rem;
  height: 1em;
  width: 1em;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem:hover {
  background: rgb(var(--hover-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem:active {
  background: rgb(var(--pressed-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem.active {
  font-weight: 500;
  background: rgb(var(--primary-rgb));
  color: rgb(var(--primary-text-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationItem.sticky {
  position: sticky;
  top: 89.91px;
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  background: rgb(var(--bg-rgb));
  text-decoration: none;
  border-bottom: 1px solid rgb(var(--border-rgb));
  cursor: pointer;
  color: rgb(var(--text-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem:hover {
  background: rgb(var(--hover-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem:active {
  background: rgb(var(--pressed-rgb));
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem:first-child {
  box-shadow: inset 0 11px 8px -10px rgba(51, 51, 51, 0.1019607843);
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem:last-child {
  box-shadow: inset 0 -11px 8px -10px rgba(51, 51, 51, 0.1019607843);
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem:only-child {
  box-shadow: inset 0 11px 8px -10px rgba(51, 51, 51, 0.1019607843), inset 0 -11px 8px -10px rgba(51, 51, 51, 0.1019607843);
}
.XDocsPage .XDocsPageNavigation .XDocsPageNavigationSubmenu .XDocsPageNavigationSubmenuItem.active {
  font-weight: 500;
  background: rgb(var(--primary-rgb));
  color: rgb(var(--primary-text-rgb));
}
.XDocsPage .XDocsPageNavigation [data-navigation-item-expanded=true] .XDocsPageNavigationItemArrow {
  transform: rotate(180deg);
}
.XDocsPage .XDocsPageNavigation [data-navigation-submenu-shown=false] {
  display: none;
}
.XDocsPage .XDocsPageMobileNavigationToggle {
  position: fixed;
  z-index: 12;
  top: 1rem;
  left: 1rem;
  height: 60px;
  width: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: rgba(var(--bg-rgb), 0.5);
  border: none;
  border-radius: 2px;
  background-image: radial-gradient(transparent 1px, rgb(var(--bg-rgb)) 1px);
  background-size: 4px 4px;
  backdrop-filter: saturate(50%) blur(4px);
  color: rgb(var(--text-rgb));
}
html.mobile .XDocsPage .XDocsPageMobileNavigationToggle {
  display: flex;
}

.XDocsPage .XDocsPageMobileNavigationToggle svg {
  width: 26px;
  height: 26px;
}
.XDocsPage .XDocsPageMobileNavigationToggle:not(.active) [data-close-icon=true] {
  display: none;
}
.XDocsPage .XDocsPageMobileNavigationToggle.active [data-menu-icon=true] {
  display: none;
}
.XDocsPage .XDocsPageContent {
  max-width: 1066px;
  width: 100%;
  margin: 3rem auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0 3rem;
  padding-top: 0;
  padding-left: calc(320px + 3rem);
  padding-bottom: 4rem;
}
html.mobile .XDocsPage .XDocsPageContent {
  margin-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.XDocsPage .XDocsPageContent .XDocsPageIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.XDocsPage .XDocsPageContent h1 {
  text-align: center;
}
.XDocsPage .XDocsPageContent .XDocsPageContentBcFw {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.XDocsPage .XDocsPageContent .XDocsPageContentBcFw a {
  background-color: rgb(var(--bg-rgb));
  border: 1px solid rgb(var(--border-rgb));
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: rgb(var(--text-rgb));
}
.XDocsPage .XDocsPageContent .XDocsPageContentBcFw a:hover {
  background-color: rgb(var(--hover-rgb));
}
.XDocsPage .XDocsPageContent .XDocsPageContentBcFw a:active {
  background-color: rgb(var(--pressed-rgb));
}
.XDocsPage .XDocsPageContent .XDocsPageContentBcFw a[data-is-next=true] {
  margin-left: auto;
}

code:not(.hljs) {
  padding: 0.1rem 0.5rem;
  background-color: black;
  color: white;
  border-radius: 1rem;
  font-size: 0.9rem;
  box-sizing: border-box;
  font-family: "Fira Code", monospace;
  box-shadow: var(--code-shadow);
}

.hljs {
  background-color: black !important;
}
.hljs::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
}
.hljs::-webkit-scrollbar-track {
  background: black;
}
.hljs::-webkit-scrollbar-thumb {
  background: #5c6370;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
}
.hljs::-webkit-scrollbar-thumb:hover {
  background: #abb2bf;
}

.XDocsCodeChinaWrapper {
  position: relative;
}

.XDocsCodeChina {
  position: absolute;
  width: 80%;
  left: 50%;
  top: -50%;
  transform: translate(-50%, 0%);
  z-index: -1;
  opacity: 0.05;
  user-select: none;
}
html.mobile .XDocsCodeChina {
  top: -25%;
  width: 125%;
  max-width: 500px;
}

html.dark .XDocsCodeChina {
  opacity: 0.1;
  filter: drop-shadow(0 0 2px white);
}

.XDocsCodeImages {
  bottom: -0.125rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.XDocsCodeImages img {
  height: 1rem;
  z-index: -1;
}
.XDocsCodeImages img:nth-child(5) {
  height: 2rem;
}
.XDocsCodeImages.bottom {
  top: -0.125rem;
  bottom: unset;
  transform: rotate(180deg);
  filter: grayscale(1);
}
html.mobile .XDocsCodeImages {
  margin-left: -2rem;
  margin-right: -2rem;
}
html.mobile .XDocsCodeImages img {
  height: 0.75rem;
}
html.mobile .XDocsCodeImages img:nth-child(5) {
  height: 1.25rem;
}

.XDocsCodeWrapper {
  position: relative;
  z-index: 1;
  background: black;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: var(--code-shadow);
}
html.mobile .XDocsCodeWrapper {
  margin-left: -2rem;
  margin-right: -2rem;
  border-radius: 0;
  padding: 0.5rem 1rem;
}

.XDocsCodeWrapper pre {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table th, table td {
  padding: 0.5rem;
  border: 1px solid rgb(var(--border-rgb));
}
table th {
  background: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
  font-weight: 500;
}
table td {
  background: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
}
table tr:nth-child(odd) {
  background: rgb(var(--hover-rgb));
}
table tr:nth-child(even) {
  background: rgb(var(--bg-rgb));
}
table tr:hover {
  background: rgb(var(--hover-rgb));
}
table tr:active {
  background: rgb(var(--pressed-rgb));
}
table a {
  color: rgb(var(--text-rgb));
  text-decoration: none;
  font-weight: 500;
}
table a:hover {
  text-decoration: underline;
}
table a:active {
  color: rgb(var(--text-rgb));
}
table img {
  max-width: 100%;
  height: auto;
}

blockquote {
  background: rgba(var(--blue-rgb), 0.125);
  border-left: 0.25rem solid rgb(var(--blue-rgb));
  padding: 0.25rem 1rem;
  margin: 1rem 0;
}

hr {
  border: none;
  border-top: 2px dashed rgb(var(--border-rgb));
  margin: 2rem 0;
}
hr.table {
  border: none;
  border-top: 1px solid rgb(var(--border-rgb));
  margin: 0.5rem 0;
}

.XDocsPageNavigationSearch button {
  z-index: 9;
  padding: 0.5rem 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgb(var(--bg-rgb));
  text-decoration: none;
  border: none;
  border-bottom: 1px solid rgb(var(--border-rgb));
  font-size: 1rem;
  cursor: pointer;
  color: rgb(var(--muted-rgb));
}
.XDocsPageNavigationSearch button:hover {
  background: rgb(var(--hover-rgb));
}
.XDocsPageNavigationSearch button:active {
  background: rgb(var(--pressed-rgb));
}
.XDocsPageNavigationSearch iframe {
  display: none;
}

.XDocsSearchWrapper {
  position: fixed;
  z-index: 2001;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--bg-rgb), 0.5);
  padding: 1rem;
}
.XDocsSearchWrapper .XDocsSearchContainer {
  max-width: 500px;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
  box-shadow: var(--code-shadow);
  border-radius: 1rem;
  overflow: hidden;
}
.XDocsSearchWrapper .XDocsSearchContainer input {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  padding: 0 1rem;
  border: none;
  border-bottom: 1px solid rgb(var(--border-rgb));
  outline: none;
  font-family: Rubik, sans-serif;
  background-color: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
}
.XDocsSearchWrapper .XDocsSearchContainer input::placeholder {
  color: rgb(var(--muted-rgb));
}

.XDocsSearchResults {
  display: block;
  overflow-y: auto;
  max-height: 300px;
}
.XDocsSearchResults.empty {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(var(--muted-rgb));
}
.XDocsSearchResults a + a {
  border-top: 1px solid rgb(var(--border-rgb));
}
.XDocsSearchResults a {
  background-color: rgb(var(--bg-rgb));
  color: rgb(var(--text-rgb));
  height: 3rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  text-decoration: none;
  outline: none;
}
.XDocsSearchResults a:focus {
  background-color: rgb(var(--hover-rgb));
}
.XDocsSearchResults a:hover {
  background-color: rgb(var(--hover-rgb));
}
.XDocsSearchResults a:active {
  background-color: rgb(var(--pressed-rgb));
}
.XDocsSearchResults a:last-child {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.XDocsPageContentComments {
  border-top: 2px dashed rgb(var(--border-rgb));
  margin: 2rem 0;
  padding-top: 1.5rem;
}

details + details {
  margin-top: 1rem;
}

details {
  border: 1px solid rgb(var(--border-rgb));
  padding: 1rem;
}

summary {
  cursor: pointer;
}

li + li {
  margin-top: 0.5rem;
}

/*# sourceMappingURL=%D1%82%D0%B5%D0%BC%D0%B0.css.map */
