horizontal-pan {
  display: block;

  height: 300px;

  overflow: auto clip;
}

wrap-list {
  display: flex;
  flex-flow: column wrap;
  width: min-content;
  height: 100%;

  gap: 0 20px;
}

wrap-list>li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  max-width: 250px;
}
