/*
  Breakpoints
*/
/*
  Layout
*/
/*
  Colors
*/
@-webkit-keyframes shimmer {
  0% {
    background-position: top left; }
  100% {
    background-position: top right; } }
@-moz-keyframes shimmer {
  0% {
    background-position: top left; }
  100% {
    background-position: top right; } }
@-o-keyframes shimmer {
  0% {
    background-position: top left; }
  100% {
    background-position: top right; } }
@keyframes shimmer {
  0% {
    background-position: top left; }
  100% {
    background-position: top right; } }
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0; }

html {
  font-size: 100%;
  line-height: 1.4;
  background-color: #263249;
  font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif; }

body {
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

a {
  text-decoration: none;
  color: #3D759D;
  border-bottom: 1px solid rgba(61, 117, 157, 0.3);
  transition: all 0.15s ease-out; }
  a:hover {
    text-decoration: none;
    border-bottom-color: #3D759D; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-weight: bold;
  line-height: 1.25;
  color: #313131;
  text-rendering: optimizeLegibility; }

h1 {
  font-size: 2rem; }

h2 {
  margin-top: 1rem;
  font-size: 1.5rem; }

h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem; }

h4, h5, h6 {
  margin-top: 1rem;
  font-size: 1rem; }

/* Body text */
p {
  margin-top: 0;
  margin-bottom: 1rem; }

strong {
  color: #303030; }

/* Lists */
ul, ol, dl {
  margin-top: 0;
  margin-bottom: 1rem; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem; }

/* Misc */
hr {
  clear: both;
  position: relative;
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff; }

abbr {
  font-size: 85%;
  font-weight: bold;
  color: #555;
  text-transform: uppercase; }

abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #e5e5e5; }

/* Code */
code,
pre {
  font-family: Menlo, Monaco, "Courier New", monospace; }

code {
  color: #333;
  padding: 0.2em 0;
  margin: 0;
  font-size: 75%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 3px; }
  code::before, code::after {
    letter-spacing: -0.2em;
    content: "\00a0"; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: .8rem;
  line-height: 1.4;
  white-space: pre;
  word-break: break-all;
  word-wrap: normal;
  background-color: #f9f9f9;
  overflow-x: auto; }

pre code {
  padding: 0;
  font-size: 100%;
  color: inherit;
  background-color: transparent; }
  pre code::before, pre code::after {
    content: ''; }

/* Tables */
table {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-collapse: collapse; }

td,
th {
  padding: .25rem .5rem;
  border: 1px solid #e5e5e5; }

/* Pygments via Jekyll */
.highlight {
  margin-bottom: 1rem;
  border-radius: 4px; }

.highlight pre {
  margin-bottom: 0; }

/* Rouge doesn't like newer ES2016 syntax */
.highlight .err {
  color: inherit;
  background-color: transparent; }

.u-text-center {
  text-align: center; }

@media only screen and (max-width: 568px) {
  .u-hidden-sm {
    display: none !important; } }

.u-inverted,
.u-inverted h1,
.u-inverted h2,
.u-inverted h3,
.u-inverted h4,
.u-inverted h5,
.u-inverted p,
.u-inverted a {
  color: white;
  border-color: white; }

.u-callout {
  margin-left: 30px; }

.u-last {
  margin-left: auto; }

.u-first {
  margin-right: auto; }

.u-pull-right {
  float: right; }

@media only screen and (min-width: 960px) {
  .u-mobile, .Mobile-nav {
    display: none !important; } }

.u-desktop, .Desktop-nav {
  display: none !important; }
  @media only screen and (min-width: 960px) {
    .u-desktop, .Desktop-nav {
      display: initial !important; } }

.fixed-ratio {
  position: relative;
  padding-top: 62.25%;
  height: 0; }

.fixed-ratio-inner {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%; }

.fixed-ratio-video {
  padding-top: 56.25%; }

.fixed-ratio-slides {
  padding-top: 72.916%; }

.Grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0; }

.Grid-cell {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.Grid--flexCells > .Grid-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.Grid--top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.Grid--bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end; }

.Grid--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.Grid--justifyCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }

.Grid-cell--top {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.Grid-cell--bottom {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }

.Grid-cell--center {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.Grid-cell--autoSize {
  -webkit-box-flex: none;
  -webkit-flex: none;
  -moz-box-flex: none;
  -moz-flex: none;
  -ms-flex: none;
  flex: none; }

.Grid--fit > .Grid-cell {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.Grid--full > .Grid-cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }

.Grid--1of2 > .Grid-cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%; }

.Grid--1of3 > .Grid-cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3333%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 33.3333%;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%; }

.Grid--1of4 > .Grid-cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%; }

@media only screen and (min-width: 568px) {
  .small-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; }

  .small-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }

  .small-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }

  .small-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%; }

  .small-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%; } }
@media only screen and (min-width: 768px) {
  .med-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; }

  .med-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }

  .med-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }

  .med-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%; }

  .med-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%; } }
@media only screen and (min-width: 1200px) {
  .large-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; }

  .large-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }

  .large-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }

  .large-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%; }

  .large-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%; } }
.Grid--gutters {
  margin: -1em 0 1em -1em; }

.Grid--gutters > .Grid-cell {
  padding: 1em 0 0 1em; }

.Grid--guttersLg {
  margin: -1.5em 0 1.5em -1.5em; }

.Grid--guttersLg > .Grid-cell {
  padding: 1.5em 0 0 1.5em; }

.Grid--guttersXl {
  margin: -2em 0 2em -2em; }

.Grid--guttersXl > .Grid-cell {
  padding: 2em 0 0 2em; }

@media only screen and (min-width: 568px) {
  .small-Grid--gutters {
    margin: -1em 0 1em -1em; }

  .small-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em; }

  .small-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em; }

  .small-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em; }

  .small-Grid--guttersXl {
    margin: -2em 0 2em -2em; }

  .small-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em; } }
@media only screen and (min-width: 768px) {
  .med-Grid--gutters {
    margin: -1em 0 1em -1em; }

  .med-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em; }

  .med-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em; }

  .med-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em; }

  .med-Grid--guttersXl {
    margin: -2em 0 2em -2em; }

  .med-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em; } }
@media only screen and (min-width: 1200px) {
  .large-Grid--gutters {
    margin: -1em 0 1em -1em; }

  .large-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em; }

  .large-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em; }

  .large-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em; }

  .large-Grid--guttersXl {
    margin: -2em 0 2em -2em; }

  .large-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em; } }
.Header {
  margin-top: 0.3em;
  margin-bottom: 1em;
  width: 100%;
  z-index: 100; }
  @media only screen and (min-width: 568px) {
    .Header {
      margin-top: 1em;
      height: 70px; } }
  @media only screen and (min-width: 768px) {
    .Header {
      margin-top: 2em; } }
  .Header__logo {
    color: white;
    font-size: 24px;
    display: block;
    text-align: center;
    margin-top: 0.5em;
    line-height: 1.1;
    border: none; }
    @media only screen and (min-width: 568px) {
      .Header__logo {
        line-height: 0.8;
        display: inline;
        text-align: left;
        padding-top: 7px;
        padding-bottom: 7px; } }
    .Header__logo:hover, .Header__logo:focus {
      text-decoration: none; }
  .Header__logo-minor {
    font-size: 17px; }
    @media only screen and (min-width: 768px) {
      .Header__logo-minor {
        font-size: 20px; } }
  .Header__logo-major {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 28px;
    color: #FF522A; }
    @media only screen and (min-width: 768px) {
      .Header__logo-major {
        font-size: 30px; } }
    @media only screen and (min-width: 768px) {
      .Header__logo-major {
        position: absolute; } }
  .Header__nav {
    display: block;
    padding-left: 5px;
    padding-right: 5px; }
    @media only screen and (min-width: 568px) {
      .Header__nav {
        float: right;
        width: 70%; } }
  .Header__nav-list {
    list-style-type: none;
    padding-left: 0;
    display: table;
    width: 100%;
    overflow: hidden; }
    @media only screen and (min-width: 568px) {
      .Header__nav-list {
        display: inline-block;
        margin-bottom: 0; } }
  .Header__nav-item {
    display: table-cell;
    width: 25%;
    padding: 8px 2px;
    text-align: center; }
    @media only screen and (min-width: 568px) {
      .Header__nav-item {
        display: inline-block;
        width: auto; } }
  .Header__nav-item-link {
    display: inline-block;
    color: #eee;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    float: left;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px; }
    @media only screen and (min-width: 568px) {
      .Header__nav-item-link {
        padding: 3px 10px;
        width: auto; } }
    .Header__nav-item-link:focus {
      text-decoration: none; }
    .Header__nav-item-link:hover {
      text-decoration: none;
      background-color: #18202e;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
    .Header__nav-item-link.active {
      color: #263249;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 5px rgba(0, 0, 0, 0.5);
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
      background-color: white; }

/* For sticky footer */
.Wrapper {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.Content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .Content {
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      max-width: 1000px; } }

.Side-panel {
  padding: 2rem 1rem;
  color: #fff;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .Side-panel {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 280px;
      -moz-box-flex: 0;
      -moz-flex: 0 0 280px;
      -ms-flex: 0 0 280px;
      flex: 0 0 280px;
      padding: 0 20px; } }

.Topbar {
  background-color: #FF522A;
  color: white;
  padding-top: 5px; }
  .Topbar p {
    margin: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 15px; }
  .Topbar a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white; }

.Center-panel {
  max-width: 100%; }
  @media only screen and (min-width: 768px) {
    .Center-panel {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      min-width: 0; } }

.Container {
  max-width: 1000px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto; }

.Footer {
  background-color: #181D27;
  padding: 1.5em 0;
  color: #677590;
  font-size: 14px;
  margin-top: 4em; }
  @media only screen and (max-width: 568px) {
    .Footer {
      text-align: center; } }
  .Footer p {
    margin: 0; }
  .Footer a {
    color: #B4BEC7;
    border-color: rgba(180, 190, 199, 0.3);
    transition: all 0.15s ease-out; }
    .Footer a:hover {
      color: #eee;
      border-color: #B4BEC7; }

.Home-page {
  font-weight: 300; }
  .Home-page__tagline {
    font-size: 36px;
    font-weight: 100;
    text-align: center;
    margin-top: 1.2em;
    line-height: 1.2; }
    @media only screen and (min-width: 568px) {
      .Home-page__tagline {
        text-align: left;
        font-size: 66px;
        line-height: 1.1;
        margin-top: 0.8em; } }
  .Home-page__features {
    line-height: 1.5;
    margin-top: 2em; }
    @media only screen and (min-width: 768px) {
      .Home-page__features {
        margin-top: 3em; } }
  .Home-page__feature-heading {
    font-size: 28px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .Home-page__feature-heading {
        margin-bottom: 20px; } }
  .Home-page__feature-section {
    font-size: 18px; }
  .Home-page__button {
    padding: 0.7em 1.6em;
    font-size: 17px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.1s ease-out; }
    .Home-page__button:hover {
      background-color: white;
      color: #263249; }

.Page {
  background-color: white;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
  width: 100%; }
  .Page h1 {
    margin: 0;
    color: #383A3D;
    font-size: 36px; }

.Table {
  table-layout: fixed; }
  .Table__wrapper {
    margin-left: 1em;
    max-width: 100%;
    overflow: scroll; }
  .Table__label {
    width: 90px;
    font-size: 0.9em; }
  .Table__code {
    padding: 0; }
    .Table__code .highlight {
      margin: 0; }

.Browser {
  text-align: center; }
  .Browser__window {
    display: inline-block;
    text-align: left;
    width: 100%; }
    .Browser__window:before {
      height: 1.6875em;
      width: 100%;
      background: #dedede url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjU4cHgiIGhlaWdodD0iMTRweCIgdmlld0JveD0iMCAwIDU4IDE0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICA8dGl0bGU+Y29sb3JmdWwgb2JqZWN0czwvdGl0bGU+CiAgPGcgaWQ9Ik1pZGRsZW1hbi12NC0tLUxhbmRpbmd2MiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+CiAgICA8ZyBpZD0iRHJhZnQtdjIiIHNrZXRjaDp0eXBlPSJNU0FydGJvYXJkR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMjEuMDAwMDAwLCAtNTEwLjAwMDAwMCkiPgogICAgICA8ZyBpZD0iU2VjdGlvbi0tLUhlcm8iIHNrZXRjaDp0eXBlPSJNU0xheWVyR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xLjAwMDAwMCwgMC4wMDAwMDApIj4KICAgICAgICA8ZyBpZD0iQmFubmVyLVRlcm1pbmFsIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMTAuMDAwMDAwLCA1MDAuMDAwMDAwKSIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+CiAgICAgICAgICA8ZyBpZD0iY29sb3JmdWwtb2JqZWN0cyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTMuMDAwMDAwLCAxMC4wMDAwMDApIj4KICAgICAgICAgICAgPGVsbGlwc2UgaWQ9Im9iamVjdC0yIiBmaWxsPSIjRDE2ODY4IiBjeD0iNi42MDQ1NzU1MiIgY3k9IjYuOTMzMzU5NzQiIHJ4PSI2Ljk2NDU2NzM5IiByeT0iNi44NDUwODU3Ij48L2VsbGlwc2U+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yNy45NjI1ODIyLDEzLjc3ODQ0NTQgQzMxLjgwOTAwNjYsMTMuNzc4NDQ1NCAzNC45MjcxNDk2LDEwLjcxMzc5NjIgMzQuOTI3MTQ5Niw2LjkzMzM1OTc0IEMzNC45MjcxNDk2LDMuMTUyOTIzMyAzMS44MDkwMDY2LDAuMDg4Mjc0MDQ0OCAyNy45NjI1ODIyLDAuMDg4Mjc0MDQ0OCBDMjQuMTE2MTU3OCwwLjA4ODI3NDA0NDggMjAuOTk4MDE0OCwzLjE1MjkyMzMgMjAuOTk4MDE0OCw2LjkzMzM1OTc0IEMyMC45OTgwMTQ4LDEwLjcxMzc5NjIgMjQuMTE2MTU3OCwxMy43Nzg0NDU0IDI3Ljk2MjU4MjIsMTMuNzc4NDQ1NCBaIiBpZD0ib2JqZWN0LTIiIGZpbGw9IiNENEM2MzciPjwvcGF0aD4KICAgICAgICAgICAgPGVsbGlwc2UgaWQ9Im9iamVjdC0yIiBmaWxsPSIjNUFCNTQxIiBjeD0iNDkuMzIwNTg4OSIgY3k9IjYuOTMzMzU5NzQiIHJ4PSI2Ljk2NDU2NzM5IiByeT0iNi44NDUwODU3Ij48L2VsbGlwc2U+CiAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K") no-repeat 0.5em 0.5em;
      border-radius: 3px 3px 0 0;
      content: "";
      display: block; }
    @media only screen and (min-width: 568px) {
      .Browser__window {
        width: 65%; } }
  .Browser__body {
    background-color: white;
    font-weight: 700;
    margin: 0;
    padding: 3em 1em 4em; }
  .Browser__code {
    font-weight: normal;
    font-size: 13px;
    color: #333; }
    @media only screen and (min-width: 768px) {
      .Browser__code {
        font-size: 14px; } }
    .Browser__code .prompt {
      color: #bbb; }

.Docs-page {
  background-color: white;
  padding: 20px;
  max-width: none;
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .Docs-page {
      border-radius: 4px; } }
  @media only screen and (min-width: 768px) {
    .Docs-page {
      margin-left: 0;
      margin-right: 20px; } }
  .Docs-page h2 {
    font-size: 17px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333; }
  .Docs-page h3 {
    font-size: 15px;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 15px; }
  .Docs-page__version {
    text-align: right;
    font-size: 14px;
    color: #999;
    float: right;
    margin-left: 20px;
    margin-top: 10px; }
    .Docs-page__version select {
      font-size: 16px; }
  .Docs-page__title {
    margin-top: 0;
    margin-bottom: 15px; }
  .Docs-page__improve {
    color: #999;
    border: none; }
    .Docs-page__improve:hover {
      color: #3D759D; }
  .Docs-page__improve-img {
    height: 8px; }
  .Docs-page__improve-text {
    padding-bottom: 1px; }
  .Docs-page__aside {
    float: right;
    color: #999;
    padding-top: 4px;
    padding-bottom: 8px;
    margin-left: 40px;
    font-size: 0.8em;
    max-width: 180px; }
    @media only screen and (max-width: 768px) {
      .Docs-page__aside {
        display: none; } }
    .Docs-page__aside p {
      margin-bottom: 0; }

.Docs-page-nav {
  margin-top: 40px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }
  .Docs-page-nav__link {
    color: #3D759D;
    font-weight: 700;
    padding: 5px 11px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #D2D2D2;
    transition: all 0.15s ease-out;
    border-color: #c0d6e6; }
    .Docs-page-nav__link:hover {
      text-decoration: none;
      border-color: #3D759D; }

.Github-stars {
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .Github-stars {
      text-align: right; } }

.Desktop-nav__toc {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.5; }
.Desktop-nav__section {
  color: #7E8AA3;
  margin-bottom: 0.2em;
  border-bottom: 1px solid rgba(126, 138, 163, 0.2);
  font-size: 18px; }
  .Desktop-nav__section:not(:first-child) {
    margin-top: 0.9em; }
.Desktop-nav__version {
  margin-bottom: 35px;
  opacity: 0.7;
  transition: all 0.15s ease-out; }
  .Desktop-nav__version:hover {
    opacity: 1; }
.Desktop-nav__version-select {
  font-size: 1em; }
.Desktop-nav__item {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 0.4em;
  padding-right: 0.4em;
  border: none;
  line-height: 1;
  transition-property: all 0.15s;
  transition-duration: 0.3s;
  transition-timing-function: ease-out; }
  @media only screen and (min-width: 768px) {
    .Desktop-nav__item {
      font-size: 16px; } }
  .Desktop-nav__item:hover, .Desktop-nav__item:focus, .Desktop-nav__item.active {
    color: #FF522A; }

.Mobile-nav__toc {
  width: 100%;
  font-size: 16px; }
.Mobile-nav__version {
  float: right; }
.Mobile-nav__version-label {
  margin-right: 7px;
  margin-top: 4px; }
.Mobile-nav__version-select {
  display: inline;
  margin-top: 10px;
  font-size: 16px; }

.Subtle-hr {
  position: relative;
  margin: 2.5em 3em;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2); }

.About {
  background-color: white;
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .About {
      margin-top: 0;
      background-color: transparent; } }
  .About__section {
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      .About__section {
        padding: 0;
        padding-right: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex; } }
  .About__heading {
    margin-top: 0;
    font-size: 27px; }
    @media only screen and (min-width: 768px) {
      .About__heading {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 280px;
        -moz-box-flex: 0;
        -moz-flex: 0 0 280px;
        -ms-flex: 0 0 280px;
        flex: 0 0 280px;
        color: white;
        text-align: right;
        padding-right: 20px;
        margin-top: 15px; } }
  @media only screen and (min-width: 768px) {
    .About__content {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      background-color: white;
      padding: 20px;
      max-width: none; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .About__content {
      border-radius: 4px; } }

.Blog {
  background-color: white;
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .Blog {
      margin-top: 0;
      background-color: transparent; } }
  .Blog__post {
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      .Blog__post {
        padding: 0;
        padding-right: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex; } }
  @media only screen and (min-width: 768px) {
    .Blog__post-info {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 280px;
      -moz-box-flex: 0;
      -moz-flex: 0 0 280px;
      -ms-flex: 0 0 280px;
      flex: 0 0 280px;
      padding-right: 20px;
      margin-top: 15px;
      text-align: right; } }
  .Blog__title {
    margin-top: 0;
    font-size: 24px; }
    @media only screen and (min-width: 768px) {
      .Blog__title {
        color: white; }
        .Blog__title a {
          transition-property: all 0.15s;
          transition-duration: 0.3s;
          transition-timing-function: ease-out;
          color: white;
          border-bottom-color: #aaa; }
          .Blog__title a:hover {
            border-bottom-color: white; } }
  .Blog__byline {
    font-size: 12px;
    text-align: right;
    margin-top: 15px;
    margin-bottom: 7px;
    color: #777; }
    @media only screen and (min-width: 768px) {
      .Blog__byline {
        color: #ccc; } }
  .Blog__divider {
    border-top-color: #ccc;
    border-top-style: dashed;
    border-bottom: none;
    margin-top: 0; }
    @media only screen and (min-width: 768px) {
      .Blog__divider {
        display: none; } }
  @media only screen and (min-width: 768px) {
    .Blog__content {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      background-color: white;
      padding: 20px;
      max-width: none; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .Blog__content {
      border-radius: 4px; } }

.anchorjs-link {
  border: none;
  font-size: 20px; }

.Callout {
  background-color: white;
  padding: 20px 20px;
  margin-bottom: 10px;
  color: #777;
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    .Callout {
      border-radius: 4px;
      margin-right: 20px; } }
  .Callout p {
    margin-bottom: 0; }
