.flexDiv {
  display: flex;
  align-items: center;
}
.flexA {
  justify-content: space-around;
}
.flexB {
  justify-content: space-between;
}
.flexC {
  justify-content: center;
}
.flexE {
  justify-content: flex-end;
}
.flexAIS {
  align-items: flex-start;
}
.flexWrap{
  flex-wrap: wrap;
}
.flexColumn {
  flex-direction: column;
}
.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
