.px-space__inline {
  display: inline-block;
}
.px-space__justify-start {
  justify-content: flex-start;
}
.px-space__justify-end {
  justify-content: flex-end;
}
.px-space__justify-center {
  justify-content: center;
}
.px-space__justify-space-around {
  justify-content: space-around;
}
.px-space__justify-space-between {
  justify-content: space-between;
}
.px-space__justify-space-evenly {
  justify-content: space-evenly;
}
.px-space__align-start {
  align-items: flex-start;
}
.px-space__align-end {
  align-items: flex-end;
}
.px-space__align-center {
  align-items: center;
}
.px-space__align-stretch {
  align-items: stretch;
}
.px-space__vertical {
  flex-direction: column;
}
.px-space-inner {
  display: flex;
  margin-top: -4px;
  margin-bottom: -4px;
  margin-left: -4px;
  margin-right: -4px;
}
.px-space-inner .px-space-item {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 4px;
  margin-right: 4px;
}
.px-space-inner.px-space__small {
  margin-top: -2px;
  margin-bottom: -2px;
  margin-left: -2px;
  margin-right: -2px;
}
.px-space-inner.px-space__small .px-space-item {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: 2px;
  margin-right: 2px;
}
.px-space-inner.px-space__large {
  margin-top: -6px;
  margin-bottom: -6px;
  margin-left: -6px;
  margin-right: -6px;
}
.px-space-inner.px-space__large .px-space-item {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 6px;
  margin-right: 6px;
}
.px-space__wrap {
  flex-wrap: wrap;
}
