.open {
  -moz-animation: open-nav 0.25s ease-in;
  -webkit-animation: open-nav 0.25s ease-in;
  animation: open-nav 0.25s ease-in;
}

@-moz-keyframes open-nav {
  0% {
    left: -275px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes open-nav {
  0% {
    left: -275px;
  }
  100% {
    left: 0;
  }
}
@keyframes open-nav {
  0% {
    left: -275px;
  }
  100% {
    left: 0;
  }
}
.closed {
  -moz-animation: close-nav 0.25s ease-out;
  -webkit-animation: close-nav 0.25s ease-out;
  animation: close-nav 0.25s ease-out;
}

@-moz-keyframes close-nav {
  0% {
    left: 0;
  }
  100% {
    left: -275px;
  }
}
@-webkit-keyframes close-nav {
  0% {
    left: 0;
  }
  100% {
    left: -275px;
  }
}
@keyframes close-nav {
  0% {
    left: 0;
  }
  100% {
    left: -275px;
  }
}
/* New Color-Schema using this inverted color spectrum thing */
body {
  margin: 0;
}

blockquote {
  color: #9a9a9a;
  font-style: italic;
  border-left: 3px solid;
  padding-left: 8px;
}

.docs-anchor {
  display: block;
  padding-top: 40px;
  margin-top: -40px;
}

#docs-header {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1em;
}
#docs-header h1 {
  margin: 0;
  font-size: 3em;
}
#docs-header h2 {
  margin-top: 0px;
  font-size: 18px;
  padding-left: 1px;
  font-weight: 100;
  color: #777;
}
@media (min-width: 992px) {
  #docs-header h1 {
    padding-top: 24px;
  }
  #docs-header h2 {
    font-size: 32px;
    padding-left: 1px;
    font-weight: 100;
  }
}
#docs-header .additional div {
  text-align: right;
  display: none;
}
@media (min-width: 992px) {
  #docs-header .additional div {
    display: block;
  }
}

.doc-container {
  margin-top: 1em;
  border-top: 1px solid #eaeaea;
}

@media (min-width: 992px) {
  #docs-toc.affix {
    top: 85px;
    width: 300px;
  }
}
@media (max-width: 992px) {
  #docs-toc.affix {
    position: relative;
  }
}
#docs-toc {
  padding-left: 0px;
  list-style-type: none;
}
#docs-toc a {
  text-decoration: none;
  font-weight: 500;
}
#docs-toc a:hover {
  text-decoration: underline;
}
#docs-toc > li {
  padding: 4px 8px;
  background-color: #15105d;
  color: #fff;
  border-bottom: 3px solid #42b5ff;
}
#docs-toc > li a {
  color: #fff;
}
#docs-toc > ul {
  font-size: 14px;
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 2em;
  padding-left: 10px;
}
#docs-toc > ul > ul {
  list-style-type: square;
  padding-left: 30px;
}
@media (max-width: 991px) {
  #docs-toc {
    padding-bottom: 25px;
  }
}

.front-page .docs-content h2 {
  background-color: #6435a5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.docs-content pre {
  overflow: scroll;
}
.docs-content a.anchor, .docs-content a.title-anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}
.docs-content a.title-anchor {
  top: -102px;
}
.docs-content h2 {
  margin: 0px;
  background-color: #15105d;
  color: white;
  padding: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.docs-content ul {
  margin-top: 0;
  margin-bottom: 10px;
  list-style-type: disc;
  padding-left: 40px;
}
.docs-content > section > p {
  padding-left: 15px;
}
.docs-content > section > section {
  padding-left: 15px;
  border-bottom: 1px solid #eee;
}
.docs-content section {
  padding-top: 10px;
  padding-bottom: 25px;
}
.docs-content section pre {
  margin-top: 15px;
}
.docs-content section h3 {
  text-align: left;
  font-size: 24px;
}
.docs-content section h4 {
  margin: 25px 0px;
}
.docs-content .param-list {
  padding-left: 0px;
  padding: 25px 25px 21px 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.docs-content .param-list li {
  list-style-type: none;
  line-height: 2.2em;
}
.docs-content .param-list .name {
  padding: 3px 7px;
  border-radius: 5px;
  font-family: monaco;
  border: 1px solid #ccc;
}
.docs-content .param-list .name.success {
  border-color: #5cb85c;
}
.docs-content .param-list .name.failure {
  border-color: #db332c;
}
.docs-content h2#faq {
  margin-bottom: 1em;
}

.example {
  border: 2px solid #eaeaea;
  border-radius: 4px;
  margin-top: 8px;
}

.docs-content h4 {
  text-align: left;
}

.security-info-page article {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.security-info-page article:first-of-type {
  margin-top: 24px;
}
.security-info-page article pre {
  margin-right: 1em;
}

.footer-container {
  position: initial !important;
}
