.custom-table-wrapper{
  overflow-x: auto;
}

.custom-table {
  display: flex;
  flex-direction: column;
  min-width: 800px;
}

.custom-table__row {
  display: flex;
}

.custom-table__cell {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .custom-table__cell {
    padding: 10px;
  }

  .custom-table__cell *{
    margin: 0;
  }