* {
  box-sizing: border-box;
}

html,
body {
  font-family: Open Sans;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.api-info {
  display: none !important;
}

.container {
}

.sidebar {
  background: rgba(22,22,43,1);
  
  color: #fff;
  width: 314px;
  flex-shrink: 0;
  position: fixed;
  height: 100%;

}

.header {
  display: flex;
  /* margin-bottom: 30px; */
  padding: 30px;
}

.header h1 {
  margin-top: -5px;
  margin-bottom: 0px;
  font-size: 29px;
}

.main-content {
  padding: 0.1px 0px 0px 314px;
}

.tab-content {
  padding: 0px 30px;
}
.tab-content.docs {
  padding: 0px;
}

.logo {
  height: 37px;
  width: 37px;
}

.section {
  margin-bottom: 30px;
}

h1 {
  display: flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  font-size: 32px;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  margin: 40px 0 10px 0;
}

h4 {
  text-decoration: underline;
}

hr {
  background-color: #ddd;
  border: 1px solid #ddd;
  width: 100%;
  height: 2px;
  border: 0;
}

p {
  margin: 3px 0;
}

ul {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #67d3c3;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #4cc0ad;
}

a:visited {
  color: #67d3c3;
}

a:active {
  color: #67d3c3;
}

pre {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 4px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* .tabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
} */

.sidebar .tabs {
}

.tab-button {
  padding: 15px 30px;
  background: transparent;
  color: #fff;
  display: block;
  width: 100%;
  font-family: 'Open Sans';
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  text-align: left;
}

.tab-button:hover {
  background-color: rgba(33,39,69,1)
}

.tab-button.active {
  background-color: rgba(33,39,69,1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.endpoints-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: 16px auto 10px auto;
}

#endpoints-content {
  height: calc(100vh - 120px);
}

.filter-list {
  margin-left: 0;
  padding: 0
}

.filter-item {
  margin: 16px 0;

  li {
    display: flex;
    align-items: center;
  }

  span {
    font-family: monospace;
    color: #d16565;
    background: #f4f4f4;
    padding: 6px;
    margin-left: 6px;
  }
}