:host {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
  margin-top: 2px;
  overflow-y: auto;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  /*change the thinkness of the scrollbar here*/
  /*this is the little scrolly dealio in the bar*/
  /*nobody needs this little scrollbar corner, I mean really, get rid of it haha*/
}
:host::-webkit-scrollbar {
  width: 10px;
  height: 5px;
  cursor: pointer;
  border-radius: 5px;
}
:host::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  height: 2px;
}
:host::-webkit-scrollbar-corner {
  display: none;
  height: 0px;
  width: 0px;
}
:host .item {
  display: inline-block;
  white-space: nowrap;
  padding: 2px;
  margin-right: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  user-select: none;
  color: rgba(255, 255, 255, 0.75);
}
:host .item .count {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
:host .item:after {
  height: 2px;
  width: 100%;
  content: " ";
  display: block;
  background-color: #4196c6;
  opacity: 0;
  transition: opacity 0.3s;
}
:host .item.selected {
  opacity: 1;
}
:host .item.selected:after {
  opacity: 1;
}
:host .item.selected:hover {
  opacity: 1;
}
:host .item:hover {
  opacity: 0.7;
}
:host .item:hover:after {
  opacity: 0.7;
}