.search-xml {
  text-decoration: underline;
  color: #4480d9;
}
.search-xml:hover {
  text-decoration: none;
}
.search-bar-container {
  display: none;
  position: relative;
  height: 30px;
  width: 100%;
  margin-bottom: 15px;
}
.search-bar {
  background-color: #e5e5e5;
  display: flex;
  height: 100%;
  align-content: center;
}
.search-bar input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  padding: 5px;
  height: 100%;
  width: 100%;
}
.search-output {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  max-height: 600px;
  overflow-y: auto;
  background: #fff;
  margin-top: 2px;
  padding: 2px;
  border: 1px solid #d4d4d4;
  border-radius: 0% 0% 5px 5px;
  box-shadow: 2px 2px 2px rgba(198,198,198,0.699);
}
.search-output-list {
  list-style: disc;
  margin: 0 20px;
}
.search-output-list li {
  margin: 1px 3px;
  padding: 1px 3px;
  height: auto;
  border-bottom: 1px solid var(--line);
}
.search-output-list li .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.search-output-list li .content {
  color: #656565;
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 2em;
  overflow: hidden;
}
.search-output-list li .content::after {
  content: " ";
}
.search-output-list li:hover {
  cursor: pointer;
}
