.flex-container {
  display: flex;
}

.inline-flex-container {
  display: inline-flex;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-bottom {
  align-items: flex-end;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}
