@font-face {
  font-family: octicons-anchor;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.woff) format("woff");
}

@font-face {
  font-family: Cabin;
  src: local("Cabin"), url("./fonts/Cabin-Regular.ttf");
}

@font-face {
  font-family: Cabin;
  src: local("Cabin Bold"), url("./fonts/Cabin-Bold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: Cabin;
  src: local("Cabin Italic"), url("./fonts/Cabin-Italic.ttf");
  font-style: italic;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background: #f89743;
  color: #ffffff;
}

::selection {
  background: #f89743;
  color: #ffffff;
}

.octicon {
  font: normal normal normal 16px/1 octicons-anchor;
  display: inline-block;
  text-decoration: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.octicon:before, .octicon:after {
  font-family: octicons-anchor;
}

.octicon-link:before {
  content: "\f05c";
}

.octicon-three-bars:before {
  content: "\f05e";
}

pre {
  font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  overflow: auto;
  margin-top: 0;
  margin-bottom: 0;
  word-wrap: normal;
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background-color: #f7f7f7;
  border-radius: 3px;
}

pre code {
  display: inline;
  max-width: initial;
  padding: 0;
  margin: 0;
  overflow: initial;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

pre code:before, pre code:after {
  content: normal;
}

pre > code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  color: #333;
  font-family: "Cabin", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  margin: 0;
}

.mobile-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #404040;
  color: #ffffff;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 48px;
}

@media (max-width: 767px) {
  .mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-header .nav-toggle {
  font-size: 2rem;
  padding: 8px 16px;
}

.main {
  display: block;
  padding: 32px 64px 896px;
  margin-left: 350px;
}

@media (max-width: 767px) {
  .main {
    margin-left: 0;
    margin-top: 48px;
    padding: 16px 16px 896px;
  }
}

.sidenav {
  z-index: 1;
  width: 350px;
  position: fixed;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #404040;
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

@media (max-width: 767px) {
  .sidenav {
    width: 100%;
    left: -100%;
  }
}

.sidenav__header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 32px 64px;
}

.sidenav__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: scroll;
  overflow-y: overlay;
}

.sidenav__nav ul {
  list-style: none;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sidenav__nav li {
  margin-bottom: 0;
}

.sidenav__nav a {
  background: #404040;
  padding: 8px 32px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  position: relative;
}

.sidenav__nav a:hover {
  background: #3b3b3b;
  color: #ffffff;
  text-decoration: none;
}

.sidenav__nav a.active {
  color: #ffffff;
  background: #333333;
}

.sidenav__nav a:after {
  font-family: octicons-anchor;
  position: absolute;
  right: 16px;
}

.sidenav__nav a.expanded {
  background: #333333;
  color: #ffffff;
  padding-right: 48px;
}

.sidenav__nav a.expanded + ul {
  opacity: 1;
}

.sidenav__nav a.expanded:after {
  content: "\f0a3";
}

.sidenav__nav a.collapsed {
  padding-right: 48px;
}

.sidenav__nav a.collapsed + ul {
  max-height: 0;
  opacity: 0;
}

.sidenav__nav a.collapsed:after {
  content: "\f078";
}

.sidenav__nav ul ul a {
  padding-left: 64px;
}

.sidenav__nav::-webkit-scrollbar {
  width: 12px;
}

.sidenav__nav::-webkit-scrollbar-track {
  background: transparent;
}

.sidenav__nav::-webkit-scrollbar-thumb {
  background-color: #272727;
  border-radius: 10px;
  opacity: 0;
}

body.nav-open .sidenav {
  left: 0;
}

a {
  background-color: transparent;
  color: #4078c0;
  text-decoration: none;
}

a a:active,
a a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

img {
  border: 0;
  max-width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0;
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  display: block;
}

code,
kbd,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
  line-height: normal;
}

input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[disabled] {
  cursor: default;
}

li {
  margin-bottom: 8px;
}

blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}

ul ol,
ol ol {
  list-style-type: lower-roman;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
}

.select::-ms-expand {
  opacity: 0;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.anchor {
  display: inline-block;
  padding-right: 2px;
  margin-left: -18px;
}

.anchor:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.4;
}

h1 .octicon-link,
h2 .octicon-link,
h3 .octicon-link,
h4 .octicon-link,
h5 .octicon-link,
h6 .octicon-link {
  color: #000;
  vertical-align: middle;
  visibility: hidden;
}

h1:hover .anchor,
h2:hover .anchor,
h3:hover .anchor,
h4:hover .anchor,
h5:hover .anchor,
h6:hover .anchor {
  text-decoration: none;
}

h1:hover .anchor .octicon-link,
h2:hover .anchor .octicon-link,
h3:hover .anchor .octicon-link,
h4:hover .anchor .octicon-link,
h5:hover .anchor .octicon-link,
h6:hover .anchor .octicon-link {
  visibility: visible;
}

h1 {
  padding-top: 16px;
  font-size: 2em;
  color: #f89743;
  margin-bottom: 16px;
  font-size: 2.25em;
  line-height: 1.2;
  border-bottom: 1px solid #eee;
}

h1 .anchor {
  line-height: 1;
}

h2 {
  padding-top: 16px;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 1.75em;
  line-height: 1.225;
  border-bottom: 1px solid #eee;
}

h2 .anchor {
  line-height: 1;
}

h3 {
  font-size: 1.5em;
  line-height: 1.43;
}

h3 .anchor {
  line-height: 1.2;
}

h4 {
  font-size: 1.25em;
}

h4 .anchor {
  line-height: 1.2;
}

h5 {
  font-size: 1em;
  text-transform: uppercase;
}

h5 .anchor {
  line-height: 1.1;
}

h6 {
  font-size: 1em;
  color: #777;
}

h6 .anchor {
  line-height: 1.1;
}

p,
blockquote,
ul,
ol,
dl,
table,
pre {
  margin-top: 0;
  margin-bottom: 16px;
}

li > p {
  margin-top: 16px;
}

dl {
  padding: 0;
}

dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: bold;
}

dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

blockquote {
  padding: 0 15px;
  color: #777;
  border-left: 4px solid #ddd;
}

blockquote > :first-child {
  margin-top: 0;
}

blockquote > :last-child {
  margin-bottom: 0;
}

figure {
  background: #f7f7f7;
  padding: 16px;
  margin-left: 0;
  margin-right: 0;
}

figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figcaption {
  text-align: center;
  font-size: small;
  margin-top: 16px;
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  width: 100%;
  overflow: auto;
  word-break: keep-all;
}

table th {
  font-weight: bold;
}

table th,
table td {
  padding: 6px 13px;
  border: 1px solid #ddd;
}

table tr {
  background-color: #fff;
  border-top: 1px solid #ccc;
}

table tr::nth-child(2n) {
  background-color: #f8f8f8;
}

code {
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 0;
  font-size: 85%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
}

code:before, code:after {
  letter-spacing: -0.2em;
  content: "\00a0";
}

.highlight {
  margin-bottom: 16px;
}

.highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #555;
  vertical-align: middle;
  background-color: #fcfcfc;
  border: solid 1px #ccc;
  border-bottom-color: #bbb;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 #bbb;
          box-shadow: inset 0 -1px 0 #bbb;
}

:checked + .radio-label {
  z-index: 1;
  position: relative;
  border-color: #4078c0;
}
/*# sourceMappingURL=docs.css.map */