/* =Alignments
-----------------------------------------------------------------------------*/
.fully-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vertically-centered-space-between {
  align-items: center;
  justify-content: space-between;
}

.justify-center,
.horizontally-centered {
  justify-content: center;
  text-align: center;
}

.justify-flex-end,
.align-end {
  justify-content: flex-end;
}

.justify-flex-start,
.align-beginning {
  justify-content: flex-start;
}

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

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

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

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

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

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

.align-flex-start,
.vertical-top {
  align-items: flex-start;
}

.align-stretch,
.fill-height {
  align-items: stretch;
}
