@charset "UTF-8";
/* CSS Document */

.suggest-wrapper {
  display: none;
}

.suggest-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggest-link {
  color: currentColor;
}

.suggest-wrapper ul li a {
  align-items: center;
  display: flex;
  font-size: 14px;
  height: 32px;
  line-height: 25px;
}

.suggest-wrapper ul li a span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-button {
  align-items: center;
  background: #fff;
  border: 1px solid;
  border-radius: 8px;
  color: #4ab3df;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 25px;
  margin: 16px auto;
  padding: 0 12px;
}

.triggerSidebarNav.hidden {
  display: none;
}
