.results-module.scroll .row {
  padding-right: 44px;
}

.results-module .grabbable {
  overflow-x: auto;
}

.results-module .grabbable::-webkit-scrollbar {
  width: 20px;
}

.results-module .grabbable::-webkit-scrollbar-track {
  background: #edf0f7;
  border-radius: 16px;
}

.results-module .grabbable::-webkit-scrollbar-thumb {
  background: #717d96;
  border-radius: 16px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .results-module .grabbable {
    scrollbar-color: #717d96 #edf0f7;
  }
}

.grabbable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

 /* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}