.rwrapper {
  display: flex;
  grid-gap: 1rem;
  max-width: 100vw;
  width: auto;
  overflow-x: auto;
  scroll-snap-type: x;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
  text-align:center;
}

.rwrapper::-webkit-scrollbar { 
  display: none;
}

.rslider {
  min-width: calc(9% - .5rem);
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  font-size: 0.6rem;
  scroll-snap-align: start;
  font-weight: 600;
  user-select: none;
}
.rslider img {
  max-width: 50px;
  height: 50px;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .rwrapper {
    flex-direction: row;
    align-items: center;
    height: 10em;
    overflow-x: auto;
    scroll-snap-type: y;
    scrollbar-width: none;
  }
  
  .rslider {
    min-width: calc(9vh - .5rem);
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-size: 0.4rem;
    scroll-snap-align: start;
    font-weight: 400;
    user-select: none;
    height: 9vh;
  }
  .rslider img {
    max-width: 50px;
    height: 50px;
    object-fit: cover;
  }
}
