.pins-wrapper {
  display: flex;
  justify-content: left;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 50%;
  padding: 1rem 1rem 2rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
}
@media all and (min-width: 1000px) {
  .pins-wrapper {
    justify-content: center;
  }
}

/* height */
.pins-wrapper::-webkit-scrollbar {
  height: 3px;
}

/* Track */
.pins-wrapper::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: inset 0 0 5px var(--color-neutral--3);
  box-shadow: inset 0 0 5px var(--color-neutral--3);
  border-radius: 4px;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
}

/* Handle */
.pins-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
  background: transparent;
  -webkit-box-shadow: inset 0 0 5px var(--color-neutral--8);
  box-shadow: inset 0 0 5px var(--color-neutral--8);
  border-radius: 4px;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  max-width: 20px;
}
