.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-grow {
  flex: 1 0 auto;
}

.gap-1 {
  gap: 0.25rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.h-16 {
  height: 4rem;
}

.border {
  border-width: 1px;
}

.sticky {
  position: sticky;
  top: 0;
}

.nowrap {
  white-space: nowrap;
}

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

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-sm {
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
}

.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}

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

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.border-t {
  border-top-width: 1px;
}

.border-figure {
  border-color: var(--color-figure);
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.font-grey-500 {
  color: var(--color-gray-2);
}

.absolute {
  position: absolute;
}

.left-0 {
  left: 0;
}

.left-4 {
  left: 1rem;
}

.bottom-0 {
  bottom: 0;
}

.bottom-4 {
  bottom: 1rem;
}

.relative {
  position: relative;
}

.bg-ground {
  background: var(--color-ground);
}

.p-4 {
  padding: 1rem;
}

.py-2 {
  padding: 0.5rem;
}

.px-3 {
  padding: 0.75rem;
}
