.flexAuto {
  flex: auto;
}

.flexEnd {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}
.flexColEnd {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.flexAround {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
.flexWrap {
  flex-wrap: wrap;
}
.flexNoWrap {
  flex-wrap: nowrap;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.flexColBetween {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.flexColCenter {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.flexStart {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.flexColStart {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.flexColAround {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.flexCenter {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.flexNoContent {
  align-content: flex-start;
}
.itemCenter {
  align-items: center;
}
.itemBaseline {
  align-items: baseline;
}
