.mdb-sortable-list {
  display: block;
  width: 500px;
  max-width: 100%;
  min-height: 60px;
  overflow: hidden;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 4px;
}

.sortable-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  color: rgba(0, 0, 0, .87);
  cursor: move;
  user-select: none;
  background: #fff;
  border-bottom: solid 1px #ccc;
}

.sortable-item.drag-over {
  transform: translate(0, -60px);
}
