@charset "utf-8";

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.j-s {
  justify-content: flex-start;
}

.j-c {
  justify-content: center;
}

.j-e {
  justify-content: flex-end;
}

.j-s-b {
  justify-content: space-between;
}

.j-s-a {
  justify-content: space-around;
}

.j-s-e {
  justify-content: space-evenly;
}

.a-c {
  align-items: center;
}

.flex1 {
  flex: 1;
  overflow: auto;
}

.flex-warp {
  flex-wrap: wrap;
}