#sidebar {
  position: sticky;
  overflow-y: auto;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar ul li {
  padding-left: 15px;
  padding-top: 1px;
  cursor: pointer;
  position: relative;
  padding: 5px;
  margin-left: 15px;
}

#sidebar ul li i {
  position: absolute;
  right: 10px;
  display: none;
}

#sidebar ul li.has-children i {
  display: inline-block;
}
#sidebar ul li.active {
  background-color: #f4f4f4;
  border-radius: 5px;
}

#sidebar ul li.has-children.active {
  background-color: white;
}

#content {
  display: flex;
  flex-direction: column;
}
.nested-list {
  display: none;
  padding-left: 20px;
}
#suggestions {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
}

.suggestion {
  padding: 10px;
  cursor: pointer;
}

.suggestion:hover {
  background-color: #f1f1f1;
}
.h-40 {
  height: 10rem /* 160px */;
}
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item::before {
  content: url("/static/knowledgebase/images/chevron-rigth.svg");
  margin-right: 3px;
  margin-top: 5px;
  color: #999;
}

.breadcrumb-link {
  text-decoration: none;
  font-weight: 400;
  padding: 2px;
  border-radius: 10px;
}
.mr-1 {
  margin-right: 0.25rem /* 4px */;
}
.fontSemibold {
  font-weight: 600;
}
.h-full {
  height: 100%;
}
.body {
  background-color: #fbfbff;
}
.profile-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: #ddd;
  margin-right: 13px;
}

.text-container {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.username {
  font-size: 15px;
  margin-bottom: 2px;
  color: #666;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/* Mobile Side Nav */
#mobileSidebar {
  position: sticky;
  overflow-y: auto;
}

#mobileSidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobileSidebar ul li {
  padding-left: 15px;
  padding-top: 1px;
  cursor: pointer;
  position: relative;
  padding: 5px;
  margin-left: 15px;
}

#mobileSidebar ul li i {
  position: absolute;
  right: 10px;
  display: none;
}

#mobileSidebar ul li.has-children i {
  display: inline-block;
}
#mobileSidebar li.active {
  background: rgba(0, 0, 0, 0.1);
}
#mobileSidebar ul li.has-children.active {
  background-color: white;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.article_body {
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
