@charset "UTF-8";
/* FERMYON SHINY VENEER
=======================
For the benefit of browser-based experiences, websites and application user 
interfaces. This Sass file should be compiled to a CSS stylesheet and served 
after a base framework such as Bulma, Bootstrap or similar base grid system.

to generate to css:
https://sass-lang.com/install 

then run:
sass --watch static/sass/styles.scss static/css/style.css --style compressed


TABLE OF CONTENTS
=================
0.1. Brand Colors
0.2. Variables and Mixins
0.3. Global Layout
0.4. Typography
*/
/* 1.
   Brand Colors
*/
.is-primary, .has-text-primary {
  color: #0D203F !important;
}

.is-link, .has-text-link {
  color: rgb(10.2021276596, 104.2074468085, 161.0478723404) !important;
}

.is-info, .has-text-info {
  color: rgb(160.9210526316, 127.6315789474, 217.3684210526) !important;
}

.is-success, .has-text-success {
  color: rgb(23.7808219178, 144.2191780822, 122.7397260274) !important;
}

.is-warning, .has-text-warning {
  color: #EF946C !important;
}

.is-danger, .has-text-danger {
  color: rgb(197.9539877301, 75.4110429448, 21.5460122699) !important;
}

.is-dark, .has-text-dark {
  color: #213762 !important;
}

.is-light, .has-text-light {
  color: rgb(182.3775510204, 155.9693877551, 192.2806122449) !important;
}

.button.is-primary, .tag.is-primary, .message.is-primary {
  background-color: rgb(23.7123893805, 209.2876106195, 164.9557522124);
  color: white !important;
}
.button.is-secondary, .tag.is-secondary, .message.is-secondary {
  background-color: rgb(49.0591603053, 81.7652671756, 145.6908396947);
  color: white !important;
}
.button.is-link, .tag.is-link, .message.is-link {
  background-color: rgb(10.2021276596, 104.2074468085, 161.0478723404) !important;
  color: white !important;
}
.button.is-info, .tag.is-info, .message.is-info {
  background-color: rgb(160.9210526316, 127.6315789474, 217.3684210526) !important;
  color: white !important;
}
.button.is-success, .tag.is-success, .message.is-success {
  background-color: rgb(23.7808219178, 144.2191780822, 122.7397260274) !important;
  color: white !important;
}
.button.is-warning, .tag.is-warning, .message.is-warning {
  background-color: #EF946C !important;
  color: white !important;
}
.button.is-danger, .tag.is-danger, .message.is-danger {
  background-color: rgb(197.9539877301, 75.4110429448, 21.5460122699) !important;
  color: white !important;
}
.button.is-dark, .tag.is-dark, .message.is-dark {
  background-color: #213762;
  color: white !important;
}
.button.is-light, .tag.is-light, .message.is-light {
  background-color: rgb(182.3775510204, 155.9693877551, 192.2806122449);
  color: #0D203F !important;
}

.content .is-active, .content .is-current {
  color: white;
  background-color: #213762;
}

/* 2.
   Variables and Mixins
*/
/* 3.
   Global Base
*/
html {
  height: 100%;
  background-color: transparent;
}

body,
main {
  min-height: 100vh;
  position: relative;
}

body {
  background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
  min-height: 100vh;
}

main {
  padding: 5.75rem 0 0;
  min-height: 100vh;
  margin-bottom: -12rem;
  z-index: 100;
}

#topbar.navbar {
  background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
  padding-left: 5vw;
  padding-right: 5vw;
  border-bottom: 2px solid rgba(255, 255, 255, 0.98);
  will-change: transform;
  transition: transform 200ms linear;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
}
#topbar.navbar .navbar-burger {
  width: 5.25rem;
  height: 5.25rem;
}
#topbar.navbar.is-wide {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}
#topbar.navbar .dark-mode {
  position: absolute;
  right: 0;
  top: 2rem;
  display: inline-block;
  width: 1.5rem;
  line-height: 1.5;
  fill: #345995;
}
#topbar.navbar.headroom--pinned {
  margin: 0;
  transform: translateY(0%);
}
#topbar.navbar.headroom--unpinned {
  transform: translateY(-100%);
}
@keyframes halfSpin {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(180deg);
    opacity: 1;
  }
  38% {
    opacity: 0.75;
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
    opacity: 1;
  }
  88% {
    opacity: 0.75;
  }
  100% {
    transform: rotate(360deg);
  }
}
#topbar.navbar .logo {
  display: inline-block;
  margin-top: 0;
  fill: #0D203F;
  position: relative;
  margin-top: 0.35em;
}
#topbar.navbar .logo svg {
  max-height: 1.25rem;
  max-width: 10.625rem;
  cursor: pointer;
  position: relative;
  z-index: 500;
  fill: #0D203F;
}
#topbar.navbar .logo:hover .spin-back {
  background-color: white;
}
#topbar.navbar .logo .spin-front {
  width: 1.133rem;
  height: 1.133rem;
  display: inline-block;
  position: absolute;
  top: 1.25rem;
  right: 1.9125rem;
  border-radius: 50%;
  z-index: 600;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .logo .spin-front em {
  width: 0.425rem;
  height: 0.425rem;
  display: inline-block;
  top: 0rem;
  right: 0.05rem;
  background: #28FFCC;
  position: absolute;
  z-index: 700;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .logo .spin-back {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  position: absolute;
  top: 1.295rem;
  right: 1.875rem;
  border-radius: 50%;
  z-index: 400;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar:hover .logo .spin-front {
  animation: 4s ease infinite halfSpin;
}
#topbar.navbar .logo-project {
  font-weight: bold;
  margin: 2rem 0 0 1.3335rem;
  font-size: 1.125rem;
}
#topbar.navbar .logo-project a {
  color: #213762;
}
#topbar.navbar .logo-project .tag {
  margin: -0.5rem 0 0 0.67rem;
  position: relative;
}
#topbar.navbar a.navbar-item {
  line-height: 3;
  background: transparent;
  font-weight: 700;
}
#topbar.navbar .navbar-menu a {
  margin-left: 2vw;
  position: relative;
  color: #0D203F;
  letter-spacing: 0.025em;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .navbar-menu a em {
  position: absolute;
  left: 45%;
  right: 45%;
  bottom: -0.15rem;
  height: 0.333rem;
  opacity: 0;
  background-color: #34E8BD;
  display: inline-block;
  -webkit-border-radius: 1rem 1rem 1rem 1rem;
  -moz-border-radius: 1rem 1rem 1rem 1rem;
  border-radius: 1rem 1rem 1rem 1rem;
  transition: all 0.3s ease-in-out;
  content: " ";
}
#topbar.navbar .navbar-menu a:hover em {
  left: 25%;
  right: 25%;
  opacity: 1;
}
#topbar.navbar .navbar-menu .button {
  color: rgb(21.1172566372, 186.3827433628, 146.9026548673);
  border-color: #34E8BD;
  margin: 1rem 0 0 2.5rem;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .navbar-menu .button:hover {
  color: rgb(17.2245575221, 152.0254424779, 119.8230088496);
  background-color: white !important;
}

.announcement-banner + main {
  padding-top: 12.25rem;
}
.announcement-banner + main .menu-wrap aside.menu {
  padding-top: 10rem;
}

#topbar.navbar.headroom--unpinned + .announcement-banner + main .menu-wrap aside.menu {
  padding-top: 4.25rem;
}

.announcement-banner {
  background-color: #34E8BD;
  background: rgb(46, 237, 217);
  background: linear-gradient(45deg, rgb(46, 237, 217) 0%, rgb(52, 232, 189) 100%);
  z-index: 900;
  position: fixed;
  left: 0;
  right: 0;
  top: 6.25rem;
  overflow-x: hidden;
  transition: opacity;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  opacity: 1;
  color: #0D203F;
}
.announcement-banner:hover {
  background: rgb(86.357300885, 235.892699115, 200.1703539823);
  opacity: 0.92;
}
.announcement-banner a {
  display: inline;
  width: 100%;
  color: #213762;
}

#topbar.navbar.topbar--pinned + .announcement-banner {
  top: 6.75rem;
}

#topbar.navbar.headroom--unpinned + .announcement-banner {
  top: 0.75rem;
}

.menu-wrap {
  padding: 0 2.5vw;
  width: 17rem;
  background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
}
@media screen and (min-width: 1024px) {
  .menu-wrap.is-fixed-desktop {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 17.5vw;
    background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
  }
}
@media screen and (max-width: 1023px) {
  .menu-wrap.is-fixed-desktop {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .menu-wrap.is-sticky {
    position: sticky;
    left: 2.5vw;
    top: 0;
    width: 15rem;
    padding-left: 0.67rem;
    bottom: 0;
    display: inline-block;
    vertical-align: top;
    max-height: 100vh;
    overflow-y: auto;
    background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
  }
}

aside.menu {
  font-size: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  padding-top: 6.5rem;
  min-width: 13rem;
  width: 14.5vw;
  border-right: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
aside.menu:hover {
  border-right: 2px solid #ECE5EE;
}
aside.menu .menu-label {
  padding-left: 1.333vw;
  margin: 1.75rem 1.333vw 1rem 0;
}
aside.menu ul {
  margin-bottom: 2.5rem;
}
aside.menu a {
  padding: 0.6rem 1.25vw;
  margin-bottom: 0rem;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 2rem 2rem 2rem 2rem;
  -moz-border-radius: 2rem 2rem 2rem 2rem;
  border-radius: 2rem 2rem 2rem 2rem;
}
aside.menu a:hover {
  background-color: #ECE5EE;
  color: #213762;
}
aside.menu a.button {
  line-height: 2.25;
  margin-top: 1.25rem;
  padding: 0 1.333vw;
  font-size: 1.125rem;
  background: transparent;
  border: 2px solid #34E8BD;
}
aside.menu a.button svg {
  margin-right: 0.25rem;
  margin-bottom: -1px;
}
aside.menu a.button svg, aside.menu a.button path {
  transition: all 0.3s ease-in-out;
}
aside.menu a.button:hover {
  background-color: #34E8BD;
  color: white;
}
aside.menu a.button:hover svg, aside.menu a.button:hover path {
  fill: white;
}

.menu-wrap + article.content {
  padding-left: 18.5vw;
}

.page-wrap {
  position: relative;
}

.is-fullwidth {
  width: 100vw;
  max-width: 100vw !important;
}

hr {
  background-color: rgba(100, 100, 100, 0.1);
}

hr.page-break {
  position: relative;
  text-align: center;
  height: 4rem;
  background: transparent;
}
hr.page-break:after {
  position: relative;
  width: 12.5%;
  display: inline-block;
  margin: 2.5rem 0 3.5rem;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}

.documentation .content {
  padding-top: 8.5rem;
  margin-bottom: 5rem;
}
.documentation .content h1 {
  position: relative;
  padding-bottom: 2.67rem;
  margin: -1.5rem 0 5rem;
}
.documentation .content h1:after {
  position: absolute;
  width: 25%;
  margin: 2rem 0 0;
  display: inline-block;
  margin: 2.5rem 0 0;
  bottom: 0;
  left: 0;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}
.documentation .content blockquote p {
  font-size: 1rem;
  line-height: 1.4;
}
.documentation .content .footer-nav {
  border-top: none;
}
.documentation .content.content-docs-wide section {
  max-width: 90vw !important;
  margin-left: 5vw;
  margin-right: 5vw;
}
.documentation .content.content-docs-wide section .content ul, .documentation .content.content-docs-wide section .content ol, .documentation .content.content-docs-wide section .content dl, .documentation .content.content-docs-wide section .content p, .documentation .content.content-docs-wide section .content blockquote {
  max-width: 100%;
}
.documentation footer {
  padding-left: 2.5vw !important;
  padding-right: 2.5vw !important;
}
.documentation footer .footer-nav {
  padding: 0 0.75rem;
  margin: 0;
  border-top: none;
}

.content section {
  margin-left: auto;
  margin-right: auto;
  max-width: 48.5rem;
}
.content section .box {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 1.67rem 2rem;
}
.content section table {
  background-color: white;
  min-width: 100%;
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-collapse: collapse;
  border-radius: 0.333em;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
}
.content section table th, .content section table td {
  padding: 0.67vw 2vw;
  border-bottom: 1px solid #BEA7E5;
  line-height: 1.5;
}
.content section table th {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0D203F;
  background-color: #F9F7EE;
  line-height: 1.75;
  border-bottom: 1px solid #BEA7E5;
}
.content section table td {
  font-size: 1rem;
  border-bottom-color: #ECE5EE;
}
.content section table tr:last-of-type td {
  border: none;
}

footer {
  background: white;
  margin: 0 auto 0;
  padding: 1.25rem 0 0;
  min-height: 12rem;
  border-top: 1px solid #BEA7E5;
  position: relative;
  z-index: 1400;
  /* top row of links */
}
footer ul,
footer p {
  margin: 2rem 0 4rem;
}
footer p.lead {
  font-size: 1.25rem;
  max-width: 67%;
  line-height: 1.33;
  margin: -2.5rem 0 0;
  color: #0A455A;
}
footer h4 {
  margin: 3rem 0 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #EF946C;
}
footer li {
  line-height: 2;
  list-style: none;
  font-size: 1.125rem;
}
footer img {
  max-height: 3rem;
  margin-top: 0;
}
footer.is-shallow {
  min-height: 6.5rem;
}
footer.is-shallow img {
  max-height: 2.5rem;
}
footer {
  /* bottom row of smaller links */
}
footer .footer-nav {
  border-top: 1px solid #D9DBE8;
}
footer .footer-nav .navbar {
  padding: 0;
  background: transparent;
}
footer .footer-nav .navbar .navbar-item {
  padding: 0 4rem 0 0;
  font-size: 1rem;
  line-height: 1.33;
  color: #BEA7E5;
}
footer .footer-nav .navbar .navbar-item a {
  color: rgb(177.2868852459, 181.3770491803, 207.9631147541);
  transition: all 0.3s ease-in-out;
}
footer .footer-nav .navbar .navbar-item a:hover {
  color: rgb(87.5696721311, 95.1844262295, 144.6803278689);
}
footer .footer-nav .navbar .navbar-item:last-of-type {
  padding-right: 0;
}
footer .footer-nav p {
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  html {
    background: rgb(247.2674418605, 244.4186046512, 248.0813953488);
    color: #0D203F;
  }
}
@media (prefers-color-scheme: dark) {
  html {
    background: #0D203F;
    color: white;
  }
}
html.dark-theme > body {
  background: #0D203F;
  color: white;
}
html.dark-theme > body #topbar.navbar {
  background: #0D203F;
  border-color: #0A455A;
}
html.dark-theme > body #topbar.navbar .logo svg, html.dark-theme > body #topbar.navbar .logo path {
  fill: white !important;
}
html.dark-theme > body #topbar.navbar .logo-project a {
  color: #34E8BD;
}
html.dark-theme > body #topbar.navbar .logo-project a .tag {
  background-color: #213762;
  color: #BEA7E5 !important;
}
html.dark-theme > body #topbar.navbar .navbar-burger {
  color: #BEA7E5;
  height: 5.75rem;
}
html.dark-theme > body #topbar.navbar .navbar-menu a {
  color: #34E8BD;
}
html.dark-theme > body #topbar.navbar .navbar-menu .button {
  border: 3px solid #34E8BD;
}
html.dark-theme > body #topbar.navbar .navbar-menu .button:hover {
  background: #34E8BD !important;
  color: #0D203F;
}
html.dark-theme > body #topbar.navbar .dark-mode svg {
  fill: #34E8BD;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
html.dark-theme > body .menu-wrap {
  background: #0D203F;
  scrollbar-color: #525776, rgb(8.6381578947, 21.2631578947, 41.8618421053);
}
html.dark-theme > body aside.menu:hover {
  border-right: 2px solid rgb(49.6447368421, 26.3421052632, 89.1578947368);
}
html.dark-theme > body aside.menu a {
  color: white;
}
html.dark-theme > body aside.menu a:hover {
  color: #34E8BD;
  background-color: #213762;
}
html.dark-theme > body aside.menu a.button svg, html.dark-theme > body aside.menu a.button path {
  fill: white !important;
}
html.dark-theme > body .card {
  background: linear-gradient(0, rgb(17.3618421053, 42.7368421053, 84.1381578947), #0D203F 100%);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.5), 0 0 0 1px rgba(10, 10, 10, 0.52);
  outline: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
html.dark-theme > body .card figure.image {
  border-bottom: 1px solid rgba(255, 255, 255, 0.333);
}
html.dark-theme > body .card p {
  color: white;
}
html.dark-theme > body .content .box {
  background-color: #213762;
  color: white;
}
html.dark-theme > body .content section table {
  background-color: #213762;
}
html.dark-theme > body .content blockquote {
  background-color: transparent;
}
html.dark-theme > body .content blockquote p {
  background-color: rgb(26.5763358779, 44.2938931298, 78.9236641221);
  border-color: rgb(36.2118320611, 60.3530534351, 107.5381679389);
  color: white;
}
html.dark-theme > body .content blockquote > blockquote p,
html.dark-theme > body .content aside p {
  background-color: rgb(36.2118320611, 60.3530534351, 107.5381679389);
  border-color: rgb(42.6354961832, 71.0591603053, 126.6145038168);
  color: white;
}
html.dark-theme > body footer {
  background: #0D203F;
  border-color: #0A455A;
  color: white;
}
html.dark-theme > body footer h4 {
  color: white;
}
html.dark-theme > body footer .footer-nav {
  border-color: rgb(6.4572368421, 15.8947368421, 31.2927631579);
}
html.dark-theme > body footer p, html.dark-theme > body footer li, html.dark-theme > body footer a {
  color: #34E8BD;
}

/* 4.
   Typography
*/
body {
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 16pt;
  color: #0D203F;
}

.content h1, .content h2, .content h3 {
  font-weight: bold;
  display: block;
}
.content ul, .content ol, .content dl, .content p, .content blockquote {
  margin: 1.67rem 0;
  font-size: 1rem;
  max-width: 800px;
}
.content.size-16 ul, .content.size-16 ol, .content.size-16 dl, .content.size-16 p, .content.size-16 blockquote {
  font-size: 1rem;
}
.content.size-18 ul, .content.size-18 ol, .content.size-18 dl, .content.size-18 p, .content.size-18 blockquote {
  font-size: 1.125rem;
}
.content.size-20 ul, .content.size-20 ol, .content.size-20 dl, .content.size-20 p, .content.size-20 blockquote {
  font-size: 1.25rem;
}
.content ul li {
  list-style: disc;
  list-style-position: outside;
  line-height: 1.636;
  margin: 0 0.5rem 0 1.25rem;
  padding-left: 0.5rem;
}
.content ul.pagination-list {
  margin: 0;
}
.content ul.pagination-list li {
  list-style: none;
  margin: 0;
}
.content ul.is-disc li {
  list-style: disc;
  list-style-position: outside;
}
.content ol li {
  list-style-position: outside;
  line-height: 1.636;
  margin: 0 0.5rem 0 1.25rem;
  padding-left: 0.5rem;
}
.content blockquote > blockquote,
.content aside {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.content blockquote > blockquote p,
.content aside p {
  line-height: 1.8;
  border: 1px solid #D9DBE8;
  font-size: 1.2rem;
  background: #F9F7EE;
  padding: 1.25rem 1.5rem !important;
  margin: 2.5em auto 5rem !important;
  text-align: left;
  border-radius: 0.667rem;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  color: #0D203F;
}
.content blockquote > blockquote a,
.content aside a {
  color: #0E8FDD;
}
.content blockquote {
  padding: 0rem 0 !important;
  margin: 0 !important;
  border-left: none;
}
.content blockquote p {
  color: rgb(7.8859649123, 31.0350877193, 35.6140350877);
  color: #345995;
  font-size: 1.1rem !important;
  line-height: 2;
  padding-right: 0 !important;
  border-left: 4px solid #D9DBE8;
  background: rgb(243.8872093023, 239.7930232558, 245.0569767442);
  padding: 0.65rem 5% 0.65rem 2rem !important;
  margin: 1rem auto 1rem !important;
  text-align: left;
}
.content blockquote a {
  color: #0E8FDD;
}
.content iframe {
  margin: 2rem 0;
}
.content pre,
.content code {
  margin-bottom: 2rem !important;
}
.content pre code {
  margin-bottom: 0 !important;
}
.content h1 code, .content h2 code, .content h3 code, .content h4 code, .content h5 code {
  font-weight: bold;
  font-size: 1em !important;
}
.content pre,
.content code {
  margin-bottom: 2rem !important;
}
.content pre code {
  margin-bottom: 0 !important;
}
.content h1 code, .content h2 code, .content h3 code, .content h4 code, .content h5 code {
  font-weight: bold;
  font-size: 1em !important;
}
.content strong {
  color: #0D203F;
}
.content a {
  color: rgb(10.2021276596, 104.2074468085, 161.0478723404);
  border-radius: 0.333em;
  position: relative;
}
.content a:after {
  position: absolute;
  text-align: center;
  background: #0E8FDD;
  height: 0.125rem;
  content: " ";
  display: inline-block;
  opacity: 0;
  bottom: -0.2rem;
  left: 33%;
  right: 33%;
  transition: all 0.3s ease-in-out;
}
.content a:hover {
  background: rgba(255, 255, 255, 0.67);
  color: #0E8FDD;
}
.content a:hover:after {
  opacity: 1;
  left: 5%;
  right: 5%;
}
.content a:hover img + :after {
  display: none !important;
  margin-top: -4rem;
}
.content hr.page-break {
  text-align: left;
  height: 4rem;
  background: transparent;
}
.content hr.page-break:after {
  position: relative;
  width: 12.5%;
  margin: 1.5rem 0 2.5rem;
  height: 0.33rem;
}
.content .copy {
  padding: 0.5rem 1rem;
  position: relative;
  border-radius: 1rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.content .copy img {
  width: 1em;
}
.content .copy .button {
  position: absolute;
  padding: 0;
  line-height: 1;
  top: 0.01rem;
  right: 0.67rem;
  border: none;
  opacity: 0;
  background: transparent;
}
.content .copy:hover {
  background: rgba(100, 100, 100, 0.17);
}
.content .copy:hover .button {
  opacity: 1;
}
.content .copy-button {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.content .copy-button:after {
  content: "Copied";
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: absolute;
  top: 0rem;
  right: 25%;
  top: 75%;
  transform: perspective(1px) translateY(-50%);
  z-index: 860;
  background: rgba(100, 100, 100, 0.75);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0;
  color: white;
}
.content .copy-button:active {
  opacity: 0.8;
}
.content .copy-button:active:after {
  top: 50%;
  opacity: 1;
}
.content .card p {
  margin: 0;
  line-height: 1.25;
  color: #0D203F;
}
.content .card p.title {
  margin-bottom: 0.5rem;
}
.content .card p em {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  font-style: normal;
  opacity: 0.333;
  display: inline-block;
  padding: 0 0.2rem 0 0;
}
.content .card.card-color {
  border-radius: 0.33rem;
  overflow: hidden;
}
.content .card.card-color figure.image {
  border: 5px solid transparent;
  transition: all 0.3s ease-in-out;
}
.content .card.card-color figure.image:hover {
  border-color: white;
}
.content .card.card-color .card-content {
  padding: 0.5rem 0.5rem 1rem;
}
.content .card.card-color .card-content p {
  margin: 0 0 -0.333rem;
  letter-spacing: -0.02em;
}
.content {
  /* Code Styling */
}
.content h1 code,
.content h2 code,
.content h3 code,
.content h4 code,
.content h5 code,
.content p code,
.content li code,
.content td code,
.content th code,
.content dd code {
  border-radius: 0.33rem !important;
  background: rgb(233.1831395349, 225.1453488372, 235.4796511628);
  color: #345995;
}
.content pre,
.content code {
  margin-left: 0;
  border-radius: 0.67rem;
  background-color: #0D203F;
  background-image: linear-gradient(135deg, #0D203F 0%, rgb(15.9049868421, 39.1507368421, 77.0780131579) 100%);
  color: white;
  font-size: 0.925rem;
  color: #BEA7E5;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}
.content pre a,
.content code a {
  color: #0E8FDD;
}
.content pre > code,
.content code > code {
  background-color: transparent !important;
  background-image: none !important;
}
.content pre code.hljs,
.content code code.hljs {
  padding: 0 !important;
}
.content pre code.hljs .hljs-meta,
.content code code.hljs .hljs-meta {
  color: #34E8BD;
}
.content pre {
  margin: 1.333rem 0;
  max-width: 100%;
  position: relative;
}
.content code {
  border-radius: 0 !important;
}
.content .hljs {
  background-color: transparent !important;
}
.content {
  /* highlight.js css */
}
.content pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
.content code.hljs {
  padding: 3px 5px;
}
.content .hljs {
  color: #abb2bf;
  background: #282c34;
}
.content .hljs-comment, .content .hljs-quote {
  color: #5c6370;
  font-style: italic;
}
.content .hljs-doctag, .content .hljs-formula, .content .hljs-keyword {
  color: #c678dd;
}
.content .hljs-deletion, .content .hljs-name, .content .hljs-section, .content .hljs-selector-tag, .content .hljs-subst {
  color: #e06c75;
}
.content .hljs-literal {
  color: #56b6c2;
}
.content .hljs-addition, .content .hljs-attribute, .content .hljs-meta .hljs-string, .content .hljs-regexp, .content .hljs-string {
  color: #98c379;
}
.content .hljs-attr, .content .hljs-number, .content .hljs-selector-attr, .content .hljs-selector-class, .content .hljs-selector-pseudo, .content .hljs-template-variable, .content .hljs-type, .content .hljs-variable {
  color: #d19a66;
}
.content .hljs-bullet, .content .hljs-link, .content .hljs-meta, .content .hljs-selector-id, .content .hljs-symbol, .content .hljs-title {
  color: #61aeee;
}
.content .hljs-built_in, .content .hljs-class .hljs-title, .content .hljs-title.class_ {
  color: #e6c07b;
}
.content .hljs-emphasis {
  font-style: italic;
}
.content .hljs-strong {
  font-weight: 700;
}
.content .hljs-link {
  text-decoration: underline;
}

html.dark-theme > body {
  background: #0D203F;
  color: white;
}
html.dark-theme > body h1, html.dark-theme > body h2, html.dark-theme > body h3, html.dark-theme > body h4, html.dark-theme > body p, html.dark-theme > body li {
  color: white;
}
html.dark-theme > body .content a,
html.dark-theme > body article a {
  color: #34E8BD;
}
html.dark-theme > body .content strong,
html.dark-theme > body article strong {
  color: #ECE5EE;
}

html.dark-theme > body h1, html.dark-theme > body h2, html.dark-theme > body h3, html.dark-theme > body h4, html.dark-theme > body h5, html.dark-theme > body p, html.dark-theme > body li {
  color: white;
}
html.dark-theme > body pre {
  background: linear-gradient(0, #173564 15%, rgb(34.5047256098, 61.5010433164, 103.7952743902) 100%);
}
html.dark-theme > body pre code {
  color: #DBC8E2;
}
html.dark-theme > body .content h1 code, html.dark-theme > body .content h2 code, html.dark-theme > body .content h3 code, html.dark-theme > body .content h4 code, html.dark-theme > body .content h5 code, html.dark-theme > body .content p code, html.dark-theme > body .content li code, html.dark-theme > body .content th code, html.dark-theme > body .content td code, html.dark-theme > body .content dd code {
  background-color: #213762;
  color: #ECE5EE;
}
html.dark-theme > body .content .hljs {
  color: #D2C3D7;
}
html.dark-theme > body .content .hljs-comment,
html.dark-theme > body .content .hljs-quote {
  color: #AFAFAC;
}
html.dark-theme > body .content a:hover {
  background: rgb(26.5763358779, 44.2938931298, 78.9236641221) !important;
}
html.dark-theme > body .content .table thead {
  background-color: #525776;
}
html.dark-theme > body .content .table thead th {
  background-color: #525776;
  border-color: rgb(4.2763157895, 10.5263157895, 20.7236842105);
  color: rgb(7.3053435115, 12.1755725191, 21.6946564885);
}
html.dark-theme > body .content .table td {
  border-color: rgb(4.2763157895, 10.5263157895, 20.7236842105);
  color: #ECE5EE;
}
html.dark-theme > body .content .table.is-striped tbody tr:not(.is-selected):nth-child(2n) {
  background-color: #213762;
}
html.dark-theme > body .content .pagination-link, html.dark-theme > body .content .pagination-next, html.dark-theme > body .content .pagination-previous {
  border-color: rgb(4.2763157895, 10.5263157895, 20.7236842105);
}

/* 
   Responsive Media Queries
*/
@media screen and (max-width: 1023px) {
  #topbar.navbar .logo svg,
  #topbar.navbar .logo span {
    display: none !important;
  }
  #topbar.navbar .logo {
    width: 3rem;
    height: 3rem;
    background: url(../image/avatar.png) no-repeat 0 0;
    background-size: contain;
  }
  #topbar.navbar .logo-project {
    margin-left: 0.5rem;
  }
  #topbar.navbar .navbar-menu.is-pulled-right {
    text-align: right;
  }
  #topbar.navbar .navbar-menu.is-pulled-right a {
    float: right;
  }
  .menu-wrap {
    z-index: 1400;
    width: 100vw;
    display: none;
  }
  .menu-wrap.is-active {
    display: block !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
  }
  .menu-wrap aside.menu {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 8rem;
  }
  article.content section,
  footer {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  main.is-fullwidth {
    max-width: 90vw !important;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .menu-wrap + article.content {
    padding-left: 0;
    max-width: 85vw !important;
  }
  footer.is-shallow .footer-nav {
    max-width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
    border-color: transparent !important;
  }
  footer.is-shallow .footer-nav .navbar-item {
    display: inline-block;
  }
}
/* Styleguide Refresh from fermyon.com (1.5 design refresh)
*/
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}

body {
  background: #FCF5FF;
}
body #topbar.navbar {
  background: #FDF8FF;
  border-bottom: 1px solid rgb(224.8846153846, 209.6538461538, 246.3461538462);
}
body #topbar.navbar .logo-wrap .logo-developer {
  color: #A87CE6;
}
body.documentation .menu-wrap {
  background: linear-gradient(105deg, rgba(239, 227, 245, 0.5) 0%, rgba(240, 230, 244, 0.74) 100%);
  border-right: 1px solid #E7D3F2;
}
body.documentation aside.menu .button-wrap {
  border-top: 1px solid rgba(231, 211, 242, 0.25);
  border-right: 1px solid #E7D3F2;
  background: #F5EBF9;
}
body.documentation aside.menu a.button {
  color: #0E092D !important;
  color: #0E092D;
  background: white;
}
body.documentation aside.menu a.button.is-primary {
  border: 2px solid #34E8BD !important;
}
body.documentation aside.menu a.button.is-secondary {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
body.documentation aside.menu a.active {
  color: #213762;
  background-color: #ECE5EE;
}
body.documentation aside.menu .menu-label {
  color: #384687 !important;
}
body.documentation aside.menu .menu-label.stay-open:after {
  opacity: 0.5;
}
body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open:hover:before, body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open.active:before,
body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open .is-active:before,
body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content:hover:before,
body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content.active:before,
body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content .is-active:before {
  background: #A87CE6;
  opacity: 1;
}
body.documentation .content h1 code,
body.documentation .content h2 code,
body.documentation .content h3 code,
body.documentation .content h4 code,
body.documentation .content h5 code,
body.documentation .content h6 code,
body.documentation .content p code,
body.documentation .content li code,
body.documentation .content th code,
body.documentation .content td code,
body.documentation .content dd code {
  background: rgba(231, 211, 242, 0.2) !important;
}
body.documentation pre code {
  background: linear-gradient(110deg, hsla(230, 80%, 72%, 0.12) 0%, hsl(248, 67%, 11%) 100%) !important;
}

html.dark-theme:root {
  color-scheme: dark;
}
html.dark-theme body.documentation {
  background: #0E092D !important;
}
html.dark-theme body.documentation main {
  position: relative;
}
html.dark-theme body.documentation main:after {
  border-radius: 68.4375rem;
  background: rgba(230, 210, 241, 0.2);
  filter: blur(260px);
  position: fixed;
  right: -34rem;
  bottom: -32rem;
  z-index: 0;
  content: " ";
  display: block;
  width: 68.4375rem;
  height: 68.4375rem;
  opacity: 0.2;
}
html.dark-theme body.documentation #topbar.navbar {
  border-bottom: 1px solid #384687;
  background: #0E092D !important;
}
html.dark-theme body.documentation #topbar.navbar .logo-wrap .logo {
  background: url(/static/image/spin-logo-dark.svg) no-repeat 0 0;
  background-size: contain;
}
html.dark-theme body.documentation #topbar.navbar .logo-wrap:hover .logo {
  color: #A87CE6;
}
html.dark-theme body.documentation #topbar.navbar .logo-wrap::after {
  background-color: #384687;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu .navbar-start .is-hoverable:hover + .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-item {
  color: white;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-item:hover {
  background: rgba(124, 109, 185, 0.25) !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-link {
  color: white !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-link:not(.is-arrowless)::after {
  border-color: rgba(255, 255, 255, 0.33);
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-link.is-active {
  color: white !important;
  background: rgba(124, 109, 185, 0.25) !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-link:hover {
  background: rgba(124, 109, 185, 0.35) !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-link.dark-mode:hover {
  background: none transparent !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu a.navbar-stack strong {
  color: white;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu .button {
  color: white !important;
  border-width: 0.1rem !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu .button.is-primary {
  color: #0D203F !important;
  border: none !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu .button.is-primary:hover {
  color: white !important;
}
html.dark-theme body.documentation #topbar.navbar .navbar-menu .button i {
  color: #C5FFF1;
  background: rgba(33, 55, 98, 0.2);
}
html.dark-theme body.documentation .menu-wrap {
  border-right: 1px solid #384687;
  background: linear-gradient(47deg, rgba(14, 9, 45, 0.14) 0%, rgba(124, 109, 185, 0.12) 100%);
}
html.dark-theme body.documentation aside.menu a {
  color: #ECE5EE;
}
html.dark-theme body.documentation aside.menu a.active {
  color: #34E8BD;
  background-color: #213762;
}
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a,
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a {
  color: white !important;
}
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a:before,
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a:before {
  background: #8967C2;
  opacity: 0.25;
}
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a.active:before, html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a:hover:before,
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a.active:before,
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a:hover:before {
  opacity: 1;
}
html.dark-theme body.documentation aside.menu .menu-label {
  color: #ECE5EE !important;
}
html.dark-theme body.documentation aside.menu .menu-label.stay-open:after {
  opacity: 0.5;
}
html.dark-theme body.documentation aside.menu .button-wrap {
  background: #120C32 !important;
  border-top: 1px solid rgba(56, 70, 135, 0.1) !important;
  border-right: 1px solid #384687;
}
html.dark-theme body.documentation aside.menu .button-wrap a.button.is-primary {
  color: #34E8BD !important;
}
html.dark-theme body.documentation aside.menu .button-wrap a.button.is-secondary {
  background: #384687;
  color: #E7D3F2 !important;
}
html.dark-theme body.documentation aside.menu .accordion-tabs .menu-label {
  color: #E6D2F1 !important;
}
html.dark-theme body.documentation aside.menu .accordion-tabs .menu-label:hover {
  color: #E7D3F2 !important;
  background-color: rgba(14, 9, 45, 0.67);
}
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open:hover:before, html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open.active:before,
html.dark-theme body.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open .is-active:before,
html.dark-theme body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content:hover:before,
html.dark-theme body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content.active:before,
html.dark-theme body.documentation aside.menu .accordion-tabs input:checked ~ .accordion-menu-item-content .is-active:before {
  background: rgb(86.9718309859, 55.8450704225, 139.1549295775);
}
html.dark-theme body.documentation footer.footer-links {
  border-top: 1px solid rgba(231, 211, 242, 0.125) !important;
}
html.dark-theme body.documentation footer.footer-links .footer-legal p {
  color: #999;
}
html.dark-theme body.documentation footer.footer-links .footer-legal a {
  color: #999;
}
html.dark-theme body.documentation footer.footer-links .footer-legal a:hover {
  color: #A87CE6;
}
html.dark-theme body.documentation footer.footer-links .navbar a.navbar-item {
  color: #e7d3f2;
}
html.dark-theme body.documentation footer.footer-links .footer-social .button.is-text {
  color: #ccb2f0 !important;
}
html.dark-theme body.documentation footer.footer-links .footer-social .button.is-text:hover {
  background: rgba(124, 109, 185, 0.5) !important;
  color: #fff !important;
  border-radius: 4px;
}
html.dark-theme body.documentation .content a {
  color: rgb(203.5528846154, 177.5336538462, 240.2163461538);
}
html.dark-theme body.documentation .content h1 code,
html.dark-theme body.documentation .content h2 code,
html.dark-theme body.documentation .content h3 code,
html.dark-theme body.documentation .content h4 code,
html.dark-theme body.documentation .content h5 code,
html.dark-theme body.documentation .content h6 code,
html.dark-theme body.documentation .content p code,
html.dark-theme body.documentation .content li code,
html.dark-theme body.documentation .content th code,
html.dark-theme body.documentation .content td code,
html.dark-theme body.documentation .content dd code {
  background: rgba(137, 103, 194, 0.2);
}
html.dark-theme body.documentation .content pre {
  margin: 1.67rem 0 2.33rem;
}
html.dark-theme body.documentation .content pre code {
  background: rgb(10.6944444444, 6.875, 34.375) !important;
  background: linear-gradient(52deg, rgb(19.6194444444, 12.6125, 63.0625) 0%, rgb(29.2412326389, 23.9734375, 61.9015625) 100%) !important;
}
html.dark-theme body.documentation .content table th {
  background-color: #0a1931;
  border-bottom: 1px solid #0d203f;
  color: #fff;
}
html.dark-theme body.documentation .content table td {
  border-bottom-color: #0d203f;
}
html.dark-theme body.documentation .content table code {
  background-color: rgba(13, 32, 63, 0.5);
}
html.dark-theme body.documentation .content details {
  background: #1b2c4f;
  border-left: 4px solid #243c6c;
}
html.dark-theme body.documentation .content details .summary-content {
  border-top: 1px solid #243c6c;
}
html.dark-theme body.documentation .content details .summary-chevron-up,
html.dark-theme body.documentation .content details .summary-chevron-down {
  background: #1b2c4f;
}
html.dark-theme body.documentation .content blockquote p {
  background: rgb(19.6194444444, 12.6125, 63.0625);
  border-color: rgba(137, 103, 194, 0.25) !important;
  color: #E7D3F2 !important;
}
html.dark-theme body.documentation .content .note {
  background: rgb(19.6194444444, 12.6125, 63.0625);
  color: white;
}
html.dark-theme body.documentation .content .note h4 {
  color: #ECE5EE;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
html.dark-theme body.documentation .content .note .button {
  background-color: transparent;
  color: #34E8BD;
}
html.dark-theme body.documentation .content .multitab-content {
  background: none transparent !important;
  border: 1px solid rgba(128, 147, 241, 0.25);
}
html.dark-theme body.documentation .content .tabs.is-boxed a {
  color: rgb(197.2697368421, 176.8421052632, 231.9078947368);
  background-color: transparent;
  position: relative;
}
html.dark-theme body.documentation .content .tabs.is-boxed a:hover {
  color: #F9F7EE;
  background: none transparent !important;
  border-bottom: 1px solid rgba(128, 147, 241, 0.25);
}
html.dark-theme body.documentation .content .tabs.is-boxed a.is-active {
  color: #BEA7E5;
  background: #0E092D !important;
  border: 1px solid rgba(128, 147, 241, 0.25);
  border-bottom: none;
  line-height: 1.285;
}
html.dark-theme body.documentation .content .tabs.is-boxed a.is-active:hover {
  background: #0E092D !important;
}
html.dark-theme body.documentation .content a.anchor-link:hover {
  background: transparent !important;
}
html.dark-theme body.documentation .content a.anchor-link {
  fill: #fff;
}
html.dark-theme body.documentation .content blockquote p {
  background: rgb(23.9166666667, 15.375, 76.875);
}
html.dark-theme .dropdown-content a {
  color: #34e8bd;
}
html.dark-theme .multitab-content {
  background-color: #0D203F;
}
html.dark-theme .content section h1:first-of-type + ul {
  background: rgb(23.9166666667, 15.375, 76.875) !important;
}
html.dark-theme .content section h1:first-of-type + ul:before {
  color: #E7D3F2;
}
html.dark-theme .content section h1:first-of-type + ul li a {
  display: inline-block;
  color: #E7D3F2 !important;
}
html.dark-theme .content section h1:first-of-type + ul:hover li a:hover {
  background: rgba(14, 9, 45, 0.8) !important;
  color: white;
}
html.dark-theme .search-button {
  border: 1px solid #a8a8a8;
  color: white;
}
html.dark-theme #topbar.navbar .is-hoverable .navbar-dropdown {
  background: #3D3368 !important;
}
html.dark-theme #topbar.navbar .is-hoverable .navbar-dropdown .navbar-item .project-content .title {
  color: white;
}
html.dark-theme #topbar.navbar .is-hoverable .navbar-dropdown .navbar-item .project-content .description {
  color: #D3C3D9 !important;
}
html.dark-theme #topbar.navbar .logo-wrap .logo-project a {
  color: #D3C3D9;
}
html.dark-theme #topbar.navbar .navbar-menu a.navbar-item span {
  background: rgb(9.9467105263, 24.4842105263, 48.2032894737);
}
html.dark-theme #topbar.navbar .navbar-menu a.navbar-item.is-active span {
  background: rgba(33, 55, 98, 0.333);
}
html.dark-theme #topbar.navbar .navbar-menu a.navbar-item span.tag {
  color: #E7D3F2 !important;
  background-color: rgba(14, 9, 45, 0.2) !important;
}
html.dark-theme .developer-home-wrap #intro h1 {
  color: white;
}
html.dark-theme .developer-home-wrap #intro p.lead {
  color: #E7D3F2;
}
html.dark-theme .developer-home-wrap h2,
html.dark-theme .developer-home-wrap h3 {
  color: white !important;
}
html.dark-theme .developer-home-wrap .card.project {
  background: linear-gradient(47deg, rgba(124, 109, 185, 0.12) 0%, rgba(124, 109, 185, 0.17) 100%);
  outline: none;
}
html.dark-theme .developer-home-wrap .card.project span.tag {
  background-color: rgba(14, 9, 45, 0.5);
  color: white !important;
}
html.dark-theme .developer-home-wrap .card.project:hover .card-image.dark {
  background: rgba(124, 109, 185, 0.07);
}
html.dark-theme .developer-home-wrap .card.project .card-image.dark {
  display: block;
}
html.dark-theme .developer-home-wrap .card.project .card-image.light {
  display: none;
}
html.dark-theme .developer-home-wrap .card.project figure.image {
  border-bottom: none;
}
html.dark-theme .developer-home-wrap .card.project h3 span {
  color: white !important;
}
html.dark-theme .developer-home-wrap .card.project p {
  color: #D3C3D9 !important;
}
html.dark-theme .developer-home-wrap .card.project .button,
html.dark-theme .developer-home-wrap .card.project .button strong {
  color: #0D203F !important;
}
html.dark-theme .developer-home-wrap .wasm-lang {
  border: 1px solid #A87CE6;
  background: rgb(16.6444444444, 10.7, 53.5) url(/static/image/arrow-right.png) no-repeat 95% center;
}
html.dark-theme .developer-home-wrap .wasm-lang .card-content h3 {
  color: white !important;
}
html.dark-theme .developer-home-wrap .wasm-lang .card-content p {
  color: #D3C3D9 !important;
}
html.dark-theme .developer-home-wrap ul.connect-links li a {
  color: #34E8BD;
}
html.dark-theme .developer-home-wrap .community-highlight {
  background-color: rgba(124, 109, 185, 0.2);
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: white !important;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  color: #0E092D;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p strong {
  color: #0E092D !important;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p a {
  color: #8967C2 !important;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  color: #8967C2;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button {
  color: white;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn.cm-btn-success {
  background-color: #34E8BD !important;
  color: #0D203F !important;
}
html.dark-theme .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cn-decline {
  background-color: transparent !important;
  color: #0E092D !important;
  border: 1px solid #0E092D !important;
}
html.dark-theme .klaro .cookie-modal .cm-modal .cm-header h1 {
  color: #0E092D;
}
html.dark-theme .external {
  background: url("../image/arrowexternal-dark.svg") no-repeat 0 0;
}

.documentation > .developer-home-wrap {
  padding-bottom: 5rem;
}
.documentation > .developer-home-wrap a.anchor-link {
  display: none !important;
}
.documentation > .developer-home-wrap .menu-wrap + article.content {
  max-width: 100vw !important;
  padding-top: 4.5vw;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide {
  padding-left: 0 !important;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide section {
  margin-left: 5vw !important;
  margin-right: 5vw !important;
  max-width: 90vw !important;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h1,
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h2,
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h3 {
  color: #0D203F;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h1 {
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding-right: 8vw;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-size: 3.33rem;
  font-weight: 500;
  line-height: 1.33;
  color: #0E092D;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h1:after {
  display: none;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide h2 {
  margin-bottom: 1.67rem;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide p.lead {
  color: rgb(55.2985074627, 94.6455223881, 158.4514925373);
  max-width: 80%;
  padding-right: 10%;
  font-size: 1.67rem;
  line-height: 1.75;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide section {
  overflow: visible !important;
}
.documentation > .developer-home-wrap .content.content-docs.content-docs-wide.content-docs-wide > section {
  max-width: 90vw !important;
  margin-left: 5vw !important;
  margin-right: 5vw !important;
  left: auto;
}
.documentation > .developer-home-wrap #projects {
  padding-top: 4.25rem;
}
.documentation > .developer-home-wrap .card-link::after {
  display: none;
}
.documentation > .developer-home-wrap .card.project {
  min-height: 484px;
  padding-bottom: 5rem;
  border-radius: 0.67rem;
  margin-bottom: 3.333rem;
  border: 1px solid #A87CE6;
  background: rgb(250.8142857143, 240.35, 255);
  box-shadow: rgba(0, 0, 0, 0.04) 1px 3px 5px;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.documentation > .developer-home-wrap .card.project:hover {
  box-shadow: rgb(82, 87, 118) 1px 2px 4px;
  margin-top: -3px;
}
.documentation > .developer-home-wrap .card.project:hover .card-image {
  background-color: rgba(255, 255, 255, 0.333);
}
.documentation > .developer-home-wrap .card.project span.tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(253, 248, 255, 0.5);
  color: rgb(105.0319148936, 127.4680851064, 238.4680851064);
  border-radius: 1rem;
  font-weight: 400;
  z-index: 750;
}
.documentation > .developer-home-wrap .card.project .card-content {
  padding: 0.5rem 2.6rem;
}
.documentation > .developer-home-wrap .card.project h3 {
  margin: 0.67rem 0 1.5rem;
  line-height: 1.425;
  font-size: 1.333rem;
  padding-right: 5%;
  color: #0E092D !important;
  font-weight: 400;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
.documentation > .developer-home-wrap .card.project h3 a {
  color: #345995 !important;
}
.documentation > .developer-home-wrap .card.project p {
  color: rgb(38.8059701493, 66.4179104478, 111.1940298507) !important;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: normal;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}
.documentation > .developer-home-wrap .card.project span {
  color: #0E092D !important;
}
.documentation > .developer-home-wrap .card.project span:after {
  display: none !important;
}
.documentation > .developer-home-wrap .card.project span:hover {
  background: transparent !important;
}
.documentation > .developer-home-wrap .card.project .card-image {
  background-color: transparent;
  position: relative;
  transition: 0.6s background-color ease-in-out;
}
.documentation > .developer-home-wrap .card.project .card-image figure {
  margin: 0;
}
.documentation > .developer-home-wrap .card.project .card-image.dark {
  display: none;
}
.documentation > .developer-home-wrap .card.project .button {
  color: #0E092D !important;
  font-size: 1rem;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 2.333rem;
  font-weight: normal !important;
  letter-spacing: 0.2em;
  padding: 1rem 1.5rem;
}
.documentation > .developer-home-wrap .card.project .button:hover {
  background-color: #34E8BD !important;
  border-color: rgb(56.5809734513, 232.5190265487, 190.489380531);
  box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.187);
}
.documentation > .developer-home-wrap .wasm-lang {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 3px 5px;
  overflow: hidden;
  background: #ECE5EE;
  min-height: 140px;
  margin-bottom: 6.25em;
  border: 1px solid #A87CE6;
  background: rgb(250.8142857143, 240.35, 255) url(/static/image/arrow-right.png) no-repeat 95% center;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.documentation > .developer-home-wrap .wasm-lang figure.image {
  margin: 0;
}
.documentation > .developer-home-wrap .wasm-lang .card-image {
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
}
.documentation > .developer-home-wrap .wasm-lang .card-content {
  padding-left: 12rem;
}
.documentation > .developer-home-wrap .wasm-lang .card-content h3 {
  margin: 0.67rem 0;
  line-height: 1.425;
  font-size: 1.67rem;
  padding-right: 5%;
  color: #0E092D !important;
  font-weight: 400;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
.documentation > .developer-home-wrap .wasm-lang .card-content h3 a {
  color: #345995 !important;
}
.documentation > .developer-home-wrap .wasm-lang .card-content p {
  color: rgb(38.8059701493, 66.4179104478, 111.1940298507) !important;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: normal;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}
.documentation > .developer-home-wrap .community-highlight {
  background-color: rgb(69.5, 77.9722222222, 130.5);
  border-radius: 0.5rem;
  margin: 0 5vw 0 0;
  padding: 0;
  position: relative;
  min-height: 280px;
}
.documentation > .developer-home-wrap .community-highlight .carousel-cell {
  min-height: 250px;
  width: 100%;
  padding: 2.5rem 2.5rem 1.67rem 3rem;
}
.documentation > .developer-home-wrap .community-highlight event {
  position: relative;
  display: block;
  padding-right: 38%;
}
.documentation > .developer-home-wrap .community-highlight a {
  color: white !important;
}
.documentation > .developer-home-wrap .community-highlight date,
.documentation > .developer-home-wrap .community-highlight eventtitle p {
  display: block;
}
.documentation > .developer-home-wrap .community-highlight date {
  color: #34E8BD;
  font-size: 0.925rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  line-height: 1.5;
}
.documentation > .developer-home-wrap .community-highlight eventtitle {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.025rem;
}
.documentation > .developer-home-wrap .community-highlight p {
  margin: 1.5rem 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
.documentation > .developer-home-wrap .community-highlight img {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: 140px;
}
.documentation > .developer-home-wrap .community-highlight.community-highlight-short {
  min-height: auto;
  margin-top: -1rem;
  margin-bottom: 0;
  background-color: rgb(82.791875, 92.8844097222, 155.458125);
  padding-right: 0;
}
.documentation > .developer-home-wrap .community-highlight.community-highlight-short .event .date {
  width: 33%;
  float: left;
  display: inline-block;
}
.documentation > .developer-home-wrap .community-highlight.community-highlight-short .event .eventtitle {
  display: inline-block;
  width: 57%;
  float: left;
}
.documentation > .developer-home-wrap ul.connect-links {
  list-style: none;
  margin: 1rem 0 0;
}
.documentation > .developer-home-wrap ul.connect-links li {
  list-style: none;
  line-height: 2;
  margin: 0;
}
.documentation > .developer-home-wrap ul.connect-links li a {
  color: rgb(117.3026315789, 68.5789473684, 199.9210526316);
}
.documentation > .developer-home-wrap .external {
  width: 1.333rem;
  height: 1rem;
  background: url("../image/arrowexternal.svg") no-repeat 0 0;
  display: inline-block;
}

.documentation main aside.menu {
  padding-top: 6.5rem !important;
}

.documentation header.headroom--unpinned + main aside.menu {
  padding-top: 1.5rem !important;
}

.documentation header.headroom--unpinned + main h1:first-of-type + ul {
  top: 2rem !important;
}

.menu-wrap {
  padding: 0 1vw !important;
  z-index: 665;
}

.menu-wrap + article.content {
  padding-left: calc(17.5vw + 0.75rem);
}
.menu-wrap + article.content footer.footer-links {
  padding: 1.25rem 2.5vw !important;
}

.documentation aside.menu {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: none !important;
  padding-bottom: 8rem !important;
  padding-top: 0 !important;
  background: transparent none !important;
  overflow-x: hidden;
  overflow-y: auto;
  width: 16vw;
  background: #E6D2F1;
}
.documentation aside.menu .version-dropdown {
  margin: 0 1rem 1rem 0;
  padding: 0.2rem;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid #E7D3F2;
}
.documentation aside.menu .accordion-tabs {
  flex-grow: 1;
  z-index: 200;
  padding-bottom: 3.25rem;
  overflow: visible;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label {
  font-size: 1rem;
  color: #0D203F;
  letter-spacing: 0.033rem;
  margin: 0.25rem 0 !important;
  padding: 0.25rem 0.75vw !important;
  font-weight: normal;
  border-radius: 0.67rem;
  justify-content: space-between;
  text-transform: none;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 15.5vw;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label:hover {
  background-color: rgba(255, 255, 255, 0.333);
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label:hover::after {
  opacity: 0.25;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label.stay-open::after {
  opacity: 0.5;
}
.documentation aside.menu .button-wrap {
  min-height: 5rem;
  position: fixed;
  bottom: 0;
  display: flex;
  left: 0;
  width: 17.5vw;
  padding: 0 1.25vw !important;
  flex-direction: column;
  z-index: 500;
  background: transparent;
}
.documentation aside.menu a.button {
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  font-size: 0.775rem !important;
  border: none !important;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1.25rem 0 !important;
  margin-top: 1.125rem;
}
.documentation aside.menu a.button svg {
  margin-right: 1rem;
}
.documentation aside.menu a.button.is-primary {
  border: 2px solid #34E8BD !important;
  background-color: transparent !important;
}
.documentation aside.menu a.button.is-secondary {
  border: none !important;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
.documentation aside.menu a.button:hover path,
.documentation aside.menu a.button:hover svg {
  fill: #34E8BD;
}
.documentation aside.menu ul {
  margin-bottom: 0rem;
}
.documentation aside.menu ul.menu-list.accordion-menu-item-content li a {
  font-size: 0.855rem;
  transition: border-color ease-in-out 0.3s;
  color: #384687;
}
.documentation aside.menu a {
  padding: 0.2rem 0.5vw;
  font-weight: normal;
}
.documentation aside.menu a.button {
  padding: 0 1.333vw;
}
.documentation aside.menu .menu-label {
  padding: 1rem 1vw 0;
}
.documentation aside.menu .accordion-tabs {
  border-radius: 8px;
}
.documentation aside.menu .accordion-tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item-content {
  max-height: 0;
  padding: 0 1em;
  overflow: hidden;
  padding-left: 0.2rem;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item-content.stay-open {
  max-height: 100vh;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label.stay-open {
  cursor: auto;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label.stay-open::after {
  transform: rotate(90deg);
  margin-top: 0.3rem !important;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked + .menu-label::after {
  transform: rotate(90deg);
  margin-top: 0.3rem !important;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content {
  max-height: 100vh;
  padding: 0.25em 0.75rem 1.5rem 0.75rem;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a {
  position: relative;
  background: transparent !important;
  line-height: 1.77;
  letter-spacing: 0.02rem;
  padding: 0.3rem 1vw;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a:before,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a:before {
  background: #E7D3F2;
  display: block;
  content: " ";
  min-height: 2rem;
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.175rem;
  transition: all 0.3s ease-in-out;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a:hover:before, .documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a.active:before,
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a .is-active:before,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a:hover:before,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a.active:before,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a .is-active:before {
  background: #A87CE6;
}
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a.active,
.documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a .is-active,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a.active,
.documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a .is-active {
  font-weight: bold;
}

#topbar.navbar {
  display: flex;
  align-items: center;
}
#topbar.navbar.is-wide {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#topbar.navbar .logo-wrap {
  display: flex;
  align-items: center;
  width: 17.5vw;
  margin-right: -2px;
  position: relative;
  border: none;
}
#topbar.navbar .logo-wrap .logo {
  margin: 0.6rem 0 0.4rem 1.2rem !important;
  height: 2.25rem;
  min-width: 8rem;
  padding: 0.3rem 1.125rem;
  background: url(/static/image/spin-logo-light.svg) no-repeat 0 0;
  background-size: contain;
  text-indent: -9999rem;
  position: relative;
}
#topbar.navbar .logo-wrap:after {
  width: 1px;
  height: 2rem;
  display: block;
  content: " ";
  background: rgba(231, 211, 242, 0.75);
  position: absolute;
  right: 0;
}
#topbar.navbar .navbar-menu {
  padding-left: 1.33vw;
  padding-right: 1vw;
  display: flex;
  height: 4rem;
}
#topbar.navbar .navbar-menu .has-dropdown a.navbar-link {
  padding-right: 2rem;
}
#topbar.navbar .navbar-menu .has-dropdown a.navbar-link:after {
  border-color: #384687;
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0.5;
  border-width: 1px;
  border-radius: 0;
  font-size: 0.5rem;
  right: 0.775rem;
  margin-top: -0.67em;
}
#topbar.navbar .navbar-menu a.navbar-item {
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  padding: 0.3rem 1.125rem;
  letter-spacing: 0.025rem;
  font-weight: normal;
  margin-left: 1vw;
  margin-right: 0.67vw;
  color: #384687;
  border-radius: 0.725rem;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .navbar-menu a.navbar-item:hover {
  background: rgba(230, 210, 241, 0.25) !important;
}
#topbar.navbar .navbar-menu a.navbar-link {
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.0125rem;
  padding: 0.3rem 1.125rem;
  margin-left: 1vw;
  margin-right: 0.67vw;
  color: #384687;
  border-radius: 0.725rem;
  line-height: 1.5;
  font-weight: 500 !important;
}
#topbar.navbar .navbar-menu a.navbar-link.is-active {
  background: rgba(230, 210, 241, 0.25) !important;
}
#topbar.navbar .navbar-menu a.navbar-link .is-arrowless:after {
  display: none;
}
#topbar.navbar .navbar-menu a.navbar-link:hover {
  background: rgba(230, 210, 241, 0.425) !important;
}
#topbar.navbar .navbar-menu a.navbar-link.dark-mode {
  display: flex;
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  padding: 0;
  margin-right: 1.425rem;
}
#topbar.navbar .navbar-menu a.navbar-link.dark-mode:hover {
  background: transparent !important;
}
#topbar.navbar .navbar-menu a.navbar-link.dark-mode:after {
  display: none !important;
}
#topbar.navbar .navbar-menu a.navbar-link.dark-mode svg {
  fill: #BCA2CA;
  opacity: 0.925;
}
#topbar.navbar .navbar-menu a.navbar-link.dark-mode svg:hover {
  fill: rgb(131.8421052632, 88.2631578947, 205.7368421053);
  background: transparent !important;
}
#topbar.navbar .navbar-menu a.navbar-stack {
  display: inline-block;
  min-width: 10rem;
}
#topbar.navbar .navbar-menu a.navbar-stack strong, #topbar.navbar .navbar-menu a.navbar-stack small {
  display: block;
}
#topbar.navbar .navbar-menu a.navbar-stack strong {
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  color: #0E092D;
  line-height: 1.5;
  font-weight: 500;
}
#topbar.navbar .navbar-menu a.navbar-stack small {
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 12px;
  max-width: 9rem;
  line-height: 1.2;
  opacity: 0.7;
}
#topbar.navbar .navbar-menu a.navbar-item.button {
  margin: 0 0.333vw !important;
  font-size: 0.925rem !important;
  color: #0E092D !important;
  letter-spacing: 0.025em;
  padding: 1rem;
  line-height: 1.25;
  border-radius: 3rem;
}
#topbar.navbar .navbar-menu a.navbar-item.button.is-primary {
  border: none;
  background-color: #34E8BD;
}
#topbar.navbar .navbar-menu a.navbar-item.button.is-primary:hover {
  background-color: #34E8BD !important;
}
#topbar.navbar .navbar-menu a.navbar-item.button.is-secondary {
  border: 2px solid #34E8BD;
  background: transparent !important;
}
#topbar.navbar .navbar-menu a.navbar-item.button.is-secondary:hover {
  background-color: #34E8BD !important;
  color: #0E092D !important;
}
#topbar.navbar .navbar-menu a.navbar-item.button i {
  color: #C5FFF1;
  font-style: normal;
  margin: 0 -0.225rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  padding: 0.125rem 0.33rem !important;
  font-size: 0.825rem;
  background: rgba(0, 0, 0, 0.125);
  border-radius: 0.5rem;
}
#topbar.navbar .navbar-menu .github-button-wrap {
  margin: 0.5rem 1rem 0 1rem;
}
#topbar.navbar .navbar-menu .github-button-wrap a.github-button {
  text-indent: -9999rem;
  color: #666;
  display: inline-block;
  position: relative;
}
#topbar.navbar .navbar-menu .github-button-wrap + a.navbar-item.button {
  margin-right: -1rem !important;
}
#topbar.navbar .dropdown {
  position: relative;
}
#topbar.navbar .dropdown :hover .dropdown-content {
  display: block;
}
#topbar.navbar .dropdown .logo-project {
  display: none;
}
#topbar.navbar .dropdown:hover + .dropdown-backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
#topbar.navbar .dropdown-content {
  display: inline-block;
  min-width: 200px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin: 2rem 0 0 0.3335rem;
}
#topbar.navbar .dropdown-content a {
  color: #213762;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline;
  cursor: pointer;
  font-weight: bold;
  margin-right: 1.3335rem;
  position: relative;
}
#topbar.navbar .dropdown-content a.is-active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  width: 90%;
  margin: auto;
  height: 3px;
  background: #0e8fdd;
}
#topbar.navbar .dropdown-content :first-child {
  display: none;
}
#topbar.navbar {
  /* Show the dropdown menu on hover */
}
#topbar.navbar .dropdown:hover .dropdown-content {
  display: block;
}
#topbar.navbar .logo-wrap .logo-project {
  margin: 1.875rem 1.125rem 0 0.125rem;
  display: inline-block;
}

.navbar-menu {
  position: relative;
  z-index: 1020;
  display: flex;
}
.navbar-menu .navbar-start {
  display: flex;
  flex: 1;
  z-index: 1023;
  align-items: center;
}
.navbar-menu .navbar-start .is-hoverable {
  z-index: 9999;
}
.navbar-menu .navbar-start .is-hoverable .navbar-link {
  margin-left: 0;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0 3.33rem 0 0.75rem;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown {
  width: 380px;
  margin-left: -1.75vw;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item {
  width: 92%;
  margin-left: 0;
  padding: 0;
  border-radius: 0.75rem !important;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item img {
  margin: 0 0.5rem 0 0;
  max-width: 2rem;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content {
  width: 90%;
  padding: 1rem 1rem 1rem 1.5rem;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content .title {
  font-size: 1.125rem !important;
  font-weight: 500;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  color: #0E092D;
  display: flex;
  margin: 0 1rem 0.75rem 0.25rem;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content .title .is-blue {
  color: rgb(59.0957446809, 88.4042553191, 233.4042553191);
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content .title .tag {
  color: #8967C2;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.075rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  margin: 0.15rem 0 0 1.5rem;
  line-height: 1.25;
  font-size: 11px;
  height: 1.25rem;
  display: inline-block;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  background-color: rgba(253, 248, 255, 0.2);
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content .title .external-icon {
  margin-left: 0.5rem;
  max-width: 9px;
  max-height: 9px;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content:hover .title::before {
  background-color: #34E8BD;
}
.navbar-menu .navbar-start .is-hoverable .navbar-dropdown .navbar-item .project-content .description {
  display: inline-block !important;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 0.75rem;
  max-width: 19rem !important;
  letter-spacing: 0;
  margin-left: 0.25rem;
  white-space: normal;
}
.navbar-menu .navbar-start .is-hoverable + .overlay {
  z-index: 9998;
  position: fixed;
  left: 500%;
  top: 0%;
  width: 100vw;
  height: 100vw;
  opacity: 0;
}
.navbar-menu .navbar-start .is-hoverable:hover + .overlay {
  opacity: 1;
  left: 0%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color ease-in-out 0.75s 0.1s;
}
.navbar-menu .navbar-end {
  z-index: 1022;
  margin-right: 1.5vw;
  align-items: center;
}
.navbar-menu a {
  margin-left: 1.75rem;
}
.navbar-menu a.navbar-item {
  font-size: 1.125rem;
  margin-left: 0.67rem;
  position: relative;
}
.navbar-menu a.navbar-item span {
  transition: all 0.3s ease-in-out;
  padding: 0.25rem 1rem;
  border-radius: 1.75rem;
  line-height: 1.5;
}
.navbar-menu a.navbar-item span:hover {
  background-color: rgb(228.1734693878, 218.4183673469, 231.8316326531);
}

.search-modal-container {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}

.search-button-container {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  width: 100%;
  top: 0;
  left: 2px;
  bottom: 0;
  right: 0;
  z-index: 11;
}

.mobile-search-container {
  flex-grow: 1;
  justify-content: end;
  display: flex;
}
@media (min-width: 1025px) {
  .mobile-search-container {
    display: none;
  }
}

.search-button {
  border: none !important;
  z-index: 19;
  cursor: text;
  display: block;
  height: 4.333rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  text-align: right;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.search-button.mobile {
  display: none;
  padding: 0;
  width: 4rem;
  height: 4rem;
}
.search-button.mobile.enable {
  display: block;
}
.search-button.mobile::after {
  right: 1rem;
}
.search-button.mobile::before {
  right: 0rem;
}
.search-button:after {
  background: url("/static/image/search.svg") no-repeat 0 0;
  background-size: cover;
  display: inline-block;
  z-index: -1;
  height: 1.35rem;
  width: 1.35rem;
  content: " ";
  top: 1.33rem;
  right: 31.35rem;
}
.search-button:hover {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5019607843);
}

.modal-box {
  width: 80%;
  height: auto;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ECE5EE;
  background: linear-gradient(45deg, rgb(236, 229, 238) 0%, rgb(218, 212, 223) 100%);
  border-radius: 0.825rem;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 3px 5px;
  padding: 0.67rem;
  position: fixed;
  top: 7.5vh;
}
@media (max-width: 1025px) {
  .modal-box {
    width: 95%;
  }
}

.modal-search-bar {
  box-sizing: border-box;
  line-height: 2;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 0.667rem;
  border: 0px;
  margin-bottom: 0.67rem;
  border: 1px solid #BEA7E5;
  color: rgb(117.3026315789, 68.5789473684, 199.9210526316);
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}
.modal-search-bar:focus {
  outline: none;
  color: rgb(97.8710526316, 51.9315789474, 175.7684210526);
}

.result-section-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  font-size: 0.825rem;
  color: rgb(170.9285714286, 140.3571428571, 182.3928571429);
  line-height: 2;
}
.result-section-container .suggested-project {
  flex-direction: column;
  margin: 1.125rem;
  padding: 0.75rem 1.333rem 0.825rem;
  border-radius: 0.67rem;
  color: #213762;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.result-section-container .suggested-project:first-of-type, .result-section-container .suggested-project:nth-child(2) {
  margin-top: 2rem;
}
.result-section-container .suggested-project .project-title {
  font-size: 1.25rem;
  font-weight: bold;
  font-weight: 600;
  color: rgb(117.3026315789, 68.5789473684, 199.9210526316);
}
.result-section-container .suggested-project .recommended-navs {
  justify-content: space-evenly;
  align-items: left;
  display: flex;
  position: relative;
}
@media (max-width: 1025px) {
  .result-section-container .suggested-project .recommended-navs {
    display: block;
    padding-left: 2rem;
  }
}
.result-section-container .suggested-project .recommended-navs:before {
  content: "↪";
  position: absolute;
  left: 0;
  width: 2rem;
  line-height: 1.5;
  display: inline-block;
  color: #BEA7E5;
  opacity: 0.5;
  position: absolute;
  left: 0.5rem;
  font-size: 1.2rem;
  top: 0.125rem;
}
.result-section-container .suggested-project .recommended-navs a.suggested-project-link {
  font-size: 0.925rem;
  display: flex;
  justify-content: left;
  align-items: left;
  overflow-y: auto;
  border-radius: 0.25rem;
  color: rgb(139.1118421053, 98.1052631579, 208.6447368421);
  margin: 0.1rem 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: normal !important;
}
.result-section-container .suggested-project .recommended-navs a.suggested-project-link:hover {
  color: rgb(19.5427631579, 48.1052631579, 94.7072368421);
}
.result-section-container .result-section {
  width: 100%;
  flex-grow: 1;
  overflow-y: auto;
  border-radius: 0.667rem;
}
.result-section-container .result-section::-webkit-scrollbar {
  width: 0px;
}
.result-section-container .result-filters {
  display: flex;
  justify-content: space-between;
  padding: 0 0.4rem 0.4rem 0.4rem;
  align-items: center;
  line-height: 2;
}
.result-section-container .result-filters .filter-categories {
  max-width: 80%;
}
@media (max-width: 1025px) {
  .result-section-container .result-filters .filter-categories {
    margin-top: 2rem;
    position: relative;
  }
  .result-section-container .result-filters .filter-categories:before {
    position: absolute;
    top: -2rem;
  }
}
.result-section-container .result-filters .filter-categories:before {
  display: inline-block;
  content: "Filters:";
  font-size: 0.825rem;
  color: rgb(170.9285714286, 140.3571428571, 182.3928571429);
  padding-right: 0.5rem;
  float: left;
}
.result-section-container .result-filters .reset-filter {
  font-size: 0.8rem;
  color: rgb(170.9285714286, 140.3571428571, 182.3928571429);
}
@media (max-width: 1025px) {
  .result-section-container .result-filters .reset-filter {
    transform: translateY(-1rem);
  }
}
.result-section-container .result-filters code {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  text-transform: lowercase;
  border-radius: 1rem;
  margin-left: 0.5rem;
  padding: 0.275rem 0.67em;
  color: #525776;
  background-color: rgb(230.3662790698, 221.2906976744, 232.9593023256);
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
  padding-right: 1.5rem;
  position: relative;
}
.result-section-container .result-filters code:after, .result-section-container .result-filters code:before {
  display: inline-block;
  content: " ";
  background-color: #ECE5EE;
  width: 2px;
  height: 11px;
  transform: rotate(45deg);
  position: absolute;
  right: 0.75rem;
  top: 0.375rem;
}
.result-section-container .result-filters code:before {
  transform: rotate(135deg);
}
.result-section-container .result-filters code.active {
  background-color: rgb(203.3681102041, 184.592877551, 210.408822449) !important;
  color: rgb(146.3815789474, 107.9473684211, 211.5526315789) !important;
  opacity: 1;
}
.result-section-container .result-filters code:hover {
  background-color: rgb(203.4436734694, 184.6959183673, 210.4740816327) !important;
}

.result-block {
  margin: 1.125rem;
  padding: 0.75rem 1.333rem 0.825rem;
  border-radius: 0.67rem;
  color: #213762;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.result-block a {
  color: rgb(117.3026315789, 68.5789473684, 199.9210526316);
  margin-bottom: 0.67rem;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  padding-right: 15%;
  position: relative;
  font-size: 1.25rem;
}
.result-block a span {
  line-height: 1.4;
  display: block;
  width: auto;
}
.result-block a:hover {
  color: rgb(19.5427631579, 48.1052631579, 94.7072368421);
}
@media (max-width: 1025px) {
  .result-block a {
    display: block;
    padding-right: 0;
  }
}
.result-block code {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  position: absolute;
  text-transform: lowercase;
  border-radius: 1rem;
  margin-left: 0.5rem;
  padding: 0.25rem 0.67em;
  right: 0;
  top: 0.125rem;
  color: rgb(146.3815789474, 107.9473684211, 211.5526315789);
  background-color: rgb(245.3469387755, 241.8367346939, 246.6632653061);
}
@media (max-width: 1025px) {
  .result-block code {
    position: relative;
    transform: scale(0.8) translate(-1.5rem, -0.5rem);
    display: inline-block;
    width: auto;
  }
}
.result-block a.result-subitem {
  font-size: 0.925rem;
  display: flex;
  align-items: center;
  overflow-y: auto;
  border-radius: 0.25rem;
  color: rgb(139.1118421053, 98.1052631579, 208.6447368421);
  margin: 0.2rem 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: normal !important;
}
.result-block a.result-subitem:hover {
  color: rgb(19.5427631579, 48.1052631579, 94.7072368421);
}

.result-item-icon {
  padding: 0 0.5rem 0 0;
}

html.dark-theme #topbar.navbar .search-button:hover {
  background: linear-gradient(180deg, rgba(33, 55, 98, 0) 0%, rgba(33, 55, 98, 0.25) 100%);
}
html.dark-theme .search-button-container:after {
  background: url("../image/search-white.svg") no-repeat 0 0 !important;
}
html.dark-theme .search-button {
  color: white;
  border: none !important;
}
html.dark-theme .search-button::before {
  background: rgba(231, 211, 242, 0.2) !important;
}
html.dark-theme .search-modal-container .modal-wrapper {
  background-color: rgba(0, 0, 0, 0.2509803922);
}
html.dark-theme .search-modal-container .modal-box {
  background: rgb(49.0591603053, 81.7652671756, 145.6908396947);
  background: linear-gradient(45deg, rgb(33, 55, 98) 0%, rgb(82, 92, 118) 100%);
}
html.dark-theme .search-modal-container input[type=text].modal-search-bar {
  background-color: rgb(23.3645038168, 38.9408396947, 69.3854961832);
  color: white;
  border: 1px solid rgb(160.9210526316, 127.6315789474, 217.3684210526);
  outline: none;
}
html.dark-theme .search-modal-container input[type=text].modal-search-bar::placeholder {
  color: rgb(219.0789473684, 206.3684210526, 240.6315789474);
}
html.dark-theme .search-modal-container .result-block {
  background-color: #213762;
}
html.dark-theme .search-modal-container .result-block a {
  color: white;
}
html.dark-theme .search-modal-container .result-block code {
  background-color: #0D203F;
}
html.dark-theme .search-modal-container .result-block a.result-subitem {
  background-color: transparent;
}
html.dark-theme .search-modal-container .result-block a.result-subitem:hover {
  color: rgb(73.197761194, 118.3432835821, 191.552238806);
}
html.dark-theme .search-modal-container .result-block .result-subheading-container a {
  color: #34E8BD;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code,
html.dark-theme .search-modal-container .result-section-container .result-filters span {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code {
  color: #ECE5EE !important;
  background-color: #213762 !important;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code:hover {
  opacity: 0.85;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code:before, html.dark-theme .search-modal-container .result-section-container .result-filters code:after {
  background-color: #0D203F;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code.active {
  background-color: rgb(160.9210526316, 127.6315789474, 217.3684210526) !important;
}
html.dark-theme .search-modal-container .result-section-container .result-filters code.active:before, html.dark-theme .search-modal-container .result-section-container .result-filters code.active:after {
  background-color: rgb(71.545, 75.9075, 102.955);
}
html.dark-theme .search-modal-container .result-section-container .suggested-project {
  background-color: #213762;
}
html.dark-theme .search-modal-container .result-section-container .suggested-project .project-title {
  color: white;
}
html.dark-theme .search-modal-container .result-section-container .suggested-project .suggested-project-link {
  background-color: transparent;
  color: #34E8BD;
}

footer.footer-links {
  min-height: auto;
  z-index: 1400;
  background: transparent !important;
  border-top: 1px solid rgba(230, 210, 241, 0.67) !important;
  margin: 7.25rem auto 0 !important;
  padding: 1.25rem 0 1.25rem !important;
}
footer.footer-links .level {
  align-items: flex-start;
}
footer.footer-links .footer-legal p {
  font-size: 0.825rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}
footer.footer-links .footer-legal a {
  color: inherit;
  text-decoration: underline;
}
footer.footer-links .footer-legal a:hover {
  color: #A87CE6;
}
footer.footer-links .footer-social .button.is-text {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
}
footer.footer-links .footer-social .button.is-text:hover {
  background-color: transparent;
  color: #A87CE6;
}
footer.footer-links .navbar {
  background-color: transparent;
}
footer.footer-links .navbar a.navbar-item {
  font-weight: normal;
  font-size: 1.125rem;
  color: #0E092D;
  border: none;
  background-color: transparent;
  outline: none;
}
footer.footer-links .footer-logo {
  max-width: 11.5rem;
}
footer.footer-links .footer-logo:hover {
  background-color: transparent;
}
footer.footer-links .footer-logo:hover:after {
  display: none;
}

.documentation .feedback-wrapper {
  width: 15vw;
  height: 100%;
  position: fixed;
  top: 0;
  right: 90px;
  z-index: 10;
}
.documentation .feedback-wrapper.end-of-page {
  position: relative;
  width: 100%;
  right: 0;
  display: flex;
  justify-content: center;
  max-width: 800px;
}
.documentation .feedback-wrapper.end-of-page .feedback-modal {
  padding: 1rem;
  width: 100%;
}
.documentation .feedback-wrapper.end-of-page .feedback-modal .statement {
  font-weight: 400;
  margin: 1rem;
}
.documentation .feedback-wrapper.end-of-page .feedback-modal .feedback-response-container {
  margin-bottom: 1rem;
}
.documentation .feedback-wrapper .feedback-modal {
  position: sticky;
  top: 80vh;
  min-height: 50px;
  width: 15vw;
  background-color: rgb(241.7368421053, 230.6842105263, 247.8157894737);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in;
  border-radius: 0.67rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.documentation .feedback-wrapper .feedback-modal textarea {
  width: 100%;
  height: 75px;
  border: none !important;
  border-radius: 0.33rem;
  resize: none;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
}
.documentation .feedback-wrapper .feedback-modal .close {
  width: 100%;
  height: 1rem;
  position: relative;
}
.documentation .feedback-wrapper .feedback-modal .close::after {
  width: 1.25rem;
  height: 1.25rem;
  content: "x";
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.documentation .feedback-wrapper .feedback-modal .statement {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  text-align: center;
}
.documentation .feedback-wrapper .feedback-modal a {
  width: 100%;
  background: #1FBCA0;
  font-size: 1rem;
  border-radius: 0.33rem;
  padding: 0.4rem;
  text-decoration: none;
  color: white;
  text-align: center;
}
.documentation .feedback-wrapper .feedback-modal .feedback-response-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}
.documentation .feedback-wrapper .feedback-modal .feedback-response-container .feedback-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  height: 50px;
  width: 50px;
  background: transparent;
}
.documentation .feedback-wrapper .feedback-modal .feedback-response-container .feedback-button svg path {
  fill: rgb(182.2211538462, 145.4134615385, 234.0865384615);
}
.documentation .feedback-wrapper .feedback-modal .feedback-response-container .feedback-button svg:hover path {
  fill: rgb(160.8894230769, 113.2932692308, 227.9567307692);
}

html.dark-theme .documentation .content .note .button {
  top: 0 !important;
  transform: none !important;
  background-color: #1FBCA0 !important;
}
html.dark-theme body main .feedback-wrapper .feedback-modal {
  background-color: rgb(23.9166666667, 15.375, 76.875) !important;
}
html.dark-theme body main .feedback-wrapper .feedback-modal textarea {
  background-color: rgb(33.8333333333, 21.75, 108.75) !important;
}
html.dark-theme body main .feedback-wrapper .feedback-modal a {
  background: #1FBCA0;
}

@media screen and (max-width: 1661px) {
  .documentation main .feedback-wrapper {
    position: relative;
    width: 100%;
    right: 0;
    display: flex;
    justify-content: center;
  }
  .documentation main .feedback-wrapper .feedback-modal {
    width: 100%;
    padding: 1rem;
  }
  .documentation main .feedback-wrapper .feedback-modal .statement {
    font-weight: 400;
    margin: 1rem;
  }
  .documentation main .feedback-wrapper .feedback-modal .feedback-response-container {
    margin-bottom: 1rem;
  }
  .documentation main .feedback-wrapper .feedback-modal .feedback-response-container button {
    top: 0;
  }
}
.documentation .content .note .button {
  top: 0 !important;
  transform: none !important;
}

.card-example-list .card {
  display: flex;
  height: 12rem;
  overflow-y: hidden;
  flex-direction: column;
  background: rgb(249.3571428571, 235.25, 255);
  padding: 1.333rem;
  border-radius: 1.333rem;
  overflow: hidden;
  border: 1px solid rgb(219.1949152542, 190.5508474576, 234.9491525424);
  transition: background 0.5s ease-in-out 0;
  transition: border-color 0.3s ease-in-out 0;
  z-index: 800;
  box-shadow: 0 0.25rem 0.333rem rgba(0, 0, 0, 0.05);
}
.card-example-list .card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 2rem;
  transition: all 0.5s ease-in-out 0.15s;
}
.card-example-list .card header .category {
  background-color: white;
  display: inline-block;
  border-radius: 0.67rem;
  padding: 0.15rem 0.67rem;
  margin: 0 0 0 -0.25rem;
  color: #213762;
  font-size: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #384687;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  letter-spacing: 0.05rem;
  opacity: 1;
  transition: all 0.5s ease-in-out 0.15s;
}
.card-example-list .card header .category svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  fill: #384687;
  opacity: 0.8;
}
.card-example-list .card header .icon {
  width: 20px;
  height: 20px;
}
.card-example-list .card header .icon path {
  stroke: black;
}
.card-example-list .card article {
  margin-top: 1rem;
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 600;
  transition: margin-top 0.5s ease-in-out 0.25s;
  overflow-y: hidden;
}
.card-example-list .card article h3 {
  font-weight: 500;
  font-size: 1.2rem;
  color: #0E092D;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  line-height: 1.35;
  margin: 0.25rem 0 1rem;
  padding: 0 !important;
  letter-spacing: 0.035rem;
  display: -webkit-box;
  overflow-y: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.5em;
}
.card-example-list .card article h3 a {
  display: none;
}
.card-example-list .card .summary {
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-weight: 400;
  color: #282F55;
  transition: opacity 0.5s ease-in-out 0.25s;
  letter-spacing: 0.05rem;
}
.card-example-list .card .tags {
  font-size: 0.75rem;
  position: absolute;
  bottom: 1.33rem;
  left: 1.25rem;
  right: 1.25rem;
  overflow: hidden;
}
.card-example-list .card .tags span {
  padding: 0.2rem;
  margin-right: 0.5rem;
  color: #8967C2;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  letter-spacing: 0.0825rem;
  line-height: 1.21538rem;
}
.card-example-list .card:hover {
  border-color: #A87CE6;
  background: rgb(251.5428571429, 242.9, 255);
}
.card-example-list .card:hover header {
  opacity: 0;
  transform: translateY(-2rem);
  max-height: 0;
  margin: 0;
}
.card-example-list .card:hover header .category {
  opacity: 0.2;
}
.card-example-list .card:hover article {
  flex-grow: 0;
  margin-top: -0.5rem;
  max-height: 8.2rem;
}
.card-example-list .card:hover .summary {
  max-height: 200px;
  flex-grow: 1;
  opacity: 1;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.dark-theme body .card-example-list a.card {
  background: #202644 !important;
  border-color: rgb(115.8098591549, 75.7042253521, 183.0457746479);
  color: white;
}
.dark-theme body .card-example-list a.card:hover {
  border-color: #A87CE6;
  background: linear-gradient(105deg, rgb(56, 44, 81) 0%, rgb(37, 31, 58) 100%) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
}
.dark-theme body .card-example-list a.card .category {
  color: #E7D3F2;
  background-color: rgb(56.6507746479, 36.3757605634, 90.6412394366) !important;
}
.dark-theme body .card-example-list a.card .category svg {
  fill: #E7D3F2;
}
.dark-theme body .card-example-list a.card .summary {
  color: white !important;
}
.dark-theme body .card-example-list a.card .tags span {
  color: rgb(189.3317307692, 156.1201923077, 236.1298076923);
}
.dark-theme body .card-example-list a.card article {
  color: white;
}
.dark-theme body .card-example-list a.card article h3 {
  color: white;
}

@media screen and (max-width: 1023px) {
  main.is-fullwidth {
    max-width: 92vw !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  #topbar.navbar .logo-wrap {
    width: 100% !important;
  }
  #topbar.navbar .navbar-menu {
    display: none !important;
  }
  #topbar.navbar .search-button-container {
    display: none;
  }
  .dropdown .logo-project {
    display: block;
  }
  .dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    padding: 0;
    border-radius: 0.667rem;
    margin: 0;
  }
  .dropdown .dropdown-content a {
    color: #213762;
    font-size: 1.125rem;
    text-decoration: none;
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    font-weight: bold;
    margin: 0;
  }
  .dropdown .dropdown-content a.is-active::after {
    display: none;
  }
  .dropdown .dropdown-content a:hover {
    background-color: #e9e1eb;
  }
  .dropdown :hover .dropdown-content {
    display: block;
  }
  .dropdown:hover + .dropdown-backdrop {
    backdrop-filter: blur(6px);
  }
  .menu-wrap + article.content {
    max-width: 95vw !important;
    padding-left: 0 !important;
  }
  .menu-wrap + article.content footer.footer-links {
    padding: 1.25rem 0 !important;
  }
  .documentation aside.menu {
    background: linear-gradient(105deg, rgb(239, 227, 245) 0%, rgb(240, 230, 244) 100%) !important;
    width: 100vw !important;
    padding-bottom: 0 !important;
  }
  .documentation aside.menu .search-button-container {
    display: none;
  }
  .documentation aside.menu a {
    padding: 0.6rem 0.75rem;
  }
  .documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label {
    width: 100%;
  }
  .documentation aside.menu .accordion-tabs .accordion-menu-item .accordion-menu-item-content.stay-open li a,
  .documentation aside.menu .accordion-tabs .accordion-menu-item input:checked ~ .accordion-menu-item-content li a {
    font-size: 1rem;
    padding: 0.3rem 2vw;
  }
  .documentation aside.menu .button-wrap {
    position: relative;
    z-index: 1440;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    border: none !important;
    background: transparent !important;
    padding-top: 3rem !important;
    padding-bottom: 1.25rem !important;
    min-height: auto !important;
  }
  .documentation > .developer-home-wrap {
    padding: 5.5rem 0 0 !important;
    max-width: 85% !important;
    margin-left: 7.5% !important;
    margin-right: 7.5% !important;
  }
  .documentation > .developer-home-wrap .content.content-docs.content-docs-wide.content-docs-wide {
    max-width: 100%;
    padding-left: 0.75rem !important;
  }
  .documentation > .developer-home-wrap .content.content-docs.content-docs-wide.content-docs-wide > section {
    max-width: 100vw !important;
    margin-left: 0vw !important;
    margin-right: 0vw !important;
  }
  .documentation > .developer-home-wrap aside.menu a.button {
    background-color: #34E8BD;
    color: #0D203F !important;
    min-width: 95%;
    padding: 0;
  }
  .documentation > .developer-home-wrap .menu-wrap + article.content section {
    margin: 0;
  }
  .documentation > .developer-home-wrap .menu-wrap + article.content h1 {
    font-size: 1.825rem;
    padding-right: 0;
  }
  .documentation > .developer-home-wrap .menu-wrap + article.content p.lead {
    padding-right: 0;
    font-size: 1.125rem;
  }
  .documentation > .developer-home-wrap .card.project {
    min-height: auto;
    margin-bottom: 1rem;
  }
  .documentation > .developer-home-wrap .card.project figure a {
    display: inline-block;
  }
  .documentation > .developer-home-wrap .card.project h3 {
    font-size: 1.5rem !important;
    margin-top: 0;
  }
  .documentation > .developer-home-wrap .card.project p {
    margin-bottom: 1rem;
  }
  .documentation > .developer-home-wrap .community-highlight {
    margin-right: 0;
  }
  .documentation > .developer-home-wrap .community-highlight event {
    padding-right: 0;
  }
  .documentation > .developer-home-wrap .community-highlight img {
    display: none;
  }
  .documentation > .developer-home-wrap .community-highlight p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .documentation > .developer-home-wrap .community-highlight date {
    font-size: 0.825rem;
  }
  .documentation > .developer-home-wrap .community-highlight eventtitle {
    line-height: 1.4;
    font-size: 1.333rem;
    margin: 0.75rem 0 0;
  }
  .documentation > .developer-home-wrap .community-highlight .carousel-cell {
    padding: 1.67rem 2rem 1.67rem 2rem;
  }
  .documentation > .developer-home-wrap h2#connect {
    margin-top: 3rem;
  }
  .documentation .content {
    padding-top: 2rem;
  }
  .documentation .content h1 {
    font-size: 6.333vw;
  }
  .documentation .content h2 {
    font-size: 5vw;
  }
  .documentation .content h3 {
    font-size: 3.33vw;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) {
    padding: 1.5rem 2rem !important;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
    position: absolute;
    left: 2.75rem !important;
    bottom: 6.25rem !important;
    color: #8967C2;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
    padding-bottom: 2rem;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons, body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-ok {
    width: 100% !important;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button, body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-ok button {
    font-size: 0.925rem !important;
    padding: 0.5rem !important;
    min-width: 45% !important;
  }
  html.dark-theme .dropdown-content {
    background-color: #213762;
  }
  html.dark-theme .dropdown-content a {
    color: #34e8bd;
  }
  html.dark-theme .dropdown-content a:hover {
    background: #0d203f;
  }
  html.dark-theme aside.menu {
    background: #0E092D !important;
  }
}
@media screen and (max-width: 1660px) {
  .documentation .content.content-docs-wide section {
    max-width: 780px !important;
  }
  .documentation .content section ul:nth-child(2), .documentation .content section ul:nth-child(3) {
    position: relative;
    left: 0;
  }
  body .klaro .cookie-notice .cn-body p {
    max-width: 67%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1380px) {
  #topbar.navbar .logo-wrap {
    width: 240px;
  }
  #topbar.navbar .logo-wrap a.navbar-item {
    padding: 0.5rem 0.1rem 0.5rem 0.333rem;
  }
  #topbar.navbar .logo-wrap .logo {
    margin-top: -5px !important;
  }
  #topbar.navbar .logo-wrap .logo svg {
    height: 10% !important;
    max-height: 10px !important;
    margin-left: 0 !important;
  }
  #topbar.navbar .logo-wrap .logo-developer {
    font-size: 63%;
    letter-spacing: 0.07rem;
    margin: 0 0 0 -4px;
  }
  .menu-wrap.is-fixed-desktop,
  .documentation aside.menu .button-wrap {
    width: 240px;
  }
  .menu-wrap + article.content {
    padding-left: 260px;
  }
  .documentation .content.content-docs.content-docs-wide section {
    max-width: 700px !important;
  }
  .documentation aside.menu {
    width: 225px;
  }
  .documentation aside.menu .accordion-tabs .accordion-menu-item .menu-label {
    width: 90%;
  }
  .documentation > .developer-home-wrap .card.project {
    min-height: 422px;
  }
  .documentation > .developer-home-wrap .card.project .card-content {
    padding: 0.5rem 1.2rem;
  }
  .documentation > .developer-home-wrap .card.project h3 {
    font-size: 1.2rem;
  }
  body .klaro .cookie-notice .cn-body p {
    max-width: 67%;
  }
}
@media screen and (min-width: 1381px) and (max-width: 1439px) {
  #topbar.navbar .search-button:after {
    right: 36vw;
  }
  #topbar.navbar .search-button:before {
    right: 34.5vw;
  }
}
@media screen and (min-width: 1660px) {
  #topbar.navbar a.navbar-link.dark-mode {
    right: 27.75vw !important;
    position: absolute !important;
    margin-right: auto !important;
  }
  #topbar.navbar .search-button:after {
    right: 31.25vw;
  }
  #topbar.navbar .search-button:before {
    right: 30vw;
  }
  #topbar.navbar .search-button .search-placeholder {
    right: 63rem;
  }
  #topbar.navbar .search-button .search-command {
    right: 53rem;
  }
  .documentation .content > section {
    left: -9.25vw;
    position: relative;
  }
  .documentation .content > section ul:nth-child(2), .documentation .content > section ul:nth-child(3) {
    right: 5vw;
  }
  .documentation > .developer-home-wrap .card.project h3 {
    font-size: 1.67rem;
    line-height: 1.425;
  }
}
/* 1.2 Developer Styles
*/
.documentation article.content-docs section#type img {
  margin-top: 1.333em;
  margin-bottom: 1.333em;
  background: rgb(168, 124, 230);
  background: linear-gradient(50deg, rgb(168, 124, 230) 0%, rgb(230, 210, 241) 100%);
  padding: 0.3rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 67px rgba(25, 25, 25, 0.5);
}
.documentation .content {
  padding-top: 3.333rem;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 555;
}
.documentation .content .archived-notice {
  width: 100%;
  background-color: red;
  border-radius: 0.667rem;
  padding: 1rem;
  font-size: 1rem;
  background-color: #E7D3F2;
  margin-bottom: 4rem;
}
.documentation .content h4 {
  margin: 1.3333em 0 0.6666em 0;
}
.documentation .content section {
  margin-left: auto !important;
  margin-right: auto !important;
}
.documentation .content section h1:first-of-type + ul {
  max-height: 65vh;
  overflow-y: auto;
  min-width: 15vw;
  display: inline-block;
  background: #ECE5EE;
  padding: 0.5rem 1rem 0.725rem;
  border-radius: 0.333rem;
  list-style: none;
  line-height: 1;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.documentation .content section h1:first-of-type + ul:before {
  content: "Contents:";
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #7a7a7a;
  width: 100%;
  line-height: 2;
  padding: 0rem 0 0.5rem;
}
.documentation .content section h1:first-of-type + ul li {
  list-style: none;
  margin: 0.05rem 0;
  padding: 0;
  line-height: 1;
}
.documentation .content section h1:first-of-type + ul li a {
  border-left: 4px solid rgba(125, 125, 125, 0.125);
  border-radius: 1px;
  margin: 0;
  padding: 0.25rem 0 0.25rem 0.5rem;
  line-height: 1.5;
  display: inline-block;
  color: rgb(44.7853403141, 55.9816753927, 107.9646596859);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.documentation .content section h1:first-of-type + ul li a:hover {
  background-color: transparent;
  border-bottom: none;
  border-left: 4px solid #BEA7E5;
}
.documentation .content section h1:first-of-type + ul li a:hover:after {
  display: none;
}
.documentation .content section h1:first-of-type + ul li ul {
  margin: 0;
}
.documentation .content section blockquote p {
  font-size: 1rem !important;
  margin: 1.67rem auto 2.67rem !important;
  border-radius: 0.5rem;
  background-color: rgb(241.7368421053, 230.6842105263, 247.8157894737);
  color: rgb(44.7853403141, 55.9816753927, 107.9646596859);
  line-height: 1.725;
}
.documentation .content section table th {
  background-color: #ece5ee;
}
.documentation .content section table th,
.documentation .content section table td {
  padding: 0.67rem 0.5rem;
  font-size: 0.825rem;
}
.documentation .content section table code {
  display: inline-block;
  margin: 0 !important;
  font-size: 0.825rem;
  padding: 0.1rem 0.2rem;
  background-color: rgba(236, 229, 238, 0.5);
}
@media screen and (min-width: 1661px) {
  .documentation .content section h1:first-of-type + ul {
    position: fixed;
    top: 86px;
    right: 90px;
    width: 15vw;
    background-color: rgb(241.7368421053, 230.6842105263, 247.8157894737);
    padding: 0.825rem 1rem;
    border-radius: 0.333rem;
    z-index: 999;
  }
}
@media screen and (max-width: 1661px) {
  .documentation .content section h1:first-of-type + ul {
    display: none;
  }
}
.documentation .content.content-docs section {
  max-width: 880px !important;
}
.documentation .content h1 {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 2.67rem;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
.documentation .content h2 {
  line-height: 1.5;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
.documentation .content.content-docs-wide p {
  line-height: 1.725;
}
.documentation .content pre {
  padding: 0 !important;
}
.documentation .content pre code {
  padding: 1.125em 3.875rem 1.25rem 1.25rem !important;
}
.documentation .content pre code .hljs-comment {
  color: #bbb !important;
}
.documentation .content h1,
.documentation .content h2,
.documentation .content h3,
.documentation .content h4,
.documentation .content h5,
.documentation .content h6 {
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
}
.documentation .content h1 code,
.documentation .content h2 code,
.documentation .content h3 code,
.documentation .content h4 code,
.documentation .content h5 code,
.documentation .content h6 code {
  font-size: 0.95em !important;
  font-weight: 600;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}
.documentation .content details {
  font-size: 1rem;
  width: 100%;
  background: #f4f0f5;
  border-left: 4px solid #d9dbe8;
  position: relative;
  max-width: 800px;
}
.documentation .content details .summary-title {
  user-select: none;
}
.documentation .content details:hover {
  cursor: pointer;
}
.documentation .content details .summary-content {
  border-top: 1px solid #e2e8f0;
  cursor: default;
  padding: 1em;
  font-weight: 300;
  line-height: 1.5;
}
.documentation .content details summary {
  list-style: none;
  padding: 1em;
}
.documentation .content details summary:focus {
  outline: none;
}
.documentation .content details summary:hover .summary-chevron-up svg {
  opacity: 1;
}
.documentation .content details .summary-chevron-up svg {
  opacity: 0.5;
}
.documentation .content details .summary-chevron-up,
.documentation .content details .summary-chevron-down {
  pointer-events: none;
  position: absolute;
  top: 0.75em;
  right: 1em;
  background: #f4f0f5;
}
.documentation .content details .summary-chevron-up svg,
.documentation .content details .summary-chevron-down svg {
  display: block;
}
.documentation .content details summary::-webkit-details-marker {
  display: none;
}
.documentation .content .note {
  background: rgb(226.3486842105, 216.2105263158, 243.5394736842);
  color: #0D203F;
  border-radius: 0.333rem;
  margin: 5rem 0 3rem;
  box-shadow: 0.333rem 0.333rem 0 #BEA7E5;
  position: relative;
  max-width: 800px;
}
.documentation .content .note h4 {
  font-size: 1.25rem;
  color: #0D203F;
  margin-top: 0;
}
.documentation .content .note p:last-of-type {
  margin-bottom: 0;
  padding-right: 0;
}
.documentation .content .note .button {
  top: 50%;
  transform: translateY(-50%);
}
.documentation .copy-code-button {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border-radius: 0.7rem;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
  background: rgb(26.5763358779, 44.2938931298, 78.9236641221);
  border: none;
  transition: all 0.3s ease-in-out;
}
.documentation .copy-code-button > svg {
  fill: rgba(237, 237, 237, 0.6);
}
.documentation .copy-code-button:hover {
  background: #213762;
}
.documentation .copy-code-button.is-success {
  border-color: #18d1a5;
}
.documentation .content a.anchor-link {
  padding: 0.3rem;
  text-decoration: none;
  opacity: 0;
  fill: #363636;
  background-color: transparent;
}
.documentation h1:hover > a.anchor-link {
  opacity: 1;
}
.documentation h2:hover > a.anchor-link {
  opacity: 1;
}
.documentation h3:hover > a.anchor-link {
  opacity: 1;
}
.documentation h4:hover > a.anchor-link {
  opacity: 1;
}
.documentation tr:hover > a.anchor-link {
  opacity: 1;
}
.documentation a {
  font-weight: 600;
}
.documentation a.anchor-link:after {
  content: none;
}
.documentation tr {
  overflow-x: hidden;
}
.documentation tr a.anchor-link {
  position: absolute;
}
.documentation aside.menu {
  padding-bottom: 7.5rem;
}
.documentation .multitab-content-wrapper {
  position: relative;
  padding-top: 4.55rem;
  animation: 0.5s ease-out 0s 1 opacityOnAppear;
}
.documentation .multitab-content-wrapper div.tabs {
  position: absolute;
  top: 0;
}
.documentation .multitab-content-wrapper .multitab-content {
  max-width: 800px;
  padding: 0.67rem 1.25rem;
  background-color: #ECE5EE;
  border-radius: 0.33em;
}
.documentation .multitab-content-wrapper .multitab-content pre:last-of-type {
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}
.documentation .tabs {
  margin-bottom: 0;
}
.documentation .tabs ul {
  margin-bottom: 0;
  border: none;
}
.documentation .tabs ul li {
  margin: 0;
  padding: 0;
}
.documentation .tabs.is-boxed {
  margin-bottom: -8px;
}
.documentation .tabs.is-boxed a {
  border: none;
  padding: 0.5em 1.2em 18px;
  color: rgb(109.7125, 115.86875, 154.0375);
  border-radius: 0.25rem 0.25rem 0 0;
  transition: color ease-in-out 0.3s;
}
.documentation .tabs.is-boxed a:hover {
  color: #0D203F;
  background: transparent !important;
}
.documentation .tabs.is-boxed a.is-active {
  background-color: #ECE5EE;
  color: #0D203F;
}
.documentation .tabs.is-boxed a.is-active:hover {
  background-color: #ECE5EE !important;
}
.documentation .sidebar h4 *, .documentation .sidebar h4.menu-label {
  margin: 1.5rem 0 0.25rem;
  padding: 0 0.6rem;
  font-size: 11px;
  color: rgb(59.0957446809, 88.4042553191, 233.4042553191);
}
.documentation .sidebar hr {
  margin: 0.2rem 2vw 0.2rem 0.25vw;
  background: linear-gradient(to right, rgba(168, 124, 230, 0.5), rgba(168, 124, 230, 0));
  opacity: 0.25;
}
.documentation .sidebar a {
  display: block;
  line-height: 1.425;
  padding: 0;
  font-size: 15px;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  color: #0E092D;
  font-weight: 400;
  letter-spacing: 0.025rem;
}
.documentation .sidebar a code {
  color: #0E092D;
}
.documentation .sidebar .toggle {
  display: none;
  padding: 0 0 0 0.5rem;
  margin: 0.25rem 0 0.25rem 0.75rem;
  border-left: 1px solid rgba(168, 124, 230, 0.33);
}
.documentation .sidebar .toggle:has(a.active) {
  display: block;
}
.documentation .sidebar a.active + .toggle {
  display: block;
}

/* klaro cookie consent banner
https://github.com/kiprotect/klaro */
.klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: #0E092D !important;
  min-width: 100% !important;
  padding: 1.5rem 5rem !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  min-height: 10.5rem;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  font-size: 1.125rem;
  color: white;
  float: left;
  margin: 1.5rem 0 2rem;
  max-width: 48rem;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p strong {
  color: white !important;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p a {
  color: #34E8BD !important;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  position: absolute;
  left: 6rem !important;
  bottom: 1.67rem !important;
  color: #34E8BD;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button {
  border-radius: 2rem !important;
  font-size: 1rem !important;
  padding: 0.5rem 1.5rem !important;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-weight: 400;
  color: #0E092D !important;
  font-size: 1rem;
  font-family: "Space Grotesk", Tofu, Sen, Europa, Avenir, system, -apple-system, SFNSText-Regular, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  color: white;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn.cm-btn-success {
  background-color: #34E8BD !important;
  color: #0E092D !important;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cn-decline {
  background-color: transparent;
  color: white !important;
  border: 1px solid white;
}
.klaro .cookie-modal .cm-modal .cm-header h1 {
  color: white;
}

@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-floating,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.menu-wrap + article.content.changelog-wrapper {
  padding-left: 0.75rem !important;
}

.changelog-wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 3rem 0.75rem !important;
}
.changelog-header {
  position: relative;
  padding-bottom: 5rem;
}
.changelog-select-box {
  height: 40px;
  overflow-y: auto;
  width: 200px;
  margin: 5rem 0rem 2rem 0rem;
  padding: 0.4rem;
  outline: none;
  border-radius: 0.33rem;
  background-color: #ECE5EE;
  color: #345995;
}
.changelog-select-box option {
  overflow-y: scroll;
}
.changelog-animation .terminal {
  width: 100%;
  height: 10rem;
  background: black;
  border-radius: 0.67rem 0.67rem 0.33rem 0.33rem;
  margin: 8.25rem auto 0;
  overflow-wrap: break-word;
}
.changelog-animation .terminal .control {
  width: 100%;
  height: 1rem;
  background-color: white;
  border-radius: 0.33rem 0.33rem 0 0;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}
.changelog-animation .terminal .control .circle {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: #f96256;
  margin-right: 0.4rem;
}
.changelog-animation .terminal .control .circle:nth-child(2) {
  background-color: #fdbc3d;
}
.changelog-animation .terminal .control .circle:nth-child(3) {
  background-color: #33c948;
}
.changelog-animation .terminal .prompts {
  padding: 0.75rem 1.5rem;
  color: #ECE5EE;
  font-size: 0.925rem;
  line-height: 1.6;
}
.changelog-animation .terminal .prompts .prompt-sign {
  color: #BEA7E5;
}
.changelog-content {
  position: relative;
}
.changelog-content::before {
  position: absolute;
  content: "";
  top: 3rem;
  border-left: 2px solid #BEA7E5;
  height: calc(100% - 8rem);
}
.changelog-content .columns {
  margin: 0;
}
.changelog-item-title {
  padding: 2rem 2rem 2rem 2.5rem;
  position: sticky;
  top: 6.75rem;
  align-self: flex-start;
}
.changelog-item-title::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  padding: 0.2rem;
  border-radius: 50%;
  background-color: #BEA7E5;
  left: -0.45rem;
  top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.changelog-item-title h3 a {
  color: rgb(4.2763157895, 10.5263157895, 20.7236842105);
}
.changelog-item-title h3 a:hover:after {
  display: none;
}
.changelog-item-date {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: #0D203F;
  margin: 0 0 1rem;
}
.changelog-item-tags span {
  font-size: 0.8rem;
  border-radius: 0.337rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
  background: rgba(150, 150, 150, 0.1);
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  display: inline-block;
  margin: 0.1rem 0.1rem 0.1rem 0;
}
.changelog-item-content-summary {
  padding-top: 1rem;
  margin-bottom: 3rem;
}
.changelog-item-content-summary hr {
  width: 80%;
  margin: auto;
  background-color: #BEA7E5;
}
.changelog .back-arrow {
  font-size: 0.825rem;
  margin-bottom: 1.333rem;
}

html.dark-theme .documentation .content .archived-notice {
  background-color: #345995;
}
html.dark-theme .changelog section {
  position: relative;
}
html.dark-theme .changelog-select-box {
  background-color: #345995;
  color: #ECE5EE;
}
html.dark-theme .changelog-item-title h3.heading-anchor a {
  color: white !important;
}
html.dark-theme .changelog-item-date {
  color: rgb(111.0037313433, 146.7611940299, 204.7462686567);
}
html.dark-theme .changelog-item-tags span {
  background-color: #345995;
}

@media screen and (max-width: 768px) {
  .documentation .developer-home-wrap .content.content-docs.content-docs-wide h1 {
    font-size: 1.75rem;
  }
  .documentation .developer-home-wrap .content.content-docs.content-docs-wide p.lead {
    font-size: 1.25rem;
    padding: 0 !important;
  }
  .documentation .changelog-header h1 {
    margin: 0 0 1.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .documentation .changelog-header {
    padding-bottom: 2rem;
  }
  .documentation .changelog-content {
    padding-left: 3rem !important;
  }
  .documentation .changelog-content:before {
    height: calc(100% - 6rem);
    left: 1.425rem;
  }
  .documentation .changelog-wrapper {
    padding: 4.5rem 4vw 2rem !important;
    max-width: 92vw !important;
  }
  .documentation .changelog-wrapper h1 {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem !important;
  }
  .documentation .changelog-wrapper .back-arrow {
    position: relative;
    left: auto;
    margin: 15px 0 0 0;
  }
  .documentation .changelog-wrapper .changelog-item-title {
    position: relative !important;
    top: auto !important;
    padding: 2rem 0 !important;
    margin-top: -1.333rem;
  }
  .documentation .changelog-wrapper .changelog-item-title h3 {
    font-size: 1.33rem;
  }
  .documentation .changelog-wrapper .changelog-item-title::before {
    left: -2rem;
  }
}
@keyframes opacityOnAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Blog listing styles */
.blog-listing-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-posts-list {
  max-width: 800px;
  margin: 3rem 0;
}

.blog-post-preview {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-post-preview:last-child {
  border-bottom: none;
}
.blog-post-preview h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-post-preview h2 a {
  color: #0D203F;
  text-decoration: none;
}
.blog-post-preview h2 a:hover {
  color: #A87CE6;
}
.blog-post-preview .blog-post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.blog-post-preview .blog-post-meta time {
  font-weight: 500;
}
.blog-post-preview .blog-post-meta .blog-post-author {
  color: #888;
}
.blog-post-preview .blog-post-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}
.blog-post-preview .blog-post-read-more {
  margin-top: 0.5rem;
}
.blog-post-preview .blog-post-read-more a {
  color: #A87CE6;
  font-weight: 600;
  text-decoration: none;
}
.blog-post-preview .blog-post-read-more a:hover {
  color: rgb(139.5576923077, 81.1730769231, 221.8269230769);
}

.blog-title::after {
  content: none !important;
  display: none !important;
}

.blog-title {
  margin-bottom: 0.5rem;
  padding-bottom: 0 !important;
}

.blog-meta-wrapper {
  display: inline-block;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #A87CE6;
  min-width: 160px;
}

.blog-meta-author {
  color: #A87CE6;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.by-label {
  color: #213762;
  font-weight: 400;
  margin-right: 4px;
}

.date {
  font-size: 0.85rem !important;
  color: #213762;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

/* Dark theme for blog listing */
html.dark-theme .blog-post-preview {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.dark-theme .blog-post-preview h2 a {
  color: #ECE5EE;
}
html.dark-theme .blog-post-preview h2 a:hover {
  color: #A87CE6;
}
html.dark-theme .blog-post-preview .blog-post-meta {
  color: #bbb;
}
html.dark-theme .blog-post-preview .blog-post-meta .blog-post-author {
  color: #999;
}
html.dark-theme .blog-post-preview .blog-post-description {
  color: #ECE5EE;
}

/* Blog post styles - Medium-inspired typography */
article.page.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  font-size: 18px;
  line-height: 1.636;
  letter-spacing: -0.003em;
}
article.page.content h1 {
  font-size: 3.25rem;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
article.page.content h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
article.page.content h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
article.page.content p {
  font-size: 18px;
  line-height: 1.58;
  margin-bottom: 1.5rem;
}
article.page.content ul,
article.page.content ol {
  font-size: 18px;
  line-height: 1.58;
  margin-bottom: 1.5rem;
}
article.page.content li {
  margin-bottom: 0.5rem;
}
article.page.content blockquote {
  font-size: 1.1rem;
  line-height: 1.58;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid #A87CE6;
}
article.page.content code {
  font-size: 16px;
}
article.page.content pre code {
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive adjustments for blog */
@media screen and (max-width: 768px) {
  article.page.content {
    font-size: 16px;
    padding: 1.5rem 1rem;
  }
  article.page.content h1 {
    font-size: 2rem;
  }
  article.page.content h2 {
    font-size: 1.5rem;
  }
  article.page.content h3 {
    font-size: 1.25rem;
  }
  article.page.content p,
  article.page.content ul,
  article.page.content ol {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
