.align-self-center {
  align-self: center;
}

.cursor-pointer {
  cursor: pointer;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.font-bold {
  font-weight: 700;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.m-8b {
  margin-bottom: var(--px-8);
}

.m-8t {
  margin-top: var(--px-8);
}

.m-16b {
  margin-bottom: var(--px-16);
}

.m-16t {
  margin-top: var(--px-16);
}

.m-32b {
  margin-bottom: var(--px-32);
}

.m-32t {
  margin-top: var(--px-32);
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-24b {
  padding-bottom: var(--px-24);
}

.p-24l {
  padding-left: var(--px-24);
}

.p-24r {
  padding-right: var(--px-24);
}

.push-left {
  margin-left: auto;
}

.push-right {
  margin-left: auto;
}

.rounded-50p {
  border-radius: 50%;
}

.rounded-lg {
  border-radius: var(--px-24);
}

.self-start {
  flex: flex-start;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.width-full {
  width: 100%;
}
