
@supports (-moz-appearance:none) {
  .scroll, .nav {
    scrollbar-width: thin;
    scrollbar-color: #8c857d transparent;
    overflow: auto;
  }
}

body *::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
body *::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: transparent;
}

body *::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: transparent;
}

#ingredient-products:hover *::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--taupe-gray);
}

.scroll-shadows {
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.scroll-shadows.shadow-top::before,
.scroll-shadows.shadow-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  min-height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.scroll-shadows::before {
  top: 0;
}

.scroll-shadows.shadow-bottom::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(254, 254, 254, 0) 0%, #FEFEFE 100%);
}
