/**
 * Copyright (c) 2017-present, Facebook, Inc.
 *
 * 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;
  -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;
}

del {
  text-decoration-color: #666;
}

ins {
  text-decoration: none;
}

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

a {
  text-decoration: none;
}

a:visited {
  color: #190099;
}

a[target="_blank"]:not(.button) {
  padding-right: 1rem;
  background-position: center right;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23fff%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
}

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

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

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

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

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;
  margin-bottom: 16px;
  margin-top: 0;
  overflow: auto;
  width: 100%;
  word-break: keep-all;
}

@media only screen and (max-width: 735px) {
  table {
    table-layout: fixed;
    word-break: break-all;
  }
}

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;
}

/* Checkmark */
.checkmark {
  display:inline-block;
}

.checkmark:after {
  content: '';
  display: block;
  width: .5em;
  height: 1em;
  border: solid #78b13f;
  border-width: 0 .3em .3em 0;
  transform: rotate(45deg);
}

/* Infinity */
.infinity {
  color: #ccc;
}

/* Admonitions */
.admonition {
  color: #6a737d;
  background-color: rgba(255, 229, 100, 0.3);
  font-size: 16px;
  border-left: 8px solid #ffe564;
  margin-bottom: 16px;
  padding: 15px 30px 15px 15px;
}

.admonition > :first-child {
  margin-top: 0;
}

.admonition > :last-child {
  margin-bottom: 0;
}

.admonition.caution {
  border-left-color: #f0ad4e;
}

.admonition.note {
  border-left-color: #428bca;
}

.admonition.warning {
  border-left-color: #d9534f;
}

.post > article 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;
}

.post > article > pre,
.highlight > pre {
  background-color: #f7f7f7;
  display: block;
  position: relative;
}

.post > article > pre,
.post > article > .highlight > pre {
  margin: 20px 0;
}

.post > article > pre > code,
.highlight > pre > code {
  display: block;
  box-sizing: border-box;
  font-size: 14px;
  overflow-x: auto;
  padding: 1.25rem;
  color: #e7e9db;
  background-color: #2f1e2e;
}

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 */
.post *+h2,
.post *+h3,
.post *+h4,
.post *+h5,
.post *+h6,
.content *+h2,
.content *+h3 {
  margin-top: 30px
}

.post h2:before,
.post h3:before,
.post h4:before,
.post h5:before,
.post h6:before,
.content h2:before,
.content h3:before {
  display: block;
  content: " ";
  margin-top: -70px;
  height: 70px;
  visibility: hidden
}

.post a {
  padding: 0 .2rem;
}

.post a:hover,
.post a:focus {
  text-decoration: underline;
}

@media only screen and (max-width: 735px) {
  .post h2:before,
  .post h3:before,
  .post h4:before,
  .post h5:before,
  .post h6:before {
    margin-top: -106px;
    height: 106px;
  }
}

/* Buttons */
a.button {
  border: 1px solid #60b030;
  border-radius: 3px;
  color: #fff;
  background: #60b030;
  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;
}

a.button.cta {
  background-color: #f6a623;
  border-color: #f6a623;
}

a.button.cta:hover {
  background-color: #f29602;
  border-color: #f29602;
}

/* Headers */
.docs .mainContainer h2,
.docs .mainContainer h3,
.docs .mainContainer h4,
.docs .mainContainer h5,
.docs .mainContainer h6 {
  margin-bottom: 6px;
  padding-bottom: 10px;
}

.docs .mainContainer h2 {
  border-bottom: 1px solid #cccccc
}

.docs .mainContainer h3 {
  font-weight: 500;
  margin-bottom: 5px;
}

.docs .mainContainer h4 {
  margin-bottom: 0px;
}

.docs .mainContainer h5,
.docs .mainContainer h6 {
  margin-bottom: 0px;
}

.docs .mainContainer figure {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.docs .mainContainer figure > img {
  border: thin #c0c0c0 solid;
  padding: .5rem;
  box-sizing: border-box;
}

.docs .mainContainer figure > figcaption > p {
  font: italic smaller sans-serif;
  padding: .3rem;
  margin: 0;
  text-align: center;
}

/* 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;
}

.page .wrapper {
  max-width: 1100px;
}

.wrapper.paper {
  max-width: 800px;
}

.wrapper.narrow {
  max-width: 600px;
}

.wrapper.center {
  margin-left: auto;
  margin-right: auto;
}

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

.center {
  display: block;
  text-align: center;
}

@media only screen and (max-width: 735px) {
  .wrapper {
    padding: 0 10px;
  }
}

/* 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: #60b030;
  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 auto;
  max-width: 100%;
  padding: 0 0 40px 0;
}

@media only screen and (min-width: 736px) {
  .mainContainer {
    padding: 22px 0 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 > article > p,
.mainContainer .wrapper .post > article > .admonition > p,
.mainContainer .wrapper .post > article > li {
  text-align: justify;
}

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

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

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

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

.mainContainer .wrapper .post .docPagination {
  background: #60b030;
  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%;
  }
}
/* End of Main Container */

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.breadcrumb > li {
  display: inline-block;
  margin: 0;
}

.breadcrumb > li+li:before {
  content: ">";
  padding: 0 4px;
  color: #999;
}

/* Navbar */
.fixedHeaderContainer {
  background: #60b030;
  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.siteNavLink {
  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;
  }
}
/* 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: 50px;
  top: 15px;
}

.page .navSearchWrapper {
  right: 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;
}

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;
}
@media only screen and (max-width: 735px) {
  .navSearchWrapper {
    max-width: calc(100% - 214px - 10px);
  }
}

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;
}

.feature-points img {
  width: 96px;
}

@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%;
    padding: 20px 0;
    align-items: center;
  }

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

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

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

  .feature-points .gridBlock .twoByGridBlock img {
    width: 96px;
  }

  .feature-points .gridBlock .threeByGridBlock img {
    width: 64px;
  }

  .feature-points .gridBlock .fourByGridBlock img {
    width: 48px;
  }
}

@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 50%;
  max-width: 500px;
  text-align: center;
}

.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;
}

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

  .imageAlignSide .blockImage {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
/* End of GridBlock */

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

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

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

.container .wrapper .imageAlignSide p {
  margin: 0;
  margin-bottom: 20px;
  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 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;
  }

  .container .wrapper .imageAlignSide h2,
  .container .wrapper .imageAlignSide h3 {
    text-align: center;
  }
}

@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: #373434;
  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.siteNavItem {
  flex: 1 1 auto;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

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

.navigationSlider .slidingNav ul li.siteNavItem > a:focus,
.navigationSlider .slidingNav ul li.siteNavItem > a:hover,
.navigationSlider .slidingNav ul li.siteNavItem.siteNavItemActive > a,
.navigationSlider .slidingNav ul li.siteNavItem.siteNavGroupActive > a {
  background-color: #60b030;
  font-weight: 600;
  position: relative;
}

.navigationSlider .slidingNav ul li.siteNavItem.siteNavItemActive > a:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: -2px;
  left: 0;
  background: #fff;
}

/* 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: #60b030;
  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%;
  }

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

  .reactNavSearchWrapper > span {
    width: 100%;
  }
}

@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;
  }

  .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.siteNavItem 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.siteNavItem a:hover,
  .navigationSlider .slidingNav ul li.siteNavItem.siteNavItemActive a,
  .navigationSlider .slidingNav ul li.siteNavItem.siteNavGroupActive a {
    color: #fff;
  }
}

.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
  z-index: 10001!important;
}

@media only screen and (max-width: 735px) {
  .navigationSlider .slidingNav ul {
    overflow-x: auto;
  }
  .navigationSlider .slidingNav ul::-webkit-scrollbar {
    display: none;
  }
  .reactNavSearchWrapper .ds-dropdown-menu {
    min-width: 400px;
  }
  .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
    right: -40px!important;
  }
}
@media only screen and (max-width: 475px) {
  .reactNavSearchWrapper .ds-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 > .docsNavContainer {
    margin-left: 0;
  }

  .docMainWrapper > .onPageNav {
    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;
  }
}

.docMetaHeader {
  margin: -10px 0 30px 0;
  color: #999;
}

/* 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) translate(-2px, 0);
}

.docsNavContainer {
  order: -1;
}

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

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

.docsSliderActive.docsNavContainer {
  display: block;
  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 8px 10px;
}

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

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

  .navBreadcrumb h2 {
    padding: 0 10px;
  }

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

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

@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;
}

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

.page .navToggle {
  display: none;
}

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

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

.hamburger-menu {
  position: absolute;
  top: 5px;
  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 .navListItem {
  list-style-type: none;
  margin: 0;
}

.toc .toggleNav .navListItem .title {
  color: #393939;
  color: #717171;
  line-height: 1.2em;
  margin: 0;
  padding: 6px 0;
}

.toc .navGroups > .navListItem:first-of-type > .title {
  padding-top: 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 0 0 8px;
  margin-bottom: 0;
}

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

.toc .toggleNav ul li a {
  border: none;
  display: block;
  transition: color 0.3s;
}

.toc .toggleNav .navListItem .title:hover,
.toc .toggleNav ul li a:hover,
.toc .toggleNav ul li a:focus {
  color: #60b030;
}

.toc .toggleNav .navListItem > a.title {
  display: block;
  width: 100%;
}

.toc .toggleNav .navListItem.navListItemActive a.title {
  color: #60b030;
  font-weight: 600;
}

.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;
}

.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 #TableOfContents > ul li > a.active {
  font-weight: 600;
}

.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 .navToggler,
    .tocActive .navBreadcrumb h2 {
      visibility: hidden;
    }

    .tocActive .onPageNav > #TableOfContents > ul {
      padding: 12px 0;
    }
  }

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

    .toc {
      width: auto;
    }

    .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 > #TableOfContents > ul {
      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: 10px 20px;
  text-align: center;
}

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

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

.productShowcaseSection h2,
.productShowcaseSection h3 {
  margin-top: 20px;
  text-align: center;
}

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

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

.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 (min-width: 736px) {
  .productShowcaseSection .imageAlignSide h2,
  .productShowcaseSection .imageAlignSide h3 {
    font-size: 30px;
    padding: 10px 0;
  }
}

@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 */

/* User voices */
.uservoice blockquote {
  border: none;
  margin: 0;
  padding: 0;
}

.uservoice blockquote q {
  background-color: #f7f7f7;
  display: block;
  padding: 25px;
  text-align: left;
}

.uservoice blockquote q:before,
.uservoice blockquote q:after {
  content: "";
}

.uservoice .author {
  color: #747474;
  position: relative;
  padding: 12px 0 0 2px;
}

.uservoice .author:after {
  position: absolute;
  left: 35px;
  top: 0;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border: medium solid transparent;
  border-top-color: #f7f7f7;
  border-width: 10px;
}

.uservoice .author .thumbnail {
  color: #747474;
  display: table-cell;
  vertical-align: middle;
  padding-right: 1rem;
  height: 40px;
  position: relative;
  text-align: center;
}

.uservoice .author .thumbnail > img {
  max-width: 28px;
}

.uservoice .author .company-name {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}

@media only screen and (max-width: 735px) {
  .uservoice {
    margin-top: 30px;
  }
}

/* Want more */
.want-more-section {
  padding: 30px 0;
  background-color: #f2f2f2;
}

.want-more-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 20px;
}

.want-more-buttons .button {
  margin: 1rem;
  padding: 1rem;
}

/* 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 {
  background: none;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin: 2px -10px;
  padding: 3px 10px;
}

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

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

.nav-footer .sitemap .title,
.nav-footer .sitemap .subtitle {
  display: block;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.25;
}

.nav-footer .sitemap .title {
  color: white;
  font-size: 14px;
}

.nav-footer .sitemap .subtitle,
.nav-footer .sitemap .title > a,
.nav-footer .sitemap .subtitle > a {
  color: white;
}

.nav-footer .sitemap .title > a,
.nav-footer .sitemap .subtitle > 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 #60b030;
}

.tab-pane {
  display: none;
}

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

pre .btnIcon {
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0;
  color: #fff;
  background-color: transparent;
  height: 30px;
  transition: all .25s ease-out;
}

pre .btnIcon:hover {
  text-decoration: none
}

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

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

.btnIcon__label {
  font-size: 11px
}

.btnClipboard {
  right: 10px
}

/* your custom css */

@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
}

@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) {
}

.nav-footer {
  background-color: #373434;
}

.index-hero {
  background-color: #2b3137;
  padding: 48px;
}

.index-hero-inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
  min-height: 180px;
}

.index-hero-project-tagline {
  color: #fff;
  font-size: 48px;
  margin: 0;
}

.index-hero-project-tagline small {
  display: block;
  font-weight: 400;
  font-size: 30%;
  line-height: 1em;
  margin: .7em 0 1.3em;
}

.index-hero-project-tagline img {
  max-width: 200px;
}

a.index-hero-project-keywords,
a.index-hero-project-keywords:visited {
  color: #60b030;
}

.page-title {
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  color: #333;
  text-align: center;
}

.page-title:after {
  position: absolute;
  width: 100%;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background: #5eab3f;
  background: linear-gradient(to right, #5eab3f 0%, #89f759 100%);
}

.page-title .subtitle {
  display: block;
  line-height: 1.7;
  font-size: 14px;
  font-weight: normal;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.index-hero-logo {
  animation-duration: 2s;
  animation-name: jackInTheBox;
  float: right;
  padding: 20px;
  padding-right: 0;
}

.index-ctas {
  margin-top: 24px;
}

.index-ctas-get-started-button {
  border-radius: 8px;
  border-width: 2px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-right: 24px;
  padding: 18px 36px;
}

@media only screen and (max-width: 768px) {
  .announcement {
    font-size: 18px;
    padding: 20px;
  }

  .index-hero {
    padding: 20px;
  }

  .index-hero-inner {
    padding: 0;
  }

  .index-hero-project-tagline {
    font-size: 36px;
    text-align: center;
  }

  .index-hero-project-tagline small {
    font-size: 50%;
  }

  .index-hero-logo {
    display: block;
    float: none;
    margin: 0 auto;
  }

  .index-ctas {
    text-align: center;
  }

  .index-ctas-github-button {
    display: none;
  }
}

.imageAlignTop .blockImage {
  max-width: 40%;
}

.index-ctas-get-started-button {
  background-color: #60b030;
}

@media only screen and (max-width: 768px) {
  .gridBlock .blockElement.imageAlignTop {
    margin-bottom: 40px
  }
}

ul.checklist {
  border: solid 2px #ffb03f;
  padding: 0.5em 1em 0.5em 3em;
  position: relative;
}

ul.checklist > li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none;
}

ul.checklist > li:before {
  content: url('/img/check-square.png');
  position: absolute;
  left : 1em;
}

/* dtable */
.dtable {
  margin-bottom: 1rem;
  border-top: 1px solid #ccc;
}

.dtable dt {
  border: 1px solid #ccc;
  border-top: none;
  font-weight: 500;
  padding: 15px 40px;
}

.dtable.group > dt {
  background: #f7f7f7;
}

.dtable dd {
  padding: 15px 40px;
}

.dtable.group > dd {
  padding: 0;
}

.dtable dl.item {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.dtable dl.item > dt {
  display: table-cell;
  width: 60%;
}

.dtable dl.item > dt .desc {
  font-size: smaller;
  color: #6c757d;
}

.dtable dl.item > dd {
  display: table-cell;
  border: 1px solid #ccc;
  border-top: none;
}

.dtable dl.item > dd.right {
  text-align: right;
}

.dtable.ratio_1to3 dl.item > dt {
  width: 30%;
}

.dtable.ratio_1to3 dl.item > dd {
  width: 70%;
}

@media only screen and (max-width: 735px) {
  .dtable dl.item {
    border-width: 1px;
  }

  .dtable dt {
    padding: 0.5rem 1rem;
    border-left: none;
    border-right: none;
  }

  .dtable.group > dd {
    padding: 0;
  }

  .dtable dl.item {
    display: block;
    border-bottom: 1px solid #ccc;
  }

  .dtable dl.item > dt {
    display: block;
    width: 100%;
    border: none;
    padding-bottom: 0;
    font-weight: bold;
  }

  .dtable dl.item > dd {
    display: block;
    width: 100%;
    border: none;
    padding: 14px 1rem;
    font-size: 0.9375rem;
  }

  .dtable.ratio_1to3 dl.item > dt,
  .dtable.ratio_1to3 dl.item > dd {
    width: 100%;
  }
}

/* pricing */
.pricing.wrapper {
  max-width: 600px;
}

.pricing .price {
  font-size: 1.5rem;
  color: #5eab3f;
  padding: 0 3px;
}

.pricing .yen {
  font-size: smaller;
  white-space: nowrap;
}

.price-notice {
  list-style: none;
  padding: 0;
  font-size: small;
}

.pricing del {
  font-size: smaller;
  padding-right: .4rem;
}

.pricing ins {
  color: #fe6060;
  font-weight: bold;
}

/* plans */
.plans.wrapper {
  max-width: 800px;
}

.plans .plans-card {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding-bottom: 30px;
  color: #fff;
  position: relative;
}

.plans .plans-card:first-child {
  margin-left: 0
}

.plans .plans-card:last-child {
  margin-right: 0
}

@media only screen and (min-width: 769px) {
  .plans .plans-card {
    margin:20px 0 0 0;
    margin-right: 12px;
    margin-left: 12px;
    border: 1px solid #e6e6e6;
  }
}

.plans-card__top {
  padding-bottom: 50px;
}

.plans-card__heading {
  text-align: center;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  margin: 20px 0;
}

.plans-card__separator {
  border-bottom: 1px solid #fff;
  width: 85%;
  margin: 0 auto 34px
}

.plans-card__price-area {
  text-align: center;
  line-height: 30px;
  max-height: 53px;
  font-weight: 300;
}

.plans-card__price-area__currency,
.plans-card__price-area__slash,
.plans-card__price-area__term {
  font-size: 20px;
  line-height: 20px
}

.plans-card__price-area__currency {
  margin-top: 10px;
  margin-right: -4px;
}

.plans-card__price-area__amount {
  font-size:38px;
  line-height: 38px
}

.plans-card__price-area__slash {
  margin: 0 -4px
}

.plans-card__body {
  position: relative;
  line-height: 25px;
  font-weight: 300;
  font-size: 13px;
  padding:10px 18px;
  margin: auto;
  margin-top: 0;
  width: 95%
}

.plans-card__bottom-area {
  position: absolute;
  width: 100%;
  bottom: 23px
}

.plans-free {
  color: #76c4e2
}

.plans-free:hover {
  color: #85cba8
}

.plans-free-back {
  background: #85cba8;
  background: linear-gradient(to bottom left,#85cba8,#76c4e2);
  background-size: cover;
  background-position: center
}

.plans-entry {
  color: #97cb18
}

.plans-entry:hover {
  color: #aad937
}

.plans-entry-back {
  background: #aad937;
  background: linear-gradient(to bottom left,#aad937,#97cb18);
  background-size: cover;
  background-position: center
}

.plans-standard {
  color: #f16975
}

.plans-standard:hover {
  color: #f69259
}

.plans-standard-back {
  background: #f69259;
  background: linear-gradient(to bottom left,#f69259,#f16975);
  background-size: cover;
  background-position: center
}

.plans-premium {
  color: #8176b5
}

.plans-premium:hover {
  color: #ba77b1
}

.plans-premium-back {
  background: #ba77b1;
  background: linear-gradient(to bottom left,#ba77b1,#8176b5);
  background-size: cover;
  background-position: center
}

.layout-table {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
}

.area-table {
  width: 100%;
}

.area-table .table-plan {
  width: 100%;
  table-layout: fixed;
}

.area-table .table-plan tr > th {
  width: 20%;
}

.area-table .table-plan tr > th:first-of-type {
  width: 35%;
}

.table-plan td,
.table-plan th {
  text-align: center;
  padding: 1.5rem 0;
}

.table-plan tbody th {
  font-size: 14px;
}

@media only screen and (max-width: 735px) {
  .area-table {
    overflow-x: scroll;
  }

  .layout-table .area-table .table-plan {
    width: 760px;
  }
}

/* flowlist */
.flowlist {
  font-size: 0;
  letter-spacing: 0;
  counter-reset: flow-num;
  margin: 2rem 0;
}

.flowlist li {
  font-size: 1rem;
  letter-spacing: 0.025em;
  display: inline-block;
  vertical-align: top;
  margin: 0 1rem;
  width: calc(25% - 2rem);
  counter-increment: flow-num;
  position: relative;
  background-color: #faebd7;
}

.flowlist li .title {
  display: block;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.flowlist li .title:before {
  content: counter(flow-num) ".";
  font-size: 1.1rem;
  font-weight: 400;
  padding-right: 0.25rem;
}

.flowlist li:not(:last-child):after {
  width: 24px;
  display: inline-block;
  content: url('/img/angle-right.png');
  position: absolute;
  right: -1.8rem;
  top: 4.5rem;
}

.flowlist li > p {
  padding: 1rem;
}

@media only screen and (max-width: 735px) {
  .flowlist {
    text-align: center;
  }

  .flowlist li {
    margin: 0;
    width: calc(100%);
  }

  .flowlist li:not(:last-child) {
    margin-bottom: 2rem;
  }

  .flowlist li .title {
    margin-bottom: 0.25rem;
  }

  .flowlist li:not(:last-child):after {
    content: url('/img/angle-down.png');
    right: calc(50% - .75rem);
    bottom: -2.2rem;
    top: auto;
  }
}

/* faq */
.faqlist {
  display: flex;
  flex-wrap: wrap;
}

.faqlist > .faqbox {
  margin: 0 1rem 2rem;
  width: calc(50% - 2rem);
  border: 4px solid #eee;
  padding: 1rem;
}

.faqlist > .faqbox > dt {
  font-weight: bold;
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 1rem;
}

.faqlist > .faqbox > dt:before {
  content: "Q";
  color: #0090a0;
  font-size: 1.4rem;
  line-height: 1.4rem;
  position: absolute;
  left: 0;
}

.faqlist > .faqbox > dd {
  padding-left: 1.8rem;
  position: relative;
}

.faqlist > .faqbox > dd:before {
  content: "A";
  color: #a09000;
  font-size: 1.4rem;
  line-height: 1.4rem;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 735px) {
  .faq .wrapper {
    padding: 0;
  }

  .faqlist > .faqbox {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

/* proplist */
.prop-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.prop-item {
  padding: .5rem 0;
  border-bottom: 1px solid #e3e8ee;
}

.prop-item-label {
  display: flex;
  margin: 0;
  align-items: baseline;
  flex-wrap: wrap;
  position: relative
}

.prop-item-label-name {
  font-weight: 600;
  margin-right: .5em;
  font-family: Menlo,Consolas,monospace;
}

.prop-item-label-badge {
  font-size: 10px;
  letter-spacing: .12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e56f4a;
  margin: 0 .5em 0 0;
}

.prop-item-label-details {
  color: #8792a2;
  font-size: 12px;
  font-weight: 500;
  margin: 0 .5em 0 0;
}

.prop-item-label-details a {
  padding: 0;
}

.prop-item-description > p {
  margin: 1em 0 0 0;
}

@media only screen and (min-width: 1024px) {
  .prop-item {
    display: flex;
    flex-wrap: wrap;
  }

  .prop-item-label {
    width: 12em;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    word-break: break-word
  }

  .prop-item-label .prop-item-label-badge,
  .prop-item-label .prop-item-label-details {
    margin: .2em 0
  }

  .prop-item-description {
    flex: 1;
    display: flex;
    flex-direction: column
  }

  .prop-item-description > p {
    flex: 1;
    margin: 0;
  }
}

/* Manual */
.manual table th {
  text-align: center;
}

.manual table td {
  vertical-align: middle;
}
