.dragscroll {
  cursor: grab;
  overflow-x: scroll;
  position: relative;
}

.dragscroll:active {
  cursor: grabbing;
}

.scroll-hint {
  width: 100%;
  text-align: right;
  position: absolute;
  transition: opacity 300ms;
  opacity: 1;
}

.row-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  margin-bottom: 1em;
}

.column-flex {
  margin-right: 15px;
  display: flex;
  flex: 0 0 174px;
  max-width: 174px;
}

@media only screen and (max-width: 1068px) {
  .column-flex {
    flex: 0 0 196px;
    max-width: 196px;
  }
}

@media only screen and (max-width: 735px) {
  .column-flex {
    flex: 0 0 355px;
    max-width: 355px;
  }
}

@media only screen and (min-width: 1069px) {
  .dragscroll {
    scrollbar-width: none;
  }

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