/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* Base scaffolding taken from Markswatch theme */
body {
  color: #24292e;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 16px;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

* {
  box-sizing: border-box;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}

a {
  color: #ff8812;
  text-decoration: none;
}

a:hover {
  color: #ff8812;
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1em;
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 1.5em;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13.6px;
}

ul,
ol {
  margin-bottom: 1em;
  margin-top: 0;
  padding-left: 2em;
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
  margin-top: 0;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

li {
  word-wrap: break-all;
}

li > p {
  margin-top: 1em;
}

li + li {
  margin-top: 0.25em;
}

img {
  border-style: none;
  box-sizing: content-box;
  max-width: 100%;
}

img[align='right'] {
  padding-left: 1.25em;
}

img[align='left'] {
  padding-right: 1.25em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  margin-bottom: 16px;
  margin-top: 0;
  overflow: auto;
  width: 100%;
}

table tr {
  background-color: transparent;
  border-top: 1px solid #dfe2e5;
}

table tr:nth-child(2n) {
  background-color: #f6f8fa;
}

table th,
table td {
  border: 1px solid #dfe2e5;
  padding: 6px 13px;
}

table th {
  background-color: inherit;
  color: inherit;
  font-weight: 600;
}

table td {
  color: inherit;
}

blockquote {
  color: #6a737d;
  font-size: 16px;
  margin: 0;
  margin-bottom: 16px;
  padding: 0 1em;
}

blockquote > :first-child {
  margin-top: 0;
}

blockquote > :last-child {
  margin-bottom: 0;
}

code {
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
  color: inherit;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
    'Courier New', monospace;
  font-size: 85%;
  margin: 0;
  padding: 3.2px 6.4px;
}

pre {
  margin-bottom: 16px;
}

pre code {
  background-color: transparent;
  border: 0;
  display: inline;
  font-size: 85%;
  line-height: inherit;
  margin: 0;
  max-width: auto;
  overflow: visible;
  padding: 0;
  white-space: pre;
  word-break: normal;
  word-wrap: normal;
}

kbd {
  background-color: #fafbfc;
  border: solid 1px #d1d5da;
  border-bottom-color: #c6cbd1;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #c6cbd1;
  color: #444d56;
  display: inline-block;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
    'Courier New', monospace;
  font-size: 68.75%;
  line-height: 10px;
  padding: 3px 5px;
  vertical-align: middle;
}

hr {
  border-color: #dfe2e5;
  border-style: solid;
  border-width: 1px;
  box-sizing: content-box;
  margin: 1.5em 0;
  overflow: hidden;
  padding: 0;
}

hr:before {
  content: '';
  display: table;
}

hr:after {
  clear: both;
  content: '';
  display: table;
}

/**
 * Start of Docusaurus CSS
 */

/* Base */
body {
  background-color: #fff;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

@media only screen and (min-width: 736px) {
  body {
    display: flex;
    flex-direction: column;
  }
}

article:before {
  content: '';
  display: table;
}

article:after {
  clear: both;
  content: '';
  display: table;
}

article > :first-child {
  margin-top: 0;
}

article > :last-child {
  margin-bottom: 0;
}

article p img,
article iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* Links */
.anchor {
  display: block;
  position: relative;
  top: -80px;
}

.hash-link {
  line-height: 1;
  margin-left: -20px;
  opacity: 0;
  padding-right: 4px;
  transition: opacity 0.3s;
}

.hash-link:hover {
  opacity: 1 !important;
  transition: none;
}

.hash-link .hash-link-icon {
  vertical-align: middle;
}

/* Buttons */
.button {
  border: 1px solid #ff8812;
  border-radius: 3px;
  color: #ff8812;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background: #ff8812;
  color: #fff;
}

/* Headers */
h1:hover .hash-link,
h2:hover .hash-link,
h3:hover .hash-link,
h4:hover .hash-link {
  opacity: 0.5;
  transition: none;
}

/* Blockquotes */
blockquote {
  background-color: rgba(255, 229, 100, 0.3);
  border-left: 8px solid #ffe564;
  padding: 15px 30px 15px 15px;
}

/* Utils */
.wrapper {
  margin: 0px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.wrapper blockquote > p:first-child {
  padding-top: 0;
}

.center {
  display: block;
  text-align: center;
}
/* End of Utils */

/* Home Container */
.homeContainer {
  text-align: center;
}

.homeContainer .homeWrapper {
  padding: 2em 10px;
}

.homeContainer .homeWrapper .wrapper {
  margin: 0px auto;
  max-width: 900px;
  padding: 0 20px;
}

.homeContainer .homeWrapper .projectLogo img {
  height: 100px;
  margin-bottom: 0px;
}

.homeContainer .homeWrapper #project_title {
  font-size: 300%;
  letter-spacing: -0.08em;
  line-height: 1em;
  margin-bottom: 80px;
}

.homeContainer .homeWrapper #project_tagline {
  font-size: 200%;
  letter-spacing: -0.04em;
  line-height: 1em;
}

@media only screen and (min-width: 736px) {
  .homeContainer .homeWrapper {
    position: relative;
  }

  .homeContainer .homeWrapper #inner {
    max-width: 600px;
    padding-right: 40px;
  }
}

.projectLogo {
  display: none;
  pointer-events: none;
}

.projectLogo img {
  height: 100px;
  margin-bottom: 0px;
}

.projectIntro {
  margin: 40px 0;
}

.projectTitle {
  color: #ff8812;
  font-size: 250%;
  line-height: 1em;
}

.projectTitle > small {
  display: block;
  font-weight: normal;
  font-size: 50%;
  line-height: 1em;
  margin: 0.7em 0 1.3em;
}

@media only screen and (min-width: 480px) {
  .projectTitle {
    font-size: 300%;
    margin: 0.3em 0;
  }

  .projectLogo img {
    height: 200px;
    margin-bottom: 10px;
  }

  .homeContainer .homeWrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 736px) {
  .homeContainer .homeWrapper {
    position: relative;
  }

  .homeContainer .homeWrapper #inner {
    max-width: 600px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .homeContainer .homeWrapper #inner {
    max-width: 750px;
  }

  .homeContainer .homeWrapper .projectLogo {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    left: 0;
    padding: 2em 100px 4em;
    position: absolute;
    right: 0;
    top: 0;
  }
  .homeContainer .homeWrapper .projectLogo img {
    height: 100%;
    max-height: 250px;
  }
}

@media only screen and (min-width: 1500px) {
  .homeContainer .homeWrapper #inner {
    max-width: 1100px;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .wrapper {
    max-width: 1400px;
  }
}
/* End of Home Container */

/* Main Container */
.mainContainer {
  flex: 1 1 0%;
  max-width: 100%;
  padding: 40px 0;
}

.mainContainer .wrapper {
  text-align: left;
}

.mainContainer .wrapper .allShareBlock {
  padding: 10px 0;
}

.mainContainer .wrapper .allShareBlock .pluginBlock {
  margin: 12px 0;
  padding: 0;
}

.mainContainer .wrapper .post {
  position: relative;
}

.mainContainer .wrapper .post.basicPost {
  margin-top: 30px;
}

.mainContainer .wrapper .post .postHeader {
  margin-bottom: 16px;
}

.mainContainer .wrapper .post .postHeaderTitle {
  margin-top: 0;
  padding: 0;
}

.docsContainer .wrapper .post .postHeader:before,
.docsContainer .wrapper .post .postHeaderTitle:before {
  content: '';
  display: block;
  height: 90px; /* fixed header height and empty space below it */
  margin-top: -90px; /* negative fixed header height and empty space below it  */
  visibility: hidden;
  pointer-events: none;
}

.mainContainer .wrapper .post .postSocialPlugins {
  padding-top: 1em;
}

.mainContainer .wrapper .post .docPagination {
  background: #ff8812;
  bottom: 0px;
  left: 0px;
  position: absolute;
  right: 0px;
}

.mainContainer .wrapper .post .docPagination .pager {
  display: inline-block;
  width: 50%;
}

.mainContainer .wrapper .post .docPagination .pagingNext {
  float: right;
  text-align: right;
}

.mainContainer .wrapper .post .docPagination a {
  border: none;
  color: #fff;
  display: block;
  padding: 4px 12px;
}

.mainContainer .wrapper .post .docPagination a:hover {
  background-color: #f9f9f9;
  color: #393939;
}

.mainContainer .wrapper .post .docPagination a .pagerLabel {
  display: inline;
}

.mainContainer .wrapper .post .docPagination a .pagerTitle {
  display: none;
}

@media only screen and (min-width: 480px) {
  .mainContainer .wrapper .post .docPagination a .pagerLabel {
    display: none;
  }

  .mainContainer .wrapper .post .docPagination a .pagerTitle {
    display: inline;
  }
}

@media only screen and (min-width: 1024px) {
  .mainContainer .wrapper .post {
    display: block;
  }

  .mainContainer .wrapper .posts .post {
    width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .docsContainer .wrapper .post .postHeader:before,
  .docsContainer .wrapper .post .postHeaderTitle:before {
    content: '';
    display: block;
    height: 200px; /* fixed header height and empty space below it */
    margin-top: -200px; /* negative fixed header height and empty space below it  */
    visibility: hidden;
    pointer-events: none;
  }
}
/* End of Main Container */

/* Navbar */
.fixedHeaderContainer {
  background: #ff8812;
  color: #fff;
  min-height: 50px;
  padding: 8px 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
  transform: translate3d(0, 0, 0);
}

@media only screen and (min-width: 1024px) {
  .fixedHeaderContainer {
    flex-shrink: 0;
  }
}

.fixedHeaderContainer a {
  align-items: center;
  border: 0;
  color: #fff;
  display: flex;
  flex-flow: row nowrap;
  height: 34px;
  z-index: 10000;
}

.fixedHeaderContainer header {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  text-align: left;
}

.fixedHeaderContainer header img {
  height: 100%;
  margin-right: 10px;
}

.fixedHeaderContainer header .headerTitle {
  font-size: 1.25em;
  margin: 0;
}

.fixedHeaderContainer header .headerTitleWithLogo {
  display: block;
  font-size: 1.25em;
  line-height: 18px;
  margin: 0;
  position: relative;
  z-index: 9999;
}

.fixedHeaderContainer header h3 {
  color: white;
  font-size: 16px;
  margin: 0;
  margin-left: 10px;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .headerTitle {
    font-size: 17px;
  }

  .headerTitleWithLogo {
    display: none !important;
  }
}
/* End of Navbar */

/* Promo section */
.promoSection {
  display: flex;
  flex-flow: column wrap;
  font-size: 125%;
  line-height: 1.6em;
  position: relative;
  z-index: 99;
}

.promoSection .promoRow {
  padding: 10px 0;
}

.promoSection .promoRow .pluginWrapper {
  display: block;
}

.promoSection .promoRow .pluginWrapper.ghWatchWrapper,
.promoSection .promoRow .pluginWrapper.ghStarWrapper {
  height: 28px;
}

.promoSection .promoRow .pluginRowBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2px;
}

.promoSection .promoRow .pluginRowBlock .pluginWrapper {
  padding: 0 2px;
}

.promoSection .promoRow .pluginRowBlock iframe {
  margin-left: 2px;
  margin-top: 5px;
}
/* End of Promo Section */

/* Search */
input[type='search'] {
  -moz-appearance: none;
  -webkit-appearance: none;
}

.navSearchWrapper {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  padding-left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.navSearchWrapper:before {
  border: 3px solid #e5e5e5;
  border-radius: 50%;
  content: ' ';
  display: block;
  height: 6px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  width: 6px;
  z-index: 1;
}

.navSearchWrapper:after {
  background: #e5e5e5;
  content: ' ';
  height: 7px;
  left: 24px;
  position: absolute;
  top: 55%;
  transform: rotate(-45deg);
  width: 3px;
  z-index: 1;
}

.navSearchWrapper .aa-dropdown-menu {
  background: #f9f9f9;
  border: 3px solid rgba(57, 57, 57, 0.25);
  color: #393939;
  font-size: 14px;
  left: auto !important;
  line-height: 1.2em;
  right: 0 !important;
}

.navSearchWrapper
  .aa-dropdown-menu
  .algolia-docsearch-suggestion--category-header {
  background: #ff8812;
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.navSearchWrapper
  .aa-dropdown-menu
  .algolia-docsearch-suggestion--category-header
  .algolia-docsearch-suggestion--highlight {
  background-color: #ff8812;
  color: #fff;
}

.navSearchWrapper
  .aa-dropdown-menu
  .algolia-docsearch-suggestion--title
  .algolia-docsearch-suggestion--highlight,
.navSearchWrapper
  .aa-dropdown-menu
  .algolia-docsearch-suggestion--subcategory-column
  .algolia-docsearch-suggestion--highlight {
  color: #ff8812;
}

.navSearchWrapper .aa-dropdown-menu .algolia-docsearch-suggestion__secondary,
.navSearchWrapper
  .aa-dropdown-menu
  .algolia-docsearch-suggestion--subcategory-column {
  border-color: rgba(57, 57, 57, 0.3);
}

input#search_input_react {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  outline: none;
  padding-left: 25px;
  position: relative;
  -webkit-transition: 0.5s width ease;
  -moz-transition: 0.5s width ease;
  -o-transition: 0.5s width ease;
  transition: 0.5s width ease;
  width: 170px;
}

.navSearchWrapper:before {
  left: 24px;
}

.navSearchWrapper:after {
  left: 35px;
}

input#search_input_react:focus,
input#search_input_react:active {
  color: #fff;
  width: 220px;
}
.navigationSlider .slidingNav .navSearchWrapper .algolia-docsearch-footer a {
  height: auto;
}
@media only screen and (max-width: 735px) {
  .navSearchWrapper {
    width: 40%;
  }
}

input::-webkit-input-placeholder {
  color: #e5e5e5;
}

input::-moz-placeholder {
  color: #e5e5e5;
}

input::placeholder {
  color: #e5e5e5;
}

.hljs {
  padding: 1.25rem 1.5rem;
}
/* End of Search */

/* GridBlock */
.gridBlock {
  padding: 0;
}

.gridBlock > * {
  box-sizing: border-box;
}

.gridBlock .twoByGridBlock img,
.gridBlock .threeByGridBlock img,
.gridBlock .fourByGridBlock img {
  max-width: 100%;
}

.gridBlock .gridClear {
  clear: both;
}

@media only screen and (max-width: 735px) {
  .gridBlock .fourByGridBlock {
    flex: 1 0 26%;
  }
}

@media only screen and (min-width: 736px) {
  .gridBlock {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gridBlock > * {
    margin: 0 12px;
  }

  .gridBlock > *:first-child {
    margin-left: 0;
  }

  .gridBlock > *:last-child {
    margin-right: 0;
  }

  .gridBlock .twoByGridBlock {
    flex: 1 0 40%;
  }

  .gridBlock .threeByGridBlock {
    flex: 1 0 26%;
  }

  .gridBlock .fourByGridBlock {
    flex: 1 0 20%;
  }

  h2 + .gridBlock {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 1400px) {
  .gridBlock {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

.imageAlignSide {
  display: flex;
  flex-flow: row wrap;
}

.blockImage {
  max-width: 730px;
}

.imageAlignSide .blockImage {
  flex: 0 1 500px;
  max-width: 500px;
}

@media only screen and (max-width: 735px) {
  .imageAlignSide .blockImage {
    display: none;
  }
}

.imageAlignSide .blockContent {
  flex: 1 1;
}

.imageAlignBottom .blockImage {
  margin: 0 auto 20px;
  max-width: 730px;
}

.imageAlignBottom.alignCenter .blockImage {
  margin-left: auto;
  margin-right: auto;
}

.imageAlignTop .blockImage {
  margin-bottom: 20px;
  max-width: 80px;
}

.imageAlignTop.alignCenter .blockImage {
  margin-left: auto;
  margin-right: auto;
}

.imageAlignRight .blockImage {
  margin-left: 40px;
}

.imageAlignLeft .blockImage {
  margin-right: 40px;
}
/* End of GridBlock */

/* Start of Container */
.container .gridBlock .blockContent p {
  padding: 0;
}

.container .wrapper .alignCenter h2 {
  text-align: center;
}

.container .wrapper .imageAlignSide h2 {
  text-align: left;
}

.container .wrapper .imageAlignSide p {
  margin: 0;
  margin-bottom: 40px;
  max-width: 560px;
}

.highlightBackground {
  background: rgba(153, 66, 79, 0.7);
  color: #fff;
}

.highlightBackground a {
  border-color: white;
  color: #fff;
  font-weight: 800;
}

.container.highlightBackground .wrapper h1,
.container.highlightBackground .wrapper h2,
.container.highlightBackground .wrapper h3,
.container.highlightBackground .wrapper h4,
.container.highlightBackground .wrapper h5 {
  border-color: white;
  color: white;
}

.lightBackground {
  background: #f7f7f7;
}

.darkBackground {
  background: #808080;
  color: #fff;
}

.darkBackground a {
  color: #d6b3b8;
}

.darkBackground code {
  color: #d6b3b8;
}

.container.darkBackground .wrapper h1,
.container.darkBackground .wrapper h2,
.container.darkBackground .wrapper h3,
.container.darkBackground .wrapper h4,
.container.darkBackground .wrapper h5 {
  border-color: #fff;
  color: #fff;
}

.container.paddingAll {
  padding: 40px;
}

.container.paddingBottom {
  padding-bottom: 80px;
}

.container.paddingLeft {
  padding-left: 40px;
}

.container.paddingRight {
  padding-right: 40px;
}

.container.paddingTop {
  padding-top: 80px;
}

@media only screen and (max-width: 735px) {
  .container.paddingBottom {
    padding-bottom: 40px;
  }

  .container.paddingTop {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .responsiveList .blockContent {
    position: relative;
  }

  .responsiveList .blockContent > div {
    padding-left: 20px;
  }

  .responsiveList .blockContent:before {
    content: '\2022';
    position: absolute;
  }
}
/* End of Container */

/* Navigation Slider */
.navigationSlider .navSlideout {
  cursor: pointer;
  padding-top: 4px;
  position: absolute;
  right: 10px;
  top: 0;
  transition: top 0.3s;
  z-index: 101;
}

.navigationSlider .slidingNav {
  bottom: auto;
  box-sizing: border-box;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.navigationSlider .slidingNav.slidingNavActive {
  height: auto;
  padding-top: 42px;
  width: 300px;
}

.navigationSlider .slidingNav ul {
  background: #585474;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin-top: 50px;
  padding: 0;
  width: 100%;
}

.navigationSlider .slidingNav.slidingNavActive ul {
  display: block;
}

.navigationSlider .slidingNav ul li {
  flex: 1 1 auto;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.navigationSlider .slidingNav ul li a {
  align-items: center;
  box-sizing: border-box;
  color: #ff8812;
  color: inherit;
  display: flex;
  font-size: 0.9em;
  height: auto;
  height: 50px;
  justify-content: center;
  margin: 0;
  padding: 10px;
  transition: background-color 0.3s;
}

.navigationSlider .slidingNav ul li > a:focus,
.navigationSlider .slidingNav ul li > a:hover,
.navigationSlider .slidingNav ul li.siteNavItemActive > a,
.navigationSlider .slidingNav ul li.siteNavGroupActive > a {
  background-color: #ff8812;
}
/* End of Navigation Slider */

/* Languages Dropdown */
.languages-icon {
  width: 20px;
}

#languages-dropdown {
  /* positioning can block the main menu on mobile */
  pointer-events: none;
  position: absolute;
  width: 100%;
}

#languages-dropdown.visible {
  display: flex;
}
#languages-dropdown.hide {
  display: none;
}

#languages-dropdown-items {
  background-color: #ff8812;
  display: flex;
  flex-direction: column;
  min-width: 120px;
  pointer-events: all;
}

#languages li {
  display: block;
}

.navPusher {
  left: 0;
  min-height: 100%;
  padding-top: 100px;
  position: relative;
  z-index: 99;
}

.singleRowMobileNav.navPusher {
  padding-top: 50px;
}

.navPusher:after {
  background: rgba(0, 0, 0, 0.4);
  content: '';
  height: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  width: 0;
}

@media screen and (min-width: 1024px) {
  .navPusher {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: calc(100vh - 50px);
    padding-top: 50px;
  }

  /* those make the footer sticky and work even in IE 11 */
  .navPusher > :first-child {
    flex-grow: 1;
  }
}

.sliderActive .navPusher:after {
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 100%;
  z-index: 100;
}

@media only screen and (max-width: 1024px) {
  .reactNavSearchWrapper input#search_input_react {
    background-color: rgba(242, 196, 178, 0.25);
    border: none;
    border-radius: 20px;
    box-sizing: border-box;
    color: #393939;
    font-size: 14px;
    line-height: 20px;
    outline: none;
    padding-left: 38px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      width 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.2s ease;
    width: 100%;
    height: 30px;
  }

  .reactNavSearchWrapper input#search_input_react:focus,
  .reactNavSearchWrapper input#search_input_react:active {
    background-color: #ff8812;
    color: #fff;
  }

  .reactNavSearchWrapper .algolia-docsearch-suggestion--subcategory-inline {
    display: none;
  }

  .reactNavSearchWrapper > span {
    width: 100%;
  }

  .reactNavSearchWrapper .aa-dropdown-menu {
    font-size: 12px;
    line-height: 2em;
    padding: 0;
    border-width: 1px;
    min-width: 500px;
  }
  .reactNavSearchWrapper .algolia-docsearch-suggestion__secondary {
    border-top: none;
  }
  .aa-suggestions {
    min-height: 140px;
    max-height: 60vh;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }

  #languages-dropdown {
    left: 0px;
    top: 50px;
  }

  #languages-dropdown-items {
    background-color: #ff8812;
    display: flex;
    flex-direction: row;
  }
}

@media only screen and (min-width: 1024px) {
  .navSearchWrapper {
    padding-left: 10px;
    position: relative;
    right: auto;
    top: auto;
  }

  .reactNavSearchWrapper input#search_input_react {
    height: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 38px;
  }

  .navSearchWrapper .algolia-autocomplete {
    display: block;
  }

  .navigationSlider {
    height: 34px;
    margin-left: auto;
    position: relative;
  }

  .navigationSlider .navSlideout {
    display: none;
  }

  .navigationSlider nav.slidingNav {
    background: none;
    height: auto;
    position: relative;
    right: auto;
    top: auto;
    width: auto;
  }

  .navigationSlider .slidingNav ul {
    background: none;
    display: flex;
    flex-flow: row nowrap;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .navigationSlider .slidingNav ul li a {
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    font-size: 16px;
    font-size: 1em;
    font-weight: 300;
    height: 32px;
    line-height: 1.2em;
    margin: 0;
    padding: 0;
    padding: 6px 10px;
  }

  .navigationSlider .slidingNav ul li a:hover,
  .navigationSlider .slidingNav ul li.siteNavItemActive a,
  .navigationSlider .slidingNav ul li.siteNavGroupActive a {
    color: #fff;
  }
}

@media only screen and (max-width: 735px) {
  .navigationSlider .slidingNav ul {
    overflow-x: auto;
  }
  .navigationSlider .slidingNav ul::-webkit-scrollbar {
    display: none;
  }
  .reactNavSearchWrapper .aa-dropdown-menu {
    min-width: 400px;
  }
}
@media only screen and (max-width: 475px) {
  .reactNavSearchWrapper .aa-dropdown-menu {
    min-width: 300px;
  }
}

/* Start of Docs Main */
.docMainWrapper .wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
}

@media only screen and (min-width: 1024px) {
  .docMainWrapper {
    width: 100%;
  }

  .docMainWrapper > * {
    margin: 0 24px;
  }

  .docMainWrapper > *:first-child {
    margin-left: 0;
  }

  .docMainWrapper > *:last-child {
    margin-right: 0;
  }

  .docMainWrapper .mainContainer {
    min-width: 0; /* Hack needed for flex-basis to work properly. */
  }
}

.edit-page-link {
  float: right;
  font-size: 10px;
  font-weight: normal;
  /* height 34px, parent postHeaderTitle height 40. Center this */
  margin-top: 3px;
  text-decoration: none;
}

@media only screen and (max-width: 1023px) {
  .edit-page-link {
    display: none;
  }
}

.docLastUpdate {
  font-size: 13px;
  font-style: italic;
  margin: 20px 0;
  text-align: right;
}

/* End of Docs Main */

/* Start of Docs Navigation */
.docs-prevnext {
  margin: 20px 0;
}

.docs-prevnext:after {
  clear: both;
  content: ' ';
  display: table; /* clearfix */
}

.docs-next {
  float: right;
}

.docs-prev {
  float: left;
}

@media only screen and (max-width: 735px) {
  .docs-next {
    clear: both;
    float: left;
    margin: 10px 0;
  }

  .docs-prev {
    margin: 10px 0;
  }

  .arrow-next {
    float: right;
    margin-left: 10px;
  }

  .arrow-prev {
    float: left;
    margin-right: 10px;
  }

  .function-name-prevnext {
    width: 200px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* End of Docs Navigation */

/* Start of Docs Sidebar */
.hide {
  display: none;
}

.collapsible {
  cursor: pointer;
}

.collapsible .arrow {
  float: right;
  margin-right: 8px;
  margin-top: -4px;
  transform: rotate(90deg);
  transition: transform 200ms linear;
}

.collapsible .arrow.rotate {
  transform: rotate(180deg);
}

@media only screen and (max-width: 1023px) {
  .docsNavContainer {
    background: #fff;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
}

@media only screen and (min-width: 1024px) {
  .docsNavContainer {
    flex: 0 0 240px;
    height: calc(100vh - 50px);
    position: -webkit-sticky;
    position: sticky;
    overflow-y: auto;
    top: 50px; /* Height of navbar */
  }
}

.docsSliderActive.docsNavContainer {
  box-sizing: border-box;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 50px;
}

.docsNavContainer .toc .navBreadcrumb {
  background-color: #f1f1f1;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  font-size: 12px;
  height: 48px;
  overflow: hidden;
  padding: 8px 20px;
}

.docsNavContainer .toc .navWrapper {
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .docsNavContainer .toc .navBreadcrumb {
    display: none;
  }

  .navBreadcrumb h2 {
    padding: 0 10px;
  }

  .separateOnPageNav .docsNavContainer {
    flex: 0 0 240px;
  }
}

.navBreadcrumb a,
.navBreadcrumb span {
  border: 0;
  color: #393939;
}

@media only screen and (max-width: 735px) {
  .anchor {
    top: -144px;
  }
}

@media only screen and (min-width: 1024px) {
  .toc {
    padding: 40px 0;
  }
}

.toc section {
  padding: 0;
  position: relative;
}

.toc section .navGroups {
  display: none;
  padding: 48px 20px 60px;
}

.toc .toggleNav {
  color: #393939;
  position: relative;
}

.toc .toggleNav .navToggle {
  cursor: pointer;
  height: 32px;
  margin-right: 10px;
  position: relative;
  text-align: left;
  width: 18px;
}

.hamburger-menu {
  position: absolute;
  top: 6px;
  width: 100%;
}

.line1,
.line2,
.line3 {
  width: 100%;
  height: 3px;
  background-color: #393939;
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 10px;
}

.docsSliderActive .hamburger-menu {
  top: 12px;
}

.docsSliderActive .line1 {
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
}
.docsSliderActive .line2 {
  display: none;
}
.docsSliderActive .line3 {
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

.toggleNav h2 i {
  padding: 0 4px;
}

.toc .toggleNav .navGroup {
  margin-bottom: 16px;
}

.toc .toggleNav .subNavGroup {
  margin-bottom: 0;
}

.toc .toggleNav .navGroup .navGroupCategoryTitle {
  color: #393939;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 8px;
  margin-top: 0;
}

.toc .toggleNav .navGroup .navGroupSubcategoryTitle {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0;
  padding: 4px 0;
}

.toc .toggleNav .navGroup .navListItem {
  margin: 0;
}

.toc .toggleNav .navGroup h3 i:not(:empty) {
  box-sizing: border-box;
  color: rgba(57, 57, 57, 0.5);
  display: inline-block;
  height: 16px;
  margin-right: 10px;
  text-align: center;
  transition: color 0.2s;
  width: 16px;
}

.toc .toggleNav ul {
  padding: 0 8px;
}

.docsSliderActive .toc .toggleNav ul {
  padding-left: 0; /* Remove indentation on mobile */
}

.toc .toggleNav ul li {
  list-style-type: none;
  padding: 0;
}

.toc .toggleNav ul li a {
  border: none;
  color: #717171;
  display: block;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s;
}

.toc .toggleNav ul li a:hover,
.toc .toggleNav ul li a:focus {
  color: #ff8812;
}

.toc .toggleNav ul li.navListItemActive a {
  color: #ff8812;
}

.docsSliderActive .toc .navBreadcrumb,
.tocActive .navBreadcrumb {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  position: fixed;
  width: 100%;
}

.toc .toggleNav .navBreadcrumb h2 {
  border: 0;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  padding: 0;
}

.docsSliderActive .toc section .navGroups {
  display: block;
  padding-top: 60px;
}

.tocToggler {
  cursor: pointer;
  height: 32px;
  line-height: 32px;
  margin-right: -10px;
  padding: 0 10px;
}

.icon-toc {
  box-sizing: border-box;
  display: inline-block;
  line-height: normal;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.icon-toc,
.icon-toc:before,
.icon-toc:after {
  background-color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
  height: 4px;
  width: 4px;
}

.icon-toc:before,
.icon-toc:after {
  content: '';
  position: absolute;
}

.icon-toc:before {
  left: -1px;
  top: -7px;
}

.icon-toc:after {
  left: -1px;
  top: 5px;
}

.tocActive .icon-toc {
  border-radius: 0;
  height: 16px;
  transform: rotate(45deg);
  width: 3px;
}

.tocActive .icon-toc:before {
  border-radius: 0;
  height: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.tocActive .icon-toc:after {
  content: '';
}

@media only screen and (min-width: 1024px) {
  .docMainWrapper {
    display: flex;
    flex-flow: row nowrap;
  }

  .docMainWrapper .wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Inner page navigation */
.onPageNav {
  display: none;
  margin-bottom: 40px;
}

.onPageNav::-webkit-scrollbar {
  width: 7px;
}

.onPageNav::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.onPageNav::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.onPageNav::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.onPageNav a {
  color: #717171;
}

.onPageNav .toc-headings > li > a.active,
.onPageNav .toc-headings > li > a.hover {
  font-weight: 600;
  color: #ff8812;
}

.onPageNav ul {
  list-style: none;
}

.onPageNav ul li {
  font-size: 12px;
  line-height: 16px;
  padding-bottom: 8px;
}

.onPageNav ul ul {
  padding: 8px 0 0 20px;
}

.onPageNav ul ul li {
  padding-bottom: 5px;
}

@media only screen and (min-width: 1024px) {
  .toc section .navGroups {
    display: block;
    padding: 0px;
    padding-top: 8px;
  }

  .navBreadcrumb h2 {
    padding: 0 10px;
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  @media only screen and (max-width: 1023px) {
    .tocActive .onPageNav {
      background: #fff;
      bottom: 0;
      display: block;
      left: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 0 20px;
      position: fixed;
      right: 0;
      top: 148px;
      z-index: 10;
      margin-bottom: 0;
    }

    .tocActive .singleRowMobileNav .onPageNav {
      top: 98px;
    }

    .tocActive .navToggle,
    .tocActive .navBreadcrumb h2 {
      visibility: hidden;
    }

    .tocActive .onPageNav > .toc-headings {
      padding: 12px 0;
    }
  }

  @media only screen and (min-width: 1024px) {
    .separateOnPageNav .wrapper,
    .separateOnPageNav .headerWrapper.wrapper {
      max-width: 1400px;
    }

    .separateOnPageNav .toc {
      width: auto;
    }

    .separateOnPageNav.sideNavVisible .navPusher .mainContainer {
      flex: 1 auto;
      max-width: 100%;
      min-width: 0;
    }

    .onPageNav {
      align-self: flex-start;
      display: block;
      flex: 0 0 240px;
      max-height: calc(100vh - 90px); /* Sync with top */
      overflow-y: auto;
      position: -webkit-sticky;
      position: sticky;
      top: 90px;
    }

    .onPageNav > .toc-headings {
      border-left: 1px solid #e0e0e0;
      padding: 10px 0 2px 15px;
    }

    .tocToggler {
      display: none;
    }
  }
}

/* Blog */
.blog .wrapper {
  max-width: 1100px;
}

.blogContainer .posts .post {
  border-bottom: 1px solid #e0e0e0;
  border-radius: 3px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blogContainer .postHeader {
  margin-bottom: 10px;
}

.blogContainer .postHeaderTitle {
  margin-top: 0;
}

.blogContainer .postHeader p.post-meta {
  margin-bottom: 10px;
  padding: 0;
}

.blogContainer .postHeader .authorBlock {
  display: flex;
}

.blogContainer .postHeader .post-authorName {
  color: rgba(57, 57, 57, 0.7);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.blogContainer .postHeader .authorPhoto {
  border-radius: 50%;
  height: 30px;
  overflow: hidden;
  width: 30px;
}

.blogContainer .postHeader .authorPhoto.authorPhotoBig {
  height: 50px;
  width: 50px;
}

.blog-recent {
  margin: 20px 0;
}

.blog-recent > a {
  float: left;
}

@media only screen and (max-width: 735px) {
  .blog-recent {
    height: 40px;
  }
}

.blogSocialSection {
  display: block;
  padding: 36px 0;
}

.blogSocialSection .blogSocialSectionItem {
  padding-bottom: 5px;
}

.fb-like {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

/* Homepage */
.more-users {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}

.productShowcaseSection {
  padding: 0 20px 0;
  text-align: center;
}

.productShowcaseSection.paddingTop {
  padding-top: 20px;
}

.productShowcaseSection.paddingBottom {
  padding-bottom: 80px;
}

.productShowcaseSection h2 {
  color: #ff8812;
  font-size: 30px;
  line-height: 1em;
  margin-top: 20px;
  padding: 10px 0;
  text-align: center;
}

.productShowcaseSection p {
  margin: 0 auto;
  max-width: 560px;
  padding: 0.8em 0;
}

.productShowcaseSection .logos {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 20px;
}

.productShowcaseSection .logos img {
  max-height: 110px;
  padding: 20px;
  width: 110px;
}

@media only screen and (max-width: 735px) {
  .productShowcaseSection .logos img {
    max-height: 64px;
    padding: 20px;
    width: 64px;
  }
}

/* Start of Showcase */
.showcaseSection {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.showcaseSection .prose h1 {
  text-align: center;
}

.showcaseSection .prose {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}

.showcaseSection .logos {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.showcaseSection .logos img {
  max-height: 128px;
  padding: 20px;
  width: 128px;
}

@media only screen and (max-width: 735px) {
  .showcaseSection .logos img {
    max-height: 64px;
    padding: 20px;
    width: 64px;
  }
}
/* End of Showcase */

/* Start of Footer */
.nav-footer {
  background: #20232a;
  border: none;
  color: #202020;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 2em;
  padding-top: 2em;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  .nav-footer {
    flex-shrink: 0;
  }
}

.nav-footer .sitemap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 3em;
  max-width: 1080px;
}

.nav-footer .sitemap div {
  flex: 1;
}

.nav-footer .sitemap .nav-home {
  display: table;
  height: 72px;
  margin: -12px 20px 0 0;
  opacity: 0.4;
  padding: 10px;
  transition: opacity 0.15s ease-in-out;
  width: 72px;
}

.nav-footer .sitemap .nav-home:hover,
.nav-footer .sitemap .nav-home:focus {
  opacity: 1;
}

@media only screen and (max-width: 735px) {
  .nav-footer .sitemap {
    display: flex;
    flex-direction: column;
    margin: 0 2em 3em;
    width: calc(100% - 4em);
  }

  .nav-footer .sitemap > div {
    margin-bottom: 18px;
  }
}

.nav-footer .sitemap a {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin: 2px 0;
  padding: 3px 0;
}

.nav-footer .sitemap a:hover,
.nav-footer .sitemap a:focus {
  color: white;
  text-decoration: none;
}

.nav-footer .sitemap h5 > a:hover,
.nav-footer .sitemap h5 > a:focus {
  color: white;
  text-decoration: none;
}

.nav-footer .sitemap h5,
.nav-footer .sitemap h6 {
  margin: 0 0 10px;
}

.nav-footer .sitemap h5 {
  color: white;
}

.nav-footer .sitemap h6,
.nav-footer .sitemap h5 > a,
.nav-footer .sitemap h6 > a {
  color: white;
}

.nav-footer .sitemap h5 > a,
.nav-footer .sitemap h6 > a {
  margin: 0 -10px;
}

.nav-footer .fbOpenSource {
  display: block;
  margin: 1em auto;
  opacity: 0.4;
  transition: opacity 0.15s ease-in-out;
  width: 170px;
}

.nav-footer .fbOpenSource:hover {
  opacity: 1;
}

.nav-footer .copyright {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.nav-footer .social {
  padding: 5px 0;
}
/* End of Footer */

.tabs {
  border-top: 1px solid #cfcfcf;
}

.nav-tabs {
  display: flex;
  border-bottom: 4px solid #e0e0e0;
  width: 100%;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  max-height: 100%;
}

.nav-tabs::-webkit-scrollbar {
  display: none;
}

.tabs .tab-pane:focus {
  outline: none;
}

.tabs .nav-tabs > div {
  font-size: 14px;
  line-height: 1.14286;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.tabs .nav-tabs > div.active {
  border-bottom: 4px solid #ff8812;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane > pre {
  white-space: pre-wrap;
}

.tab-pane > pre > code {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

/* "Copy" code block button */
pre {
  position: relative;
}

pre .btnIcon {
  position: absolute;
  top: 4px;
  z-index: 2;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 3px;
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
  height: 30px;
  transition: all 0.25s ease-out;
}

pre .btnIcon:hover {
  text-decoration: none;
  border: 1px solid silver;
}

.btnIcon__body {
  align-items: center;
  display: flex;
}

.btnIcon svg {
  fill: currentColor;
  margin-right: 0.4em;
}

.btnIcon__label {
  font-size: 11px;
}

.btnClipboard {
  right: 10px;
}

:root {
  --primaryColor: #ff8812;
  --secondaryColor: #172026;
  --snowColor: #efefef;
  --silverColor: #b7b8bb;
  --nickelColor: #6d7278;
  --sansFontFamily: "Work Sans", sans-serif !important;
}

@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
  .mainpage-column {
    width: 100% !important;
  }
}

@media only screen and (min-width: 1024px) {
}

@media only screen and (max-width: 1023px) {
}

@media only screen and (min-width: 1400px) {
}

@media only screen and (min-width: 1500px) {
}

body {
  font-family: var(--sansFontFamily);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
}

.text-dark {
  color: var(--secondaryColor) !important;
}

/* ==========================================================================
   Header
   ========================================================================== */

.fixedHeaderContainer {
  background: white;
}

.fixedHeaderContainer .headerWrapper {
  max-width: 1400px !important;
}

@media only screen and (min-width: 1024px) {
  .fixedHeaderContainer {
    /* border-bottom: solid 1px transparent; */
    border-bottom: solid 1px var(--snowColor);
  }
  body.sideNavVisible.separateOnPageNav .fixedHeaderContainer {
    border-bottom: solid 1px var(--snowColor);
  }
}

.fixedHeaderContainer header .headerTitleWithLogo {
  display: none;
}

/*
   Navigation
   ========================================================================== */

.navigationSlider .slidingNav ul li > a {
  color: var(--silverColor);
}

.navigationSlider .slidingNav ul li > a:visited {
  color: var(--silverColor);
}

.navigationSlider .slidingNav ul li > a:hover,
.navigationSlider .slidingNav ul li > a:focus {
  background: none;
  color: white;
  transition: color 0.2s ease-in-out;
}

.navigationSlider .slidingNav ul li.siteNavGroupActive > a {
  background: none;
  color: var(--silverColor);
}

.navigationSlider .slidingNav ul li.siteNavGroupActive > a:hover {
  color: white;
  transition: color 0.2s ease-in-out;
}

.navigationSlider .slidingNav ul li.siteNavItemActive > a {
  color: white;
}

@media only screen and (min-width: 1024px) {
  .navigationSlider .slidingNav ul li > a {
    color: var(--silverColor);
  }

  .navigationSlider .slidingNav ul li > a:visited {
    color: var(--silverColor);
  }

  .navigationSlider .slidingNav ul li > a:hover,
  .navigationSlider .slidingNav ul li > a:focus {
    color: var(--secondaryColor);
  }

  .navigationSlider .slidingNav ul li.siteNavGroupActive > a {
    color: var(--silverColor);
  }

  .navigationSlider .slidingNav ul li.siteNavGroupActive > a:hover {
    color: var(--secondaryColor);
  }

  .navigationSlider .slidingNav ul li.siteNavItemActive > a {
    color: var(--secondaryColor);
  }
}

/*
   Search
   ========================================================================== */

.navSearchWrapper.reactNavSearchWrapper::before {
  border: 3px solid var(--silverColor);
  transition: border 0.2s ease-in-out;
  width: 13px;
  height: 13px;
}

.navSearchWrapper.reactNavSearchWrapper:hover::before {
  border: 3px solid var(--secondaryColor);
}

.navSearchWrapper.reactNavSearchWrapper::after {
  background: var(--silverColor);
  transition: background 0.2s ease-in-out;
}

.navSearchWrapper.reactNavSearchWrapper:hover::after {
  background: var(--secondaryColor);
}

.reactNavSearchWrapper input#search_input_react {
  color: var(--secondaryColor);
  background: white;
  border: solid 1px var(--snowColor);
  font-family: var(--sansFontFamily);
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  font-weight: bold;
}

.reactNavSearchWrapper input#search_input_react::placeholder {
  color: var(--silverColor);
}

.reactNavSearchWrapper input#search_input_react:hover::placeholder {
  /* color: var(--secondaryColor); */
}

.reactNavSearchWrapper input#search_input_react:focus,
.reactNavSearchWrapper input#search_input_react:active {
  color: var(--secondaryColor);
  border: solid 1px var(--snowColor);
  background: var(--snowColor);
}

/*
   Algolia search widget
   ========================================================================== */
/*! docsearch 1.5.0 | © Algolia | github.com/algolia/docsearch */

.navSearchWrapper .aa-dropdown-menu {
  /* background: var(--snowColor); */
  background: white;
  border: none;
  color: #393939;
  font-size: 14px;
  left: auto !important;
  line-height: 1.2em;
  right: 0 !important;
  border-radius: 32px;
  padding: 0 32px 22px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 1.5rem;
  margin-top: 15px;
}

.navSearchWrapper .aa-dropdown-menu[style*="display: block;"] {
  -webkit-animation: fade-in-up 0.2s linear forwards;
  animation: fade-in-up 0.2s linear forwards;
}

.algolia-docsearch-suggestion {
  color: #333;
  cursor: pointer;
  overflow: hidden;
}

.algolia-docsearch-suggestion__secondary {
  border-top: none !important;
}

.algolia-docsearch-suggestion--category-header {
  display: none;
  background: white !important;
  border-bottom: solid 1px var(--snowColor);
  color: black !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  padding: 30px 0 15px 0;
  margin-bottom: 15px;
  text-align: left;
}

.algolia-docsearch-suggestion__main
  .algolia-docsearch-suggestion--category-header {
  display: block;
  color: black !important;
}

.algolia-docsearch-suggestion--highlight {
  padding: 0;
  color: #0064e1 !important;
  background: none;
  font-weight: 700;
  background: white !important;
}

.algolia-docsearch-suggestion--category-header
  .algolia-docsearch-suggestion--highlight {
  color: inherit;
  background: white !important;
}

.aa-cursor .algolia-docsearch-suggestion--content {
  color: #0064e1;
  background: white !important;
}

.aa-cursor .algolia-docsearch-suggestion--content {
  color: var(--primaryColor) !important;
}

.aa-cursor .algolia-docsearch-suggestion {
  background: white !important;
}

.algolia-docsearch-suggestion--subcategory-column {
  display: none;
  cursor: default;
  background: white !important;
  text-align: left !important;
  padding-left: 0 !important;
  border-right: solid 1px var(--snowColor) !important;
}

.algolia-docsearch-suggestion--text {
  display: none;
}

.algolia-docsearch-suggestion--content {
  padding: 3px 5px;
  width: 100%;
  border-top: none !important;
  border-bottom: none;
}

.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--content,
.algolia-docsearch-suggestion__secondary
  .algolia-docsearch-suggestion--content {
  border-top: 0;
}

.algolia-docsearch-suggestion--subcategory-inline {
  display: inline-block;
  font-weight: bold;
}

.algolia-docsearch-suggestion--subcategory-inline:after {
  content: " › ";
}

.algolia-docsearch-suggestion--title {
  display: inline;
}

.algolia-docsearch-footer {
  border-top: none !important;
  text-align: right;
  font-size: 12px;
  padding: 30px 2px 0 0;
  color: var(--snowColor) !important;
}

.algolia-docsearch-footer .algolia-docsearch-footer--logo {
  display: inline-block !important;
  width: 111px;
  height: 15px;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 130 18' xmlns='http://www.w3.org/2000/svg'><defs><linearGradient x1='-36.868%' y1='134.936%' x2='129.432%' y2='-27.7%' id='a'><stop stop-color='%2300AEFF' offset='0%'/><stop stop-color='%233369E7' offset='100%'/></linearGradient></defs><g fill='none' fill-rule='evenodd'><path d='M59.399.022h13.299a2.372 2.372 0 0 1 2.377 2.364V15.62a2.372 2.372 0 0 1-2.377 2.364H59.399a2.372 2.372 0 0 1-2.377-2.364V2.381A2.368 2.368 0 0 1 59.399.022z' fill='url(%23a)'/><path d='M66.257 4.56c-2.815 0-5.1 2.272-5.1 5.078 0 2.806 2.284 5.072 5.1 5.072 2.815 0 5.1-2.272 5.1-5.078 0-2.806-2.279-5.072-5.1-5.072zm0 8.652c-1.983 0-3.593-1.602-3.593-3.574 0-1.972 1.61-3.574 3.593-3.574 1.983 0 3.593 1.602 3.593 3.574a3.582 3.582 0 0 1-3.593 3.574zm0-6.418v2.664c0 .076.082.131.153.093l2.377-1.226c.055-.027.071-.093.044-.147a2.96 2.96 0 0 0-2.465-1.487c-.055 0-.11.044-.11.104l.001-.001zm-3.33-1.956l-.312-.311a.783.783 0 0 0-1.106 0l-.372.37a.773.773 0 0 0 0 1.101l.307.305c.049.049.121.038.164-.011.181-.245.378-.479.597-.697.225-.223.455-.42.707-.599.055-.033.06-.109.016-.158h-.001zm5.001-.806v-.616a.781.781 0 0 0-.783-.779h-1.824a.78.78 0 0 0-.783.779v.632c0 .071.066.12.137.104a5.736 5.736 0 0 1 1.588-.223c.52 0 1.035.071 1.534.207a.106.106 0 0 0 .131-.104z' fill='%23FFF'/><path d='M102.162 13.762c0 1.455-.372 2.517-1.123 3.193-.75.676-1.895 1.013-3.44 1.013-.564 0-1.736-.109-2.673-.316l.345-1.689c.783.163 1.819.207 2.361.207.86 0 1.473-.174 1.84-.523.367-.349.548-.866.548-1.553v-.349a6.374 6.374 0 0 1-.838.316 4.151 4.151 0 0 1-1.194.158 4.515 4.515 0 0 1-1.616-.278 3.385 3.385 0 0 1-1.254-.817 3.744 3.744 0 0 1-.811-1.351c-.192-.539-.29-1.504-.29-2.212 0-.665.104-1.498.307-2.054a3.925 3.925 0 0 1 .904-1.433 4.124 4.124 0 0 1 1.441-.926 5.31 5.31 0 0 1 1.945-.365c.696 0 1.337.087 1.961.191a15.86 15.86 0 0 1 1.588.332v8.456h-.001zm-5.954-4.206c0 .893.197 1.885.592 2.299.394.414.904.621 1.528.621.34 0 .663-.049.964-.142a2.75 2.75 0 0 0 .734-.332v-5.29a8.531 8.531 0 0 0-1.413-.18c-.778-.022-1.369.294-1.786.801-.411.507-.619 1.395-.619 2.223zm16.12 0c0 .719-.104 1.264-.318 1.858a4.389 4.389 0 0 1-.904 1.52c-.389.42-.854.746-1.402.975-.548.229-1.391.36-1.813.36-.422-.005-1.26-.125-1.802-.36a4.088 4.088 0 0 1-1.397-.975 4.486 4.486 0 0 1-.909-1.52 5.037 5.037 0 0 1-.329-1.858c0-.719.099-1.411.318-1.999.219-.588.526-1.09.92-1.509.394-.42.865-.741 1.402-.97a4.547 4.547 0 0 1 1.786-.338 4.69 4.69 0 0 1 1.791.338c.548.229 1.019.55 1.402.97.389.42.69.921.909 1.509.23.588.345 1.28.345 1.999h.001zm-2.191.005c0-.921-.203-1.689-.597-2.223-.394-.539-.948-.806-1.654-.806-.707 0-1.26.267-1.654.806-.394.539-.586 1.302-.586 2.223 0 .932.197 1.558.592 2.098.394.545.948.812 1.654.812.707 0 1.26-.272 1.654-.812.394-.545.592-1.166.592-2.098h-.001zm6.962 4.707c-3.511.016-3.511-2.822-3.511-3.274L113.583.926l2.142-.338v10.003c0 .256 0 1.88 1.375 1.885v1.792h-.001zm3.774 0h-2.153V5.072l2.153-.338v9.534zm-1.079-10.542c.718 0 1.304-.578 1.304-1.291 0-.714-.581-1.291-1.304-1.291-.723 0-1.304.578-1.304 1.291 0 .714.586 1.291 1.304 1.291zm6.431 1.013c.707 0 1.304.087 1.786.262.482.174.871.42 1.156.73.285.311.488.735.608 1.182.126.447.186.937.186 1.476v5.481a25.24 25.24 0 0 1-1.495.251c-.668.098-1.419.147-2.251.147a6.829 6.829 0 0 1-1.517-.158 3.213 3.213 0 0 1-1.178-.507 2.455 2.455 0 0 1-.761-.904c-.181-.37-.274-.893-.274-1.438 0-.523.104-.855.307-1.215.208-.36.487-.654.838-.883a3.609 3.609 0 0 1 1.227-.49 7.073 7.073 0 0 1 2.202-.103c.263.027.537.076.833.147v-.349c0-.245-.027-.479-.088-.697a1.486 1.486 0 0 0-.307-.583c-.148-.169-.34-.3-.581-.392a2.536 2.536 0 0 0-.915-.163c-.493 0-.942.06-1.353.131-.411.071-.75.153-1.008.245l-.257-1.749c.268-.093.668-.185 1.183-.278a9.335 9.335 0 0 1 1.66-.142l-.001-.001zm.181 7.731c.657 0 1.145-.038 1.484-.104v-2.168a5.097 5.097 0 0 0-1.978-.104c-.241.033-.46.098-.652.191a1.167 1.167 0 0 0-.466.392c-.121.169-.175.267-.175.523 0 .501.175.79.493.981.323.196.75.289 1.293.289h.001zM84.109 4.794c.707 0 1.304.087 1.786.262.482.174.871.42 1.156.73.29.316.487.735.608 1.182.126.447.186.937.186 1.476v5.481a25.24 25.24 0 0 1-1.495.251c-.668.098-1.419.147-2.251.147a6.829 6.829 0 0 1-1.517-.158 3.213 3.213 0 0 1-1.178-.507 2.455 2.455 0 0 1-.761-.904c-.181-.37-.274-.893-.274-1.438 0-.523.104-.855.307-1.215.208-.36.487-.654.838-.883a3.609 3.609 0 0 1 1.227-.49 7.073 7.073 0 0 1 2.202-.103c.257.027.537.076.833.147v-.349c0-.245-.027-.479-.088-.697a1.486 1.486 0 0 0-.307-.583c-.148-.169-.34-.3-.581-.392a2.536 2.536 0 0 0-.915-.163c-.493 0-.942.06-1.353.131-.411.071-.75.153-1.008.245l-.257-1.749c.268-.093.668-.185 1.183-.278a8.89 8.89 0 0 1 1.66-.142l-.001-.001zm.186 7.736c.657 0 1.145-.038 1.484-.104v-2.168a5.097 5.097 0 0 0-1.978-.104c-.241.033-.46.098-.652.191a1.167 1.167 0 0 0-.466.392c-.121.169-.175.267-.175.523 0 .501.175.79.493.981.318.191.75.289 1.293.289h.001zm8.682 1.738c-3.511.016-3.511-2.822-3.511-3.274L89.461.926l2.142-.338v10.003c0 .256 0 1.88 1.375 1.885v1.792h-.001z' fill='%23182359'/><path d='M5.027 11.025c0 .698-.252 1.246-.757 1.644-.505.397-1.201.596-2.089.596-.888 0-1.615-.138-2.181-.414v-1.214c.358.168.739.301 1.141.397.403.097.778.145 1.125.145.508 0 .884-.097 1.125-.29a.945.945 0 0 0 .363-.779.978.978 0 0 0-.333-.747c-.222-.204-.68-.446-1.375-.725-.716-.29-1.221-.621-1.515-.994-.294-.372-.44-.82-.44-1.343 0-.655.233-1.171.698-1.547.466-.376 1.09-.564 1.875-.564.752 0 1.5.165 2.245.494l-.408 1.047c-.698-.294-1.321-.44-1.869-.44-.415 0-.73.09-.945.271a.89.89 0 0 0-.322.717c0 .204.043.379.129.524.086.145.227.282.424.411.197.129.551.299 1.063.51.577.24.999.464 1.268.671.269.208.466.442.591.704.125.261.188.569.188.924l-.001.002zm3.98 2.24c-.924 0-1.646-.269-2.167-.808-.521-.539-.782-1.281-.782-2.226 0-.97.242-1.733.725-2.288.483-.555 1.148-.833 1.993-.833.784 0 1.404.238 1.858.714.455.476.682 1.132.682 1.966v.682H7.357c.018.577.174 1.02.467 1.329.294.31.707.465 1.241.465.351 0 .678-.033.98-.099a5.1 5.1 0 0 0 .975-.33v1.026a3.865 3.865 0 0 1-.935.312 5.723 5.723 0 0 1-1.08.091l.002-.001zm-.231-5.199c-.401 0-.722.127-.964.381s-.386.625-.432 1.112h2.696c-.007-.491-.125-.862-.354-1.115-.229-.252-.544-.379-.945-.379l-.001.001zm7.692 5.092l-.252-.827h-.043c-.286.362-.575.608-.865.739-.29.131-.662.196-1.117.196-.584 0-1.039-.158-1.367-.473-.328-.315-.491-.761-.491-1.337 0-.612.227-1.074.682-1.386.455-.312 1.148-.482 2.079-.51l1.026-.032v-.317c0-.38-.089-.663-.266-.851-.177-.188-.452-.282-.824-.282-.304 0-.596.045-.876.134a6.68 6.68 0 0 0-.806.317l-.408-.902a4.414 4.414 0 0 1 1.058-.384 4.856 4.856 0 0 1 1.085-.132c.756 0 1.326.165 1.711.494.385.329.577.847.577 1.552v4.002h-.902l-.001-.001zm-1.88-.859c.458 0 .826-.128 1.104-.384.278-.256.416-.615.416-1.077v-.516l-.763.032c-.594.021-1.027.121-1.297.298s-.406.448-.406.814c0 .265.079.47.236.615.158.145.394.218.709.218h.001zm7.557-5.189c.254 0 .464.018.628.054l-.124 1.176a2.383 2.383 0 0 0-.559-.064c-.505 0-.914.165-1.227.494-.313.329-.47.757-.47 1.284v3.105h-1.262V7.218h.988l.167 1.047h.064c.197-.354.454-.636.771-.843a1.83 1.83 0 0 1 1.023-.312h.001zm4.125 6.155c-.899 0-1.582-.262-2.049-.787-.467-.525-.701-1.277-.701-2.259 0-.999.244-1.767.733-2.304.489-.537 1.195-.806 2.119-.806.627 0 1.191.116 1.692.349l-.381 1.015c-.534-.208-.974-.312-1.321-.312-1.028 0-1.542.682-1.542 2.046 0 .666.128 1.166.384 1.501.256.335.631.502 1.125.502a3.23 3.23 0 0 0 1.595-.419v1.101a2.53 2.53 0 0 1-.722.285 4.356 4.356 0 0 1-.932.086v.002zm8.277-.107h-1.268V9.506c0-.458-.092-.8-.277-1.026-.184-.226-.477-.338-.878-.338-.53 0-.919.158-1.168.475-.249.317-.373.848-.373 1.593v2.949h-1.262V4.801h1.262v2.122c0 .34-.021.704-.064 1.09h.081a1.76 1.76 0 0 1 .717-.666c.306-.158.663-.236 1.072-.236 1.439 0 2.159.725 2.159 2.175v3.873l-.001-.001zm7.649-6.048c.741 0 1.319.269 1.732.806.414.537.62 1.291.62 2.261 0 .974-.209 1.732-.628 2.275-.419.542-1.001.814-1.746.814-.752 0-1.336-.27-1.751-.811h-.086l-.231.704h-.945V4.801h1.262v1.987l-.021.655-.032.553h.054c.401-.591.992-.886 1.772-.886zm-.328 1.031c-.508 0-.875.149-1.098.448-.224.299-.339.799-.346 1.501v.086c0 .723.115 1.247.344 1.571.229.324.603.486 1.123.486.448 0 .787-.177 1.018-.532.231-.354.346-.867.346-1.536 0-1.35-.462-2.025-1.386-2.025l-.001.001zm3.244-.924h1.375l1.209 3.368c.183.48.304.931.365 1.354h.043c.032-.197.091-.436.177-.717.086-.281.541-1.616 1.364-4.004h1.364l-2.541 6.73c-.462 1.235-1.232 1.853-2.31 1.853-.279 0-.551-.03-.816-.091v-.999c.19.043.406.064.65.064.609 0 1.037-.353 1.284-1.058l.22-.559-2.385-5.941h.001z' fill='%231D3657'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  padding: 0px !important;
}

@media (min-width: 568px) {
  .aa-dropdown-menu {
    min-width: 400px;
  }
  .algolia-docsearch-suggestion--text {
    display: block;
    font-size: 0.9em;
    padding: 2px 0;
  }
}

@media (min-width: 768px) {
  .aa-dropdown-menu {
    min-width: 600px;
  }
  .algolia-docsearch-suggestion {
    display: table;
    width: 100%;
  }
  .algolia-docsearch-suggestion__secondary {
    border-top: 1px solid #606060;
  }
  .algolia-docsearch-suggestion--subcategory-column {
    border-right: 1px solid #606060;
    background: #f1f3f5;
    color: #555;
    display: table-cell;
    overflow: hidden;
    padding: 5px 7px 5px 5px;
    text-align: right;
    text-overflow: ellipsis;
    vertical-align: top;
    width: 135px;
    max-width: 135px;
    min-width: 135px;
    /* background: black !important; */
  }
  .algolia-docsearch-suggestion--subcategory-column-text {
    display: none;
  }
  .algolia-docsearch-suggestion__secondary
    .algolia-docsearch-suggestion--subcategory-column-text {
    display: block;
  }
  .algolia-docsearch-suggestion--content {
    display: table-cell;
    padding: 5px 10px;
  }
  .algolia-docsearch-suggestion--subcategory-inline {
    display: none;
  }
  .algolia-docsearch-suggestion--title {
    font-weight: 600;
  }
  .algolia-docsearch-suggestion--text {
    display: block;
    font-weight: normal;
    padding: 2px;
  }
}

/*
   Contribute button
   ========================================================================== */

@media only screen and (min-width: 1024px) {
  .navigationSlider .slidingNav > ul > li a[href*="contributing"] {
    background: white;
    height: 100%;
    border: solid 1px #ff8812;
    border-radius: 20px;
    color: #ff8812;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    padding: 0 16px;
    margin-left: 8px;
    font-weight: bold;
  }

  .navigationSlider .slidingNav > ul > li a[href*="contributing"]:hover {
    background: #ff8812;
    color: white;
  }
}

/*
   Languages
   ========================================================================== */

#languages-menu {
  margin-left: 5px;
  margin-right: 5px;
}

#languages-menu img {
  opacity: 0.7;
}

#languages-dropdown {
  border: none;
  background: white;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 1.5rem;
  width: auto;
  right: 0;
  top: 90px;
  margin: 0 15px;
}

#languages-dropdown.visible {
  -webkit-animation: fade-in-up 0.2s linear forwards;
  animation: fade-in-up 0.2s linear forwards;
}

#languages-dropdown-items {
  margin: 12px 0;
  background: transparent;
}

#languages-dropdown-items > li a {
  padding: 12px 24px;
  color: var(--secondaryColor);
}

#languages-dropdown-items > li a:visited {
  color: var(--secondaryColor);
}

#languages-dropdown-items > li a:hover {
  color: var(--primaryColor);
}

@media only screen and (min-width: 1024px) {
  #languages-menu {
    margin-left: 0;
    margin-right: 0;
  }

  #languages-menu img {
    display: none;
  }

  #languages-dropdown {
    top: 50px;
    margin: 0;
  }
}

/* ==========================================================================
   Docs Navigation
   ========================================================================== */

.docsNavContainer .toggleNav h2 i {
  display: none;
}

/* ==========================================================================
   Home
   ========================================================================== */

.homeContainer {
  background: white;
}

/*
   Home Nav
   ========================================================================== */

.homeNavContainer {
  padding: 3rem 0;
}

.homeNavItem {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  padding: 3rem 0;
  border-radius: 3.25rem !important;
}

.homeNavItem p {
  max-width: 300px;
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .homeNavContainer {
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
  }

  .homeNavItem {
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    height: 60vh;
    max-height: 500px;
    border-radius: 3.25rem !important;
    margin-top: -3rem;
  }

  .homeNavItem::after {
    font-size: 1.5rem;
    font-family: "Material Icons";
    content: "arrow_upward";
    -webkit-font-feature-settings: "liga";
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 3rem;
    color: var(--snowColor);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  .homeNavItem:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.04);
    transform: translateY(-1rem);
  }

  .homeNavItem:hover::after {
    opacity: 1;
  }

  .homeNavItem h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  .homeNavItem h2 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
  }
}

/*
   Home Footer
   ========================================================================== */

.homeFooterContainer {
  padding: 6rem 0;
  background-image: linear-gradient(
      217deg,
      rgba(196, 0, 97, 0.8),
      rgba(196, 0, 97, 0) 70%
    ),
    linear-gradient(127deg, rgba(230, 0, 122, 0.8), rgba(230, 0, 122, 0) 70%),
    linear-gradient(336deg, rgba(103, 69, 210, 0.7), rgba(103, 69, 210, 0) 70%);
  background-color: #ff8812;
}

/* ==========================================================================
   Mainpage
   ========================================================================== */

.mainpage-row {
  width: 100%;
  display: flex;
  padding: 10%;
  padding-top: 0;
  padding-bottom: 0;
  flex-flow: row wrap;
  justify-content: center;
}

.mainpage-column {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 5%;
  text-align: center;
  flex-flow: column;
}

.mainpage-maintain-btn {
  background: black;
  border: none;
  color: white;
  font-weight: 500;
  padding: 10px;
  font-size: 14px;
  margin-top: 12px;
}

.mainpage-maintain-btn:hover {
  background: #ff8812;
  cursor: pointer;
}

.mainpage-build-btn {
  background: #ff8812;
  border: none;
  color: white;
  font-weight: 500;
  padding: 10px;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.mainpage-build-btn:hover {
  background: black;
  cursor: pointer;
}

.mainpage-row-build {
  width: 100%;
  display: flex;
  padding: 0%;
  padding-top: 0;
  padding-bottom: 0;
  flex-flow: row wrap;
  justify-content: center;
  background-image: linear-gradient(#aaa, #777);
  color: white;
}

.mainpage-row-learn {
  width: 100%;
  display: flex;
  padding: 0%;
  padding-top: 0;
  padding-bottom: 0;
  flex-flow: row wrap;
  justify-content: center;
  background-image: linear-gradient(#fff, #aaa);
  color: black;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Components
   ========================================================================== */

.myButton {
  padding: 10px;
  padding-left: 12px;
  padding-right: 12px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
}

.myButton:hover {
  background: #ff8812;
  cursor: pointer;
}

.projectTitle {
  color: black;
}

.nav-footer .row {
  display: flex;
  justify-content: center;
}

.nav-footer .row .item {
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.nav-footer .row .item:hover {
  color: #ffffff;
}

/*
   Button
   ========================================================================== */

.btn {
  font-weight: 700;
  border-radius: 1.5rem;
  font-size: 16px;
  padding: 8px 16px;
}
.btn:before {
  width: 42px;
  left: -42px;
  border-radius: 1.5rem;
}
.btn-lg,
.btn-group-lg > .btn {
  border-radius: 2rem;
  padding: 16px 20px;
}
.btn-lg:before,
.btn-group-lg > .btn:before {
  width: 58px;
  left: -58px;
  border-radius: 2rem;
}
.btn-sm,
.btn-group-sm > .btn {
  border-radius: 1.5rem;
  font-size: 16px;
  padding: 8px 16px;
}
.btn-sm:before,
.btn-group-sm > .btn:before {
  width: 42px;
  left: -42px;
  border-radius: 1.5rem;
}
.btn-primary {
  color: var(--primaryColor);
  background-color: transparent;
  border-color: var(--primaryColor);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: solid 1px var(--primaryColor);
  transition: all 0.2s ease, border 1ms ease;
  will-change: transform;
  transform: scale(0.999);
}
.btn-primary:before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--primaryColor);
  transition: all 0.2s ease;
  will-change: transform;
  color: transparent;
  z-index: -1;
  border: solid 1px var(--primaryColor);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: none;
  color: white;
  will-change: transform;
  transform: scale(1.05);
  border: solid 1px transparent;
}
.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: transparent;
}
.btn-primary[type="submit"]:hover,
.btn-primary[type="submit"]:focus,
.btn-primary[type="submit"]:active {
  background: var(--primaryColor);
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary:active:before {
  left: 0;
  width: 100%;
}
.btn-bg-primary.btn-primary {
  color: white !important;
  border-color: white;
  border: solid 1px white;
}
.btn-bg-primary.btn-primary:hover,
.btn-bg-primary.btn-primary:focus,
.btn-bg-primary.btn-primary:active {
  background: white;
  color: var(--primaryColor) !important;
}
.btn-bg-primary.btn-primary:before {
  content: none;
  height: 100%;
  position: absolute;
  top: 0;
  background: white;
  transition: all 0.2s ease;
  will-change: transform;
  color: transparent;
  z-index: -1;
  border: solid 1px white;
}
.btn-white {
  color: white !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.nav-footer {
  background: var(--secondaryColor);
  border: none;
  color: #202020;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

/*
    Bootstrap fix
    ========================================================================== */

.nav-footer.spacer-y-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.nav-footer.pb-4 {
  padding-bottom: 2.25rem !important;
}

.nav-footer .text-small {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nav-footer.spacer-y-4 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .nav-footer .py-md-1 {
    padding-bottom: 0.375rem !important;
    padding-top: 0.375rem !important;
  }
}

/*
   Footer Nav
   ========================================================================== */

.nav-footer h5 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-top: 0;
}

.nav-footer a.text-white {
  color: #b7b8bb !important;
}

.nav-footer a.text-white:visited {
  color: #b7b8bb !important;
}

.nav-footer a.text-white:hover {
  color: white !important;
}

/*
   Footer Social
   ========================================================================== */

@font-face {
  font-family: "Socicon";
  src: url("../fonts/Socicon.eot?484r1f");
  src: url("../fonts/Socicon.eot?484r1f#iefix") format("embedded-opentype"),
    url("../fonts/Socicon.woff2?484r1f") format("woff2"),
    url("../fonts/Socicon.ttf?484r1f") format("truetype"),
    url("../fonts/Socicon.woff?484r1f") format("woff"),
    url("../fonts/Socicon.svg?484r1f#Socicon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="socicon-"],
[class*=" socicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Socicon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.socicon-twitter:before {
  content: "\e08d";
}

.socicon-reddit:before {
  content: "\e06c";
}

.socicon-github:before {
  content: "\e032";
}

.socicon-youtube:before {
  content: "\e0a5";
}

.socicon-telegram:before {
  content: "\e087";
}

.list-social-links {
  padding: 0;
  list-style: none;
  display: flex;
}

footer .list-social-links i {
  font-size: 1.2rem;
}

footer .list-social-links a {
  padding: 0.25rem 0.9rem;
}

footer [class^="socicon-"] {
  line-height: 2;
}

footer .list-social-links {
  margin-left: 0rem;
}
footer .list-social-links li {
  margin-top: 0 !important;
}

footer .list-social-links a {
  background: transparent !important;
  border: 1px solid white;
  color: white;
  padding: 0.25rem 0.9rem;
  display: block;
  border-radius: 50%;
}

/*
  Footer Legal
  ========================================================================== */

.footer-legal .navbar-brand {
  display: block;
  padding-bottom: 0;
}

.footer-legal ul {
  margin-bottom: 0;
}

.footer-legal li + li {
  margin-top: 0;
}

.footer-legal .list-pipe-separator > li:not(:last-child) > a:after {
  content: "|";
  margin: 0 0.375rem;
  opacity: 0.5;
}

.footer-legal .text-white {
  color: #b5aeae !important;
}

.footer-legal .text-white:visited {
  color: #b5aeae !important;
}

.footer-legal .text-white:hover {
  color: #fff !important;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.address-changer {
  width: 100%;
  padding: 10px;
  border: 2px solid black;
}

.address-changer-input {
  width: 74%;
}

.address-changer-select {
  height: 30px;
  width: 25%;
  margin-left: auto;
  margin-right: auto;
}

.address-changer-output {
  height: 30px;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
.homeNavItem:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.7);
  transform: translateY(-1rem);
}
/* todo: last homeNavItem will disappeared after resizing window */
.homeNavContainer {
  background: url("/img/bg.png");
}
.klaro .cookie-modal .cm-app-input.required:checked + .cm-app-label .slider,
.klaro .cookie-notice .cm-app-input.required:checked + .cm-app-label .slider {
  background-color: var(--primaryColor);
}
.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  background-color: var(--primaryColor);
}

#klaro .cookie-notice {
    z-index: 9999;
    background: #1e1e1e;
  }
  @media (min-width: 990px) {
    #klaro .cookie-notice {
      border-radius: 15px;
    }
  }
  #klaro .cookie-notice a {
    color: #ff8812 !important;
  }
  #klaro .cookie-notice button {
    border-radius: 10px;
    background: #ff8812;
    margin-bottom: 2px;
  }
  #klaro .cookie-notice button.cn-decline {
    background: #d46c04;
  }
  
  #klaro .cookie-modal {
    z-index: 999999;
  }
  #klaro .cookie-modal .slider {
    padding-top: 0;
    min-height: auto;
    visibility: visible;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19) !important;
  }
  #klaro .cookie-modal input {
    outline: none;
    background: none;
    box-shadow: none;
  }
  #klaro .cookie-modal input:focus {
    outline: none;
    background: none;
    box-shadow: none;
  }
  #klaro .cookie-modal .cm-modal {
    background: #1e1e1e;
  }
  @media (min-width: 990px) {
    #klaro .cookie-modal .cm-modal {
      border-radius: 2rem;
      padding: 2rem 3rem;
    }
  }
  #klaro .cookie-modal .cm-modal .cm-btn {
    border-radius: 10px;
  }
  #klaro .cookie-modal .cm-header a {
    color: #ff8812 !important;
  }
  @media (min-width: 990px) {
    #klaro .cookie-modal .cm-header {
      padding-left: 0;
      padding-top: 0;
    }
    #klaro .cookie-modal .cm-body {
      padding-left: 0;
    }
    #klaro .cookie-modal .cm-footer {
      padding-left: 0;
    }
    #klaro .cookie-modal .cm-powered-by {
      right: 3rem;
    }
  }
  
  #klaro .cm-toggle-all {
    display: none !important;
  }