ul.swipelist {
  width: 100%;
  max-width: calc(70ch + 2em);
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.swipelist>li {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  display: flex;
  scrollbar-width: none;
  cursor: grab;
}

.swipelist>li::-webkit-scrollbar {
  display: none;
}

.swipelist>li > * {
  scroll-snap-align: start;
}

.swipelist>li button {
  border: none;
  cursor: pointer;
  margin-bottom: 1em;
  margin-left: 1em;
}

.swipelist>li button:first-of-type {
  flex: 1 0 30%;
}

.swipelist>li div {
  flex: 2 0 100%;
  height: 100%;
  /* user-select: none; */
}

.swipelist>li button:last-of-type {
  flex: 1 0 30%;
}