.wms-m-0 { margin: 0 !important; }
.wms-mt-1 { margin-top: var(--wms-space-1) !important; }
.wms-mt-2 { margin-top: var(--wms-space-2) !important; }
.wms-mt-3 { margin-top: var(--wms-space-3) !important; }
.wms-mt-4 { margin-top: var(--wms-space-4) !important; }
.wms-mt-5 { margin-top: var(--wms-space-5) !important; }
.wms-mt-6 { margin-top: var(--wms-space-6) !important; }
.wms-mt-8 { margin-top: var(--wms-space-8) !important; }
.wms-mb-0 { margin-bottom: 0 !important; }
.wms-mb-1 { margin-bottom: var(--wms-space-1) !important; }
.wms-mb-2 { margin-bottom: var(--wms-space-2) !important; }
.wms-mb-3 { margin-bottom: var(--wms-space-3) !important; }
.wms-mb-4 { margin-bottom: var(--wms-space-4) !important; }
.wms-mb-5 { margin-bottom: var(--wms-space-5) !important; }
.wms-mb-6 { margin-bottom: var(--wms-space-6) !important; }
.wms-mb-8 { margin-bottom: var(--wms-space-8) !important; }
.wms-p-0 { padding: 0 !important; }
.wms-p-4 { padding: var(--wms-space-4) !important; }
.wms-p-6 { padding: var(--wms-space-6) !important; }
.wms-gap-1 { gap: var(--wms-space-1) !important; }
.wms-gap-2 { gap: var(--wms-space-2) !important; }
.wms-gap-3 { gap: var(--wms-space-3) !important; }
.wms-gap-4 { gap: var(--wms-space-4) !important; }
.wms-gap-5 { gap: var(--wms-space-5) !important; }
.wms-gap-6 { gap: var(--wms-space-6) !important; }
.wms-text-left { text-align: left !important; }
.wms-text-center { text-align: center !important; }
.wms-text-right { text-align: right !important; }
.wms-text-xs { font-size: var(--wms-font-size-xs) !important; }
.wms-text-sm { font-size: var(--wms-font-size-sm) !important; }
.wms-text-lg { font-size: var(--wms-font-size-lg) !important; }
.wms-text-muted { color: var(--wms-color-text-muted) !important; }
.wms-text-primary { color: var(--wms-color-primary) !important; }
.wms-text-success { color: var(--wms-color-success) !important; }
.wms-text-danger { color: var(--wms-color-danger) !important; }
.wms-text-inverse { color: var(--wms-color-text-inverse) !important; }
.wms-font-medium { font-weight: var(--wms-font-weight-medium) !important; }
.wms-font-semibold { font-weight: var(--wms-font-weight-semibold) !important; }
.wms-font-bold { font-weight: var(--wms-font-weight-bold) !important; }
.wms-font-black { font-weight: var(--wms-font-weight-black) !important; }
.wms-flex { display: flex !important; }
.wms-inline-flex { display: inline-flex !important; }
.wms-grid-display { display: grid !important; }
.wms-items-center { align-items: center !important; }
.wms-items-start { align-items: flex-start !important; }
.wms-justify-between { justify-content: space-between !important; }
.wms-justify-center { justify-content: center !important; }
.wms-flex-wrap { flex-wrap: wrap !important; }
.wms-w-full { width: 100% !important; }
.wms-max-w-sm { max-width: var(--wms-container-sm) !important; }
.wms-rounded { border-radius: var(--wms-radius-md) !important; }
.wms-rounded-full { border-radius: var(--wms-radius-pill) !important; }
.wms-shadow { box-shadow: var(--wms-shadow-md) !important; }
.wms-border { border: 1px solid var(--wms-color-border) !important; }
.wms-bg-surface { background: var(--wms-color-surface) !important; }
.wms-bg-muted { background: var(--wms-color-surface-muted) !important; }
.wms-overflow-hidden { overflow: hidden !important; }
.wms-nowrap { white-space: nowrap !important; }

@media (max-width: 48rem) {
    .wms-hide-mobile { display: none !important; }
}

@media (min-width: 48.01rem) {
    .wms-show-mobile { display: none !important; }
}

.wms-mx-auto { margin-inline: auto; }
