@charset "UTF-8";
@font-face {
  font-family: "Novacento Sans Wide";
  src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot");
  src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff2") format("woff2"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff") format("woff"), url("../fonts/Novecentosanswide-UltraLight-webfont.ttf") format("truetype"), url("../fonts/Novecentosanswide-UltraLight-webfont.svg#novecento_sans_wideultralight") format("svg");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  src: local("Roboto Regular"), local("Roboto-Regular"), url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url("../fonts/Roboto-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoMono";
  font-weight: 400;
  src: local("Roboto Mono Regular"), local("RobotoMono-Regular"), url("../fonts/RobotoMono-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoMono";
  font-weight: 500;
  src: local("Roboto Mono Medium"), local("RobotoMono-Medium"), url("../fonts/RobotoMono-Medium.ttf") format("truetype");
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 32px;
  background-color: rgb(var(--aui-color-n-10));
}
:root header {
  box-shadow: 0 0 4px 0 rgba(var(--aui-color-origin-shadow), 0.1);
}

html[aui-theme-mode=light] header {
  box-shadow: 0 0 4px 0 rgba(var(--aui-color-origin-shadow), 0.1);
}

@media (prefers-color-scheme: dark) {
  html[aui-theme-mode=system] header {
    box-shadow: 0 0 4px 0 rgba(var(--aui-color-origin-shadow), 0.75);
  }
}
html[aui-theme-mode=dark] header {
  box-shadow: 0 0 4px 0 rgba(var(--aui-color-origin-shadow), 0.75);
}

header .header__left {
  display: flex;
  align-items: center;
}
header .header__left > div {
  display: flex;
  align-items: center;
}
header .header__left .logo {
  display: flex;
  align-content: center;
  min-width: 32px;
  max-width: 160px;
}
header .header__left .logo img {
  height: 32px;
}
header .header__left .separator {
  width: 1px;
  height: 32px;
  background-color: rgb(var(--aui-color-n-2));
  margin: 0 16px;
  opacity: 0.1;
}
header .header__left .title {
  color: rgb(var(--aui-color-n-1));
  font-size: var(--aui-font-size-xl);
  font-weight: var(--aui-font-weight-bold);
}
header .header__left .title a {
  text-decoration: none;
  cursor: pointer;
}
header nav.shortcuts {
  -webkit-box-flex: 1;
  flex: 1;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  list-style-type: none;
}
header nav.shortcuts li .fa {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
header nav.shortcuts li a:active,
header nav.shortcuts li a:focus,
header nav.shortcuts li a:hover {
  cursor: pointer;
  background-color: #4d4d4d;
}
header nav.shortcuts li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 3.5rem;
  padding: 0 1rem;
  cursor: pointer;
}
header nav.shortcuts li a label {
  margin-bottom: 0;
}
header nav.search {
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 28px;
}
header nav.search .searchbox {
  width: 300px;
}
header nav.search .searchbox input {
  border: 1px solid rgb(var(--aui-color-n-7));
  border-radius: var(--aui-border-radius-m);
  height: var(--aui-inline-height-m);
  display: inline-block;
  font-size: var(--aui-font-size-m);
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-color: rgb(var(--aui-color-n-8));
  outline: none;
  text-overflow: ellipsis;
  padding: 0 32px 0 var(--aui-inline-padding-xs);
}
header nav.search .searchbox input:focus {
  background-color: rgb(var(--aui-color-main-bg));
  border-color: rgb(var(--aui-color-primary));
}
:root header nav.search .searchbox input:focus {
  box-shadow: 0 0 0 2px rgba(var(--aui-color-primary), 0.16);
}

html[aui-theme-mode=light] header nav.search .searchbox input:focus {
  box-shadow: 0 0 0 2px rgba(var(--aui-color-primary), 0.16);
}

@media (prefers-color-scheme: dark) {
  html[aui-theme-mode=system] header nav.search .searchbox input:focus {
    box-shadow: 0 0 0 2px rgba(var(--aui-color-primary), 0.3);
  }
}
html[aui-theme-mode=dark] header nav.search .searchbox input:focus {
  box-shadow: 0 0 0 2px rgba(var(--aui-color-primary), 0.3);
}

header nav.search .searchbox input:hover {
  background-color: rgb(var(--aui-color-main-bg));
  border-color: rgb(var(--aui-color-primary));
}
header nav.search ::placeholder {
  color: rgb(var(--aui-color-placeholder-text));
}
header nav.search li .fa {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
header nav.search li a:active,
header nav.search li a:focus,
header nav.search li a:hover {
  background-color: #4d4d4d;
}
header nav.search li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 3.5rem;
  padding: 0 1rem;
  cursor: pointer;
}
header nav.search li a label {
  margin-bottom: 0;
}

div.links {
  height: 28px;
  font-size: 14px;
  padding: 6px 8px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 2px;
  margin: 0 6px 0 0;
  vertical-align: middle;
  color: #999;
  line-height: 14px;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
}
div.links path {
  fill: #999;
}
div.links a {
  line-height: 14px;
  vertical-align: middle;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
}
div.links a svg,
div.links a i {
  margin-right: 4px;
}
div.links a img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-bottom: 3px;
}
div.links a img path {
  fill: #999;
}
div.links .downloadicon {
  height: 16px;
  width: 16px;
  display: inline-block;
  line-height: 16px;
  margin-right: 4px;
}
div.links .container {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
}
div.links .icontext {
  height: 16px;
  line-height: 16px;
  display: inline-block;
}

.linkscontainer:hover {
  cursor: pointer !important;
}

div.links:hover {
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  fill: #fff;
  cursor: pointer !important;
}
div.links:hover path {
  fill: #fff;
}
div.links:hover img path {
  fill: #fff;
}

.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: inherit !important;
  /* box-shadow: 1px 1px 1px; */
  /* box-shadow: 1px; */
  transition: _left 0.1s ease-in-out;
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 70vh;
  width: 265px;
  box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  cursor: pointer;
  padding: 7px;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #e6f1ff !important;
}

.autocomplete-suggestion.selected {
  background: rgba(0, 156, 227, 0.1) !important;
  color: #006eff !important;
}

.autocomplete-suggestion:hover {
  background: rgba(111, 150, 168, 0.1) !important;
  color: #006eff !important;
}

.autocomplete-suggestion > .context {
  font-size: 12px;
}

article > aside {
  background-color: rgb(var(--aui-color-main-bg));
  display: flex;
  padding: 32px 24px 0 32px;
  flex: 1;
  justify-content: flex-end;
  min-width: 296px;
}
article > aside .menu {
  position: sticky;
  top: 60px;
  align-self: flex-start;
  max-width: 240px;
  list-style-type: none;
  margin: 0;
  width: 240px;
  min-width: 240px;
  padding-top: 1.7rem;
  height: calc(100vh - 60px);
  overflow-y: auto;
  scrollbar-width: none;
}
article > aside .menu::-webkit-scrollbar {
  display: none;
}
article > aside .menu .dd-item {
  list-style: none;
  font-size: var(--aui-font-size-l);
  padding-bottom: 12px;
  font-weight: var(--aui-font-weight-bold);
  color: rgb(var(--aui-color-n-1));
  cursor: pointer;
}
article > aside .menu .dd-item.active > ul, article > aside .menu .dd-item.parent > ul, article > aside .menu .dd-item.alwaysopen > ul {
  display: block;
}
article > aside .menu .dd-item.active > div * {
  color: rgb(var(--aui-color-primary));
}
article > aside .menu .dd-item div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
article > aside .menu .dd-item div .toggle-nav-tree,
article > aside .menu .dd-item div .nav-tree-title {
  flex: 1;
  text-decoration: none;
}
article > aside .menu .dd-item div i {
  font-size: var(--aui-font-size-l);
  width: 16px;
  align-self: flex-start;
}
article > aside .menu .dd-item div i.category-icon {
  text-align: center;
  cursor: pointer;
}
article > aside .menu .dd-item div:hover {
  color: rgb(var(--aui-color-primary));
}
article > aside .menu .dd-item ul {
  display: none;
  padding-top: 12px;
}
article > aside .menu .dd-item ul .dd-item {
  color: rgb(var(--aui-color-n-2));
  font-weight: var(--aui-font-weight-normal);
  margin-left: 16px;
}
article > aside .menu .dd-item ul .dd-item:last-of-type {
  padding-bottom: 0;
}

/*!
 * facette-docs - Facette project documentation
 * Website: http://docs.facette.io/
 */
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Ubuntu, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #222;
  display: box;
  display: flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  flex-direction: column;
  line-height: normal;
  font-size: var(--aui-font-size-m);
}

:disabled {
  pointer-events: none;
}

a {
  color: inherit;
}

a:focus {
  outline: 0;
}

a.baselink {
  height: 32px;
  line-height: 32px;
}

section ol,
section ul {
  padding: 0 1.5rem;
}
section ul {
  list-style-type: square;
}
section a {
  color: rgb(var(--aui-color-primary));
}
section strong {
  font-weight: bold !important;
}
section #breadcrumbs a {
  font-size: 15px;
}
section #breadcrumbs span {
  font-size: 15px;
  color: rgb(var(--aui-color-n-2));
}

.nav-select {
  background: #e5e5e5;
  display: none;
}

.searchbox {
  margin: 0;
  padding: 0;
  padding-top: 0;
  color: #012a3c;
  text-align: center;
}

.searchbox input {
  border: 1px solid #ccc;
  color: #555;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px;
  width: 80%;
}

.searchbox span {
  position: absolute;
  float: right;
  margin-top: -45px;
  right: 30px;
  cursor: pointer;
}

#sidebar-toggle-span {
  display: none;
}

#navigation {
  border-top: 1px solid rgb(var(--aui-color-n-8));
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
#navigation a {
  width: 50%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  color: rgb(var(--aui-color-primary));
  font-size: 14px;
}
#navigation a i {
  margin: auto;
  color: rgb(var(--aui-color-primary)) !important;
}
#navigation a label {
  padding: 6px;
  margin: auto;
  flex-grow: 2;
  self-align: stretch;
  font-size: 14px;
}
#navigation a :hover {
  cursor: pointer;
}
#navigation a.nav-next {
  text-align: right;
}

.burger {
  display: none;
}

article {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1;
  margin-top: 60px;
  justify-content: center;
}
article section.page {
  overflow-y: auto;
  max-width: 900px;
  padding: 32px 24px 0 32px;
  width: 100%;
}
article section.page h1:first-of-type {
  text-align: left;
  color: rgb(var(--aui-color-n-1));
  font-size: 32px;
  font-weight: var(--aui-font-weight-bold);
  margin-top: 24px;
  margin-bottom: 0;
}
article section.page h1,
article section.page h2,
article section.page h3,
article section.page h4,
article section.page h5 {
  margin-top: 1rem;
  font-weight: normal;
  line-height: normal;
}
article section.page h1 {
  font-size: 2.25rem;
}
article section.page h2 {
  font-size: 26px;
  color: rgb(var(--aui-color-n-1));
  font-weight: var(--aui-font-weight-bold);
}
article section.page h3 {
  font-size: 22px;
  line-height: rgb(var(--aui-color-n-1));
  font-weight: var(--aui-font-weight-bold);
}
article section.page h4,
article section.page h5 {
  font-size: 1rem;
}
article section.page hr {
  margin: 1.1rem 0;
}
article section.page table {
  width: 100%;
  margin-bottom: 2em;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #eee;
  table-layout: auto !important;
}
article section.page table th,
article section.page table td {
  padding: 0.25rem 0.75rem;
}
article section.page table th {
  padding: 0.5rem;
  vertical-align: middle;
  text-align: left;
  background: #f6f6f6;
  color: black;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}
article section.page table th:last-child {
  border-right: 0;
}
article section.page table td {
  padding: 0.5rem;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  color: #323232;
  border-right: 1px solid #eee;
}
article section.page table td:first-child code {
  background-color: transparent;
  padding: 0;
}
article section.page table td:last-child {
  border-right: 0;
}
article section.page table.not-fixed {
  table-layout: unset;
}
article section.page table.not-fixed td {
  word-break: break-all;
}
article section.page table.not-fixed .min-200 {
  min-width: 200px;
}
@media (max-width: 1400px) {
  article section.page table.not-fixed .min-200 {
    min-width: 100px;
  }
}
article section.page table.not-fixed .min-150 {
  min-width: 150px;
}
@media (max-width: 1400px) {
  article section.page table.not-fixed .min-150 {
    min-width: 75px;
  }
}
article section.page table.not-fixed .min-175 {
  min-width: 175px;
}
@media (max-width: 1400px) {
  article section.page table.not-fixed .min-175 {
    min-width: 88px;
  }
}
article section.page img {
  margin: 16px 0;
  max-width: 100%;
  display: inline;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
}
article section.page img.border {
  border: 2px solid #e6e6e6 !important;
  padding: 2px;
}
article section.page img.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
article section.page img.inline {
  display: inline !important;
  margin: 0 !important;
  vertical-align: bottom;
  box-shadow: none;
}
article section.page img.big {
  border: 0;
  max-width: 100% !important;
  margin: 3rem auto !important;
  display: block;
  text-align: center;
}
article section.page code {
  font-family: RobotoMono, monospace;
}
article section.page p > code,
article section.page li code,
article section.page table code {
  padding: 2px 4px;
  color: rgb(var(--aui-color-n-2));
  background-color: rgb(var(--aui-color-n-8));
  word-break: break-all;
}
article section.page .code-wrapper {
  position: relative;
}
article section.page .code-wrapper .copy-to-clipboard {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #fff;
  padding: 0 3px;
  box-shadow: 0 0 4px 1px #ccc;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
article section.page .code-wrapper:hover .copy-to-clipboard {
  opacity: 1;
}
article section.page .code-wrapper pre code {
  display: block;
  color: #444 !important;
  padding: 0;
}
article section.page pre {
  border-radius: 0.2rem;
  color: #444 !important;
  background-color: rgb(var(--aui-color-n-8)) !important;
  overflow: auto;
  padding: 20px;
  max-height: calc(100vh - 60px - 0.5rem);
}
article section.page pre[class*=language-] {
  color: #eee;
  overflow: auto;
  text-overflow: ellipsis;
}
article section.page pre.language-headers {
  color: #ddd;
}
article section.page pre.language-headers + pre {
  border-radius: 0 0 0.2rem 0.2rem;
  margin-top: -1.7rem;
  padding-top: 0.52rem;
  position: relative;
}
article section.page code[class*=language-],
article section.page pre[class*=language-] {
  hyphens: none;
  tab-size: 4;
  white-space: pre;
}
article section.page code[class*=language-] > span,
article section.page pre[class*=language-] > span {
  color: #444 !important;
}
article section.page code[class*=language-] > span > span {
  padding: 0 !important;
  margin-right: 20px !important;
}

.pagebreak {
  break-after: page !important;
}

/* page-break-after works, as well */
.anchor {
  color: #2053ab;
  font-size: 0.5em;
  cursor: pointer;
  visibility: hidden;
  vertical-align: middle;
  transition: color 0.35s ease;
}

.anchor:hover {
  color: #238fbd;
  transition: color 0.35s ease;
}

h2:hover .anchor,
h3:hover .anchor,
h4:hover .anchor,
h5:hover .anchor,
h6:hover .anchor {
  visibility: visible;
}

.tooltipped {
  position: relative;
}

.tooltipped:after {
  position: absolute;
  z-index: 1000000;
  display: none;
  padding: 5px 8px;
  font: normal normal 11px/1.5 Lato, "Work Sans", Helvetica, Tahoma, Geneva, Arial, sans-serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  content: attr(aria-label);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.tooltipped:before {
  position: absolute;
  z-index: 1000001;
  display: none;
  width: 0;
  height: 0;
  color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  content: "";
  border: 5px solid transparent;
}

.tooltipped:hover:before,
.tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
  display: inline-block;
  text-decoration: none;
}

.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
  top: 100%;
  right: 50%;
  margin-top: 5px;
}

.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
  top: auto;
  right: 50%;
  bottom: -5px;
  margin-right: -5px;
  border-bottom-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-se:after {
  right: auto;
  left: 50%;
  margin-left: -15px;
}

.tooltipped-sw:after {
  margin-right: -15px;
}

.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
  right: 50%;
  bottom: 100%;
  margin-bottom: 5px;
}

.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
  top: -5px;
  right: 50%;
  bottom: auto;
  margin-right: -5px;
  border-top-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-ne:after {
  right: auto;
  left: 50%;
  margin-left: -15px;
}

.tooltipped-nw:after {
  margin-right: -15px;
}

.tooltipped-s:after,
.tooltipped-n:after {
  transform: translateX(50%);
}

.tooltipped-w:after {
  right: 100%;
  bottom: 50%;
  margin-right: 5px;
  transform: translateY(50%);
}

.tooltipped-w:before {
  top: 50%;
  bottom: 50%;
  left: -5px;
  margin-top: -5px;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-e:after {
  bottom: 50%;
  left: 100%;
  margin-left: 5px;
  transform: translateY(50%);
}

.tooltipped-e:before {
  top: 50%;
  right: -5px;
  bottom: 50%;
  margin-top: -5px;
  border-right-color: rgba(0, 0, 0, 0.8);
}

.float-nav-wrapper {
  padding: 32px 32px 0 0;
  flex: 1;
}
.float-nav-wrapper #float-nav {
  padding-top: 1.7rem;
  position: sticky;
}
.float-nav-wrapper #float-nav,
.float-nav-wrapper #content-nav {
  width: 220px;
  display: flex;
  flex-direction: column;
  top: 60px;
}
.float-nav-wrapper #float-nav .main-title,
.float-nav-wrapper #content-nav .main-title {
  padding-bottom: 12px;
  color: rgb(var(--aui-color-n-1));
  font-size: var(--aui-font-size-m);
  font-weight: var(--aui-font-weight-bold);
  margin-left: 16px;
}
.float-nav-wrapper #float-nav #float-nav-ul,
.float-nav-wrapper #float-nav #content-nav-ul,
.float-nav-wrapper #content-nav #float-nav-ul,
.float-nav-wrapper #content-nav #content-nav-ul {
  margin-top: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.float-nav-wrapper #float-nav #float-nav-ul a,
.float-nav-wrapper #float-nav #content-nav-ul a,
.float-nav-wrapper #content-nav #float-nav-ul a,
.float-nav-wrapper #content-nav #content-nav-ul a {
  padding-bottom: 8px;
  font-size: 14px;
  border-left: 2px solid rgb(var(--aui-color-n-8));
  text-decoration: unset;
}
.float-nav-wrapper #float-nav #float-nav-ul a span,
.float-nav-wrapper #float-nav #content-nav-ul a span,
.float-nav-wrapper #content-nav #float-nav-ul a span,
.float-nav-wrapper #content-nav #content-nav-ul a span {
  margin-left: 16px;
  vertical-align: sub;
  display: inline-block;
}
.float-nav-wrapper #float-nav #float-nav-ul a span.first-title,
.float-nav-wrapper #float-nav #content-nav-ul a span.first-title,
.float-nav-wrapper #content-nav #float-nav-ul a span.first-title,
.float-nav-wrapper #content-nav #content-nav-ul a span.first-title {
  color: rgb(var(--aui-color-n-2));
  font-size: var(--aui-font-size-m);
  font-weight: var(--aui-font-weight-bold);
}
.float-nav-wrapper #float-nav #float-nav-ul a span.second-title,
.float-nav-wrapper #float-nav #content-nav-ul a span.second-title,
.float-nav-wrapper #content-nav #float-nav-ul a span.second-title,
.float-nav-wrapper #content-nav #content-nav-ul a span.second-title {
  color: rgb(var(--aui-color-n-2));
  font-size: var(--aui-font-size-m);
  font-weight: var(--aui-font-weight-normal);
}
.float-nav-wrapper #float-nav #float-nav-ul a span.marginLeft,
.float-nav-wrapper #float-nav #content-nav-ul a span.marginLeft,
.float-nav-wrapper #content-nav #float-nav-ul a span.marginLeft,
.float-nav-wrapper #content-nav #content-nav-ul a span.marginLeft {
  padding-left: 14px;
}
.float-nav-wrapper #float-nav #float-nav-ul a.active,
.float-nav-wrapper #float-nav #content-nav-ul a.active,
.float-nav-wrapper #content-nav #float-nav-ul a.active,
.float-nav-wrapper #content-nav #content-nav-ul a.active {
  border-left: 2px solid rgb(var(--aui-color-primary));
}
.float-nav-wrapper #float-nav #float-nav-ul a.active span,
.float-nav-wrapper #float-nav #content-nav-ul a.active span,
.float-nav-wrapper #content-nav #float-nav-ul a.active span,
.float-nav-wrapper #content-nav #content-nav-ul a.active span {
  color: rgb(var(--aui-color-primary));
  font-weight: var(--aui-font-weight-bold);
}

@media only screen and (max-width: 1280px) {
  #float-nav-wrapper {
    display: none !important;
  }
}
@media only screen and (min-width: 1281px) {
  #content-nav-wrapper {
    display: none !important;
  }
}
.quick-nav {
  background-color: rgb(var(--aui-color-n-9));
  padding: 12px;
  margin: 32px 0;
}
.quick-nav .nav-item {
  background-color: white;
  display: flex;
  align-items: center;
  min-height: 116px;
}
.quick-nav .nav-item:not(:last-child) {
  margin-bottom: 12px;
}
.quick-nav .nav-item .divide {
  padding: 7% 6px 0px 6px !important;
  margin-right: 42px;
  border-left: 1px solid rgb(var(--aui-color-n-8));
  font-size: 0;
}
.quick-nav .title {
  font-size: var(--aui-font-size-l);
  font-weight: var(--aui-font-weight-bold);
  text-align: center;
  display: flex;
  width: 196px;
  justify-content: center;
  align-items: center;
  padding: 0 48px 0 32px;
}
.quick-nav .title .text {
  margin-left: 8px;
}
.quick-nav ul.children.children-table {
  margin: 0;
  flex: 1;
  background-color: white;
  padding: 32px 0;
}
.quick-nav ul.children.children-table > span {
  padding-top: 8px;
  width: 50%;
}
.quick-nav ul.children.children-table > span:nth-child(-n+2) {
  padding-top: 0;
}
.quick-nav ul.children.children-table > span > span a::before {
  content: "";
}

footer {
  color: #aaa;
  font-size: 0.95rem;
  margin: 0 1rem 0 20rem;
  padding: 1rem 4rem;
}
footer p {
  margin: 0px;
}
footer .footline {
  /*border-top: 1px solid #e6e6e6;*/
  margin: 0rem;
  padding: 0;
  font-size: smaller;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footline .tags {
  order: 1;
}
footer .footline .tags a:before {
  content: "#";
}
footer .footline .author {
  order: 3;
}
footer .footline .github-link {
  order: 4;
}
footer .footline .date {
  order: 3;
}

div.notices {
  margin: 2rem 0;
  position: relative;
  border-radius: 0.2rem;
  color: #fff;
  padding: 0.5rem 1rem 0.5rem 2rem;
  position: relative;
}

div.notices p {
  padding: 0px;
  display: block;
  font-size: 1rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

div.notices p:first-child:before {
  position: absolute;
  top: -27px;
  color: #fff;
  font-family: FontAwesome;
  content: "\f06a";
  left: 10px;
}

div.notices p:first-child:after {
  position: absolute;
  top: -27px;
  color: #fff;
  left: 2rem;
}

div.notices.info p:first-child:after {
  content: "Info";
}

div.notices.warning p:first-child:after {
  content: "Warning";
}

div.notices.note p:first-child:after {
  content: "Note";
}

div.notices.tip p:first-child:after {
  content: "Tip";
}

div.notices.note {
  border-top: 30px solid #6bb1e0;
  background: #e6f3fb;
  color: rgba(47, 103, 141, 0.995) !important;
}

div.notices.info {
  border-top: 30px solid #f1b37e;
  background: #fefaf5;
  color: rgba(150, 90, 38, 0.995) !important;
}

div.notices.tip {
  border-top: 30px solid #84c578;
  background: #e8f7e6;
  color: rgba(72, 125, 63, 0.995) !important;
}

div.notices.warning {
  border-top: 30px solid #d58181;
  background: #fbeded;
  color: rgba(132, 56, 56, 0.995) !important;
}

ul.children.children-card {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
ul.children.children-card > span {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 40%;
  min-width: 250px;
  margin: 1rem 1rem;
  border: 0.1rem solid #ccc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
ul.children.children-card > span card {
  margin: 0px 0px;
  display: block;
  padding: 1rem;
  background-color: #eee;
  font-size: 26px;
}
ul.children.children-card > span p {
  padding: 0rem 1rem;
}

ul.children.children-table {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  list-style: none;
  padding: 0px;
  padding-bottom: 16px;
  padding-right: 12px;
  background: #F4F4F4;
}
ul.children.children-table > span {
  -webkit-box-flex: none;
  -ms-flex: none;
  flex: none;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 4px;
  min-width: 0;
  min-height: 0;
  width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul.children.children-table > span p {
  padding: 0rem 1rem;
}
ul.children.children-table > span > span a::before {
  content: "∙  ";
}

table.apichildren {
  background-color: rgb(238, 238, 238);
  padding: 0;
}

@media (max-width: 1024px) {
  section {
    margin-right: 0;
  }
  section > .toc {
    display: none;
  }
}
@media (max-width: 768px) {
  article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  article > aside {
    display: none;
  }
  footer {
    display: none;
  }
  article > section.page {
    margin: 0 0;
    padding: 1rem;
  }
  article > section.page #navigation label {
    display: none;
  }
  section {
    margin: 0;
    padding: 1rem 2rem;
  }
  header {
    padding: 0 1rem;
  }
  header > nav.shortcuts > li a {
    width: 3.5rem;
  }
  header > nav.shortcuts > li .fa {
    margin: 0;
  }
  header > nav.shortcuts > li > a > label {
    display: none;
  }
  header > nav.shortcuts > li > a {
    max-width: 32px;
  }
  .nav-select {
    display: block;
    margin-left: -10px;
    margin-right: -10px;
  }
  .nav-select select {
    display: block;
  }
  article img {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
