/*picrew marquee */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-sc {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.onlyMain {
    overflow-y:scroll;
    scrollbar-width:auto ;
}

.picrew img {
    width: 200px;
    height: auto;
    border-radius: 25px;
}

.picrew img.horizontal {
    width: 300px;
}

.picrew.marquee {
    width: 700px;
}