/*

     Created by Hassan Steven Compton.
     
     March 7, 2024.

*/
.horizontal-scroller {
  overflow: auto;
  white-space: nowrap;
  height: auto;
}

.scrolling-content {
  display: flex;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.horizontal-scroller::-webkit-scrollbar {
  width: 0;
}

.horizontal-scroller {
  scrollbar-width: none;
}

.horizontal-scroller {
  -ms-overflow-style: none;
}