.wrapper {
  display: flex;
  align-items: stretch;
}

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #fff;
  color: #6c757d;
  transition: margin-left 0.25s ease;
  position: sticky;
  height: 100vh;
  top: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c8cdd3 #f1f3f5;
}

#sidebar::-webkit-scrollbar {
  width: 6px;
}

#sidebar::-webkit-scrollbar-track {
  background: #f1f3f5;
}

#sidebar::-webkit-scrollbar-thumb {
  background: #c8cdd3;
  border-radius: 3px;
}

#sidebar.active {
  margin-left: -250px;
}

#content {
  width: 100%;
  min-height: 100vh;
  transition: width 0.25s ease;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }

  #sidebar.active {
    margin-left: 0;
  }

  #content {
    width: 100%;
  }

  #content.active {
    width: calc(100% - 250px);
  }

  #sidebarCollapse span {
    display: none;
  }
}

.content_here {
  margin: 20px 5px;
}
