.flex {
  display:flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-grow {
  flex-grow: 1;
}
.gap-5 {
  gap: 1.25rem; /* 20px */
}
.gap-10 {
  gap: 2.5rem; /* 28px */
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-auto {
  margin-left: auto;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.px-8	{
  padding-left: 2rem; /* 32px */
  padding-right: 2rem; /* 32px */
}
.w-auto {
  width:auto;
}
.p-none {
  padding:0;
}
.float-none {
  float:none;
}
.leading-none {
  line-height: 1;
}