.flex {
  display: flex;
}
.flex--columns {
  flex-direction: column;
}
.flex--column {
  width: 100%;
}
.flex--items-baseline {
  align-items: baseline;
}
.flex--items-start {
  align-items: flex-start;
}
.flex--items-end {
  align-items: flex-end;
}
.flex--items-center {
  align-items: center;
}
.flex--self-end {
  align-self: flex-end;
}
.flex--self-start {
  align-self: flex-start;
}
.flex--self-center {
  align-self: center;
}
.flex--ml-auto {
  margin-left: auto;
}
.flex--mt-auto {
  margin-top: auto;
}
.flex--grow-0 {
  flex-grow: 0;
}
.flex--grow-1,
.flex--grow {
  flex-grow: 1;
}
.flex--grow-2 {
  flex-grow: 2;
}
.flex--content-end {
  justify-content: flex-end;
}
.flex--content-center {
  justify-content: center;
}
.flex--content-between {
  justify-content: space-between;
}
.flex--mr > *:not(:last-child) {
  margin-right: 0.5em;
}
.flex--shrink-1 {
  flex-shrink: 1;
}
.flex--shrink-0 {
  flex-shrink: 0;
}
.flex--basis-small {
  flex-basis: 300px;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--last {
  margin-left: auto !important;
}
.flex-list {
  display: flex;
  align-items: center;
}
.flex-list > *:not(:first-child) {
  margin-left: 0.5em;
}
.flex--rows {
  flex-direction: row;
}
