.width-32 {
  width: 32px;
}

.margin-zero {
  margin: 0;
}

.padding-eight {
  padding: 8px
}

.padding-sixteen {
  padding: 16px
}

.gap-eight {
  gap: 8px;
}

.gap-sixteen {
  gap: 16px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

.self-center {
  align-self: center;
}

.self-end {
  align-self: end;
}
