.gallery {
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  overflow: scroll;
  overflow-y: hidden;
  scroll-snap-type: both mandatory;
  scroll-padding: 1rem;
}

.carousel_2 {
  grid-template-columns: repeat(2, 100%);
}

.carousel_6 {
  grid-template-columns: repeat(6, 100%);
}

.carousel_7 {
  grid-template-columns: repeat(7, 100%);
}

.carousel_9 {
  grid-template-columns: repeat(9, 100%);
}

.active {
  scroll-snap-type: unset;
}

li {
  scroll-snap-align: center;
  display: inline-block;
  border-radius: 3px;
  font-size: 0;
}
