.api-model {
  overflow: auto;
  border-radius: 3px;
}
.api-model table {
  --border-color: rgba(10, 37, 64, 0.1);
  border-collapse: collapse;
  min-width: 100%;
  border: 1px solid var(--border-color);
}
.api-model table th, .api-model table td {
  padding: 5px 10px;
  text-align: left;
  vertical-align: top;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  width: 1%;
  white-space: nowrap;
}
.api-model table th i, .api-model table td i {
  display: block;
  font-weight: 600;
  font-size: 12px;
  font-style: normal;
}
.api-model table th:last-child, .api-model table td:last-child {
  width: auto;
  white-space: normal;
}
.api-model table th {
  font-weight: 500;
  background-color: rgba(10, 37, 64, 0.04);
}
.api-model table .sub-head {
  font-weight: 500;
  padding-left: 35px;
}
.api-model table .sub-head td {
  font-weight: normal;
}

.api-section {
  margin-bottom: 15px;
}
.api-section:last-child {
  margin-bottom: 0;
}
.api-section pre {
  border-radius: 3px;
  margin: 0 0 5px 0 !important;
}
.api-section pre:last-child {
  margin-bottom: 0 !important;
}
.api-section.api-pre-glue pre {
  margin-bottom: 0 !important;
}
.api-section.api-pre-glue pre:nth-child(2) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 4px;
}
.api-section.api-pre-glue pre:last-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding-top: 4px;
}

.api-summary {
  --font-size: 14px;
  --padding-section: 5px;
  --line-color: #000;
  --bg-color: #fff;
  border: 1px solid var(--line-color);
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.19);
  margin: 0 0 15px;
  padding: var(--padding-section);
  position: relative;
  background: var(--bg-color);
  overflow: hidden;
}
.api-summary:not(.api-closed) .api-request {
  cursor: pointer;
}
.api-summary.api-closed .api-request {
  cursor: no-drop;
}
.api-summary .api-section h3 {
  margin: 0 0 5px 0;
}
.api-summary .api-request::before {
  background: var(--line-color);
}
.api-summary.api-summary-get {
  --line-color: #61affe;
  --bg-color: rgba(97, 175, 254, .1);
}
.api-summary.api-summary-get .api-request::before {
  content: "GET";
}
.api-summary.api-summary-post {
  --line-color: #49cc90;
  --bg-color: rgba(73, 204, 144, .1);
}
.api-summary.api-summary-post .api-request::before {
  content: "POST";
}
.api-summary.api-summary-delete {
  --line-color: #f93e3e;
  --bg-color: rgba(249, 62, 62, .1);
}
.api-summary.api-summary-delete .api-request::before {
  content: "DELETE";
}
.api-summary.api-summary-put {
  --line-color: #fca130;
  --bg-color: rgba(252, 161, 48, .1);
}
.api-summary.api-summary-put .api-request::before {
  content: "PUT";
}
.api-summary.api-summary-patch {
  --line-color: #50e3c2;
  --bg-color: rgba(80, 227, 194, .1);
}
.api-summary.api-summary-patch .api-request::before {
  content: "PATCH";
}
.api-summary.api-summary-head {
  --line-color: #9012fe;
  --bg-color: rgba(144, 18, 254, .1);
}
.api-summary.api-summary-head .api-request::before {
  content: "PATCH";
}
.api-summary.api-summary-options {
  --line-color: #0d5aa7;
  --bg-color: rgba(13, 90, 167, .1);
}
.api-summary.api-summary-options .api-request::before {
  content: "OPTIONS";
}
.api-summary .api-request {
  color: #3b4151;
  font-family: monospace;
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
  padding: 0 0 0 90px;
  position: relative;
  line-height: 28px;
  display: block;
}
.api-summary .api-request::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 28px;
  height: 28px;
  width: 80px;
  font-weight: 700;
  text-align: center;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.api-summary .api-comment {
  padding: 0 0 0 90px;
  display: block;
}
.api-summary button.api-control-arrow, .api-summary div.api-control-closed {
  border: 0;
  position: absolute;
  top: calc(2px + var(--padding-section));
  right: 10px;
  height: 20px;
  width: 20px;
  padding: 0;
  margin: 0;
  background: none;
}
.api-summary button.api-control-arrow:hover, .api-summary div.api-control-closed:hover {
  background: none;
}
.api-summary .api-content {
  display: none;
  border-top: 1px solid var(--line-color);
  margin: var(--padding-section) 0 0 0;
  padding: 10px var(--padding-section) 0 var(--padding-section);
  position: relative;
  left: calc(var(--padding-section) * -1);
  width: calc(100% + var(--padding-section) * 2);
}
.api-summary.api-opened button.api-control-arrow {
  transform: scaleY(-1);
  top: calc(var(--padding-section) + 7px);
}
.api-summary.api-opened .api-comment {
  display: none;
}
.api-summary.api-opened .api-content {
  display: block;
}
.api-summary .api-description {
  margin-bottom: 15px;
}

.api-link {
  text-decoration: underline;
}

.api-feedback {
  border-top: 1px solid rgba(10, 37, 64, 0.1);
  margin: 25px 0 0 0;
  padding: 10px 0 0 0;
}