@media screen {
:root:not([data-r-output-format='print']):not([data-r-theme-variant='my-custom-variant']):not([data-r-theme-variant='neon']),
:root:not([data-r-output-format='print'])[data-r-theme-variant='neon'] {
&:root {
  /* neon */
  --PRIMARY-color: rgba(243, 0, 178, 1); /* brand primary color */
  --SECONDARY-color: rgb(50, 189, 243, 1); /* brand secondary color */
  --ACCENT-color:  rgba(255,62, 194); /* brand accent color, used for search highlights */

  --MAIN-TEXT-color: rgba(224, 224, 224, 1); /* text color of content and h1 titles */
  --MAIN-LINK-HOVER-color: rgb(80, 215, 255, 1); /* hovered link color of content */
  --MAIN-BG-color: rgba(16, 16, 16, 1); /* background color of content */

  /* optional overwrites for specific headers */
  --MAIN-TITLES-TEXT-color: rgba(243, 0, 178, 1); /* text color of h2-h6 titles and transparent box titles */
  --MAIN-TITLES-H3-TEXT-color: rgba(255, 255, 0, 1); /* text color of h3-h6 titles */
  --MAIN-TITLES-H4-TEXT-color: rgba(154, 111, 255, 1); /* text color of h4-h6 titles */

  --CODE-theme: neon; /* name of the chroma stylesheet file */
  --CODE-BLOCK-color: rgba(248, 248, 242, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
  --CODE-BLOCK-BG-color: rgba(0, 0, 0, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
  --CODE-INLINE-color: rgba(130, 229, 80, 1); /* text color of inline code */
  --CODE-INLINE-BG-color: rgba(40, 42, 54, 1); /* background color of inline code */
  --CODE-INLINE-BORDER-color: rgba(70, 70, 70, 1); /* border color of inline code */

  --BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
  --MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
  --OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
  --OPENAPI-CODE-theme: tomorrow-night; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */

  --MENU-HEADER-color: rgba(255, 255, 255, 1); /* color of menu header */
  --MENU-HEADER-BG-color: rgba(0, 0, 0, 0); /* background color of menu header */

  --MENU-SEARCH-color: rgba(248, 248, 248, 1); /* text and icon color of search box */
  --MENU-SEARCH-BG-color: rgba(16, 16, 16, 0.6); /* background color of search box */
  --MENU-SEARCH-BORDER-color: rgba(232, 232, 232, 1); /* border color of search box */

  --MENU-HOME-LINK-color: rgba(255, 255, 255, 1); /* home button color if configured */
  --MENU-HOME-LINK-HOVER-color: rgba(208, 208, 208, 1); /* hovered home button color if configured */
  --MENU-HOME-TOP-SEPARATOR-color: var(--MENU-HEADER-BG-color); /* separator color between menu search box and home menu */

  --MENU-SECTIONS-BG-color: linear-gradient(165deg, rgba(243, 0, 178, 0.825) 0%, rgba(28, 144, 243, 0.7) 65%, rgba(0, 227, 211, 0.7) 100%); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
  --MENU-SECTIONS-ACTIVE-BG-color: rgba(0, 0, 0, 0.166); /* background color of the active menu section */
  --MENU-SECTIONS-LINK-color: rgba(255, 255, 255, 1); /* link color of menu topics */
  --MENU-SECTIONS-LINK-HOVER-color: rgba(208, 208, 208, 1); /* hovered link color of menu topics */
  --MENU-SECTION-ACTIVE-CATEGORY-color: rgba(86, 255, 232, 1); /* text color of the displayed menu topic */
  --MENU-SECTION-SEPARATOR-color: rgba(186, 186, 186, 1); /* separator color between menu sections and menu footer */

  --MENU-VISITED-color: rgba(51, 161, 255, 1); /* icon color of visited menu topics if configured */

  /* base styling for boxes */
  --BOX-CAPTION-color: rgba(240, 240, 240, 1); /* text color of colored box titles */
  --BOX-BG-color: rgba(8, 8, 8, 1); /* background color of colored boxes */
  --BOX-TEXT-color: initial; /* text color of colored box content */

  /* optional base colors for colored boxes as in badges, buttons, notice, etc. shortcode */
  --BOX-BLUE-color: rgba(48, 117, 229, 1); /* background color of blue boxes */
  --BOX-BLUE-TEXT-color: var(--BOX-BLUE-color); /* text color of blue boxes */
  --BOX-CYAN-color: rgba(30, 190, 190, 1); /* background color of cyan boxes */
  --BOX-CYAN-TEXT-color: var(--BOX-CYAN-color); /* text color of cyan boxes */
  --BOX-GREEN-color: rgba(42, 178, 24, 1); /* background color of green boxes */
  --BOX-GREEN-TEXT-color: var(--BOX-GREEN-color); /* text color of green boxes */
  --BOX-GREY-color: rgba(128, 128, 128, 1); /* background color of grey boxes */
  --BOX-GREY-TEXT-color: var(--BOX-GREY-color); /* text color of grey boxes */
  --BOX-MAGENTA-color: rgba(237, 33, 220, 1); /* background color of magenta boxes */
  --BOX-MAGENTA-TEXT-color: var(--BOX-MAGENTA-color); /* text color of magenta boxes */
  --BOX-ORANGE-color: rgba(237, 153, 9, 1); /* background color of orange boxes */
  --BOX-ORANGE-TEXT-color: var(--BOX-ORANGE-color); /* text color of orange boxes */
  --BOX-RED-color: rgba(224, 62, 62, 1); /* background color of red boxes */
  --BOX-RED-TEXT-color: var(--BOX-RED-color); /* text color of red boxes */
}

body a#R-logo {
  text-shadow:
    0 0 1px var(--INTERNAL-MENU-SEARCH-BORDER-color),
    0 0 2px var(--INTERNAL-MENU-SEARCH-BORDER-color),
    0 0 4px var(--INTERNAL-MENU-SEARCH-BORDER-color),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
    0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
}

body h1,
body h1 * {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 4px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 3px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
    0 0 6px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color);
}

body h2,
body h2 * {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
    0 0 10px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
}

body h3,
body h3 *,
body .article-subheading {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
    0 0 10px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
}

body h4,
body h4 * {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
    0 0 10px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
}

body h5,
body h5 * {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 3px rgba(255, 255, 255, 1),
    0 0 6px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
}

body h6,
body h6 * {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 4px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color),
    0 0 8px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color);
}

body h1 a,
body h2 a,
body h3 a,
body h4 a,
body h5 a,
body h6 a,
body [id] > button.anchor i {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MAIN-LINK-color),
    0 0 8px var(--INTERNAL-MAIN-LINK-color),
    0 0 10px var(--INTERNAL-MAIN-LINK-color);
}

.swagger-ui h1,
.swagger-ui h2,
.swagger-ui h3,
.swagger-ui h4,
.swagger-ui h5,
.swagger-ui h6 {
  color: rgba(255, 255, 255, 1) !important;
}

body #R-sidebar .searchbox button:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MENU-SEARCH-color),
    0 0 8px var(--INTERNAL-MENU-SEARCH-color);
}

body #R-sidebar select:hover,
body #R-sidebar .collapsible-menu li:not(.active) > label:hover,
body #R-sidebar .menu-control:hover,
body #R-sidebar a:hover,
body #R-homelinks button:hover,
body #R-content-wrapper button:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
    0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
}

body #R-sidebar li.active > label,
body #R-sidebar li.active > :is(a, span) {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color),
    0 0 8px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color);
}

body #R-homelinks select:hover,
body #R-homelinks :is(.collapsible-menu, :not(.collapsible-menu)) li:not(.active) > label:hover,
body #R-homelinks .menu-control:hover,
body #R-homelinks :is(.collapsible-menu, :not(.collapsible-menu)) a:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(128, 128, 128, 1),
    0 0 4px var(--INTERNAL-MENU-HOME-LINK-HOVER-color),
    0 0 8px var(--INTERNAL-MENU-HOME-LINK-HOVER-color);
}

body #R-homelinks li.active > label,
body #R-homelinks li.active > :is(a, span) {
  color: var(--INTERNAL-MENU-HOME-LINK-color);
  text-shadow: none;
}

body .badge,
body .btn,
body .box:not(.cstyle.transparent) {
  box-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 4px rgba(128, 128, 128, 1),
    0 0 4px var(--VARIABLE-BOX-color);
}

body .badge > .badge-content,
body .btn,
body .btn > *,
body .box:not(.cstyle.transparent) > .box-label {
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 4px rgba(128, 128, 128, 1),
    0 0 4px var(--VARIABLE-BOX-CAPTION-color);
}

body .tab-panel-cstyle:not(.transparent),
body .badge.cstyle:not(.transparent),
body .btn.cstyle {
  --VARIABLE-BOX-TEXT-color: var(--VARIABLE-BOX-CAPTION-color);
}

body .badge.cstyle.transparent,
body .btn.cstyle.transparent {
  --VARIABLE-BOX-BG-color: var(--INTERNAL-BOX-BG-color);
}

body .btn.cstyle.transparent > * {
  border-color: var(--VARIABLE-BOX-color);
  color: var(--VARIABLE-BOX-CAPTION-color);
}

body .btn.cstyle.interactive.transparent > *:hover,
body .btn.cstyle.interactive.transparent > *:active,
body .btn.cstyle.interactive.transparent > *:focus {
  background-color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
  color: var(--INTERNAL-MAIN-TEXT-color);
}

body .box.cstyle.transparent {
  box-shadow: none;
}

#R-content-wrapper {
  --ps-thumb-color: rgba(208, 208, 208, 1);
  --ps-thumb-hover-color: rgba(204, 204, 204, 1);
}

/* based on rrt */
/* Background */ .bg { color: #f8f8f2; background-color: #000000; }
/* PreWrapper */ .chroma { color: #f8f8f2; background-color: #000000; }
/* Other */ .chroma .x {  }
/* Error */ .chroma .err {  }
/* CodeLine */ .chroma .cl {  }
/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .chroma .hl { background-color: #363638 }
/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7c7c79 }
/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7c7c79 }
/* Line */ .chroma .line { display: flex; }
/* Keyword */ .chroma .k { color: #ff0000 }
/* KeywordConstant */ .chroma .kc { color: #ff0000 }
/* KeywordDeclaration */ .chroma .kd { color: #ff0000 }
/* KeywordNamespace */ .chroma .kn { color: #ff0000 }
/* KeywordPseudo */ .chroma .kp { color: #ff0000 }
/* KeywordReserved */ .chroma .kr { color: #ff0000 }
/* KeywordType */ .chroma .kt { color: #ee82ee }
/* Name */ .chroma .n {  }
/* NameAttribute */ .chroma .na {  }
/* NameBuiltin */ .chroma .nb {  }
/* NameBuiltinPseudo */ .chroma .bp {  }
/* NameClass */ .chroma .nc {  }
/* NameConstant */ .chroma .no { color: #7fffd4 }
/* NameDecorator */ .chroma .nd {  }
/* NameEntity */ .chroma .ni {  }
/* NameException */ .chroma .ne {  }
/* NameFunction */ .chroma .nf { color: #ffd700 }
/* NameFunctionMagic */ .chroma .fm {  }
/* NameLabel */ .chroma .nl {  }
/* NameNamespace */ .chroma .nn {  }
/* NameOther */ .chroma .nx {  }
/* NameProperty */ .chroma .py {  }
/* NameTag */ .chroma .nt {  }
/* NameVariable */ .chroma .nv { color: #eedd82 }
/* NameVariableClass */ .chroma .vc {  }
/* NameVariableGlobal */ .chroma .vg {  }
/* NameVariableInstance */ .chroma .vi {  }
/* NameVariableMagic */ .chroma .vm {  }
/* Literal */ .chroma .l {  }
/* LiteralDate */ .chroma .ld {  }
/* LiteralString */ .chroma .s { color: #87ceeb }
/* LiteralStringAffix */ .chroma .sa { color: #87ceeb }
/* LiteralStringBacktick */ .chroma .sb { color: #87ceeb }
/* LiteralStringChar */ .chroma .sc { color: #87ceeb }
/* LiteralStringDelimiter */ .chroma .dl { color: #87ceeb }
/* LiteralStringDoc */ .chroma .sd { color: #87ceeb }
/* LiteralStringDouble */ .chroma .s2 { color: #87ceeb }
/* LiteralStringEscape */ .chroma .se { color: #87ceeb }
/* LiteralStringHeredoc */ .chroma .sh { color: #87ceeb }
/* LiteralStringInterpol */ .chroma .si { color: #87ceeb }
/* LiteralStringOther */ .chroma .sx { color: #87ceeb }
/* LiteralStringRegex */ .chroma .sr { color: #87ceeb }
/* LiteralStringSingle */ .chroma .s1 { color: #87ceeb }
/* LiteralStringSymbol */ .chroma .ss { color: #ff6600 }
/* LiteralNumber */ .chroma .m { color: #ff6600 }
/* LiteralNumberBin */ .chroma .mb { color: #ff6600 }
/* LiteralNumberFloat */ .chroma .mf { color: #ff6600 }
/* LiteralNumberHex */ .chroma .mh { color: #ff6600 }
/* LiteralNumberInteger */ .chroma .mi { color: #ff6600 }
/* LiteralNumberIntegerLong */ .chroma .il { color: #ff6600 }
/* LiteralNumberOct */ .chroma .mo { color: #ff6600 }
/* Operator */ .chroma .o {  }
/* OperatorWord */ .chroma .ow {  }
/* Punctuation */ .chroma .p {  }
/* Comment */ .chroma .c { color: #00ff00 }
/* CommentHashbang */ .chroma .ch { color: #00ff00 }
/* CommentMultiline */ .chroma .cm { color: #00ff00 }
/* CommentSingle */ .chroma .c1 { color: #00ff00 }
/* CommentSpecial */ .chroma .cs { color: #00ff00 }
/* CommentPreproc */ .chroma .cp { color: #e5e5e5 }
/* CommentPreprocFile */ .chroma .cpf { color: #e5e5e5 }
/* Generic */ .chroma .g {  }
/* GenericDeleted */ .chroma .gd {  }
/* GenericEmph */ .chroma .ge {  }
/* GenericError */ .chroma .gr {  }
/* GenericHeading */ .chroma .gh {  }
/* GenericInserted */ .chroma .gi {  }
/* GenericOutput */ .chroma .go {  }
/* GenericPrompt */ .chroma .gp {  }
/* GenericStrong */ .chroma .gs {  }
/* GenericSubheading */ .chroma .gu {  }
/* GenericTraceback */ .chroma .gt {  }
/* GenericUnderline */ .chroma .gl {  }
/* TextWhitespace */ .chroma .w {  }

}
}
@media print {
&:root {
  /* relearn-light */
  --PRIMARY-color: rgba(125, 201, 3, 1); /* brand primary color */
  --SECONDARY-color: rgba(72, 106, 201, 1); /* brand secondary color */
  --ACCENT-color: rgba(243, 0, 178, 1); /* brand accent color, used for search highlights */

  --MAIN-TEXT-color: rgba(0, 0, 0, 1); /* text color of content and h1 titles */
  --MAIN-LINK-HOVER-color: rgba(32, 40, 145, 1); /* hovered link color of content */
  --MAIN-BG-color: rgba(255, 255, 255, 1); /* background color of content */
  --MAIN-TITLES-TEXT-color: rgba(16, 16, 16, 1); /* text color of h2-h6 titles and transparent box titles */

  --CODE-theme: relearn-light; /* name of the chroma stylesheet file */
  --CODE-BLOCK-color: rgba(39, 40, 34, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
  --CODE-BLOCK-BG-color: rgba(250, 250, 250, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
  --CODE-BLOCK-BORDER-color: rgba(216, 216, 216, 1); /* border color of block code */
  --CODE-INLINE-color: rgba(94, 94, 94, 1); /* text color of inline code */
  --CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* background color of inline code */
  --CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* border color of inline code */

  --BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
  --MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
  --OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
  --OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */

  --MENU-HEADER-color: rgba(40, 40, 40, 1); /* color of menu header */

  --MENU-SEARCH-color: rgba(224, 224, 224, 1); /* text and icon color of search box */
  --MENU-SEARCH-BG-color: rgba(50, 50, 50, 1); /* background color of search box */
  --MENU-SEARCH-BORDER-color: rgba(224, 224, 224, 1); /* border color of search box */

  --MENU-HOME-LINK-color: rgba(64, 64, 64, 1); /* home button color if configured */
  --MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* hovered home button color if configured */

  --MENU-SECTIONS-BG-color: rgba(40, 40, 40, 1); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
  --MENU-SECTIONS-ACTIVE-BG-color: rgba(0, 0, 0, 0.166); /* background color of the active menu section */
  --MENU-SECTIONS-LINK-color: rgba(186, 186, 186, 1); /* link color of menu topics */
  --MENU-SECTIONS-LINK-HOVER-color: rgba(255, 255, 255, 1); /* hovered link color of menu topics */
  --MENU-SECTION-ACTIVE-CATEGORY-color: rgba(68, 68, 68, 1); /* text color of the displayed menu topic */
  --MENU-SECTION-SEPARATOR-color: rgba(96, 96, 96, 1); /* separator color between menu sections and menu footer */

  --BOX-CAPTION-color: rgba(255, 255, 255, 1); /* text color of colored box titles */
  --BOX-BG-color: rgba(255, 255, 255, 0.833); /* background color of colored boxes */
  --BOX-TEXT-color: rgba(16, 16, 16, 1); /* text color of colored box content */
}

/* based on monokailight */
/* Background */ .bg { color: #272822; background-color: #fafafa; }
/* PreWrapper */ .chroma { color: #272822; background-color: #fafafa; }
/* Other */ .chroma .x {  }
/* Error */ .chroma .err { color: #960050; }
/* CodeLine */ .chroma .cl {  }
/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .chroma .hl { background-color: #e1e1e1 }
/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .chroma .line { display: flex; }
/* Keyword */ .chroma .k { color: #00a8c8 }
/* KeywordConstant */ .chroma .kc { color: #00a8c8 }
/* KeywordDeclaration */ .chroma .kd { color: #00a8c8 }
/* KeywordNamespace */ .chroma .kn { color: #f92672 }
/* KeywordPseudo */ .chroma .kp { color: #00a8c8 }
/* KeywordReserved */ .chroma .kr { color: #00a8c8 }
/* KeywordType */ .chroma .kt { color: #00a8c8 }
/* Name */ .chroma .n { color: #111111 }
/* NameAttribute */ .chroma .na { color: #75af00 }
/* NameBuiltin */ .chroma .nb { color: #111111 }
/* NameBuiltinPseudo */ .chroma .bp { color: #111111 }
/* NameClass */ .chroma .nc { color: #75af00 }
/* NameConstant */ .chroma .no { color: #00a8c8 }
/* NameDecorator */ .chroma .nd { color: #75af00 }
/* NameEntity */ .chroma .ni { color: #111111 }
/* NameException */ .chroma .ne { color: #75af00 }
/* NameFunction */ .chroma .nf { color: #75af00 }
/* NameFunctionMagic */ .chroma .fm { color: #111111 }
/* NameLabel */ .chroma .nl { color: #111111 }
/* NameNamespace */ .chroma .nn { color: #111111 }
/* NameOther */ .chroma .nx { color: #75af00 }
/* NameProperty */ .chroma .py { color: #111111 }
/* NameTag */ .chroma .nt { color: #f92672 }
/* NameVariable */ .chroma .nv { color: #111111 }
/* NameVariableClass */ .chroma .vc { color: #111111 }
/* NameVariableGlobal */ .chroma .vg { color: #111111 }
/* NameVariableInstance */ .chroma .vi { color: #111111 }
/* NameVariableMagic */ .chroma .vm { color: #111111 }
/* Literal */ .chroma .l { color: #ae81ff }
/* LiteralDate */ .chroma .ld { color: #d88200 }
/* LiteralString */ .chroma .s { color: #d88200 }
/* LiteralStringAffix */ .chroma .sa { color: #d88200 }
/* LiteralStringBacktick */ .chroma .sb { color: #d88200 }
/* LiteralStringChar */ .chroma .sc { color: #d88200 }
/* LiteralStringDelimiter */ .chroma .dl { color: #d88200 }
/* LiteralStringDoc */ .chroma .sd { color: #d88200 }
/* LiteralStringDouble */ .chroma .s2 { color: #d88200 }
/* LiteralStringEscape */ .chroma .se { color: #8045ff }
/* LiteralStringHeredoc */ .chroma .sh { color: #d88200 }
/* LiteralStringInterpol */ .chroma .si { color: #d88200 }
/* LiteralStringOther */ .chroma .sx { color: #d88200 }
/* LiteralStringRegex */ .chroma .sr { color: #d88200 }
/* LiteralStringSingle */ .chroma .s1 { color: #d88200 }
/* LiteralStringSymbol */ .chroma .ss { color: #d88200 }
/* LiteralNumber */ .chroma .m { color: #ae81ff }
/* LiteralNumberBin */ .chroma .mb { color: #ae81ff }
/* LiteralNumberFloat */ .chroma .mf { color: #ae81ff }
/* LiteralNumberHex */ .chroma .mh { color: #ae81ff }
/* LiteralNumberInteger */ .chroma .mi { color: #ae81ff }
/* LiteralNumberIntegerLong */ .chroma .il { color: #ae81ff }
/* LiteralNumberOct */ .chroma .mo { color: #ae81ff }
/* Operator */ .chroma .o { color: #f92672 }
/* OperatorWord */ .chroma .ow { color: #f92672 }
/* Punctuation */ .chroma .p { color: #111111 }
/* Comment */ .chroma .c { color: #a7a187 }
/* CommentHashbang */ .chroma .ch { color: #a7a187 }
/* CommentMultiline */ .chroma .cm { color: #a7a187 }
/* CommentSingle */ .chroma .c1 { color: #a7a187 }
/* CommentSpecial */ .chroma .cs { color: #a7a187 }
/* CommentPreproc */ .chroma .cp { color: #a7a187 }
/* CommentPreprocFile */ .chroma .cpf { color: #a7a187 }
/* Generic */ .chroma .g {  }
/* GenericDeleted */ .chroma .gd {  }
/* GenericEmph */ .chroma .ge { font-style: italic }
/* GenericError */ .chroma .gr {  }
/* GenericHeading */ .chroma .gh {  }
/* GenericInserted */ .chroma .gi {  }
/* GenericOutput */ .chroma .go {  }
/* GenericPrompt */ .chroma .gp {  }
/* GenericStrong */ .chroma .gs { font-weight: bold }
/* GenericSubheading */ .chroma .gu {  }
/* GenericTraceback */ .chroma .gt {  }
/* GenericUnderline */ .chroma .gl {  }
/* TextWhitespace */ .chroma .w {  }

}
@media print {
#R-sidebar {
  display: none;
}
#R-body {
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}
#R-body #navigation {
  display: none;
}
html {
  font-size: 8.763pt;
}
body {
  background-color: rgba(255, 255, 255, 1);
}
pre:not(.mermaid) {
  border: 1px solid rgba(204, 204, 204, 1);
}
#R-body #R-topbar {
  background-color: rgba(255, 255, 255, 1); /* avoid background bleeding*/
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  border-radius: 0;
  color: rgba(119, 119, 119, 1);
  padding-left: 0; /* for print, we want to align with the footer to ease the layout */
  padding-right: 0;
}
#R-body .topbar-button {
  /* we don't need the buttons while printing */
  /* we need !important to turn off JS topbar button handling setting element styles */
  display: none !important;
}
@media screen and (max-width: 47.999rem) {
  #R-body .topbar-breadcrumbs {
    visibility: visible;
  }
}

code.copy-to-clipboard-code:after,
.inline-copy-to-clipboard-button,
.block-copy-to-clipboard-button {
  display: none;
}

#R-body .svg-reset-button {
  display: none;
}

#R-body h1,
#R-body h2,
#R-body h3,
#R-body .article-subheading,
#R-body h4,
#R-body h5,
#R-body h6 {
  /* better contrast for colored elements */
  color: rgba(0, 0, 0, 1);
}
#R-body th,
#R-body td,
#R-body code,
#R-body strong,
#R-body b,
#R-body li,
#R-body dd,
#R-body dt,
#R-body p,
#R-body a,
#R-body button,
#R-body .badge .badge-content {
  /* better contrast for colored elements */
  color: rgba(0, 0, 0, 1);
}
#R-body .anchor {
  display: none;
}
#R-body pre:not(.mermaid),
#R-body code {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(221, 221, 221, 1);
}

hr {
  border-bottom: 1px solid rgba(221, 221, 221, 1);
}
#R-body #R-body-inner {
  overflow: visible; /* turn off limitations for perfect scrollbar */
  /* reset paddings for chapters in screen */
  padding: 0 3.25rem 4rem 3.25rem;
}

#R-body #R-body-inner h1 {
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  font-size: 3.25rem;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
}
#R-body-inner .chapter h3:first-of-type {
  margin-top: 2rem;
}

/* Children shortcode */
.children p,
.children-li p,
.children-h2 p,
.children-h3 p {
  font-size: 1rem;
}

.footline {
  /* in print mode show footer line to signal reader the end of document */
  border-top: 1px solid rgba(221, 221, 221, 1);
  color: rgba(119, 119, 119, 1);
  margin-top: 1.5rem;
  padding-top: 0.75rem;
}

h1 + .footline {
  /* if we have no content in the page we remove the footer as it is of no real value in print */
  display: none;
}

#R-body #R-body-inner .headline a,
#R-body #R-body-inner .footline a,
#R-body #R-body-inner .btn a {
  text-decoration: none;
}
#R-body #R-body-inner a {
  /* in print we want to distinguish links in our content from
    normal text even if printed black/white;
    don't use a.highlight in selector to also get links that are
    put as HTML into markdown */
  text-decoration-line: underline;
}
#R-topbar {
  /* the header is sticky which is not suitable for print; */
  position: initial;
}
#R-topbar > .topbar-wrapper {
  background-color: initial;
}
#R-body .topbar-sidebar-divider {
  border-width: 0;
}
article .R-taxonomy {
  display: none;
}
mark.search {
  background: inherit;
  color: inherit;
}
.mermaid.zoom:hover {
  border-color: transparent;
}
.box > .box-content {
  background-color: rgba(255, 255, 255, 1);
}

.btn,
#R-body .tab-nav-button {
  color: rgba(0, 0, 0, 1);
}
#R-body .tab-nav-button.active {
  border-bottom-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
}
#R-body .tab-nav-button.active > .tab-nav-text {
  background-color: rgba(255, 255, 255, 1);
}
#R-body .tab-content-text {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
}

article {
  break-before: page;
}
#R-body-inner article:first-of-type {
  break-before: avoid;
}

#R-body #R-body-inner .flex-block-wrapper {
  max-width: calc(var(--INTERNAL-MAIN-WIDTH-MAX) - var(--INTERNAL-MENU-WIDTH-L) - 2 * 3.25rem);
  width: 100%;
}

#R-body #R-body-inner > .flex-block-wrapper article.narrow > p {
  font-size: 1.015625rem;
  text-align: start;
}

#R-body #R-body-inner > .flex-block-wrapper article.narrow > .article-subheading {
  margin-top: 0;
}

}
