/* SPINNER */

.spinner {
  display: inline-block;
  margin: 0 5px 0 0;
  width: 28px;
  height: 10px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #fff;
  height: 100%;
  width: 3px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}



/* GLOBAL */

pre {
  background-color: #fff;
}
pre .title {
  font-weight: bold;
}
pre.bg-danger .title {
  color: #c7254e;
}
pre.bg-success {
  background: transparent;
}
pre.bg-success .title {
  color: #468847;
}
.hljs {
  background-color: transparent;
}
.dropdown-menu a {
  cursor: pointer;
}



/* DOC */

.doc-api-heading-group {
  margin-top: 10px;

  font-size: 22px;
  font-weight: bold;
}
.doc-api-heading-group a {
  color: #0a203e;
}
.doc-api-heading-group a.collapsed {
  color: #999;
}

.doc-api-group {
  margin-bottom: 10px;

  border-bottom: 1px solid #ddd;

  font-size: 13px;
}
.doc-api-group h4 {
  font-size: 16px;
}
.doc-api-heading {
  padding: 0;
}
.doc-api-heading .form-control {
  width: auto;
  height: 26px;
  margin-top: -1px;
  padding: 2px 10px;

  font-weight: normal;
}
.doc-api-heading .collapsed + .form-control,
.doc-api-heading .collapsed + .add-clear-span {
  display: none;
}
.doc-api-heading .form-control-feedback {
  width: 26px;
  height: 26px;

  line-height: 26px;
  font-size: 18px;
}
.doc-api-heading-method {
  float: left;
  display: block;
  width: 70px;
  padding: 8px 0;
  margin-right: 10px;

  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;

  line-height: 17px;
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.doc-api-heading-path {
  padding: 8px 15px;

  font-size: 14px;
  line-height: 17px;
}
.doc-api-heading-path .fa.fa-unlock {
  margin-left: 5px;
}
.doc-api-heading-shortdesc {
  float: right;

  color: #337ab7;
  font-size: 14px;
}
.doc-api-heading-tag {
  padding: 2px 5px;
  margin-left: 10px;

  border-width: 1px;
  border-style: solid;
  border-radius: 5px;

  font-size: 10px;
  line-height: 15px;
  vertical-align: middle;
}
.doc-api-deprecated .doc-api-heading {
  text-decoration: line-through;
}
.doc-api-deprecated .doc-api-heading .doc-api-heading-method {
  text-decoration: line-through;
}
.doc-api-deprecated .doc-api-heading .doc-api-heading-shortdesc {
  text-decoration: line-through;
}

.doc-tab-content {
  padding: 10px 0 0;
}

.doc-parameters {
  margin-bottom: 35px;
}
.doc-parameters .form-group {
   padding: 4px 0;
}
.doc-parameters .form-group:nth-child(even) {
   background-color: #f5f5f5;
}
.doc-parameters .form-group .doc-parameters-desc {
   padding-top: 7px;
}


.doc-api-result-time {
  float: right;
  margin: -40px 10px 0 0;
  padding: 2px 5px;

  font-size: 10px;
  font-weight: bold;
}


.doc-api-debug iframe {
  width: 100%;
  height: 350px;
  border: 1px solid #ddd;
}


/* Developer */

#result pre {
  margin-top: 5px;
  border-color: #ddd;
}
