
.align_right {
  justify-content: flex-end;
}

.align_center {
  justify-content: center;
}

.align_justify {
  justify-content: space-between;
}

.align_spaced {
  justify-content: space-around;
}

.align_top {
  align-items: flex-start;
}

.align_self_top {
  align-self: flex-start;
}

.align_bottom {
  align-items: flex-end;
}

.align_self_bottom {
  align-self: flex-end;
}

.align_middle {
  align-items: center;
}

.align_self_middle {
  align-self: center;
}

.align_stretch {
  align-items: stretch;
}

.align_self_stretch {
  align-self: stretch;
}