/* [project]/src/components/pages/KnowledgeBase/knowledge-base.css [app-client] (css) */
.kb-app {
  color: #333;
  --main-color: #de4275;
  --main-dark-color: #1c4ca8;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

.kb-container {
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 8px;
  min-height: calc(100vh - 60px);
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .kb-container {
    box-shadow: none;
    border: none;
  }
}

.kb-header {
  background-color: #f7f9fc;
  border-bottom: 1px solid #e1e7ef;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  display: flex;
}

.kb-sidebar {
  border-right: 1px solid #e2dede;
  flex-shrink: 0;
  width: 300px;
  transition: width .3s;
  overflow-y: auto;
}

.kb-sidebar-header {
  border-bottom: 1px solid #e1e7ef;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.kb-sidebar-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.kb-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kb-nav {
  display: block;
}

.kb-nav-item {
  font-size: 14px;
}

.kb-nav-item-header {
  background: none;
  align-items: stretch;
  display: flex;
}

.kb-nav-item-header:hover, .kb-nav-item-header.kb-active {
  background: #f7f7f7;
}

.kb-nav-link {
  text-align: start;
  color: #36404a;
  cursor: pointer;
  border-left: 3px solid rgba(0, 0, 0, 0);
  flex-grow: 1;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: block;
}

.kb-nav-link:hover {
  color: var(--main-color);
}

.kb-nav-link.kb-active {
  color: var(--main-color);
  border-left: 3px solid var(--main-color);
  box-sizing: border-box;
  font-weight: 500;
}

.kb-expand-btn {
  color: #b2b8c4;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  padding: 0;
  font-size: 12px;
  display: flex;
}

.kb-expand-btn:hover {
  color: var(--main-color);
  background-color: #e9ecf1;
}

.kb-expand-btn:focus {
  color: #b2b8c4;
  background: unset;
}

.kb-expand-btn.kb-expanded {
  color: #33373e;
  transform: rotate(0);
}

.kb-nav-list .kb-nav-list {
  border-left: 1px dashed #e1e7ef;
  margin-left: 20px;
}

.kb-nav-list .kb-nav-list .kb-nav-list, .kb-nav-list .kb-nav-list .kb-nav-list .kb-nav-list {
  margin-left: 20px;
}

.kb-nav-list .kb-nav-list .kb-nav-list .kb-nav-list .kb-nav-list {
  margin-left: 15px;
}

.kb-article-title {
  color: #111827;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
}

.kb-article-meta {
  color: #a5abb8;
  margin-bottom: 30px;
  font-size: 14px;
}

.kb-article-content {
  font-size: 16px;
  line-height: 1.8;
}

.kb-article-content h1 {
  margin-top: 32px;
  margin-bottom: 18px;
  font-size: 26px;
}

.kb-article-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

.kb-article-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
}

.kb-article-content p {
  margin-bottom: 1em;
}

.kb-article-content ul, .kb-article-content ol {
  margin-bottom: 1em;
  padding-left: 2em;
}

.kb-article-content li {
  list-style-type: disc;
}

.kb-article-content pre {
  background-color: #f7f9fc;
  border-radius: 6px;
  margin-bottom: 1.5em;
  padding: 15px;
  overflow-x: auto;
}

.kb-article-content code {
  background-color: #f7f9fc;
  border-radius: 3px;
  padding: 3px 5px;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: .9em;
}

.kb-empty {
  text-align: center;
  color: #6b7280;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.kb-empty h2 {
  color: #111827;
  margin-bottom: 15px;
  font-size: 24px;
}

.kb-loading {
  color: #6b7280;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 18px;
  display: flex;
}

.kb-breadcrumbs {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.kb-breadcrumbs a {
  color: var(--main-dark-color);
  text-decoration: none;
}

.kb-breadcrumbs a:hover {
  text-decoration: underline;
}

.kb-breadcrumb-current {
  color: #6b7280;
}

.kb-article-children {
  border-top: 1px solid #e1e7ef;
  margin-top: 40px;
  padding-top: 20px;
}

.kb-related-list {
  padding: 0;
  list-style: none;
}

.kb-related-list li {
  margin-bottom: 8px;
}

.kb-related-list a {
  color: var(--main-dark-color);
  padding: 5px 0;
  text-decoration: none;
  display: inline-block;
}

.kb-related-list a:hover {
  text-decoration: underline;
}

.kb-theme-toggle {
  cursor: pointer;
  background-color: #e9ecf1;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  transition: background-color .2s;
}

.kb-burger-icon {
  color: #000;
  cursor: pointer;
  background: #fff;
  width: 32px;
  padding: 8px 0;
  font-size: 20px;
  display: none;
}

.kb-burger-icon:hover {
  color: var(--main-color);
  background-color: #e9ecf1;
}

@media (max-width: 768px) {
  .kb-app .kb-container {
    flex-direction: column;
    height: auto;
    overflow: visible;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .kb-app {
    margin-top: 0;
  }

  .kb-sidebar {
    z-index: 100;
    background: #fff;
    border-top: 1px solid #e1e7ef;
    border-bottom: 1px solid #e1e7ef;
    width: 100%;
    height: auto;
    position: fixed;
    top: 80px;
    left: 0;
  }

  .kb-sidebar-header {
    background: #fff;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    display: flex;
  }

  .kb-nav {
    z-index: 100;
    background: #fff;
    width: 100%;
    height: calc(100vh - 137px);
    display: none;
    position: fixed;
    top: 137px;
    left: 0;
    overflow-y: auto;
  }

  .kb-sidebar[data-menu-opened="true"] .kb-nav {
    display: block;
  }

  .kb-burger-icon {
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 8px;
    display: flex;
  }

  .kb-burger-icon > svg {
    transition: transform .2s;
  }

  .kb-burger-icon[aria-expanded="true"] > svg {
    transform: rotate(180deg);
  }

  .kb-breadcrumbs {
    display: block;
  }

  .kb-menu-opened-no-scroll {
    overflow: hidden;
  }
}

.loader {
  box-sizing: border-box;
  border: 5px solid #b3c3c4;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: 1s linear infinite rotation;
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wrapper {
  overflow: unset !important;
}

/*# sourceMappingURL=src_components_pages_KnowledgeBase_knowledge-base_3c41ba9d.css.map*/