.canceled { text-decoration: line-through; }

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

.font-bolder {
  font-weight: var(--font-semibold);
}

.h-fit { height: fit-content; }

.h-100 { height: 100%; }

.middle { vertical-align: middle; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.padded { padding: .75rem; }

.position-fixed {
  position: fixed;
  top: 0;
}

.radius-10 { border-radius: 10px; }

.table-responsive { white-space: nowrap; }

.text-capitalize { text-transform: capitalize !important; }

.text-capitol::first-letter { text-transform: uppercase !important; }

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

.text-decoration-line-through { text-decoration: line-through; }

.text-decoration-underline { text-decoration: underline }

.text-headline {
  font-family: BeVietnam;
  font-size: var(--headline-font-size);
}

.text-wrap { text-wrap: balance; }

.wrapped { white-space: normal !important; }

.w-fit { width: fit-content; }

.w-100 { width: 100%; }

.ps-1 { padding-left: var(--size-1); }

.ps-2 { padding-left: var(--size-2); }

.pt-1 { padding-top: var(--size-1); }

.pt-2 { padding-top: var(--size-2); }

.vertically-centered { vertical-align: middle; }

details.no-arrow summary::-webkit-details-marker {
  display: none;
}

details.no-arrow summary {
  list-style: none;
}

details.no-arrow summary::-moz-list-bullet {
  list-style: none;
}

.inventory-loading {
  position: relative;
}

.inventory-loading__content {
  transition: opacity 120ms ease;
}

.inventory-loading__overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: var(--size-4);
  background-color: rgba(255, 255, 255, 0.6);
  background-color: rgb(from var(--color-bg-reverse) r g b / 0.6);
  pointer-events: none;
  z-index: 10;
}

.inventory-loading__overlay-inner {
  inline-size: min(24rem, 100%);
  position: sticky;
  top: var(--size-7);
  background-color: var(--color-bg-reverse);
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-xs);
}

.inventory-loading__overlay-inner .progress {
  --track: var(--color-border);
}

turbo-frame[busy] .inventory-loading__overlay {
  display: flex;
}

turbo-frame[busy] .inventory-loading__content {
  opacity: 0.4;
  pointer-events: none;
}
