@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.loading-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  z-index: 1; }

.loading-overlay.is-active {
  display: flex; }

.loading-overlay.is-full-page {
  z-index: 999;
  position: fixed; }

.loading-overlay.is-full-page .loading-icon:after {
  top: calc(50% - 2.5em);
  left: calc(50% - 2.5em);
  width: 5em;
  height: 5em; }

.loading-overlay .loading-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 0.5; }

.loading-overlay .loading-icon {
  position: relative; }

.loading-overlay .loading-icon:after {
  -webkit-animation: spinAround 500ms infinite linear;
  animation: spinAround 500ms infinite linear;
  border: 2px solid #777;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 5em;
  position: relative;
  width: 5em;
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-width: 0.25em; }

/*!
 * Agate by Taufik Nurrohman <https://github.com/tovic>
 * ----------------------------------------------------
 *
 * #ade5fc
 * #a2fca2
 * #c6b4f0
 * #d36363
 * #fcc28c
 * #fc9b9b
 * #ffa
 * #fff
 * #333
 * #62c8f3
 * #888
 *
 */
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #333;
  color: white;
}
.hljs-name,
.hljs-strong {
  font-weight: bold;
}
.hljs-code,
.hljs-emphasis {
  font-style: italic;
}
.hljs-tag {
  color: #62c8f3;
}
.hljs-variable,
.hljs-template-variable,
.hljs-selector-id,
.hljs-selector-class {
  color: #ade5fc;
}
.hljs-string,
.hljs-bullet {
  color: #a2fca2;
}
.hljs-type,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-quote,
.hljs-built_in,
.hljs-builtin-name {
  color: #ffa;
}
.hljs-number,
.hljs-symbol,
.hljs-bullet {
  color: #d36363;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal {
  color: #fcc28c;
}
.hljs-comment,
.hljs-deletion,
.hljs-code {
  color: #888;
}
.hljs-regexp,
.hljs-link {
  color: #c6b4f0;
}
.hljs-meta {
  color: #fc9b9b;
}
.hljs-deletion {
  background-color: #fc9b9b;
  color: #333;
}
.hljs-addition {
  background-color: #a2fca2;
  color: #333;
}
.hljs a {
  color: inherit;
}
.hljs a:focus,
.hljs a:hover {
  color: inherit;
  text-decoration: underline;
}


.show-index {
  position: fixed;
  top: 50%;
  right: 0;
  font-weight: bold;
  font-size: 30px;
}
.api-list {
  display: flex;
}
.api-list .item-area {
    margin: 20px 0 40px;
}
.api-list .sample-area {
    padding: 20px;
}
.api-list .sample-area pre {
      background-color: #333;
}
.api-list .menu-open-btn {
    z-index: 5;
    position: fixed;
    top: 70px;
    left: 20px;
    background: #8DBB13;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
@media screen and (max-width: 1087px) {
.api-list .menu-open-btn {
        transition-duration: .3s;
}
.api-list .menu-open-btn i {
          transition-duration: .3s;
}
.api-list .menu-open-btn.is-opened {
          left: 260px;
}
.api-list .menu-open-btn.is-opened i {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
}
.api-list .menu-open-btn.is-opened + .api-menu {
          left: 0;
}
}
@media screen and (min-width: 1088px) {
.api-list .menu-open-btn {
        display: none;
}
}
.api-list .api-menu {
    border-right: 1px solid #ccc;
    background-color: white;
    z-index: 5;
    max-width: 360px;
}
.api-list .api-menu .current {
      color: #8DBB13;
}
@media screen and (max-width: 1087px) {
.api-list .api-menu {
        transition-duration: .3s;
        padding: 10px;
        width: 240px;
        overflow-y: auto;
        position: fixed;
        height: 100%;
        top: 0;
        padding-top: 70px;
        left: -100%;
}
}
@media screen and (min-width: 1088px) {
.api-list .api-menu {
        padding: 30px;
        flex: 0 0 360px;
        position: relative;
        display: block;
}
}
@media screen and (min-width: 1088px) {
.api-list .api-menu.is-fixed {
        overflow-y: auto;
        padding-top: 90px;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
}
.api-list .api-menu.is-fixed + .api-content {
          margin-left: 360px;
}
}
.api-list .api-content {
    width: 100%;
    max-width: 1200px;
    flex: 1;
    padding: 0 20px;
}
.api-list .api-content .sample-area {
      margin-top: 20px;
}
@media screen and (min-width: 1088px) {
.api-list .api-content {
        padding: 0 40px;
}
}
.api-list .menu-list li ul {
    border-left: none;
}
.api-list .sub-menu-btn.current + .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 3000px;
}
.api-list .sub-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}


.data-pagina .pagination .prev.disabled, .data-pagina .pagination .next.disabled {
  color: #ccc;
  background-color: #efefef;
}
.buttons {
  margin-top: 20px;
}


.data-pagina .pagination .prev.disabled, .data-pagina .pagination .next.disabled {
  color: #ccc;
  background-color: #efefef;
}
.buttons {
  margin-top: 20px;
}
.display {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #c7c7c7;
}


/*# sourceMappingURL=script.css.map*/