:host {
  bottom: 28px;
  height: 10%;
  left: 0px;
  position: absolute;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.draggable-container {
  height: 100%;
  width: 100%;
}

.draggable-element {
  position: relative;
  transition: width 1s ease-in-out;
  width: 33px;
  pointer-events: auto;
}

.drag-icon-container {
  align-items: center;
  background-color: var(--color-ti-primary-white);
  border-radius: 50%;
  box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  height: 33px;
  justify-content: center;
  position: relative;
  width: 33px;
}

.drag-icon {
  color: var(--color-ti-border-grey-02);
  height: 22px;
  position: absolute;
  width: 22px;
}

.main-container {
  background-color: var(--color-ti-primary-white);
  border-radius: 6px;
  bottom: 38px;
  box-shadow: 10px 10px 60px 0 rgba(179, 179, 179, 0.5);
  color: var(--color-ti-text-grey-darker);
  display: flex;
  flex-direction: column;
  height: 485px;
  justify-content: space-around;
  padding: 0 15px 10px 15px;
  position: absolute;
  right: 0px;
  text-align: justify;
  width: 355px;
}

.lft {
  left: 0px;
}

.knowledge-base-txt {
  align-items: center;
  color: var(--color-ti-text-grey-dark);
  cursor: pointer;
  display: flex;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  line-height: 17px;
}

.search-box {
  align-items: center;
  background-color: var(--color-ti-primary-white);
  border: 0.5px solid var(--color-ti-border-grey-02);
  border-radius: 3px;
  color: var(--color-ti-text-grey-dark);
  display: flex;
  height: 51px;
  justify-content: space-around;
  margin-bottom: 20px;
}

.search-in {
  border: none;
  height: 98%;
  width: 75%;
}

input.search-in:focus {
  outline-width: 0;
}

.info-container {
  height: calc(100% - 100px);
  overflow: auto;
  position: relative;
  width: 100%;
}

.info-container::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px;
}

.info-container::-webkit-scrollbar {
  background-color: transparent;
  width: 8px;
}

.info-container::-webkit-scrollbar-thumb {
  background-color: var(--color-ti-border-grey-dark);
  border-radius: 5px;
}

.info-content {
  margin-bottom: 20px;
  width: 100%;
}

.info-header {
  background-color: var(--color-ti-primary-white);
  color: var(--color-ti-primary-black);
}

.info-title {
  color: var(--color-ti-primary-black);
  font-family: "Roboto";
  font-weight: 800;
  font-size: 14px;
  line-height: 15px;
  text-align: left;
}

.info-desc-section {
  padding: 10px;
}

.info-desc {
  font-family: "Roboto";
  font-size: 13px;
  line-height: 17px;
  text-align: left;
  white-space: pre-line;
}
