.daap-row {
  display: flex;
  flex-direction: row;
}
.daap-col {
  display: flex;
  flex-direction: column;
}
.daap-fill {
  flex: 1;
}
.daap-start {
  align-items: flex-start;
}
.daap-center {
  align-items: center;
}
.daap-end {
  align-items: flex-end;
}
.daap-head {
  justify-content: flex-start;
}
.daap-middle {
  justify-content: center;
}
.daap-tail {
  justify-content: flex-end;
}
.daap-between {
  justify-content: space-between;
}
.daap-evenly {
  justify-content: space-evenly;
}
.daap-around {
  justify-content: space-around;
}

.daap-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.daap-row-end {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.daap-row-center-middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.daap-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.daap-col-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.daap-col-center-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.daap-row-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.daap-row-center-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.daap-row-end-between {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.daap-col-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.daap-col-center-between {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.daap-col-end-between {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.daap-row-evenly {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.daap-row-center-evenly {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.daap-row-end-evenly {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-evenly;
}
.daap-col-evenly {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.daap-col-center-evenly {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.daap-col-end-evenly {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
}
