/* NON GENERIC OPTIONS
 * Following options are only usefull for one css property.
 */
.ji-start {
  justify-items: start;
}

.ai-start {
  align-items: start;
}

.pi-start {
  place-items: start;
}

.ji-center {
  justify-items: center;
}

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

.pi-center {
  place-items: center;
}

.ji-end {
  justify-items: end;
}

.ai-end {
  align-items: end;
}

.pi-end {
  place-items: end;
}

.jc-start {
  justify-content: start;
}

.ac-start {
  align-content: start;
}

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

.ac-center {
  align-content: center;
}

.jc-end {
  justify-content: end;
}

.ac-end {
  align-content: end;
}

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

.ac-space-around {
  align-content: space-around;
}

.jc-space-evenly {
  justify-content: space-evenly;
}

.ac-space-evenly {
  align-content: space-evenly;
}

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

.ac-space-between {
  align-content: space-between;
}
