:root {
  --aunt-space-gap: calc(8 * var(--aunt-hd));
}
.aunt-space__item {
  flex: none;
}
.aunt-space {
  width: 100%;
  display: inline-flex;
  --gap: var(--aunt-space-gap);
  --gap-vertical: var(--gap);
  --gap-horizontal: var(--gap);
}
.aunt-space--vertical {
  flex-direction: column;
}
.aunt-space--vertical > .aunt-space__item {
  margin-bottom: var(--gap-vertical);
}
.aunt-space--vertical > .aunt-space__item:last-child {
  margin-bottom: 0;
}
.aunt-space--horizontal {
  flex-direction: row;
}
.aunt-space--horizontal > .aunt-space__item {
  margin-right: var(--gap-horizontal);
}
.aunt-space--horizontal > .aunt-space__item:last-child {
  margin-right: 0;
}
.aunt-space--horizontal.aunt-space--wrap {
  flex-wrap: wrap;
  margin-bottom: calc(var(--gap-vertical) * -1);
}
.aunt-space--horizontal.aunt-space--wrap > .aunt-space__item {
  padding-bottom: var(--gap-vertical);
}
.aunt-space.aunt-space--block {
  display: flex;
}
.aunt-space--align-center {
  align-items: center;
}
.aunt-space--align-start {
  align-items: flex-start;
}
.aunt-space--align-end {
  align-items: flex-end;
}
.aunt-space--align-baseline {
  align-items: baseline;
}
.aunt-space--justify-center {
  justify-content: center;
}
.aunt-space--justify-start {
  justify-content: flex-start;
}
.aunt-space--justify-end {
  justify-content: flex-end;
}
.aunt-space--justify-between {
  justify-content: space-between;
}
.aunt-space--justify-around {
  justify-content: space-around;
}
.aunt-space--justify-evenly {
  justify-content: space-evenly;
}
.aunt-space--justify-stretch {
  justify-content: stretch;
}
