:root {
  --docs-header-height: 73px;
  --docs-sidebar-width: 320px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#docs-app {
  margin-top: var(--docs-header-height);
}

.docs-sidebar {
  position: fixed;
  top: var(--docs-header-height);
  left: 0;
  bottom: 0;
  width: var(--docs-sidebar-width);
  overflow-y: auto;
  background: #f5f6f7;
  border-right: 1px solid #e1e1e1;
  z-index: 10;
}

.docs-nav {
  list-style: none;
  margin: 0;
  padding: 24px 0;
}

.docs-nav-group {
  margin: 0;
  padding: 0;
}

.docs-nav-group-label {
  display: block;
  padding: 10px 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #5c666f;
  border-top: 1px solid #ddd;
}

.docs-nav-group:first-child .docs-nav-group-label {
  border-top: none;
}

.docs-nav-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.docs-nav-group ul li a {
  display: block;
  padding: 10px 20px 10px 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #5c666f;
  text-decoration: none;
}

.docs-nav-group ul li a:hover {
  background-color: #ececec;
}

.docs-nav-group ul li a.active {
  background-color: rgb(225, 225, 225);
  font-weight: 600;
}

.docs-main {
  margin-left: var(--docs-sidebar-width);
  min-height: calc(100vh - var(--docs-header-height));
  background: #fff;
}

.docs-content {
  padding: 32px 48px 64px;
  font-family: 'Source Sans Pro', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.docs-content h1 {
  margin: 0 0 24px;
  padding: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #28323a;
}

.docs-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.docs-content th,
.docs-content td {
  border: 1px solid #e1e1e1;
  padding: 10px 14px;
  text-align: left;
}

.docs-content th {
  background: #f5f6f7;
  font-weight: 600;
}

.docs-content a {
  color: #0066cc;
}

.docs-content .docs-loading,
.docs-content .docs-error {
  color: #5c666f;
  font-style: italic;
}

.docs-content .docs-error {
  color: #c00;
}

.docs-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  margin-left: 6px;
  font-weight: 500;
}

.docs-badge--coming-soon {
  background-color: #fef08a;
  color: #854d0e;
}

#inner_footer {
  width: auto;
  margin: 0 0 0 var(--docs-sidebar-width);
  padding: 0;
  background: #171717;
}

#inner_footer.pl_320 {
  padding-left: 0;
}

#inner_footer #footer {
  background: transparent;
}

@media screen and (max-width: 768px) {
  .docs-sidebar {
    position: relative;
    top: 0;
    width: 100%;
    max-height: none;
  }

  .docs-main {
    margin-left: 0;
  }

  #inner_footer {
    margin-left: 0;
  }
}
