@charset "UTF-8";
:root {
  --tblr-font-sans-serif: "Segoe UI";
  --tblr-body-color: #c0c0c0;
  --tblr-dark-mode-border-color-translucent: rgba(110, 110, 110, 0.14);
  --tblr-link-color: #619280;
  --tblr-link-color-rgb: 97, 146, 128;
  --tblr-link-decoration: none;
  --tblr-link-hover-color: #389170;
  --tblr-link-hover-color-rgb: 56, 145, 112;
  --prime: #ffcc00;
  --toc-section: #111;
  --toc-link: #777;
  --toc-link-hover: #25282e;
  --toc-link-active: #000;
  --toc-border: #ccc;
  --toc-border-active: #000;
  --toc-chevron: rgba(0, 0, 0, 0.55);
  --page-header: rgba(0, 0, 0, 0.05);
}

html[data-bs-theme=dark],
body.dark {
  --page-header: rgba(255, 255, 255, 0.05);
  --toc-section: rgba(255, 255, 255, 0.92);
  --toc-link: rgba(255, 255, 255, 0.62);
  --toc-link-hover: rgba(255, 255, 255, 0.86);
  --toc-link-active: #619280;
  --toc-border: rgba(255, 255, 255, 0.18);
  --toc-border-active: #00abd7;
  --toc-chevron: rgba(255, 255, 255, 0.55);
}

body {
  background-image: linear-gradient(0deg, var(--prime) -600%, rgb(16, 16, 16) 40%, rgb(24, 24, 24) 100%);
  background-size: 200vh;
  background-position: 0% 0%;
  background-attachment: fixed;
}

body[data-hive-shortname=Home], a[data-hive-shortname=Home] {
  --prime: #ffcc00;
}

body[data-hive-shortname=Install], a[data-hive-shortname=Install] {
  --prime: #4e99a6;
}

body[data-hive-shortname=UI], a[data-hive-shortname=UI] {
  --prime: #a34563;
}

body[data-hive-shortname=Using], a[data-hive-shortname=Using] {
  --prime: #4fba88;
}

body[data-hive-shortname=Reference], a[data-hive-shortname=Reference] {
  --prime: #4c799a;
}

body[data-hive-shortname=Guides], a[data-hive-shortname=Guides] {
  --prime: #8a61a4;
}

body[data-hive-shortname=Developers], a[data-hive-shortname=Developers] {
  --prime: #c9708c;
}

body[data-hive-shortname=History], a[data-hive-shortname=History] {
  --prime: #a7b076;
}

#contents {
  color: var(--tblr-body-color);
}
#contents a {
  color: var(--prime);
  text-decoration-color: var(--prime);
  text-decoration: underline;
  text-decoration-skip-ink: all;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  transition: all linear 0.1s;
}
#contents a:hover {
  color: var(--prime);
  text-decoration: underline;
  text-decoration-skip-ink: all;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
#contents h1,
#contents h2,
#contents h3,
#contents h4 {
  font-weight: 300;
  margin-top: 24px;
  color: #fff;
}
#contents h1 {
  font-size: 26px;
}
#contents h2 {
  font-size: 22px;
}
#contents h3 {
  font-size: 20px;
}
#contents h4 {
  font-size: 20px;
}
#contents table {
  width: 100%;
}
#contents img {
  max-height: 40vh;
}
#contents iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#contents #show-sublinks {
  padding: 32px 12px;
}

code:not(pre > code) {
  background-color: #111;
  border-radius: 3px;
  border: 1px solid #333;
  border-top-color: #aaa;
}

.card {
  background-color: rgba(0, 0, 0, 0.15) !important;
  border: 1.5px solid rgb(14, 16, 17);
  box-shadow: none;
}
.card .card-title,
.card h1,
.card h2,
.card h3 {
  margin-top: 0 !important;
  color: #fff;
}
.card .card-title a,
.card h1 a,
.card h2 a,
.card h3 a {
  color: #fff;
}
.card .card-body {
  font-size: 12px;
}

figure {
  text-align: center;
}
figure figcaption {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.6;
  padding: 6px;
  display: block;
}
figure img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 4px;
}

.center-small {
  display: block;
}
.center-small img,
.center-small .img-fluid {
  width: 50% !important;
  display: block;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 4px;
}

/* Container that holds the images */
.image-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.image-row figure,
.image-row img,
.image-row .img-fluid {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-row-vertical {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.image-row-vertical figure,
.image-row-vertical img,
.image-row-vertical .img-fluid {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
}

.reference-tables table {
  width: 50% !important;
}
.reference-tables table thead {
  background: #111;
}
.reference-tables table th,
.reference-tables table td {
  border: 1px solid rgba(255, 255, 255, 0.0666666667);
  padding: 8px;
}
.reference-tables table td:nth-child(1) {
  width: 20%;
}
.reference-tables table td:nth-child(2) {
  width: 70%;
}
.reference-tables table td:nth-child(3) {
  width: 20%;
}

.properties-table {
  width: 100% !important;
  border-radius: 4px;
  font-size: 13px;
}
.properties-table .head {
  background: #101517;
  text-align: left !important;
}
.properties-table .title {
  font-weight: 600;
  text-align: left !important;
}
.properties-table .title-desc {
  font-weight: 400;
  text-align: left !important;
}
.properties-table th,
.properties-table td {
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.0666666667);
  padding: 8px;
  font-size: 12px;
}
.properties-table th span,
.properties-table td span {
  display: block;
}
.properties-table th .choice,
.properties-table td .choice {
  padding-bottom: 6px;
  font-weight: bold;
}
.properties-table th .choice-flat,
.properties-table td .choice-flat {
  padding: 1em 0.4em 1em 0;
  font-weight: bold;
  float: left;
}
.properties-table th .choice-description,
.properties-table td .choice-description {
  padding-bottom: 0.3em;
  padding-left: 0.8em;
}
.properties-table td:nth-child(1) {
  width: 30%;
  font-weight: 600;
  text-align: right !important;
}
.properties-table td:nth-child(2) {
  width: 70%;
}

#site-nav,
#site-nav-2 {
  --toc-link: #ccc;
  --toc-link-active: var(--prime);
}
#site-nav h3.toc-section,
#site-nav-2 h3.toc-section {
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--toc-section);
}
#site-nav .divider,
#site-nav-2 .divider {
  list-style: none;
  position: relative;
  height: 0.5rem;
  margin: 0;
}
#site-nav .divider::before,
#site-nav-2 .divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  transform: translateY(-75%) translateX(10%);
  border-top: 1.5px solid var(--toc-border);
  opacity: 0.5;
}
#site-nav i,
#site-nav-2 i {
  color: var(--prime);
  font-weight: 100;
}
#site-nav ul.toc-section-list,
#site-nav-2 ul.toc-section-list {
  margin: 0;
  padding: 0;
}
#site-nav > ul:nth-child(1),
#site-nav-2 > ul:nth-child(1) {
  padding-left: 0;
}
#site-nav ul,
#site-nav-2 ul {
  margin: 0;
  padding: 0;
}
#site-nav ul li,
#site-nav-2 ul li {
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  padding-top: 3px;
  padding-bottom: 3px;
}
#site-nav ul li a,
#site-nav-2 ul li a {
  color: var(--toc-link);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 0px;
}
#site-nav ul li a:hover,
#site-nav-2 ul li a:hover {
  color: var(--prime);
  text-decoration: none;
}
#site-nav ul li > a.active,
#site-nav-2 ul li > a.active {
  color: var(--prime);
  font-weight: 600;
  text-decoration: none;
}
#site-nav ul li > ul,
#site-nav-2 ul li > ul {
  display: block;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-2px);
  transition: height 240ms ease, opacity 180ms ease, transform 180ms ease;
  will-change: height, opacity, transform;
  padding-left: 0;
}
#site-nav ul li:has(> ul) > a.toc-group,
#site-nav-2 ul li:has(> ul) > a.toc-group {
  position: relative;
  padding-left: 16px;
}
#site-nav ul li:has(> ul) > a.toc-group::before,
#site-nav-2 ul li:has(> ul) > a.toc-group::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  transition: transform 140ms ease, opacity 140ms ease;
  opacity: 0.8;
  color: var(--toc-chevron);
}
#site-nav ul li:has(> ul).active > a.toc-group,
#site-nav-2 ul li:has(> ul).active > a.toc-group {
  color: var(--toc-link-active);
}
#site-nav ul li:has(> ul).active > a.toc-group::before,
#site-nav-2 ul li:has(> ul).active > a.toc-group::before {
  transform: rotate(90deg);
  opacity: 1;
}
#site-nav ul li:has(> ul).active > ul,
#site-nav-2 ul li:has(> ul).active > ul {
  opacity: 1;
  transform: translateY(0);
}
#site-nav ul li:has(> ul).active > ul > li,
#site-nav-2 ul li:has(> ul).active > ul > li {
  border-left: 1px solid var(--toc-border);
  padding-left: 36px;
}
#site-nav ul li:has(> ul).active > ul > li > a,
#site-nav-2 ul li:has(> ul).active > ul > li > a {
  color: var(--toc-link);
  text-decoration: none;
}
#site-nav ul li:has(> ul).active > ul > li > a:hover,
#site-nav-2 ul li:has(> ul).active > ul > li > a:hover {
  color: var(--toc-link-hover);
}
#site-nav ul li:has(> ul).active > ul > li:has(> a.active),
#site-nav-2 ul li:has(> ul).active > ul > li:has(> a.active) {
  border-left: 1px solid var(--prime);
}
#site-nav ul li:has(> ul).active > ul > li:has(> a.active) > a,
#site-nav-2 ul li:has(> ul).active > ul > li:has(> a.active) > a {
  color: var(--toc-link-active);
  font-weight: 600;
}
#site-nav ul li:has(> ul).active > ul > li:first-child,
#site-nav-2 ul li:has(> ul).active > ul > li:first-child {
  padding-top: 6px;
}
#site-nav ul li:has(> ul).active > ul > li:last-child,
#site-nav-2 ul li:has(> ul).active > ul > li:last-child {
  padding-bottom: 6px;
}

#page-nav * {
  white-space: normal;
  /* not single-line */
  overflow-wrap: anywhere;
  /* break long tokens/urls */
  word-break: break-word;
  /* fallback */
}
#page-nav ul {
  margin: 0;
  padding: 0;
}
#page-nav ul li {
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0;
  font-size: 12px;
}
#page-nav ul li a {
  color: var(--toc-link);
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding-left: 18px;
  flex-wrap: wrap;
  /* allows items to wrap to next line */
  min-width: 0;
  /* critical for flex children to shrink */
  max-width: 100%;
  line-height: normal;
  font-size: 12px;
}
#page-nav ul li a:hover {
  color: var(--prime);
  text-decoration: none;
}
#page-nav ul li > ul {
  display: block;
  margin: 0;
  padding: 0;
}
#page-nav ul li > ul > li {
  border-left: 1px dotted var(--toc-border);
  line-height: 24px;
}
#page-nav ul li > ul > li > ul > li {
  border: none;
  padding-left: 18px;
  margin: 0;
  line-height: 24px;
}
#page-nav ul li.h1 > a {
  color: var(--toc-section);
  font-weight: 600;
  padding-left: 0;
}
#page-nav ul li.h2 > a {
  font-weight: 600;
}
#page-nav ul li.h3 > a {
  font-weight: 500;
}
#page-nav ul li.h4 > a {
  font-size: 13px;
  font-weight: 500;
}

.note {
  --prime: $c;
  border: 1.5px solid #78ccf2;
  color: #78ccf2;
  background-color: color-mix(in srgb, #78ccf2 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.note p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.note code {
  background: #78ccf2;
  color: #000;
}

.tip {
  --prime: $c;
  border: 1.5px solid #7dcb82;
  color: #7dcb82;
  background-color: color-mix(in srgb, #7dcb82 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.tip p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.tip code {
  background: #7dcb82;
  color: #000;
}

.success {
  --prime: $c;
  border: 1.5px solid #669368;
  color: #669368;
  background-color: color-mix(in srgb, #669368 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.success p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.success code {
  background: #669368;
  color: #000;
}

.warning {
  --prime: $c;
  border: 1.5px solid #d8b368;
  color: #d8b368;
  background-color: color-mix(in srgb, #d8b368 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.warning p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.warning code {
  background: #d8b368;
  color: #000;
}

.danger {
  --prime: $c;
  border: 1.5px solid #e87a74;
  color: #e87a74;
  background-color: color-mix(in srgb, #e87a74 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.danger p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.danger code {
  background: #e87a74;
  color: #000;
}

.info {
  --prime: $c;
  border: 1.5px solid #5fbe9d;
  color: #5fbe9d;
  background-color: color-mix(in srgb, #5fbe9d 20%, #000 60%);
  border-radius: 3px;
  padding: 8px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.info p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.info code {
  background: #5fbe9d;
  color: #000;
}

a {
  color: var(--prime);
}
a:hover {
  color: var(--prime);
}

.hive-nav {
  margin-bottom: 36px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.hive-nav .nav-item {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  padding: 8px 16px !important;
  margin: 0;
  border-bottom: 1px solid var(--toc-border);
  font-size: 11px;
  font-weight: 600;
  transition: color linear 0.2s;
  text-align: center;
  color: var(--toc-link);
  text-decoration: none;
}
.hive-nav .nav-item:not(.disabled):hover {
  text-decoration: none;
  color: var(--toc-link-hover);
  background-color: transparent;
  border-bottom: 1px solid var(--prime);
}
.hive-nav .nav-item.active {
  text-decoration: none;
  border-bottom-width: 1px;
  color: var(--toc-section);
  border-bottom-color: var(--prime);
}

.page-nav-wrapper {
  font-size: 12px;
}
.page-nav-wrapper strong {
  display: inline-block;
  margin-left: 8px;
}

.small img {
  width: 50%;
  height: auto;
  display: block;
  text-align: center;
}

.btnx {
  font-size: 10px;
  padding: 3px 12px;
  min-height: auto;
  box-shadow: none;
  border-radius: 24px;
  border-width: 1.5px;
}

.doc-dropdown .dropdown-toggle {
  font-size: 10px;
  padding: 3px 12px;
  min-height: auto;
  box-shadow: none;
  border-radius: 24px;
  border-width: 1.5px;
}
.doc-dropdown .dropdown-item {
  font-size: 10px;
  font-weight: 600;
  color: var(--toc-link);
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media only screen and (max-width: 980px) {
  .text-center-mobile {
    text-align: center !important;
  }
}

#site-search #searchPopup {
  background: #171717;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
  min-width: 25vw !important;
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  border-radius: 4px;
}
#site-search #searchPopup mark {
  background: transparent;
  color: #4ff0b7;
}
#site-search #searchPopup hr {
  margin: 2px 24px;
}
#site-search #searchPopup .list-group-item {
  margin: 8px;
  border-radius: 4px;
  padding: 18px;
  width: 98%;
  border: 0;
  transition: background-color ease 0.2s;
}
#site-search #searchPopup .list-group-item .fw-semibold {
  font-weight: 600;
  color: var(--tblr-link-color);
}
#site-search #searchBox {
  border-radius: 4px;
  box-shadow: none;
  font-size: 11px;
  padding: 3px 12px;
  min-width: 40vw;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  transition: all linear 0.2s;
}
#site-search #searchBox:focus, #site-search #searchBox:-moz-focusring {
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid #4ff0b7;
  box-shadow: none !important;
}
#site-search mark {
  background: rgba(255, 193, 7, 0.35);
}

.hive-bar .navbar-nav .navbar-item .nav-link {
  color: #ffcc00;
  padding: 0 !important;
}

.head-block {
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 36px;
  position: relative;
}
.head-block .doc-title {
  padding-left: 16px;
}
.head-block .doc-title span:nth-child(1) {
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.head-block .doc-title span:nth-child(2) {
  display: block;
  font-size: 24px;
  font-weight: 300;
}
@media only screen and (max-width: 980px) {
  .head-block.glow {
    background-color: none !important;
  }
}
@media only screen and (max-width: 980px) {
  .head-block {
    background-color: none !important;
    padding: 6px;
    margin-bottom: 6px;
  }
}

.site-title {
  padding-left: 12px;
  font-weight: 400;
  color: var(--toc-section);
}

#next-nav {
  border-top: 1px solid var(--toc-border);
  padding-top: 32px;
}
#next-nav .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  white-space: nowrap;
}
#next-nav .nav-btn::before, #next-nav .nav-btn::after {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
#next-nav .nav-btn:hover {
  color: var(--prime);
  border: 1px solid #25282e;
}
#next-nav .nav-prev::before {
  -webkit-mask-image: url(/assets/svg/chevron-prev.svg);
  mask-image: url(/assets/svg/chevron-prev.svg);
}
#next-nav .nav-prev::after {
  content: none;
}
#next-nav .nav-next::after {
  -webkit-mask-image: url(/assets/svg/chevron-next.svg);
  mask-image: url(/assets/svg/chevron-next.svg);
}
#next-nav .nav-next::before {
  content: none;
}

footer {
  font-size: 12px;
}
footer a {
  font-size: 12px;
}

.home-grid a {
  text-decoration: none !important;
}
.home-grid a:hover {
  text-decoration: none;
}

div[data-popper-placement],
#searchPopup {
  z-index: 999999;
}

#breadcrumbs {
  font-size: 10px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--prime) !important;
}
.breadcrumb .active a {
  color: #eee !important;
}

.top-bar {
  background-color: #1b1c1d !important;
  border-bottom: 1px solid #2d2e2f;
  align-items: center;
}
.top-bar .navbar-toggler {
  border-right: 1px solid #2d2e2f;
  border-radius: 0;
  padding: 8px;
}
.top-bar .main-title {
  display: flex;
  color: #eee;
  padding-left: 12px;
}

/* Mobile hint: fade edges of .hive-nav to suggest horizontal scroll */
@media (max-width: 991.98px) {
  .hive-nav {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* 5% fade on both sides */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
}
.migration {
  font-size: 9px;
}