docs-content {
  width: calc(100vw - 2rem);
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  docs-content {
    max-width: calc(100vw - 20rem);
  }
}
docs-content * {
  font-size: 1.15rem;
  line-height: 1.5;
}
docs-content td.code,
docs-content span.code,
docs-content code {
  font-family: monospace;
  font-size: 1rem;
  color: #777;
}
docs-content td.code {
  background: #f1f1f1;
}
docs-content span.code,
docs-content code {
  display: inline-block;
  padding: 0.1rem 0.2rem;
  background: #eee;
  border-radius: 0.25rem;
}
docs-content ol {
  list-style: decimal;
}
docs-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #ccc;
}
docs-content h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
docs-content h4 {
  margin: 1rem 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #777;
}
docs-content ul {
  margin-left: 1.5rem;
  list-style: disc;
}
docs-content .small {
  font-size: 1rem;
}
docs-content pre.code {
  max-width: 100%;
  overflow: auto;
  font-size: 1rem;
  line-height: 1.5;
  background: #eee;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin: 5px 0;
}

docs-content-inner {
  width: 100vw;
}
@media screen and (min-width: 1280px) {
  docs-content-inner {
    max-width: calc(100vw - 20rem);
  }
}
docs-content-inner > h1, docs-content-inner > p, docs-content-inner > div, docs-content-inner > pre, docs-content-inner > ul, docs-content-inner > ol {
  display: block;
  margin-bottom: 40px;
}
docs-content-inner table {
  display: table;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 0.5rem;
  border-collapse: collapse;
}
docs-content-inner table td,
docs-content-inner table th {
  padding: 0.5rem 0.75rem;
}
docs-content-inner table td {
  padding: 0.5rem 0.75rem;
  background: #f6f6f6;
}
docs-content-inner table thead td {
  background: #ebebeb;
  color: #666;
  font-weight: bold;
}
docs-content-inner table thead td.key {
  width: 18%;
}
docs-content-inner table thead td.keys {
  width: 22%;
}
docs-content-inner table thead td.description {
  width: 35%;
}
docs-content-inner table thead td.description-sm {
  width: 30%;
}
docs-content-inner table thead td:first-child {
  border-top-left-radius: 0.5rem;
}
docs-content-inner table thead td:last-child {
  border-top-right-radius: 0.5rem;
}
docs-content-inner table tbody td {
  border-top: 1px solid #ccc;
}
docs-content-inner table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}
docs-content-inner table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}
