.neo-list-container {
  background-color: var(--list-container-background-color);
  border: var(--list-container-border);
  overflow: auto;
}

.neo-list {
  color: var(--list-container-list-color);
  list-style-type: none;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.neo-list.neo-use-checkicons .neo-list-item:before {
  color: var(--list-item-glyph-color);
  content: "\f0c8";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  width: 25px;
}
.neo-list.neo-use-checkicons .neo-list-item.neo-selected:before {
  content: "\f00c";
  font-weight: 900;
}
.neo-list .neo-list-item {
  background-color: var(--list-item-background-color);
  cursor: pointer;
  padding: var(--list-item-padding);
  white-space: nowrap;
}
.neo-list .neo-list-item:focus {
  outline: 0;
}
.neo-list .neo-list-item:hover {
  background-color: var(--list-item-background-color-hover);
}
.neo-list .neo-list-item.neo-selected {
  background-color: var(--list-item-background-color-selected);
  color: var(--list-item-color-selected);
}
.neo-list .neo-list-item .neo-highlight-search {
  color: var(--list-item-highlight-search-color);
}
/*# sourceMappingURL=Base.css.map */