diff --git a/README.md b/README.md
deleted file mode 100644
index db10346..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# FrontOffice
-
-FrontOffice
\ No newline at end of file
diff --git a/src/FrontOffice.Main/Pages/Profile/Index.razor b/src/FrontOffice.Main/Pages/Profile/Index.razor
index 03b28eb..0006e6b 100644
--- a/src/FrontOffice.Main/Pages/Profile/Index.razor
+++ b/src/FrontOffice.Main/Pages/Profile/Index.razor
@@ -72,6 +72,12 @@
@_walletCredit
+
+
+ موجودی تخفیف باشگاه
+ @_walletDiscount
+
+
موجودی شبکه
diff --git a/src/FrontOffice.Main/Pages/Profile/Index.razor.cs b/src/FrontOffice.Main/Pages/Profile/Index.razor.cs
index e6de09a..e63b83f 100644
--- a/src/FrontOffice.Main/Pages/Profile/Index.razor.cs
+++ b/src/FrontOffice.Main/Pages/Profile/Index.razor.cs
@@ -51,12 +51,15 @@ public partial class Index
}
private string _walletCredit = "-";
+ private string _walletDiscount = "-";
private string _walletNetwork = "-";
private async Task LoadWallet()
{
var b = await WalletService.GetBalancesAsync();
_walletCredit = FormatPrice(b.CreditBalance);
+ var discount = FormatPrice(b.DiscountBalance);
_walletNetwork = FormatPrice(b.NetworkBalance);
+ _walletDiscount = discount;
StateHasChanged();
}
diff --git a/src/FrontOffice.Main/Pages/Profile/Wallet.razor b/src/FrontOffice.Main/Pages/Profile/Wallet.razor
index dfc22e5..f36c6ca 100644
--- a/src/FrontOffice.Main/Pages/Profile/Wallet.razor
+++ b/src/FrontOffice.Main/Pages/Profile/Wallet.razor
@@ -16,6 +16,13 @@
@_balances.Credit
+
+
+ موجودی تخفیف باشگاه
+ @_balances.Discount
+ در انتظار اتصال CMS برای مقدار واقعی
+
+
موجودی شبکه
@@ -24,9 +31,62 @@
+
+ درخواست برداشت از موجودی شبکه
+
+
+
+
+
+
+
+
+ حداقل مبلغ برداشت: @FormatPrice(_minWithdrawalAmount)
+
+
+ @(_isSubmittingWithdrawal ? "در حال ثبت..." : "ثبت درخواست برداشت")
+
+
+
+
تراکنشها و مسیرهای شارژ
+
+
+
+ همه
+ ورودی (شارژ)
+ خروجی (برداشت/خرید)
+
+
+ همه
+ Pending
+ Requested
+ Withdrawn
+ Cancelled
+
+ اعمال فیلتر
+
+
@@ -62,5 +122,49 @@
+
+
+ درخواستهای برداشت ثبتشده
+
+
+
+ هفته
+ مبلغ
+ وضعیت
+ روش
+ تاریخ
+
+
+ @context.WeekNumber
+ @FormatPrice(context.Amount)
+
+
+ @ResolveStatusText(context.Status)
+
+
+ @ResolveMethodText(context.Method)
+ @context.Created
+
+
+
+
+
+
+ @foreach (var wd in _withdrawals)
+ {
+
+
+
+ @wd.WeekNumber
+ @FormatPrice(wd.Amount)
+
+ وضعیت: @ResolveStatusText(wd.Status) | روش: @ResolveMethodText(wd.Method)
+ @wd.Created
+
+
+ }
+
+
+
diff --git a/src/FrontOffice.Main/Pages/Profile/Wallet.razor.cs b/src/FrontOffice.Main/Pages/Profile/Wallet.razor.cs
index 303862e..388d712 100644
--- a/src/FrontOffice.Main/Pages/Profile/Wallet.razor.cs
+++ b/src/FrontOffice.Main/Pages/Profile/Wallet.razor.cs
@@ -1,21 +1,125 @@
using FrontOffice.Main.Utilities;
using Microsoft.AspNetCore.Components;
+using MudBlazor;
namespace FrontOffice.Main.Pages.Profile;
public partial class Wallet : ComponentBase
{
+ [Inject] private ISnackbar Snackbar { get; set; } = default!;
- private (string Credit, string Network) _balances = ("-", "-");
+ private long _minWithdrawalAmount = 1_000_000; // مقدار پیشفرض، از CMS خوانده میشود
+ private (string Credit, string Discount, string Network) _balances = ("-", "-", "-");
private List _txs = new();
+ private List _withdrawals = new();
+ private string? _filterReferenceId;
+ private string _filterType = "all";
+ private string _withdrawStatusFilter = "all";
+ private bool _isSubmittingWithdrawal;
+ private long _withdrawPayoutId;
+ private WithdrawalMethodClient _withdrawMethod = WithdrawalMethodClient.Cash;
+ private string? _withdrawIban;
protected override async Task OnInitializedAsync()
{
var b = await WalletService.GetBalancesAsync();
- _balances = (FormatPrice(b.CreditBalance), FormatPrice(b.NetworkBalance));
+ _balances = (FormatPrice(b.CreditBalance), FormatPrice(b.DiscountBalance), FormatPrice(b.NetworkBalance));
_txs = await WalletService.GetTransactionsAsync();
+ _withdrawals = await WalletService.GetWithdrawalsAsync();
+ var settings = await WalletService.GetWithdrawalSettingsAsync();
+ if (settings.MinWithdrawalAmount > 0)
+ _minWithdrawalAmount = settings.MinWithdrawalAmount;
}
private static string FormatPrice(long price) => string.Format("{0:N0} تومان", price);
-}
+ private async Task SubmitWithdrawal()
+ {
+ var target = _withdrawals.FirstOrDefault(x => x.Id == _withdrawPayoutId);
+ if (target is null)
+ {
+ _withdrawals = await WalletService.GetWithdrawalsAsync();
+ target = _withdrawals.FirstOrDefault(x => x.Id == _withdrawPayoutId);
+ }
+ if (target != null && target.Amount < _minWithdrawalAmount)
+ {
+ Snackbar.Add($"مبلغ این واریز کمتر از حداقل برداشت ({_minWithdrawalAmount:N0} تومان) است.", Severity.Warning);
+ return;
+ }
+ if (_withdrawPayoutId <= 0)
+ {
+ Snackbar.Add("شناسه واریز (PayoutId) الزامی است.", Severity.Warning);
+ return;
+ }
+ if (_withdrawMethod == WithdrawalMethodClient.Cash && string.IsNullOrWhiteSpace(_withdrawIban))
+ {
+ Snackbar.Add("برای برداشت نقدی، شماره شبا لازم است.", Severity.Warning);
+ return;
+ }
+
+ try
+ {
+ _isSubmittingWithdrawal = true;
+ await WalletService.RequestWithdrawalAsync(_withdrawPayoutId, _withdrawMethod, _withdrawIban);
+ Snackbar.Add("درخواست برداشت ثبت شد.", Severity.Success);
+ }
+ catch (Exception ex)
+ {
+ Snackbar.Add($"خطا در ثبت برداشت: {ex.Message}", Severity.Error);
+ }
+ finally
+ {
+ _isSubmittingWithdrawal = false;
+ }
+ }
+
+ private async Task ApplyFilters()
+ {
+ long? refId = null;
+ if (long.TryParse(_filterReferenceId, out var parsed) && parsed > 0)
+ {
+ refId = parsed;
+ }
+ bool? isIncrease = _filterType switch
+ {
+ "in" => true,
+ "out" => false,
+ _ => null
+ };
+ _txs = await WalletService.GetTransactionsAsync(refId, isIncrease);
+ int? status = _withdrawStatusFilter switch
+ {
+ "pending" => 1,
+ "requested" => 2,
+ "withdrawn" => 3,
+ "cancelled" => 4,
+ _ => null
+ };
+ _withdrawals = await WalletService.GetWithdrawalsAsync(status);
+ }
+
+ private static string ResolveStatusText(int status) => status switch
+ {
+ 0 => "ایجاد شده",
+ 1 => "پرداخت شده",
+ 2 => "درخواست برداشت",
+ 3 => "برداشت شده",
+ 4 => "لغو شده",
+ _ => status.ToString()
+ };
+
+ private static Color ResolveStatusColor(int status) => status switch
+ {
+ 2 => Color.Warning,
+ 3 => Color.Success,
+ 4 => Color.Error,
+ _ => Color.Info
+ };
+
+ private static string ResolveMethodText(int? method) => method switch
+ {
+ 0 => "نقدی",
+ 1 => "الماس",
+ _ => "-"
+ };
+}
diff --git a/src/FrontOffice.Main/Utilities/WalletService.cs b/src/FrontOffice.Main/Utilities/WalletService.cs
index 19c4ee6..b204bd3 100644
--- a/src/FrontOffice.Main/Utilities/WalletService.cs
+++ b/src/FrontOffice.Main/Utilities/WalletService.cs
@@ -4,8 +4,15 @@ using Google.Protobuf.WellKnownTypes;
namespace FrontOffice.Main.Utilities;
-public record WalletBalances(long CreditBalance, long NetworkBalance);
+public record WalletBalances(long CreditBalance, long DiscountBalance, long NetworkBalance);
public record WalletTransaction(string Date, long Amount, string Channel, string Description);
+public record WalletWithdrawal(long Id, string WeekNumber, long Amount, int Status, int? Method, string? Iban, string Created);
+public enum WithdrawalMethodClient
+{
+ Cash = 0,
+ Diamond = 1
+}
+public record WithdrawalSettings(long MinWithdrawalAmount);
public class WalletService
{
@@ -21,26 +28,35 @@ public class WalletService
try
{
var response = await _client.GetUserWalletAsync(new Empty());
- return new WalletBalances(response.Balance, response.NetworkBalance);
+ return new WalletBalances(response.Balance, response.DiscountBalance, response.NetworkBalance);
}
catch
{
// Fallback to mock data if backend is unavailable
- return new WalletBalances(350_000, 1_250_000);
+ return new WalletBalances(350_000, 0, 1_250_000);
}
}
- public async Task> GetTransactionsAsync()
+ public async Task> GetTransactionsAsync(long? referenceId = null, bool? isIncrease = null)
{
try
{
- var response = await _client.GetAllUserWalletChangeLogAsync(new Empty());
+ var request = new GetAllUserWalletChangeLogRequest();
+ if (referenceId.HasValue)
+ {
+ request.ReferenceId = referenceId.Value;
+ }
+ if (isIncrease.HasValue)
+ {
+ request.IsIncrease = isIncrease.Value;
+ }
+ var response = await _client.GetAllUserWalletChangeLogAsync(request);
return response.Models
.Select(t => new WalletTransaction(
ResolveTransactionDate(t),
- t.CurrentBalance,
+ t.ChangeValue != 0 ? t.ChangeValue : t.CurrentBalance,
t.RefrenceId?.ToString() ?? "-",
- t.IsIncrease ? "شارژ کیف پول" : "برداشت از کیف پول"))
+ ResolveDescription(t)))
.OrderByDescending(t => t.Date)
.ToList();
}
@@ -74,5 +90,61 @@ public class WalletService
return DateTime.Now.MiladiToJalaliWithTime();
}
-}
+ private static string ResolveDescription(GetAllUserWalletChangeLogResponseModel model)
+ {
+ if (model.ChangeValue > 0) return "شارژ کیف پول";
+ if (model.ChangeValue < 0) return "برداشت/خرید";
+ return "تراکنش کیف پول";
+ }
+
+ public async Task RequestWithdrawalAsync(long payoutId, WithdrawalMethodClient method, string? iban)
+ {
+ var request = new WithdrawBalanceRequest
+ {
+ PayoutId = payoutId,
+ WithdrawalMethod = (int)method
+ };
+ if (!string.IsNullOrWhiteSpace(iban))
+ {
+ request.IbanNumber = iban;
+ }
+ try
+ {
+ await _client.WithdrawBalanceAsync(request);
+ return true;
+ }
+ catch (Grpc.Core.RpcException ex)
+ {
+ // surface backend error text
+ throw new InvalidOperationException(ex.Status.Detail ?? "خطا در ثبت برداشت", ex);
+ }
+ }
+
+ public async Task> GetWithdrawalsAsync(int? status = null)
+ {
+ var request = new GetUserWithdrawalsRequest();
+ if (status.HasValue)
+ {
+ request.Status = status.Value;
+ }
+
+ var response = await _client.GetUserWithdrawalsAsync(request);
+ return response.Models
+ .Select(m => new WalletWithdrawal(
+ m.Id,
+ m.WeekNumber,
+ m.TotalAmount,
+ m.Status,
+ m.WithdrawalMethod?.Value,
+ m.IbanNumber,
+ m.Created.ToDateTime().MiladiToJalaliWithTime()))
+ .ToList();
+ }
+
+ public async Task GetWithdrawalSettingsAsync()
+ {
+ var response = await _client.GetWithdrawalSettingsAsync(new Empty());
+ return new WithdrawalSettings(response.MinWithdrawalAmount);
+ }
+}
diff --git a/src/mudblazor_classes.md b/src/mudblazor_classes.md
deleted file mode 100644
index eea992c..0000000
--- a/src/mudblazor_classes.md
+++ /dev/null
@@ -1,6270 +0,0 @@
-# لیست کلاسهای MudBlazor بر اساس عملکرد
-
-این فایل شامل کلاسهاست که بر اساس **کاربرد و عملکرد** گروهبندی شدهاند.
-
-## Colors & Backgrounds
-
-**توضیحات:** کلاسهای مربوط به Colors & Backgrounds.
-
-- `black`
-- `black-text`
-- `darken-1`
-- `darken-2`
-- `darken-3`
-- `darken-4`
-- `mud-alert-filled-dark`
-- `mud-alert-filled-error`
-- `mud-alert-filled-info`
-- `mud-alert-filled-primary`
-- `mud-alert-filled-secondary`
-- `mud-alert-filled-success`
-- `mud-alert-filled-tertiary`
-- `mud-alert-filled-warning`
-- `mud-alert-outlined-dark`
-- `mud-alert-outlined-error`
-- `mud-alert-outlined-info`
-- `mud-alert-outlined-primary`
-- `mud-alert-outlined-secondary`
-- `mud-alert-outlined-success`
-- `mud-alert-outlined-tertiary`
-- `mud-alert-outlined-warning`
-- `mud-alert-text-dark`
-- `mud-alert-text-error`
-- `mud-alert-text-info`
-- `mud-alert-text-primary`
-- `mud-alert-text-secondary`
-- `mud-alert-text-success`
-- `mud-alert-text-tertiary`
-- `mud-alert-text-warning`
-- `mud-avatar-filled-dark`
-- `mud-avatar-filled-error`
-- `mud-avatar-filled-info`
-- `mud-avatar-filled-primary`
-- `mud-avatar-filled-secondary`
-- `mud-avatar-filled-success`
-- `mud-avatar-filled-tertiary`
-- `mud-avatar-filled-warning`
-- `mud-avatar-group-outlined-dark`
-- `mud-avatar-group-outlined-error`
-- `mud-avatar-group-outlined-info`
-- `mud-avatar-group-outlined-primary`
-- `mud-avatar-group-outlined-secondary`
-- `mud-avatar-group-outlined-success`
-- `mud-avatar-group-outlined-tertiary`
-- `mud-avatar-group-outlined-transparent`
-- `mud-avatar-group-outlined-warning`
-- `mud-avatar-outlined-dark`
-- `mud-avatar-outlined-error`
-- `mud-avatar-outlined-info`
-- `mud-avatar-outlined-primary`
-- `mud-avatar-outlined-secondary`
-- `mud-avatar-outlined-success`
-- `mud-avatar-outlined-tertiary`
-- `mud-avatar-outlined-warning`
-- `mud-background`
-- `mud-background-gray`
-- `mud-border-dark`
-- `mud-border-error`
-- `mud-border-info`
-- `mud-border-primary`
-- `mud-border-secondary`
-- `mud-border-success`
-- `mud-border-tertiary`
-- `mud-border-warning`
-- `mud-button-filled-dark`
-- `mud-button-filled-dark:active`
-- `mud-button-filled-dark:focus-visible`
-- `mud-button-filled-dark:hover`
-- `mud-button-filled-error`
-- `mud-button-filled-error:active`
-- `mud-button-filled-error:focus-visible`
-- `mud-button-filled-error:hover`
-- `mud-button-filled-info`
-- `mud-button-filled-info:active`
-- `mud-button-filled-info:focus-visible`
-- `mud-button-filled-info:hover`
-- `mud-button-filled-primary`
-- `mud-button-filled-primary:active`
-- `mud-button-filled-primary:focus-visible`
-- `mud-button-filled-primary:hover`
-- `mud-button-filled-secondary`
-- `mud-button-filled-secondary:active`
-- `mud-button-filled-secondary:focus-visible`
-- `mud-button-filled-secondary:hover`
-- `mud-button-filled-success`
-- `mud-button-filled-success:active`
-- `mud-button-filled-success:focus-visible`
-- `mud-button-filled-success:hover`
-- `mud-button-filled-tertiary`
-- `mud-button-filled-tertiary:active`
-- `mud-button-filled-tertiary:focus-visible`
-- `mud-button-filled-tertiary:hover`
-- `mud-button-filled-warning`
-- `mud-button-filled-warning:active`
-- `mud-button-filled-warning:focus-visible`
-- `mud-button-filled-warning:hover`
-- `mud-button-group-filled-dark`
-- `mud-button-group-filled-error`
-- `mud-button-group-filled-info`
-- `mud-button-group-filled-primary`
-- `mud-button-group-filled-secondary`
-- `mud-button-group-filled-success`
-- `mud-button-group-filled-tertiary`
-- `mud-button-group-filled-warning`
-- `mud-button-group-outlined-dark`
-- `mud-button-group-outlined-error`
-- `mud-button-group-outlined-info`
-- `mud-button-group-outlined-primary`
-- `mud-button-group-outlined-secondary`
-- `mud-button-group-outlined-success`
-- `mud-button-group-outlined-tertiary`
-- `mud-button-group-outlined-warning`
-- `mud-button-group-text-dark`
-- `mud-button-group-text-error`
-- `mud-button-group-text-info`
-- `mud-button-group-text-primary`
-- `mud-button-group-text-secondary`
-- `mud-button-group-text-success`
-- `mud-button-group-text-tertiary`
-- `mud-button-group-text-warning`
-- `mud-button-outlined-dark`
-- `mud-button-outlined-dark:active`
-- `mud-button-outlined-dark:focus-visible`
-- `mud-button-outlined-dark:hover`
-- `mud-button-outlined-error`
-- `mud-button-outlined-error:active`
-- `mud-button-outlined-error:focus-visible`
-- `mud-button-outlined-error:hover`
-- `mud-button-outlined-info`
-- `mud-button-outlined-info:active`
-- `mud-button-outlined-info:focus-visible`
-- `mud-button-outlined-info:hover`
-- `mud-button-outlined-primary`
-- `mud-button-outlined-primary:active`
-- `mud-button-outlined-primary:focus-visible`
-- `mud-button-outlined-primary:hover`
-- `mud-button-outlined-secondary`
-- `mud-button-outlined-secondary:active`
-- `mud-button-outlined-secondary:focus-visible`
-- `mud-button-outlined-secondary:hover`
-- `mud-button-outlined-success`
-- `mud-button-outlined-success:active`
-- `mud-button-outlined-success:focus-visible`
-- `mud-button-outlined-success:hover`
-- `mud-button-outlined-tertiary`
-- `mud-button-outlined-tertiary:active`
-- `mud-button-outlined-tertiary:focus-visible`
-- `mud-button-outlined-tertiary:hover`
-- `mud-button-outlined-warning`
-- `mud-button-outlined-warning:active`
-- `mud-button-outlined-warning:focus-visible`
-- `mud-button-outlined-warning:hover`
-- `mud-button-text-dark`
-- `mud-button-text-dark:active`
-- `mud-button-text-dark:focus-visible`
-- `mud-button-text-dark:hover`
-- `mud-button-text-error`
-- `mud-button-text-error:active`
-- `mud-button-text-error:focus-visible`
-- `mud-button-text-error:hover`
-- `mud-button-text-info`
-- `mud-button-text-info:active`
-- `mud-button-text-info:focus-visible`
-- `mud-button-text-info:hover`
-- `mud-button-text-primary`
-- `mud-button-text-primary:active`
-- `mud-button-text-primary:focus-visible`
-- `mud-button-text-primary:hover`
-- `mud-button-text-secondary`
-- `mud-button-text-secondary:active`
-- `mud-button-text-secondary:focus-visible`
-- `mud-button-text-secondary:hover`
-- `mud-button-text-success`
-- `mud-button-text-success:active`
-- `mud-button-text-success:focus-visible`
-- `mud-button-text-success:hover`
-- `mud-button-text-tertiary`
-- `mud-button-text-tertiary:active`
-- `mud-button-text-tertiary:focus-visible`
-- `mud-button-text-tertiary:hover`
-- `mud-button-text-warning`
-- `mud-button-text-warning:active`
-- `mud-button-text-warning:focus-visible`
-- `mud-button-text-warning:hover`
-- `mud-carousel-dark`
-- `mud-carousel-error`
-- `mud-carousel-info`
-- `mud-carousel-item-dark`
-- `mud-carousel-item-error`
-- `mud-carousel-item-info`
-- `mud-carousel-item-primary`
-- `mud-carousel-item-secondary`
-- `mud-carousel-item-success`
-- `mud-carousel-item-tertiary`
-- `mud-carousel-item-warning`
-- `mud-carousel-primary`
-- `mud-carousel-secondary`
-- `mud-carousel-success`
-- `mud-carousel-tertiary`
-- `mud-carousel-warning`
-- `mud-chip-color-dark`
-- `mud-chip-color-error`
-- `mud-chip-color-info`
-- `mud-chip-color-primary`
-- `mud-chip-color-secondary`
-- `mud-chip-color-success`
-- `mud-chip-color-tertiary`
-- `mud-chip-color-warning`
-- `mud-dark`
-- `mud-dark-hover`
-- `mud-dark-text`
-- `mud-error`
-- `mud-error-hover`
-- `mud-error-text`
-- `mud-fab-dark`
-- `mud-fab-dark:active`
-- `mud-fab-dark:focus-visible`
-- `mud-fab-dark:hover`
-- `mud-fab-error`
-- `mud-fab-error:active`
-- `mud-fab-error:focus-visible`
-- `mud-fab-error:hover`
-- `mud-fab-info`
-- `mud-fab-info:active`
-- `mud-fab-info:focus-visible`
-- `mud-fab-info:hover`
-- `mud-fab-primary`
-- `mud-fab-primary:active`
-- `mud-fab-primary:focus-visible`
-- `mud-fab-primary:hover`
-- `mud-fab-secondary`
-- `mud-fab-secondary:active`
-- `mud-fab-secondary:focus-visible`
-- `mud-fab-secondary:hover`
-- `mud-fab-success`
-- `mud-fab-success:active`
-- `mud-fab-success:focus-visible`
-- `mud-fab-success:hover`
-- `mud-fab-tertiary`
-- `mud-fab-tertiary:active`
-- `mud-fab-tertiary:focus-visible`
-- `mud-fab-tertiary:hover`
-- `mud-fab-warning`
-- `mud-fab-warning:active`
-- `mud-fab-warning:focus-visible`
-- `mud-fab-warning:hover`
-- `mud-info`
-- `mud-info-hover`
-- `mud-info-text`
-- `mud-input-error`
-- `mud-input-error:after`
-- `mud-list-item-secondary-text`
-- `mud-navmenu-dark`
-- `mud-navmenu-error`
-- `mud-navmenu-info`
-- `mud-navmenu-primary`
-- `mud-navmenu-secondary`
-- `mud-navmenu-success`
-- `mud-navmenu-tertiary`
-- `mud-navmenu-warning`
-- `mud-overlay-dark`
-- `mud-picker-color-overlay-black`
-- `mud-picker-color-overlay-white`
-- `mud-primary`
-- `mud-primary-hover`
-- `mud-primary-text`
-- `mud-progress-linear-color-dark`
-- `mud-progress-linear-color-dark:not`
-- `mud-progress-linear-color-error`
-- `mud-progress-linear-color-error:not`
-- `mud-progress-linear-color-info`
-- `mud-progress-linear-color-info:not`
-- `mud-progress-linear-color-primary`
-- `mud-progress-linear-color-primary:not`
-- `mud-progress-linear-color-secondary`
-- `mud-progress-linear-color-secondary:not`
-- `mud-progress-linear-color-success`
-- `mud-progress-linear-color-success:not`
-- `mud-progress-linear-color-tertiary`
-- `mud-progress-linear-color-tertiary:not`
-- `mud-progress-linear-color-warning`
-- `mud-progress-linear-color-warning:not`
-- `mud-range-selection-dark:hover`
-- `mud-range-selection-error:hover`
-- `mud-range-selection-info:hover`
-- `mud-range-selection-primary:hover`
-- `mud-range-selection-secondary:hover`
-- `mud-range-selection-success:hover`
-- `mud-range-selection-tertiary:hover`
-- `mud-range-selection-warning:hover`
-- `mud-secondary`
-- `mud-secondary-hover`
-- `mud-secondary-text`
-- `mud-slider-dark`
-- `mud-slider-error`
-- `mud-slider-info`
-- `mud-slider-primary`
-- `mud-slider-secondary`
-- `mud-slider-success`
-- `mud-slider-tertiary`
-- `mud-slider-warning`
-- `mud-success`
-- `mud-success-hover`
-- `mud-success-text`
-- `mud-table-page-number-information`
-- `mud-table-pagination-information`
-- `mud-tabs-tabbar-dark`
-- `mud-tabs-tabbar-error`
-- `mud-tabs-tabbar-info`
-- `mud-tabs-tabbar-primary`
-- `mud-tabs-tabbar-secondary`
-- `mud-tabs-tabbar-success`
-- `mud-tabs-tabbar-tertiary`
-- `mud-tabs-tabbar-warning`
-- `mud-tertiary`
-- `mud-tertiary-hover`
-- `mud-tertiary-text`
-- `mud-text-primary`
-- `mud-text-secondary`
-- `mud-theme-dark`
-- `mud-theme-error`
-- `mud-theme-info`
-- `mud-theme-primary`
-- `mud-theme-secondary`
-- `mud-theme-success`
-- `mud-theme-tertiary`
-- `mud-theme-transparent`
-- `mud-theme-warning`
-- `mud-timeline-dot-dark`
-- `mud-timeline-dot-error`
-- `mud-timeline-dot-info`
-- `mud-timeline-dot-primary`
-- `mud-timeline-dot-secondary`
-- `mud-timeline-dot-success`
-- `mud-timeline-dot-tertiary`
-- `mud-timeline-dot-warning`
-- `mud-transparent`
-- `mud-transparent-text`
-- `mud-treeview-checked-dark`
-- `mud-treeview-checked-error`
-- `mud-treeview-checked-info`
-- `mud-treeview-checked-primary`
-- `mud-treeview-checked-secondary`
-- `mud-treeview-checked-success`
-- `mud-treeview-checked-tertiary`
-- `mud-treeview-checked-warning`
-- `mud-treeview-selected-dark`
-- `mud-treeview-selected-error`
-- `mud-treeview-selected-info`
-- `mud-treeview-selected-primary`
-- `mud-treeview-selected-secondary`
-- `mud-treeview-selected-success`
-- `mud-treeview-selected-tertiary`
-- `mud-treeview-selected-warning`
-- `mud-warning`
-- `mud-warning-hover`
-- `mud-warning-text`
-- `text-black`
-- `text-darken-1`
-- `text-darken-2`
-- `text-darken-3`
-- `text-darken-4`
-- `text-transparent`
-- `text-white`
-- `transparent`
-- `white`
-- `white-text`
-
-## Text & Typography
-
-**توضیحات:** کلاسهای مربوط به Text & Typography.
-
-- `amber-text`
-- `blue-gray-text`
-- `blue-text`
-- `brown-text`
-- `cursor-text`
-- `cursor-vertical-text`
-- `cyan-text`
-- `deep-orange-text`
-- `deep-purple-text`
-- `gray-text`
-- `green-text`
-- `indigo-text`
-- `light-blue-text`
-- `light-green-text`
-- `lime-text`
-- `mud-alert-text-normal`
-- `mud-button-group-text`
-- `mud-button-group-text-size-large`
-- `mud-button-group-text-size-small`
-- `mud-button-text`
-- `mud-button-text-inherit`
-- `mud-button-text-size-large`
-- `mud-button-text-size-small`
-- `mud-chart-legend-text`
-- `mud-chip-text`
-- `mud-expand-panel-text`
-- `mud-form-helpertext`
-- `mud-inherit-text`
-- `mud-input-helper-text`
-- `mud-input-helper-text-contained`
-- `mud-input-helper-text-margin-dense`
-- `mud-input-text`
-- `mud-input-text-with-label`
-- `mud-list-item-text`
-- `mud-list-item-text-inset`
-- `mud-nav-link-text`
-- `mud-onclock-text`
-- `mud-picker-calendar-week-text`
-- `mud-picker-input-text`
-- `mud-picker-input-text:hover`
-- `mud-skeleton-text`
-- `mud-skeleton-text:empty:before`
-- `mud-tab-icon-text`
-- `mud-text-disabled`
-- `mud-timepicker-toolbar-text`
-- `mud-typography`
-- `mud-typography-align-center`
-- `mud-typography-align-justify`
-- `mud-typography-align-left`
-- `mud-typography-align-right`
-- `mud-typography-body1`
-- `mud-typography-body2`
-- `mud-typography-button`
-- `mud-typography-caption`
-- `mud-typography-gutterbottom`
-- `mud-typography-h1`
-- `mud-typography-h2`
-- `mud-typography-h3`
-- `mud-typography-h4`
-- `mud-typography-h5`
-- `mud-typography-h6`
-- `mud-typography-input`
-- `mud-typography-nowrap`
-- `mud-typography-overline`
-- `mud-typography-paragraph`
-- `mud-typography-srOnly`
-- `mud-typography-subtitle1`
-- `mud-typography-subtitle2`
-- `orange-text`
-- `pink-text`
-- `purple-text`
-- `red-text`
-- `shades-text`
-- `teal-text`
-- `text-accent-1`
-- `text-accent-2`
-- `text-accent-3`
-- `text-accent-4`
-- `text-lighten-1`
-- `text-lighten-2`
-- `text-lighten-3`
-- `text-lighten-4`
-- `text-lighten-5`
-- `yellow-text`
-
-## Borders & Shadows
-
-**توضیحات:** کلاسهای مربوط به Borders & Shadows.
-
-- `border`
-- `border-0`
-- `border-2`
-- `border-4`
-- `border-8`
-- `border-b`
-- `border-b-0`
-- `border-b-2`
-- `border-b-4`
-- `border-b-8`
-- `border-dashed`
-- `border-dotted`
-- `border-double`
-- `border-hidden`
-- `border-l`
-- `border-l-0`
-- `border-l-2`
-- `border-l-4`
-- `border-l-8`
-- `border-none`
-- `border-r`
-- `border-r-0`
-- `border-r-2`
-- `border-r-4`
-- `border-r-8`
-- `border-solid`
-- `border-t`
-- `border-t-0`
-- `border-t-2`
-- `border-t-4`
-- `border-t-8`
-- `border-x`
-- `border-x-0`
-- `border-x-2`
-- `border-x-4`
-- `border-x-8`
-- `border-y`
-- `border-y-0`
-- `border-y-2`
-- `border-y-4`
-- `border-y-8`
-- `mud-alert-outlined-normal`
-- `mud-avatar-group-outlined`
-- `mud-avatar-group-outlined-surface`
-- `mud-avatar-outlined`
-- `mud-badge-bordered`
-- `mud-border-lines-default`
-- `mud-button-disable-elevation`
-- `mud-button-disable-elevation:active`
-- `mud-button-disable-elevation:disabled`
-- `mud-button-disable-elevation:hover`
-- `mud-button-group-disable-elevation`
-- `mud-button-group-outlined`
-- `mud-button-group-outlined-size-large`
-- `mud-button-group-outlined-size-small`
-- `mud-button-outlined`
-- `mud-button-outlined-default`
-- `mud-button-outlined-inherit`
-- `mud-button-outlined-size-large`
-- `mud-button-outlined-size-small`
-- `mud-button-outlined:active`
-- `mud-button-outlined:disabled`
-- `mud-button-outlined:focus-visible`
-- `mud-button-outlined:hover`
-- `mud-chip-outlined`
-- `mud-elevation-0`
-- `mud-elevation-1`
-- `mud-elevation-10`
-- `mud-elevation-11`
-- `mud-elevation-12`
-- `mud-elevation-13`
-- `mud-elevation-14`
-- `mud-elevation-15`
-- `mud-elevation-16`
-- `mud-elevation-17`
-- `mud-elevation-18`
-- `mud-elevation-19`
-- `mud-elevation-2`
-- `mud-elevation-20`
-- `mud-elevation-21`
-- `mud-elevation-22`
-- `mud-elevation-23`
-- `mud-elevation-24`
-- `mud-elevation-25`
-- `mud-elevation-3`
-- `mud-elevation-4`
-- `mud-elevation-5`
-- `mud-elevation-6`
-- `mud-elevation-7`
-- `mud-elevation-8`
-- `mud-elevation-9`
-- `mud-expand-panel-border`
-- `mud-expansion-panels-borders`
-- `mud-fab-disable-elevation`
-- `mud-fab-disable-elevation:active`
-- `mud-fab-disable-elevation:disabled`
-- `mud-fab-disable-elevation:hover`
-- `mud-input-label-outlined`
-- `mud-input-outlined`
-- `mud-input-outlined-border`
-- `mud-input-outlined-with-label`
-- `mud-input-outlined:focus-within`
-- `mud-input-outlined:not`
-- `mud-input-root-outlined`
-- `mud-navmenu-bordered`
-- `mud-pagination-disable-elevation`
-- `mud-pagination-outlined`
-- `mud-paper-outlined`
-- `mud-paper-outlined::after`
-- `mud-paper-outlined::before`
-- `mud-table-bordered`
-- `mud-table-outlined`
-- `mud-tabs-border-bottom`
-- `mud-tabs-border-left`
-- `mud-tabs-border-right`
-- `mud-tabs-border-top`
-- `table-foot-bordered`
-- `table-head-bordered`
-
-## Buttons
-
-**توضیحات:** کلاسهای مربوط به Buttons.
-
-- `mud-button`
-- `mud-button-close`
-- `mud-button-color-inherit`
-- `mud-button-date`
-- `mud-button-filled`
-- `mud-button-filled-size-large`
-- `mud-button-filled-size-small`
-- `mud-button-filled:active`
-- `mud-button-filled:disabled`
-- `mud-button-filled:focus-visible`
-- `mud-button-filled:hover`
-- `mud-button-full-width`
-- `mud-button-group-filled`
-- `mud-button-group-filled-size-large`
-- `mud-button-group-filled-size-small`
-- `mud-button-group-horizontal`
-- `mud-button-group-horizontal:not`
-- `mud-button-group-override-styles`
-- `mud-button-group-root`
-- `mud-button-group-rtl`
-- `mud-button-group-vertical`
-- `mud-button-icon-end`
-- `mud-button-icon-size-large`
-- `mud-button-icon-size-medium`
-- `mud-button-icon-size-small`
-- `mud-button-icon-start`
-- `mud-button-label`
-- `mud-button-label:has`
-- `mud-button-root`
-- `mud-button-root::-moz-focus-inner`
-- `mud-button-root:active`
-- `mud-button-root:disabled`
-- `mud-button-root:first-child`
-- `mud-button-root:focus-visible`
-- `mud-button-root:hover`
-- `mud-button-root:last-child`
-- `mud-button-root:not`
-- `mud-button-year`
-- `mud-button:active`
-- `mud-button:focus-visible`
-- `mud-button:hover`
-- `mud-chip-close-button`
-- `mud-chip-close-button:active:not`
-- `mud-chip-close-button:focus-visible:not`
-- `mud-chip-close-button:hover:not`
-- `mud-icon-button`
-- `mud-icon-button-color-inherit`
-- `mud-icon-button-color-inherit:active`
-- `mud-icon-button-color-inherit:focus-visible`
-- `mud-icon-button-color-inherit:hover`
-- `mud-icon-button-edge-end`
-- `mud-icon-button-edge-margin-end`
-- `mud-icon-button-edge-start`
-- `mud-icon-button-label`
-- `mud-icon-button-size-large`
-- `mud-icon-button-size-small`
-- `mud-icon-button:active`
-- `mud-icon-button:disabled`
-- `mud-icon-button:focus-visible`
-- `mud-icon-button:hover`
-- `mud-picker-input-button`
-- `mud-picker-nav-button-next`
-- `mud-picker-nav-button-prev`
-- `mud-radio-button`
-- `mud-stepper-step-button`
-- `mud-switch-button`
-- `mud-tabs-scroll-button`
-- `mud-timepicker-button`
-- `mud-timepicker-button:hover`
-
-## Alerts
-
-**توضیحات:** کلاسهای مربوط به Alerts.
-
-- `mud-alert`
-- `mud-alert-close`
-- `mud-alert-filled-normal`
-- `mud-alert-icon`
-- `mud-alert-icon-left`
-- `mud-alert-icon-right`
-- `mud-alert-message`
-- `mud-alert-position`
-
-## Badges
-
-**توضیحات:** کلاسهای مربوط به Badges.
-
-- `mud-badge`
-- `mud-badge-bottom`
-- `mud-badge-center`
-- `mud-badge-default`
-- `mud-badge-dot`
-- `mud-badge-icon`
-- `mud-badge-overlap`
-- `mud-badge-root`
-- `mud-badge-top`
-- `mud-badge-wrapper`
-- `mud-icon-badge`
-- `mud-tab-badge`
-
-## Toolbar & Layout
-
-**توضیحات:** کلاسهای مربوط به Toolbar & Layout.
-
-- `mud-application-layout-rtl`
-- `mud-breadcrumb-item`
-- `mud-breadcrumb-separator`
-- `mud-breadcrumbs`
-- `mud-breadcrumbs-expander`
-- `mud-breadcrumbs-expander:hover`
-- `mud-layout`
-- `mud-picker-color-toolbar`
-- `mud-picker-datepicker-toolbar`
-- `mud-picker-datepicker-toolbar-landscape`
-- `mud-picker-timepicker-toolbar`
-- `mud-picker-timepicker-toolbar-landscape`
-- `mud-picker-toolbar`
-- `mud-picker-toolbar-landscape`
-- `mud-table-pagination-toolbar`
-- `mud-table-toolbar`
-- `mud-toolbar`
-- `mud-toolbar-appbar`
-- `mud-toolbar-dense`
-- `mud-toolbar-gutters`
-- `mud-toolbar-wrap-content`
-
-## Avatars
-
-**توضیحات:** کلاسهای مربوط به Avatars.
-
-- `mud-avatar`
-- `mud-avatar-fallback`
-- `mud-avatar-filled`
-- `mud-avatar-group`
-- `mud-avatar-large`
-- `mud-avatar-medium`
-- `mud-avatar-rounded`
-- `mud-avatar-small`
-- `mud-avatar-square`
-- `mud-avatar:first-child`
-- `mud-avatar:not`
-- `mud-card-header-avatar`
-- `mud-list-item-avatar`
-
-## Tooltips
-
-**توضیحات:** کلاسهای مربوط به Tooltips.
-
-- `mud-tooltip`
-- `mud-tooltip-arrow::after`
-- `mud-tooltip-bottom-center`
-- `mud-tooltip-bottom-center:not`
-- `mud-tooltip-center-left`
-- `mud-tooltip-center-left:not`
-- `mud-tooltip-center-right`
-- `mud-tooltip-center-right:not`
-- `mud-tooltip-default`
-- `mud-tooltip-inline`
-- `mud-tooltip-root`
-- `mud-tooltip-top-center`
-- `mud-tooltip-top-center:not`
-
-## Animations & Effects
-
-**توضیحات:** کلاسهای مربوط به Animations & Effects.
-
-- `column-header:hover`
-- `cursor-progress`
-- `hover`
-- `mud-autocomplete--with-progress`
-- `mud-checked:hover`
-- `mud-chip-selected:hover:not`
-- `mud-clickable:hover:not`
-- `mud-data-grid-columns-panel:hover`
-- `mud-day:hover`
-- `mud-disabled:hover`
-- `mud-expand-panel-header:hover`
-- `mud-fab:disabled:hover`
-- `mud-fab:hover`
-- `mud-input-filled:hover`
-- `mud-input-underline:hover:before`
-- `mud-input-underline:hover:not`
-- `mud-link-underline-hover`
-- `mud-link-underline-hover:active`
-- `mud-link-underline-hover:focus-visible`
-- `mud-link-underline-hover:hover`
-- `mud-list-item-clickable:hover`
-- `mud-nav-link:hover:not`
-- `mud-overlay-scrim:hover`
-- `mud-picker-calendar-header-transition:hover`
-- `mud-picker-calendar-progress-container`
-- `mud-picker-color-dot:hover`
-- `mud-picker-month:hover`
-- `mud-picker-time-clock-pointer-animation`
-- `mud-picker-year:hover`
-- `mud-progress-circular`
-- `mud-progress-circular-circle`
-- `mud-progress-circular-disable-shrink`
-- `mud-progress-circular-svg`
-- `mud-progress-indeterminate`
-- `mud-progress-large`
-- `mud-progress-linear`
-- `mud-progress-linear-1-indeterminate`
-- `mud-progress-linear-2-indeterminate`
-- `mud-progress-linear-bar`
-- `mud-progress-linear-bar:first-child`
-- `mud-progress-linear-bar:last-child`
-- `mud-progress-linear-bar:last-child::before`
-- `mud-progress-linear-bar:nth-child`
-- `mud-progress-linear-bars`
-- `mud-progress-linear-buffer`
-- `mud-progress-linear-color-default`
-- `mud-progress-linear-color-default:not`
-- `mud-progress-linear-content`
-- `mud-progress-linear-dashed`
-- `mud-progress-linear-large`
-- `mud-progress-linear-medium`
-- `mud-progress-linear-rounded`
-- `mud-progress-linear-rounded::before`
-- `mud-progress-linear-small`
-- `mud-progress-linear-striped`
-- `mud-progress-linear::before`
-- `mud-progress-medium`
-- `mud-progress-small`
-- `mud-progress-static`
-- `mud-range-selection:hover`
-- `mud-range-selection:hover:not`
-- `mud-readonly:hover`
-- `mud-resizer:hover`
-- `mud-ripple`
-- `mud-ripple-checkbox:after`
-- `mud-ripple-icon:active:after`
-- `mud-ripple-icon:after`
-- `mud-ripple-radio:after`
-- `mud-ripple-switch`
-- `mud-ripple-switch:after`
-- `mud-ripple:active`
-- `mud-ripple:active:after`
-- `mud-ripple:after`
-- `mud-ripple:has`
-- `mud-ripple:hover`
-- `mud-skeleton`
-- `mud-skeleton-circle`
-- `mud-skeleton-pulse`
-- `mud-skeleton-wave`
-- `mud-skeleton-wave::after`
-- `mud-slider-input::-moz-range-thumb:hover`
-- `mud-slider-input::-webkit-slider-thumb:hover`
-- `mud-slider-input:disabled::-moz-range-thumb:hover`
-- `mud-slider-input:disabled::-webkit-slider-thumb:hover`
-- `mud-switch-base:hover`
-- `mud-switch-disabled:hover`
-- `mud-tab-active:hover`
-- `mud-tab:hover`
-- `mud-table-hover`
-- `mud-table-loading-progress`
-- `mud-table-row:hover`
-- `mud-table-sort-label:hover`
-- `mud-treeview-hover`
-- `mud-treeview-item-content:hover`
-- `object-scale-down`
-- `progress-indicator-circular`
-- `progress-indicator-circular--with-adornment`
-
-## Misc
-
-**توضیحات:** کلاسهای مربوط به Misc.
-
-- `00735em`
-- `00833em`
-- `00938em`
-- `01`
-- `01071em`
-- `01em`
-- `02857em`
-- `03333em`
-- `04`
-- `07`
-- `08`
-- `09`
-- `1`
-- `12`
-- `125rem`
-- `13`
-- `14`
-- `15rem`
-- `15s`
-- `165`
-- `17`
-- `18`
-- `1875rem`
-- `1s`
-- `2`
-- `24`
-- `25`
-- `25rem`
-- `2em`
-- `2s`
-- `3`
-- `3125rem`
-- `33`
-- `35em`
-- `37`
-- `38`
-- `39`
-- `395`
-- `3s`
-- `4`
-- `42`
-- `422rem`
-- `43`
-- `44`
-- `48`
-- `4em`
-- `4s`
-- `5`
-- `516rem`
-- `54`
-- `565`
-- `575`
-- `5px`
-- `5rem`
-- `5s`
-- `6`
-- `625rem`
-- `64`
-- `641rem`
-- `65`
-- `66`
-- `6rem`
-- `6s`
-- `7`
-- `735`
-- `75`
-- `75rem`
-- `7rem`
-- `8`
-- `8125rem`
-- `815`
-- `84`
-- `875rem`
-- `9`
-- `9375rem`
-- `absolute`
-- `accent-1`
-- `accent-2`
-- `accent-3`
-- `accent-4`
-- `active`
-- `active:not`
-- `align-baseline`
-- `align-center`
-- `align-content-center`
-- `align-content-end`
-- `align-content-lg-center`
-- `align-content-lg-end`
-- `align-content-lg-space-around`
-- `align-content-lg-space-between`
-- `align-content-lg-start`
-- `align-content-lg-stretch`
-- `align-content-md-center`
-- `align-content-md-end`
-- `align-content-md-space-around`
-- `align-content-md-space-between`
-- `align-content-md-start`
-- `align-content-md-stretch`
-- `align-content-sm-center`
-- `align-content-sm-end`
-- `align-content-sm-space-around`
-- `align-content-sm-space-between`
-- `align-content-sm-start`
-- `align-content-sm-stretch`
-- `align-content-space-around`
-- `align-content-space-between`
-- `align-content-start`
-- `align-content-stretch`
-- `align-content-xl-center`
-- `align-content-xl-end`
-- `align-content-xl-space-around`
-- `align-content-xl-space-between`
-- `align-content-xl-start`
-- `align-content-xl-stretch`
-- `align-content-xxl-center`
-- `align-content-xxl-end`
-- `align-content-xxl-space-around`
-- `align-content-xxl-space-between`
-- `align-content-xxl-start`
-- `align-content-xxl-stretch`
-- `align-end`
-- `align-lg-baseline`
-- `align-lg-center`
-- `align-lg-end`
-- `align-lg-start`
-- `align-lg-stretch`
-- `align-md-baseline`
-- `align-md-center`
-- `align-md-end`
-- `align-md-start`
-- `align-md-stretch`
-- `align-self-auto`
-- `align-self-center`
-- `align-self-end`
-- `align-self-lg-auto`
-- `align-self-lg-center`
-- `align-self-lg-end`
-- `align-self-lg-start`
-- `align-self-lg-stretch`
-- `align-self-md-auto`
-- `align-self-md-center`
-- `align-self-md-end`
-- `align-self-md-start`
-- `align-self-md-stretch`
-- `align-self-sm-auto`
-- `align-self-sm-center`
-- `align-self-sm-end`
-- `align-self-sm-start`
-- `align-self-sm-stretch`
-- `align-self-start`
-- `align-self-stretch`
-- `align-self-xl-auto`
-- `align-self-xl-center`
-- `align-self-xl-end`
-- `align-self-xl-start`
-- `align-self-xl-stretch`
-- `align-self-xxl-auto`
-- `align-self-xxl-center`
-- `align-self-xxl-end`
-- `align-self-xxl-start`
-- `align-self-xxl-stretch`
-- `align-sm-baseline`
-- `align-sm-center`
-- `align-sm-end`
-- `align-sm-start`
-- `align-sm-stretch`
-- `align-start`
-- `align-stretch`
-- `align-xl-baseline`
-- `align-xl-center`
-- `align-xl-end`
-- `align-xl-start`
-- `align-xl-stretch`
-- `align-xxl-baseline`
-- `align-xxl-center`
-- `align-xxl-end`
-- `align-xxl-start`
-- `align-xxl-stretch`
-- `alpha`
-- `amber`
-- `blue`
-- `blue-gray`
-- `brown`
-- `center`
-- `column-header`
-- `column-options`
-- `column-options-icon`
-- `com`
-- `cursor-alias`
-- `cursor-all-scroll`
-- `cursor-auto`
-- `cursor-cell`
-- `cursor-col-resize`
-- `cursor-copy`
-- `cursor-crosshair`
-- `cursor-default`
-- `cursor-grab`
-- `cursor-grabbing`
-- `cursor-help`
-- `cursor-move`
-- `cursor-n-resize`
-- `cursor-no-drop`
-- `cursor-none`
-- `cursor-not-allowed`
-- `cursor-pointer`
-- `cursor-row-resize`
-- `cursor-url`
-- `cursor-w-resize`
-- `cursor-wait`
-- `cursor-zoom-in`
-- `cursor-zoom-out`
-- `cyan`
-- `d-block`
-- `d-flex`
-- `d-inline`
-- `d-inline-block`
-- `d-inline-flex`
-- `d-lg-block`
-- `d-lg-flex`
-- `d-lg-inline`
-- `d-lg-inline-block`
-- `d-lg-inline-flex`
-- `d-lg-none`
-- `d-lg-table`
-- `d-lg-table-cell`
-- `d-lg-table-row`
-- `d-md-block`
-- `d-md-flex`
-- `d-md-inline`
-- `d-md-inline-block`
-- `d-md-inline-flex`
-- `d-md-none`
-- `d-md-table`
-- `d-md-table-cell`
-- `d-md-table-row`
-- `d-none`
-- `d-sm-block`
-- `d-sm-flex`
-- `d-sm-inline`
-- `d-sm-inline-block`
-- `d-sm-inline-flex`
-- `d-sm-none`
-- `d-sm-table`
-- `d-sm-table-cell`
-- `d-sm-table-row`
-- `d-table`
-- `d-table-cell`
-- `d-table-row`
-- `d-xl-block`
-- `d-xl-flex`
-- `d-xl-inline`
-- `d-xl-inline-block`
-- `d-xl-inline-flex`
-- `d-xl-none`
-- `d-xl-table`
-- `d-xl-table-cell`
-- `d-xl-table-row`
-- `d-xxl-block`
-- `d-xxl-flex`
-- `d-xxl-inline`
-- `d-xxl-inline-block`
-- `d-xxl-inline-flex`
-- `d-xxl-none`
-- `d-xxl-table`
-- `d-xxl-table-cell`
-- `d-xxl-table-row`
-- `deep-orange`
-- `deep-purple`
-- `dismiss`
-- `drag-icon-options`
-- `drop-allowed`
-- `drop-not-allowed`
-- `edit-mode-cell`
-- `filter-header-cell`
-- `fixed`
-- `flex-1`
-- `flex-auto`
-- `flex-column`
-- `flex-column-reverse`
-- `flex-grow-0`
-- `flex-grow-1`
-- `flex-grow-all`
-- `flex-grow-end`
-- `flex-grow-middle`
-- `flex-grow-start`
-- `flex-grow-start-and-end`
-- `flex-initial`
-- `flex-lg-1`
-- `flex-lg-auto`
-- `flex-lg-column`
-- `flex-lg-column-reverse`
-- `flex-lg-grow-0`
-- `flex-lg-grow-1`
-- `flex-lg-grow-all`
-- `flex-lg-grow-end`
-- `flex-lg-grow-middle`
-- `flex-lg-grow-start`
-- `flex-lg-grow-start-and-end`
-- `flex-lg-initial`
-- `flex-lg-none`
-- `flex-lg-nowrap`
-- `flex-lg-row`
-- `flex-lg-row-reverse`
-- `flex-lg-shrink-0`
-- `flex-lg-shrink-1`
-- `flex-lg-wrap`
-- `flex-lg-wrap-reverse`
-- `flex-md-1`
-- `flex-md-auto`
-- `flex-md-column`
-- `flex-md-column-reverse`
-- `flex-md-grow-0`
-- `flex-md-grow-1`
-- `flex-md-grow-all`
-- `flex-md-grow-end`
-- `flex-md-grow-middle`
-- `flex-md-grow-start`
-- `flex-md-grow-start-and-end`
-- `flex-md-initial`
-- `flex-md-none`
-- `flex-md-nowrap`
-- `flex-md-row`
-- `flex-md-row-reverse`
-- `flex-md-shrink-0`
-- `flex-md-shrink-1`
-- `flex-md-wrap`
-- `flex-md-wrap-reverse`
-- `flex-none`
-- `flex-nowrap`
-- `flex-row`
-- `flex-row-reverse`
-- `flex-shrink-0`
-- `flex-shrink-1`
-- `flex-sm-1`
-- `flex-sm-auto`
-- `flex-sm-column`
-- `flex-sm-column-reverse`
-- `flex-sm-grow-0`
-- `flex-sm-grow-1`
-- `flex-sm-grow-all`
-- `flex-sm-grow-end`
-- `flex-sm-grow-middle`
-- `flex-sm-grow-start`
-- `flex-sm-grow-start-and-end`
-- `flex-sm-initial`
-- `flex-sm-none`
-- `flex-sm-nowrap`
-- `flex-sm-row`
-- `flex-sm-row-reverse`
-- `flex-sm-shrink-0`
-- `flex-sm-shrink-1`
-- `flex-sm-wrap`
-- `flex-sm-wrap-reverse`
-- `flex-wrap`
-- `flex-wrap-reverse`
-- `flex-xl-1`
-- `flex-xl-auto`
-- `flex-xl-column`
-- `flex-xl-column-reverse`
-- `flex-xl-grow-0`
-- `flex-xl-grow-1`
-- `flex-xl-grow-all`
-- `flex-xl-grow-end`
-- `flex-xl-grow-middle`
-- `flex-xl-grow-start`
-- `flex-xl-grow-start-and-end`
-- `flex-xl-initial`
-- `flex-xl-none`
-- `flex-xl-nowrap`
-- `flex-xl-row`
-- `flex-xl-row-reverse`
-- `flex-xl-shrink-0`
-- `flex-xl-shrink-1`
-- `flex-xl-wrap`
-- `flex-xl-wrap-reverse`
-- `flex-xxl-1`
-- `flex-xxl-auto`
-- `flex-xxl-column`
-- `flex-xxl-column-reverse`
-- `flex-xxl-grow-0`
-- `flex-xxl-grow-1`
-- `flex-xxl-grow-all`
-- `flex-xxl-grow-end`
-- `flex-xxl-grow-middle`
-- `flex-xxl-grow-start`
-- `flex-xxl-grow-start-and-end`
-- `flex-xxl-initial`
-- `flex-xxl-none`
-- `flex-xxl-nowrap`
-- `flex-xxl-row`
-- `flex-xxl-row-reverse`
-- `flex-xxl-shrink-0`
-- `flex-xxl-shrink-1`
-- `flex-xxl-wrap`
-- `flex-xxl-wrap-reverse`
-- `fluid`
-- `force-cursor`
-- `gap-0`
-- `gap-1`
-- `gap-10`
-- `gap-11`
-- `gap-12`
-- `gap-13`
-- `gap-14`
-- `gap-15`
-- `gap-16`
-- `gap-17`
-- `gap-18`
-- `gap-19`
-- `gap-2`
-- `gap-20`
-- `gap-3`
-- `gap-4`
-- `gap-5`
-- `gap-6`
-- `gap-7`
-- `gap-8`
-- `gap-9`
-- `gap-lg-0`
-- `gap-lg-1`
-- `gap-lg-10`
-- `gap-lg-11`
-- `gap-lg-12`
-- `gap-lg-13`
-- `gap-lg-14`
-- `gap-lg-15`
-- `gap-lg-16`
-- `gap-lg-17`
-- `gap-lg-18`
-- `gap-lg-19`
-- `gap-lg-2`
-- `gap-lg-20`
-- `gap-lg-3`
-- `gap-lg-4`
-- `gap-lg-5`
-- `gap-lg-6`
-- `gap-lg-7`
-- `gap-lg-8`
-- `gap-lg-9`
-- `gap-md-0`
-- `gap-md-1`
-- `gap-md-10`
-- `gap-md-11`
-- `gap-md-12`
-- `gap-md-13`
-- `gap-md-14`
-- `gap-md-15`
-- `gap-md-16`
-- `gap-md-17`
-- `gap-md-18`
-- `gap-md-19`
-- `gap-md-2`
-- `gap-md-20`
-- `gap-md-3`
-- `gap-md-4`
-- `gap-md-5`
-- `gap-md-6`
-- `gap-md-7`
-- `gap-md-8`
-- `gap-md-9`
-- `gap-sm-0`
-- `gap-sm-1`
-- `gap-sm-10`
-- `gap-sm-11`
-- `gap-sm-12`
-- `gap-sm-13`
-- `gap-sm-14`
-- `gap-sm-15`
-- `gap-sm-16`
-- `gap-sm-17`
-- `gap-sm-18`
-- `gap-sm-19`
-- `gap-sm-2`
-- `gap-sm-20`
-- `gap-sm-3`
-- `gap-sm-4`
-- `gap-sm-5`
-- `gap-sm-6`
-- `gap-sm-7`
-- `gap-sm-8`
-- `gap-sm-9`
-- `gap-x-0`
-- `gap-x-1`
-- `gap-x-10`
-- `gap-x-11`
-- `gap-x-12`
-- `gap-x-13`
-- `gap-x-14`
-- `gap-x-15`
-- `gap-x-16`
-- `gap-x-17`
-- `gap-x-18`
-- `gap-x-19`
-- `gap-x-2`
-- `gap-x-20`
-- `gap-x-3`
-- `gap-x-4`
-- `gap-x-5`
-- `gap-x-6`
-- `gap-x-7`
-- `gap-x-8`
-- `gap-x-9`
-- `gap-x-lg-0`
-- `gap-x-lg-1`
-- `gap-x-lg-10`
-- `gap-x-lg-11`
-- `gap-x-lg-12`
-- `gap-x-lg-13`
-- `gap-x-lg-14`
-- `gap-x-lg-15`
-- `gap-x-lg-16`
-- `gap-x-lg-17`
-- `gap-x-lg-18`
-- `gap-x-lg-19`
-- `gap-x-lg-2`
-- `gap-x-lg-20`
-- `gap-x-lg-3`
-- `gap-x-lg-4`
-- `gap-x-lg-5`
-- `gap-x-lg-6`
-- `gap-x-lg-7`
-- `gap-x-lg-8`
-- `gap-x-lg-9`
-- `gap-x-md-0`
-- `gap-x-md-1`
-- `gap-x-md-10`
-- `gap-x-md-11`
-- `gap-x-md-12`
-- `gap-x-md-13`
-- `gap-x-md-14`
-- `gap-x-md-15`
-- `gap-x-md-16`
-- `gap-x-md-17`
-- `gap-x-md-18`
-- `gap-x-md-19`
-- `gap-x-md-2`
-- `gap-x-md-20`
-- `gap-x-md-3`
-- `gap-x-md-4`
-- `gap-x-md-5`
-- `gap-x-md-6`
-- `gap-x-md-7`
-- `gap-x-md-8`
-- `gap-x-md-9`
-- `gap-x-sm-0`
-- `gap-x-sm-1`
-- `gap-x-sm-10`
-- `gap-x-sm-11`
-- `gap-x-sm-12`
-- `gap-x-sm-13`
-- `gap-x-sm-14`
-- `gap-x-sm-15`
-- `gap-x-sm-16`
-- `gap-x-sm-17`
-- `gap-x-sm-18`
-- `gap-x-sm-19`
-- `gap-x-sm-2`
-- `gap-x-sm-20`
-- `gap-x-sm-3`
-- `gap-x-sm-4`
-- `gap-x-sm-5`
-- `gap-x-sm-6`
-- `gap-x-sm-7`
-- `gap-x-sm-8`
-- `gap-x-sm-9`
-- `gap-x-xl-0`
-- `gap-x-xl-1`
-- `gap-x-xl-10`
-- `gap-x-xl-11`
-- `gap-x-xl-12`
-- `gap-x-xl-13`
-- `gap-x-xl-14`
-- `gap-x-xl-15`
-- `gap-x-xl-16`
-- `gap-x-xl-17`
-- `gap-x-xl-18`
-- `gap-x-xl-19`
-- `gap-x-xl-2`
-- `gap-x-xl-20`
-- `gap-x-xl-3`
-- `gap-x-xl-4`
-- `gap-x-xl-5`
-- `gap-x-xl-6`
-- `gap-x-xl-7`
-- `gap-x-xl-8`
-- `gap-x-xl-9`
-- `gap-x-xxl-0`
-- `gap-x-xxl-1`
-- `gap-x-xxl-10`
-- `gap-x-xxl-11`
-- `gap-x-xxl-12`
-- `gap-x-xxl-13`
-- `gap-x-xxl-14`
-- `gap-x-xxl-15`
-- `gap-x-xxl-16`
-- `gap-x-xxl-17`
-- `gap-x-xxl-18`
-- `gap-x-xxl-19`
-- `gap-x-xxl-2`
-- `gap-x-xxl-20`
-- `gap-x-xxl-3`
-- `gap-x-xxl-4`
-- `gap-x-xxl-5`
-- `gap-x-xxl-6`
-- `gap-x-xxl-7`
-- `gap-x-xxl-8`
-- `gap-x-xxl-9`
-- `gap-xl-0`
-- `gap-xl-1`
-- `gap-xl-10`
-- `gap-xl-11`
-- `gap-xl-12`
-- `gap-xl-13`
-- `gap-xl-14`
-- `gap-xl-15`
-- `gap-xl-16`
-- `gap-xl-17`
-- `gap-xl-18`
-- `gap-xl-19`
-- `gap-xl-2`
-- `gap-xl-20`
-- `gap-xl-3`
-- `gap-xl-4`
-- `gap-xl-5`
-- `gap-xl-6`
-- `gap-xl-7`
-- `gap-xl-8`
-- `gap-xl-9`
-- `gap-xxl-0`
-- `gap-xxl-1`
-- `gap-xxl-10`
-- `gap-xxl-11`
-- `gap-xxl-12`
-- `gap-xxl-13`
-- `gap-xxl-14`
-- `gap-xxl-15`
-- `gap-xxl-16`
-- `gap-xxl-17`
-- `gap-xxl-18`
-- `gap-xxl-19`
-- `gap-xxl-2`
-- `gap-xxl-20`
-- `gap-xxl-3`
-- `gap-xxl-4`
-- `gap-xxl-5`
-- `gap-xxl-6`
-- `gap-xxl-7`
-- `gap-xxl-8`
-- `gap-xxl-9`
-- `gap-y-0`
-- `gap-y-1`
-- `gap-y-10`
-- `gap-y-11`
-- `gap-y-12`
-- `gap-y-13`
-- `gap-y-14`
-- `gap-y-15`
-- `gap-y-16`
-- `gap-y-17`
-- `gap-y-18`
-- `gap-y-19`
-- `gap-y-2`
-- `gap-y-20`
-- `gap-y-3`
-- `gap-y-4`
-- `gap-y-5`
-- `gap-y-6`
-- `gap-y-7`
-- `gap-y-8`
-- `gap-y-9`
-- `gap-y-lg-0`
-- `gap-y-lg-1`
-- `gap-y-lg-10`
-- `gap-y-lg-11`
-- `gap-y-lg-12`
-- `gap-y-lg-13`
-- `gap-y-lg-14`
-- `gap-y-lg-15`
-- `gap-y-lg-16`
-- `gap-y-lg-17`
-- `gap-y-lg-18`
-- `gap-y-lg-19`
-- `gap-y-lg-2`
-- `gap-y-lg-20`
-- `gap-y-lg-3`
-- `gap-y-lg-4`
-- `gap-y-lg-5`
-- `gap-y-lg-6`
-- `gap-y-lg-7`
-- `gap-y-lg-8`
-- `gap-y-lg-9`
-- `gap-y-md-0`
-- `gap-y-md-1`
-- `gap-y-md-10`
-- `gap-y-md-11`
-- `gap-y-md-12`
-- `gap-y-md-13`
-- `gap-y-md-14`
-- `gap-y-md-15`
-- `gap-y-md-16`
-- `gap-y-md-17`
-- `gap-y-md-18`
-- `gap-y-md-19`
-- `gap-y-md-2`
-- `gap-y-md-20`
-- `gap-y-md-3`
-- `gap-y-md-4`
-- `gap-y-md-5`
-- `gap-y-md-6`
-- `gap-y-md-7`
-- `gap-y-md-8`
-- `gap-y-md-9`
-- `gap-y-sm-0`
-- `gap-y-sm-1`
-- `gap-y-sm-10`
-- `gap-y-sm-11`
-- `gap-y-sm-12`
-- `gap-y-sm-13`
-- `gap-y-sm-14`
-- `gap-y-sm-15`
-- `gap-y-sm-16`
-- `gap-y-sm-17`
-- `gap-y-sm-18`
-- `gap-y-sm-19`
-- `gap-y-sm-2`
-- `gap-y-sm-20`
-- `gap-y-sm-3`
-- `gap-y-sm-4`
-- `gap-y-sm-5`
-- `gap-y-sm-6`
-- `gap-y-sm-7`
-- `gap-y-sm-8`
-- `gap-y-sm-9`
-- `gap-y-xl-0`
-- `gap-y-xl-1`
-- `gap-y-xl-10`
-- `gap-y-xl-11`
-- `gap-y-xl-12`
-- `gap-y-xl-13`
-- `gap-y-xl-14`
-- `gap-y-xl-15`
-- `gap-y-xl-16`
-- `gap-y-xl-17`
-- `gap-y-xl-18`
-- `gap-y-xl-19`
-- `gap-y-xl-2`
-- `gap-y-xl-20`
-- `gap-y-xl-3`
-- `gap-y-xl-4`
-- `gap-y-xl-5`
-- `gap-y-xl-6`
-- `gap-y-xl-7`
-- `gap-y-xl-8`
-- `gap-y-xl-9`
-- `gap-y-xxl-0`
-- `gap-y-xxl-1`
-- `gap-y-xxl-10`
-- `gap-y-xxl-11`
-- `gap-y-xxl-12`
-- `gap-y-xxl-13`
-- `gap-y-xxl-14`
-- `gap-y-xxl-15`
-- `gap-y-xxl-16`
-- `gap-y-xxl-17`
-- `gap-y-xxl-18`
-- `gap-y-xxl-19`
-- `gap-y-xxl-2`
-- `gap-y-xxl-20`
-- `gap-y-xxl-3`
-- `gap-y-xxl-4`
-- `gap-y-xxl-5`
-- `gap-y-xxl-6`
-- `gap-y-xxl-7`
-- `gap-y-xxl-8`
-- `gap-y-xxl-9`
-- `gray`
-- `green`
-- `hidden`
-- `horizontal`
-- `hue`
-- `indigo`
-- `invisible`
-- `justify-center`
-- `justify-end`
-- `justify-lg-center`
-- `justify-lg-end`
-- `justify-lg-space-around`
-- `justify-lg-space-between`
-- `justify-lg-space-evenly`
-- `justify-lg-start`
-- `justify-md-center`
-- `justify-md-end`
-- `justify-md-space-around`
-- `justify-md-space-between`
-- `justify-md-space-evenly`
-- `justify-md-start`
-- `justify-sm-center`
-- `justify-sm-end`
-- `justify-sm-space-around`
-- `justify-sm-space-between`
-- `justify-sm-space-evenly`
-- `justify-sm-start`
-- `justify-space-around`
-- `justify-space-between`
-- `justify-space-evenly`
-- `justify-start`
-- `justify-xl-center`
-- `justify-xl-end`
-- `justify-xl-space-around`
-- `justify-xl-space-between`
-- `justify-xl-space-evenly`
-- `justify-xl-start`
-- `justify-xxl-center`
-- `justify-xxl-end`
-- `justify-xxl-space-around`
-- `justify-xxl-space-between`
-- `justify-xxl-space-evenly`
-- `justify-xxl-start`
-- `left`
-- `light-blue`
-- `light-green`
-- `lighten-1`
-- `lighten-2`
-- `lighten-3`
-- `lighten-4`
-- `lighten-5`
-- `lime`
-- `ma-0`
-- `ma-1`
-- `ma-10`
-- `ma-11`
-- `ma-12`
-- `ma-13`
-- `ma-14`
-- `ma-15`
-- `ma-16`
-- `ma-17`
-- `ma-18`
-- `ma-19`
-- `ma-2`
-- `ma-20`
-- `ma-3`
-- `ma-4`
-- `ma-5`
-- `ma-6`
-- `ma-7`
-- `ma-8`
-- `ma-9`
-- `ma-auto`
-- `ma-lg-0`
-- `ma-lg-1`
-- `ma-lg-10`
-- `ma-lg-11`
-- `ma-lg-12`
-- `ma-lg-13`
-- `ma-lg-14`
-- `ma-lg-15`
-- `ma-lg-16`
-- `ma-lg-17`
-- `ma-lg-18`
-- `ma-lg-19`
-- `ma-lg-2`
-- `ma-lg-20`
-- `ma-lg-3`
-- `ma-lg-4`
-- `ma-lg-5`
-- `ma-lg-6`
-- `ma-lg-7`
-- `ma-lg-8`
-- `ma-lg-9`
-- `ma-lg-auto`
-- `ma-lg-n1`
-- `ma-lg-n10`
-- `ma-lg-n11`
-- `ma-lg-n12`
-- `ma-lg-n13`
-- `ma-lg-n14`
-- `ma-lg-n15`
-- `ma-lg-n16`
-- `ma-lg-n17`
-- `ma-lg-n18`
-- `ma-lg-n19`
-- `ma-lg-n2`
-- `ma-lg-n20`
-- `ma-lg-n3`
-- `ma-lg-n4`
-- `ma-lg-n5`
-- `ma-lg-n6`
-- `ma-lg-n7`
-- `ma-lg-n8`
-- `ma-lg-n9`
-- `ma-md-0`
-- `ma-md-1`
-- `ma-md-10`
-- `ma-md-11`
-- `ma-md-12`
-- `ma-md-13`
-- `ma-md-14`
-- `ma-md-15`
-- `ma-md-16`
-- `ma-md-17`
-- `ma-md-18`
-- `ma-md-19`
-- `ma-md-2`
-- `ma-md-20`
-- `ma-md-3`
-- `ma-md-4`
-- `ma-md-5`
-- `ma-md-6`
-- `ma-md-7`
-- `ma-md-8`
-- `ma-md-9`
-- `ma-md-auto`
-- `ma-md-n1`
-- `ma-md-n10`
-- `ma-md-n11`
-- `ma-md-n12`
-- `ma-md-n13`
-- `ma-md-n14`
-- `ma-md-n15`
-- `ma-md-n16`
-- `ma-md-n17`
-- `ma-md-n18`
-- `ma-md-n19`
-- `ma-md-n2`
-- `ma-md-n20`
-- `ma-md-n3`
-- `ma-md-n4`
-- `ma-md-n5`
-- `ma-md-n6`
-- `ma-md-n7`
-- `ma-md-n8`
-- `ma-md-n9`
-- `ma-n1`
-- `ma-n10`
-- `ma-n11`
-- `ma-n12`
-- `ma-n13`
-- `ma-n14`
-- `ma-n15`
-- `ma-n16`
-- `ma-n17`
-- `ma-n18`
-- `ma-n19`
-- `ma-n2`
-- `ma-n20`
-- `ma-n3`
-- `ma-n4`
-- `ma-n5`
-- `ma-n6`
-- `ma-n7`
-- `ma-n8`
-- `ma-n9`
-- `ma-sm-0`
-- `ma-sm-1`
-- `ma-sm-10`
-- `ma-sm-11`
-- `ma-sm-12`
-- `ma-sm-13`
-- `ma-sm-14`
-- `ma-sm-15`
-- `ma-sm-16`
-- `ma-sm-17`
-- `ma-sm-18`
-- `ma-sm-19`
-- `ma-sm-2`
-- `ma-sm-20`
-- `ma-sm-3`
-- `ma-sm-4`
-- `ma-sm-5`
-- `ma-sm-6`
-- `ma-sm-7`
-- `ma-sm-8`
-- `ma-sm-9`
-- `ma-sm-auto`
-- `ma-sm-n1`
-- `ma-sm-n10`
-- `ma-sm-n11`
-- `ma-sm-n12`
-- `ma-sm-n13`
-- `ma-sm-n14`
-- `ma-sm-n15`
-- `ma-sm-n16`
-- `ma-sm-n17`
-- `ma-sm-n18`
-- `ma-sm-n19`
-- `ma-sm-n2`
-- `ma-sm-n20`
-- `ma-sm-n3`
-- `ma-sm-n4`
-- `ma-sm-n5`
-- `ma-sm-n6`
-- `ma-sm-n7`
-- `ma-sm-n8`
-- `ma-sm-n9`
-- `ma-xl-0`
-- `ma-xl-1`
-- `ma-xl-10`
-- `ma-xl-11`
-- `ma-xl-12`
-- `ma-xl-13`
-- `ma-xl-14`
-- `ma-xl-15`
-- `ma-xl-16`
-- `ma-xl-17`
-- `ma-xl-18`
-- `ma-xl-19`
-- `ma-xl-2`
-- `ma-xl-20`
-- `ma-xl-3`
-- `ma-xl-4`
-- `ma-xl-5`
-- `ma-xl-6`
-- `ma-xl-7`
-- `ma-xl-8`
-- `ma-xl-9`
-- `ma-xl-auto`
-- `ma-xl-n1`
-- `ma-xl-n10`
-- `ma-xl-n11`
-- `ma-xl-n12`
-- `ma-xl-n13`
-- `ma-xl-n14`
-- `ma-xl-n15`
-- `ma-xl-n16`
-- `ma-xl-n17`
-- `ma-xl-n18`
-- `ma-xl-n19`
-- `ma-xl-n2`
-- `ma-xl-n20`
-- `ma-xl-n3`
-- `ma-xl-n4`
-- `ma-xl-n5`
-- `ma-xl-n6`
-- `ma-xl-n7`
-- `ma-xl-n8`
-- `ma-xl-n9`
-- `ma-xxl-0`
-- `ma-xxl-1`
-- `ma-xxl-10`
-- `ma-xxl-11`
-- `ma-xxl-12`
-- `ma-xxl-13`
-- `ma-xxl-14`
-- `ma-xxl-15`
-- `ma-xxl-16`
-- `ma-xxl-17`
-- `ma-xxl-18`
-- `ma-xxl-19`
-- `ma-xxl-2`
-- `ma-xxl-20`
-- `ma-xxl-3`
-- `ma-xxl-4`
-- `ma-xxl-5`
-- `ma-xxl-6`
-- `ma-xxl-7`
-- `ma-xxl-8`
-- `ma-xxl-9`
-- `ma-xxl-auto`
-- `ma-xxl-n1`
-- `ma-xxl-n10`
-- `ma-xxl-n11`
-- `ma-xxl-n12`
-- `ma-xxl-n13`
-- `ma-xxl-n14`
-- `ma-xxl-n15`
-- `ma-xxl-n16`
-- `ma-xxl-n17`
-- `ma-xxl-n18`
-- `ma-xxl-n19`
-- `ma-xxl-n2`
-- `ma-xxl-n20`
-- `ma-xxl-n3`
-- `ma-xxl-n4`
-- `ma-xxl-n5`
-- `ma-xxl-n6`
-- `ma-xxl-n7`
-- `ma-xxl-n8`
-- `ma-xxl-n9`
-- `mb-0`
-- `mb-1`
-- `mb-10`
-- `mb-11`
-- `mb-12`
-- `mb-13`
-- `mb-14`
-- `mb-15`
-- `mb-16`
-- `mb-17`
-- `mb-18`
-- `mb-19`
-- `mb-2`
-- `mb-20`
-- `mb-3`
-- `mb-4`
-- `mb-5`
-- `mb-6`
-- `mb-7`
-- `mb-8`
-- `mb-9`
-- `mb-auto`
-- `mb-lg-0`
-- `mb-lg-1`
-- `mb-lg-10`
-- `mb-lg-11`
-- `mb-lg-12`
-- `mb-lg-13`
-- `mb-lg-14`
-- `mb-lg-15`
-- `mb-lg-16`
-- `mb-lg-17`
-- `mb-lg-18`
-- `mb-lg-19`
-- `mb-lg-2`
-- `mb-lg-20`
-- `mb-lg-3`
-- `mb-lg-4`
-- `mb-lg-5`
-- `mb-lg-6`
-- `mb-lg-7`
-- `mb-lg-8`
-- `mb-lg-9`
-- `mb-lg-auto`
-- `mb-lg-n1`
-- `mb-lg-n10`
-- `mb-lg-n11`
-- `mb-lg-n12`
-- `mb-lg-n13`
-- `mb-lg-n14`
-- `mb-lg-n15`
-- `mb-lg-n16`
-- `mb-lg-n17`
-- `mb-lg-n18`
-- `mb-lg-n19`
-- `mb-lg-n2`
-- `mb-lg-n20`
-- `mb-lg-n3`
-- `mb-lg-n4`
-- `mb-lg-n5`
-- `mb-lg-n6`
-- `mb-lg-n7`
-- `mb-lg-n8`
-- `mb-lg-n9`
-- `mb-md-0`
-- `mb-md-1`
-- `mb-md-10`
-- `mb-md-11`
-- `mb-md-12`
-- `mb-md-13`
-- `mb-md-14`
-- `mb-md-15`
-- `mb-md-16`
-- `mb-md-17`
-- `mb-md-18`
-- `mb-md-19`
-- `mb-md-2`
-- `mb-md-20`
-- `mb-md-3`
-- `mb-md-4`
-- `mb-md-5`
-- `mb-md-6`
-- `mb-md-7`
-- `mb-md-8`
-- `mb-md-9`
-- `mb-md-auto`
-- `mb-md-n1`
-- `mb-md-n10`
-- `mb-md-n11`
-- `mb-md-n12`
-- `mb-md-n13`
-- `mb-md-n14`
-- `mb-md-n15`
-- `mb-md-n16`
-- `mb-md-n17`
-- `mb-md-n18`
-- `mb-md-n19`
-- `mb-md-n2`
-- `mb-md-n20`
-- `mb-md-n3`
-- `mb-md-n4`
-- `mb-md-n5`
-- `mb-md-n6`
-- `mb-md-n7`
-- `mb-md-n8`
-- `mb-md-n9`
-- `mb-n1`
-- `mb-n10`
-- `mb-n11`
-- `mb-n12`
-- `mb-n13`
-- `mb-n14`
-- `mb-n15`
-- `mb-n16`
-- `mb-n17`
-- `mb-n18`
-- `mb-n19`
-- `mb-n2`
-- `mb-n20`
-- `mb-n3`
-- `mb-n4`
-- `mb-n5`
-- `mb-n6`
-- `mb-n7`
-- `mb-n8`
-- `mb-n9`
-- `mb-sm-0`
-- `mb-sm-1`
-- `mb-sm-10`
-- `mb-sm-11`
-- `mb-sm-12`
-- `mb-sm-13`
-- `mb-sm-14`
-- `mb-sm-15`
-- `mb-sm-16`
-- `mb-sm-17`
-- `mb-sm-18`
-- `mb-sm-19`
-- `mb-sm-2`
-- `mb-sm-20`
-- `mb-sm-3`
-- `mb-sm-4`
-- `mb-sm-5`
-- `mb-sm-6`
-- `mb-sm-7`
-- `mb-sm-8`
-- `mb-sm-9`
-- `mb-sm-auto`
-- `mb-sm-n1`
-- `mb-sm-n10`
-- `mb-sm-n11`
-- `mb-sm-n12`
-- `mb-sm-n13`
-- `mb-sm-n14`
-- `mb-sm-n15`
-- `mb-sm-n16`
-- `mb-sm-n17`
-- `mb-sm-n18`
-- `mb-sm-n19`
-- `mb-sm-n2`
-- `mb-sm-n20`
-- `mb-sm-n3`
-- `mb-sm-n4`
-- `mb-sm-n5`
-- `mb-sm-n6`
-- `mb-sm-n7`
-- `mb-sm-n8`
-- `mb-sm-n9`
-- `mb-xl-0`
-- `mb-xl-1`
-- `mb-xl-10`
-- `mb-xl-11`
-- `mb-xl-12`
-- `mb-xl-13`
-- `mb-xl-14`
-- `mb-xl-15`
-- `mb-xl-16`
-- `mb-xl-17`
-- `mb-xl-18`
-- `mb-xl-19`
-- `mb-xl-2`
-- `mb-xl-20`
-- `mb-xl-3`
-- `mb-xl-4`
-- `mb-xl-5`
-- `mb-xl-6`
-- `mb-xl-7`
-- `mb-xl-8`
-- `mb-xl-9`
-- `mb-xl-auto`
-- `mb-xl-n1`
-- `mb-xl-n10`
-- `mb-xl-n11`
-- `mb-xl-n12`
-- `mb-xl-n13`
-- `mb-xl-n14`
-- `mb-xl-n15`
-- `mb-xl-n16`
-- `mb-xl-n17`
-- `mb-xl-n18`
-- `mb-xl-n19`
-- `mb-xl-n2`
-- `mb-xl-n20`
-- `mb-xl-n3`
-- `mb-xl-n4`
-- `mb-xl-n5`
-- `mb-xl-n6`
-- `mb-xl-n7`
-- `mb-xl-n8`
-- `mb-xl-n9`
-- `mb-xxl-0`
-- `mb-xxl-1`
-- `mb-xxl-10`
-- `mb-xxl-11`
-- `mb-xxl-12`
-- `mb-xxl-13`
-- `mb-xxl-14`
-- `mb-xxl-15`
-- `mb-xxl-16`
-- `mb-xxl-17`
-- `mb-xxl-18`
-- `mb-xxl-19`
-- `mb-xxl-2`
-- `mb-xxl-20`
-- `mb-xxl-3`
-- `mb-xxl-4`
-- `mb-xxl-5`
-- `mb-xxl-6`
-- `mb-xxl-7`
-- `mb-xxl-8`
-- `mb-xxl-9`
-- `mb-xxl-auto`
-- `mb-xxl-n1`
-- `mb-xxl-n10`
-- `mb-xxl-n11`
-- `mb-xxl-n12`
-- `mb-xxl-n13`
-- `mb-xxl-n14`
-- `mb-xxl-n15`
-- `mb-xxl-n16`
-- `mb-xxl-n17`
-- `mb-xxl-n18`
-- `mb-xxl-n19`
-- `mb-xxl-n2`
-- `mb-xxl-n20`
-- `mb-xxl-n3`
-- `mb-xxl-n4`
-- `mb-xxl-n5`
-- `mb-xxl-n6`
-- `mb-xxl-n7`
-- `mb-xxl-n8`
-- `mb-xxl-n9`
-- `me-0`
-- `me-1`
-- `me-10`
-- `me-11`
-- `me-12`
-- `me-13`
-- `me-14`
-- `me-15`
-- `me-16`
-- `me-17`
-- `me-18`
-- `me-19`
-- `me-2`
-- `me-20`
-- `me-3`
-- `me-4`
-- `me-5`
-- `me-6`
-- `me-7`
-- `me-8`
-- `me-9`
-- `me-auto`
-- `me-lg-0`
-- `me-lg-1`
-- `me-lg-10`
-- `me-lg-11`
-- `me-lg-12`
-- `me-lg-13`
-- `me-lg-14`
-- `me-lg-15`
-- `me-lg-16`
-- `me-lg-17`
-- `me-lg-18`
-- `me-lg-19`
-- `me-lg-2`
-- `me-lg-20`
-- `me-lg-3`
-- `me-lg-4`
-- `me-lg-5`
-- `me-lg-6`
-- `me-lg-7`
-- `me-lg-8`
-- `me-lg-9`
-- `me-lg-auto`
-- `me-lg-n1`
-- `me-lg-n10`
-- `me-lg-n11`
-- `me-lg-n12`
-- `me-lg-n13`
-- `me-lg-n14`
-- `me-lg-n15`
-- `me-lg-n16`
-- `me-lg-n17`
-- `me-lg-n18`
-- `me-lg-n19`
-- `me-lg-n2`
-- `me-lg-n20`
-- `me-lg-n3`
-- `me-lg-n4`
-- `me-lg-n5`
-- `me-lg-n6`
-- `me-lg-n7`
-- `me-lg-n8`
-- `me-lg-n9`
-- `me-md-0`
-- `me-md-1`
-- `me-md-10`
-- `me-md-11`
-- `me-md-12`
-- `me-md-13`
-- `me-md-14`
-- `me-md-15`
-- `me-md-16`
-- `me-md-17`
-- `me-md-18`
-- `me-md-19`
-- `me-md-2`
-- `me-md-20`
-- `me-md-3`
-- `me-md-4`
-- `me-md-5`
-- `me-md-6`
-- `me-md-7`
-- `me-md-8`
-- `me-md-9`
-- `me-md-auto`
-- `me-md-n1`
-- `me-md-n10`
-- `me-md-n11`
-- `me-md-n12`
-- `me-md-n13`
-- `me-md-n14`
-- `me-md-n15`
-- `me-md-n16`
-- `me-md-n17`
-- `me-md-n18`
-- `me-md-n19`
-- `me-md-n2`
-- `me-md-n20`
-- `me-md-n3`
-- `me-md-n4`
-- `me-md-n5`
-- `me-md-n6`
-- `me-md-n7`
-- `me-md-n8`
-- `me-md-n9`
-- `me-n1`
-- `me-n10`
-- `me-n11`
-- `me-n12`
-- `me-n13`
-- `me-n14`
-- `me-n15`
-- `me-n16`
-- `me-n17`
-- `me-n18`
-- `me-n19`
-- `me-n2`
-- `me-n20`
-- `me-n3`
-- `me-n4`
-- `me-n5`
-- `me-n6`
-- `me-n7`
-- `me-n8`
-- `me-n9`
-- `me-sm-0`
-- `me-sm-1`
-- `me-sm-10`
-- `me-sm-11`
-- `me-sm-12`
-- `me-sm-13`
-- `me-sm-14`
-- `me-sm-15`
-- `me-sm-16`
-- `me-sm-17`
-- `me-sm-18`
-- `me-sm-19`
-- `me-sm-2`
-- `me-sm-20`
-- `me-sm-3`
-- `me-sm-4`
-- `me-sm-5`
-- `me-sm-6`
-- `me-sm-7`
-- `me-sm-8`
-- `me-sm-9`
-- `me-sm-auto`
-- `me-sm-n1`
-- `me-sm-n10`
-- `me-sm-n11`
-- `me-sm-n12`
-- `me-sm-n13`
-- `me-sm-n14`
-- `me-sm-n15`
-- `me-sm-n16`
-- `me-sm-n17`
-- `me-sm-n18`
-- `me-sm-n19`
-- `me-sm-n2`
-- `me-sm-n20`
-- `me-sm-n3`
-- `me-sm-n4`
-- `me-sm-n5`
-- `me-sm-n6`
-- `me-sm-n7`
-- `me-sm-n8`
-- `me-sm-n9`
-- `me-xl-0`
-- `me-xl-1`
-- `me-xl-10`
-- `me-xl-11`
-- `me-xl-12`
-- `me-xl-13`
-- `me-xl-14`
-- `me-xl-15`
-- `me-xl-16`
-- `me-xl-17`
-- `me-xl-18`
-- `me-xl-19`
-- `me-xl-2`
-- `me-xl-20`
-- `me-xl-3`
-- `me-xl-4`
-- `me-xl-5`
-- `me-xl-6`
-- `me-xl-7`
-- `me-xl-8`
-- `me-xl-9`
-- `me-xl-auto`
-- `me-xl-n1`
-- `me-xl-n10`
-- `me-xl-n11`
-- `me-xl-n12`
-- `me-xl-n13`
-- `me-xl-n14`
-- `me-xl-n15`
-- `me-xl-n16`
-- `me-xl-n17`
-- `me-xl-n18`
-- `me-xl-n19`
-- `me-xl-n2`
-- `me-xl-n20`
-- `me-xl-n3`
-- `me-xl-n4`
-- `me-xl-n5`
-- `me-xl-n6`
-- `me-xl-n7`
-- `me-xl-n8`
-- `me-xl-n9`
-- `me-xxl-0`
-- `me-xxl-1`
-- `me-xxl-10`
-- `me-xxl-11`
-- `me-xxl-12`
-- `me-xxl-13`
-- `me-xxl-14`
-- `me-xxl-15`
-- `me-xxl-16`
-- `me-xxl-17`
-- `me-xxl-18`
-- `me-xxl-19`
-- `me-xxl-2`
-- `me-xxl-20`
-- `me-xxl-3`
-- `me-xxl-4`
-- `me-xxl-5`
-- `me-xxl-6`
-- `me-xxl-7`
-- `me-xxl-8`
-- `me-xxl-9`
-- `me-xxl-auto`
-- `me-xxl-n1`
-- `me-xxl-n10`
-- `me-xxl-n11`
-- `me-xxl-n12`
-- `me-xxl-n13`
-- `me-xxl-n14`
-- `me-xxl-n15`
-- `me-xxl-n16`
-- `me-xxl-n17`
-- `me-xxl-n18`
-- `me-xxl-n19`
-- `me-xxl-n2`
-- `me-xxl-n20`
-- `me-xxl-n3`
-- `me-xxl-n4`
-- `me-xxl-n5`
-- `me-xxl-n6`
-- `me-xxl-n7`
-- `me-xxl-n8`
-- `me-xxl-n9`
-- `ml-0`
-- `ml-1`
-- `ml-10`
-- `ml-11`
-- `ml-12`
-- `ml-13`
-- `ml-14`
-- `ml-15`
-- `ml-16`
-- `ml-17`
-- `ml-18`
-- `ml-19`
-- `ml-2`
-- `ml-20`
-- `ml-3`
-- `ml-4`
-- `ml-5`
-- `ml-6`
-- `ml-7`
-- `ml-8`
-- `ml-9`
-- `ml-auto`
-- `ml-lg-0`
-- `ml-lg-1`
-- `ml-lg-10`
-- `ml-lg-11`
-- `ml-lg-12`
-- `ml-lg-13`
-- `ml-lg-14`
-- `ml-lg-15`
-- `ml-lg-16`
-- `ml-lg-17`
-- `ml-lg-18`
-- `ml-lg-19`
-- `ml-lg-2`
-- `ml-lg-20`
-- `ml-lg-3`
-- `ml-lg-4`
-- `ml-lg-5`
-- `ml-lg-6`
-- `ml-lg-7`
-- `ml-lg-8`
-- `ml-lg-9`
-- `ml-lg-auto`
-- `ml-lg-n1`
-- `ml-lg-n10`
-- `ml-lg-n11`
-- `ml-lg-n12`
-- `ml-lg-n13`
-- `ml-lg-n14`
-- `ml-lg-n15`
-- `ml-lg-n16`
-- `ml-lg-n17`
-- `ml-lg-n18`
-- `ml-lg-n19`
-- `ml-lg-n2`
-- `ml-lg-n20`
-- `ml-lg-n3`
-- `ml-lg-n4`
-- `ml-lg-n5`
-- `ml-lg-n6`
-- `ml-lg-n7`
-- `ml-lg-n8`
-- `ml-lg-n9`
-- `ml-md-0`
-- `ml-md-1`
-- `ml-md-10`
-- `ml-md-11`
-- `ml-md-12`
-- `ml-md-13`
-- `ml-md-14`
-- `ml-md-15`
-- `ml-md-16`
-- `ml-md-17`
-- `ml-md-18`
-- `ml-md-19`
-- `ml-md-2`
-- `ml-md-20`
-- `ml-md-3`
-- `ml-md-4`
-- `ml-md-5`
-- `ml-md-6`
-- `ml-md-7`
-- `ml-md-8`
-- `ml-md-9`
-- `ml-md-auto`
-- `ml-md-n1`
-- `ml-md-n10`
-- `ml-md-n11`
-- `ml-md-n12`
-- `ml-md-n13`
-- `ml-md-n14`
-- `ml-md-n15`
-- `ml-md-n16`
-- `ml-md-n17`
-- `ml-md-n18`
-- `ml-md-n19`
-- `ml-md-n2`
-- `ml-md-n20`
-- `ml-md-n3`
-- `ml-md-n4`
-- `ml-md-n5`
-- `ml-md-n6`
-- `ml-md-n7`
-- `ml-md-n8`
-- `ml-md-n9`
-- `ml-n1`
-- `ml-n10`
-- `ml-n11`
-- `ml-n12`
-- `ml-n13`
-- `ml-n14`
-- `ml-n15`
-- `ml-n16`
-- `ml-n17`
-- `ml-n18`
-- `ml-n19`
-- `ml-n2`
-- `ml-n20`
-- `ml-n3`
-- `ml-n4`
-- `ml-n5`
-- `ml-n6`
-- `ml-n7`
-- `ml-n8`
-- `ml-n9`
-- `ml-sm-0`
-- `ml-sm-1`
-- `ml-sm-10`
-- `ml-sm-11`
-- `ml-sm-12`
-- `ml-sm-13`
-- `ml-sm-14`
-- `ml-sm-15`
-- `ml-sm-16`
-- `ml-sm-17`
-- `ml-sm-18`
-- `ml-sm-19`
-- `ml-sm-2`
-- `ml-sm-20`
-- `ml-sm-3`
-- `ml-sm-4`
-- `ml-sm-5`
-- `ml-sm-6`
-- `ml-sm-7`
-- `ml-sm-8`
-- `ml-sm-9`
-- `ml-sm-auto`
-- `ml-sm-n1`
-- `ml-sm-n10`
-- `ml-sm-n11`
-- `ml-sm-n12`
-- `ml-sm-n13`
-- `ml-sm-n14`
-- `ml-sm-n15`
-- `ml-sm-n16`
-- `ml-sm-n17`
-- `ml-sm-n18`
-- `ml-sm-n19`
-- `ml-sm-n2`
-- `ml-sm-n20`
-- `ml-sm-n3`
-- `ml-sm-n4`
-- `ml-sm-n5`
-- `ml-sm-n6`
-- `ml-sm-n7`
-- `ml-sm-n8`
-- `ml-sm-n9`
-- `ml-xl-0`
-- `ml-xl-1`
-- `ml-xl-10`
-- `ml-xl-11`
-- `ml-xl-12`
-- `ml-xl-13`
-- `ml-xl-14`
-- `ml-xl-15`
-- `ml-xl-16`
-- `ml-xl-17`
-- `ml-xl-18`
-- `ml-xl-19`
-- `ml-xl-2`
-- `ml-xl-20`
-- `ml-xl-3`
-- `ml-xl-4`
-- `ml-xl-5`
-- `ml-xl-6`
-- `ml-xl-7`
-- `ml-xl-8`
-- `ml-xl-9`
-- `ml-xl-auto`
-- `ml-xl-n1`
-- `ml-xl-n10`
-- `ml-xl-n11`
-- `ml-xl-n12`
-- `ml-xl-n13`
-- `ml-xl-n14`
-- `ml-xl-n15`
-- `ml-xl-n16`
-- `ml-xl-n17`
-- `ml-xl-n18`
-- `ml-xl-n19`
-- `ml-xl-n2`
-- `ml-xl-n20`
-- `ml-xl-n3`
-- `ml-xl-n4`
-- `ml-xl-n5`
-- `ml-xl-n6`
-- `ml-xl-n7`
-- `ml-xl-n8`
-- `ml-xl-n9`
-- `ml-xxl-0`
-- `ml-xxl-1`
-- `ml-xxl-10`
-- `ml-xxl-11`
-- `ml-xxl-12`
-- `ml-xxl-13`
-- `ml-xxl-14`
-- `ml-xxl-15`
-- `ml-xxl-16`
-- `ml-xxl-17`
-- `ml-xxl-18`
-- `ml-xxl-19`
-- `ml-xxl-2`
-- `ml-xxl-20`
-- `ml-xxl-3`
-- `ml-xxl-4`
-- `ml-xxl-5`
-- `ml-xxl-6`
-- `ml-xxl-7`
-- `ml-xxl-8`
-- `ml-xxl-9`
-- `ml-xxl-auto`
-- `ml-xxl-n1`
-- `ml-xxl-n10`
-- `ml-xxl-n11`
-- `ml-xxl-n12`
-- `ml-xxl-n13`
-- `ml-xxl-n14`
-- `ml-xxl-n15`
-- `ml-xxl-n16`
-- `ml-xxl-n17`
-- `ml-xxl-n18`
-- `ml-xxl-n19`
-- `ml-xxl-n2`
-- `ml-xxl-n20`
-- `ml-xxl-n3`
-- `ml-xxl-n4`
-- `ml-xxl-n5`
-- `ml-xxl-n6`
-- `ml-xxl-n7`
-- `ml-xxl-n8`
-- `ml-xxl-n9`
-- `mr-0`
-- `mr-1`
-- `mr-10`
-- `mr-11`
-- `mr-12`
-- `mr-13`
-- `mr-14`
-- `mr-15`
-- `mr-16`
-- `mr-17`
-- `mr-18`
-- `mr-19`
-- `mr-2`
-- `mr-20`
-- `mr-3`
-- `mr-4`
-- `mr-5`
-- `mr-6`
-- `mr-7`
-- `mr-8`
-- `mr-9`
-- `mr-auto`
-- `mr-lg-0`
-- `mr-lg-1`
-- `mr-lg-10`
-- `mr-lg-11`
-- `mr-lg-12`
-- `mr-lg-13`
-- `mr-lg-14`
-- `mr-lg-15`
-- `mr-lg-16`
-- `mr-lg-17`
-- `mr-lg-18`
-- `mr-lg-19`
-- `mr-lg-2`
-- `mr-lg-20`
-- `mr-lg-3`
-- `mr-lg-4`
-- `mr-lg-5`
-- `mr-lg-6`
-- `mr-lg-7`
-- `mr-lg-8`
-- `mr-lg-9`
-- `mr-lg-auto`
-- `mr-lg-n1`
-- `mr-lg-n10`
-- `mr-lg-n11`
-- `mr-lg-n12`
-- `mr-lg-n13`
-- `mr-lg-n14`
-- `mr-lg-n15`
-- `mr-lg-n16`
-- `mr-lg-n17`
-- `mr-lg-n18`
-- `mr-lg-n19`
-- `mr-lg-n2`
-- `mr-lg-n20`
-- `mr-lg-n3`
-- `mr-lg-n4`
-- `mr-lg-n5`
-- `mr-lg-n6`
-- `mr-lg-n7`
-- `mr-lg-n8`
-- `mr-lg-n9`
-- `mr-md-0`
-- `mr-md-1`
-- `mr-md-10`
-- `mr-md-11`
-- `mr-md-12`
-- `mr-md-13`
-- `mr-md-14`
-- `mr-md-15`
-- `mr-md-16`
-- `mr-md-17`
-- `mr-md-18`
-- `mr-md-19`
-- `mr-md-2`
-- `mr-md-20`
-- `mr-md-3`
-- `mr-md-4`
-- `mr-md-5`
-- `mr-md-6`
-- `mr-md-7`
-- `mr-md-8`
-- `mr-md-9`
-- `mr-md-auto`
-- `mr-md-n1`
-- `mr-md-n10`
-- `mr-md-n11`
-- `mr-md-n12`
-- `mr-md-n13`
-- `mr-md-n14`
-- `mr-md-n15`
-- `mr-md-n16`
-- `mr-md-n17`
-- `mr-md-n18`
-- `mr-md-n19`
-- `mr-md-n2`
-- `mr-md-n20`
-- `mr-md-n3`
-- `mr-md-n4`
-- `mr-md-n5`
-- `mr-md-n6`
-- `mr-md-n7`
-- `mr-md-n8`
-- `mr-md-n9`
-- `mr-n1`
-- `mr-n10`
-- `mr-n11`
-- `mr-n12`
-- `mr-n13`
-- `mr-n14`
-- `mr-n15`
-- `mr-n16`
-- `mr-n17`
-- `mr-n18`
-- `mr-n19`
-- `mr-n2`
-- `mr-n20`
-- `mr-n3`
-- `mr-n4`
-- `mr-n5`
-- `mr-n6`
-- `mr-n7`
-- `mr-n8`
-- `mr-n9`
-- `mr-sm-0`
-- `mr-sm-1`
-- `mr-sm-10`
-- `mr-sm-11`
-- `mr-sm-12`
-- `mr-sm-13`
-- `mr-sm-14`
-- `mr-sm-15`
-- `mr-sm-16`
-- `mr-sm-17`
-- `mr-sm-18`
-- `mr-sm-19`
-- `mr-sm-2`
-- `mr-sm-20`
-- `mr-sm-3`
-- `mr-sm-4`
-- `mr-sm-5`
-- `mr-sm-6`
-- `mr-sm-7`
-- `mr-sm-8`
-- `mr-sm-9`
-- `mr-sm-auto`
-- `mr-sm-n1`
-- `mr-sm-n10`
-- `mr-sm-n11`
-- `mr-sm-n12`
-- `mr-sm-n13`
-- `mr-sm-n14`
-- `mr-sm-n15`
-- `mr-sm-n16`
-- `mr-sm-n17`
-- `mr-sm-n18`
-- `mr-sm-n19`
-- `mr-sm-n2`
-- `mr-sm-n20`
-- `mr-sm-n3`
-- `mr-sm-n4`
-- `mr-sm-n5`
-- `mr-sm-n6`
-- `mr-sm-n7`
-- `mr-sm-n8`
-- `mr-sm-n9`
-- `mr-xl-0`
-- `mr-xl-1`
-- `mr-xl-10`
-- `mr-xl-11`
-- `mr-xl-12`
-- `mr-xl-13`
-- `mr-xl-14`
-- `mr-xl-15`
-- `mr-xl-16`
-- `mr-xl-17`
-- `mr-xl-18`
-- `mr-xl-19`
-- `mr-xl-2`
-- `mr-xl-20`
-- `mr-xl-3`
-- `mr-xl-4`
-- `mr-xl-5`
-- `mr-xl-6`
-- `mr-xl-7`
-- `mr-xl-8`
-- `mr-xl-9`
-- `mr-xl-auto`
-- `mr-xl-n1`
-- `mr-xl-n10`
-- `mr-xl-n11`
-- `mr-xl-n12`
-- `mr-xl-n13`
-- `mr-xl-n14`
-- `mr-xl-n15`
-- `mr-xl-n16`
-- `mr-xl-n17`
-- `mr-xl-n18`
-- `mr-xl-n19`
-- `mr-xl-n2`
-- `mr-xl-n20`
-- `mr-xl-n3`
-- `mr-xl-n4`
-- `mr-xl-n5`
-- `mr-xl-n6`
-- `mr-xl-n7`
-- `mr-xl-n8`
-- `mr-xl-n9`
-- `mr-xxl-0`
-- `mr-xxl-1`
-- `mr-xxl-10`
-- `mr-xxl-11`
-- `mr-xxl-12`
-- `mr-xxl-13`
-- `mr-xxl-14`
-- `mr-xxl-15`
-- `mr-xxl-16`
-- `mr-xxl-17`
-- `mr-xxl-18`
-- `mr-xxl-19`
-- `mr-xxl-2`
-- `mr-xxl-20`
-- `mr-xxl-3`
-- `mr-xxl-4`
-- `mr-xxl-5`
-- `mr-xxl-6`
-- `mr-xxl-7`
-- `mr-xxl-8`
-- `mr-xxl-9`
-- `mr-xxl-auto`
-- `mr-xxl-n1`
-- `mr-xxl-n10`
-- `mr-xxl-n11`
-- `mr-xxl-n12`
-- `mr-xxl-n13`
-- `mr-xxl-n14`
-- `mr-xxl-n15`
-- `mr-xxl-n16`
-- `mr-xxl-n17`
-- `mr-xxl-n18`
-- `mr-xxl-n19`
-- `mr-xxl-n2`
-- `mr-xxl-n20`
-- `mr-xxl-n3`
-- `mr-xxl-n4`
-- `mr-xxl-n5`
-- `mr-xxl-n6`
-- `mr-xxl-n7`
-- `mr-xxl-n8`
-- `mr-xxl-n9`
-- `ms-0`
-- `ms-1`
-- `ms-10`
-- `ms-11`
-- `ms-12`
-- `ms-13`
-- `ms-14`
-- `ms-15`
-- `ms-16`
-- `ms-17`
-- `ms-18`
-- `ms-19`
-- `ms-2`
-- `ms-20`
-- `ms-3`
-- `ms-4`
-- `ms-5`
-- `ms-6`
-- `ms-7`
-- `ms-8`
-- `ms-9`
-- `ms-auto`
-- `ms-lg-0`
-- `ms-lg-1`
-- `ms-lg-10`
-- `ms-lg-11`
-- `ms-lg-12`
-- `ms-lg-13`
-- `ms-lg-14`
-- `ms-lg-15`
-- `ms-lg-16`
-- `ms-lg-17`
-- `ms-lg-18`
-- `ms-lg-19`
-- `ms-lg-2`
-- `ms-lg-20`
-- `ms-lg-3`
-- `ms-lg-4`
-- `ms-lg-5`
-- `ms-lg-6`
-- `ms-lg-7`
-- `ms-lg-8`
-- `ms-lg-9`
-- `ms-lg-auto`
-- `ms-lg-n1`
-- `ms-lg-n10`
-- `ms-lg-n11`
-- `ms-lg-n12`
-- `ms-lg-n13`
-- `ms-lg-n14`
-- `ms-lg-n15`
-- `ms-lg-n16`
-- `ms-lg-n17`
-- `ms-lg-n18`
-- `ms-lg-n19`
-- `ms-lg-n2`
-- `ms-lg-n20`
-- `ms-lg-n3`
-- `ms-lg-n4`
-- `ms-lg-n5`
-- `ms-lg-n6`
-- `ms-lg-n7`
-- `ms-lg-n8`
-- `ms-lg-n9`
-- `ms-md-0`
-- `ms-md-1`
-- `ms-md-10`
-- `ms-md-11`
-- `ms-md-12`
-- `ms-md-13`
-- `ms-md-14`
-- `ms-md-15`
-- `ms-md-16`
-- `ms-md-17`
-- `ms-md-18`
-- `ms-md-19`
-- `ms-md-2`
-- `ms-md-20`
-- `ms-md-3`
-- `ms-md-4`
-- `ms-md-5`
-- `ms-md-6`
-- `ms-md-7`
-- `ms-md-8`
-- `ms-md-9`
-- `ms-md-auto`
-- `ms-md-n1`
-- `ms-md-n10`
-- `ms-md-n11`
-- `ms-md-n12`
-- `ms-md-n13`
-- `ms-md-n14`
-- `ms-md-n15`
-- `ms-md-n16`
-- `ms-md-n17`
-- `ms-md-n18`
-- `ms-md-n19`
-- `ms-md-n2`
-- `ms-md-n20`
-- `ms-md-n3`
-- `ms-md-n4`
-- `ms-md-n5`
-- `ms-md-n6`
-- `ms-md-n7`
-- `ms-md-n8`
-- `ms-md-n9`
-- `ms-n1`
-- `ms-n10`
-- `ms-n11`
-- `ms-n12`
-- `ms-n13`
-- `ms-n14`
-- `ms-n15`
-- `ms-n16`
-- `ms-n17`
-- `ms-n18`
-- `ms-n19`
-- `ms-n2`
-- `ms-n20`
-- `ms-n3`
-- `ms-n4`
-- `ms-n5`
-- `ms-n6`
-- `ms-n7`
-- `ms-n8`
-- `ms-n9`
-- `ms-sm-0`
-- `ms-sm-1`
-- `ms-sm-10`
-- `ms-sm-11`
-- `ms-sm-12`
-- `ms-sm-13`
-- `ms-sm-14`
-- `ms-sm-15`
-- `ms-sm-16`
-- `ms-sm-17`
-- `ms-sm-18`
-- `ms-sm-19`
-- `ms-sm-2`
-- `ms-sm-20`
-- `ms-sm-3`
-- `ms-sm-4`
-- `ms-sm-5`
-- `ms-sm-6`
-- `ms-sm-7`
-- `ms-sm-8`
-- `ms-sm-9`
-- `ms-sm-auto`
-- `ms-sm-n1`
-- `ms-sm-n10`
-- `ms-sm-n11`
-- `ms-sm-n12`
-- `ms-sm-n13`
-- `ms-sm-n14`
-- `ms-sm-n15`
-- `ms-sm-n16`
-- `ms-sm-n17`
-- `ms-sm-n18`
-- `ms-sm-n19`
-- `ms-sm-n2`
-- `ms-sm-n20`
-- `ms-sm-n3`
-- `ms-sm-n4`
-- `ms-sm-n5`
-- `ms-sm-n6`
-- `ms-sm-n7`
-- `ms-sm-n8`
-- `ms-sm-n9`
-- `ms-xl-0`
-- `ms-xl-1`
-- `ms-xl-10`
-- `ms-xl-11`
-- `ms-xl-12`
-- `ms-xl-13`
-- `ms-xl-14`
-- `ms-xl-15`
-- `ms-xl-16`
-- `ms-xl-17`
-- `ms-xl-18`
-- `ms-xl-19`
-- `ms-xl-2`
-- `ms-xl-20`
-- `ms-xl-3`
-- `ms-xl-4`
-- `ms-xl-5`
-- `ms-xl-6`
-- `ms-xl-7`
-- `ms-xl-8`
-- `ms-xl-9`
-- `ms-xl-auto`
-- `ms-xl-n1`
-- `ms-xl-n10`
-- `ms-xl-n11`
-- `ms-xl-n12`
-- `ms-xl-n13`
-- `ms-xl-n14`
-- `ms-xl-n15`
-- `ms-xl-n16`
-- `ms-xl-n17`
-- `ms-xl-n18`
-- `ms-xl-n19`
-- `ms-xl-n2`
-- `ms-xl-n20`
-- `ms-xl-n3`
-- `ms-xl-n4`
-- `ms-xl-n5`
-- `ms-xl-n6`
-- `ms-xl-n7`
-- `ms-xl-n8`
-- `ms-xl-n9`
-- `ms-xxl-0`
-- `ms-xxl-1`
-- `ms-xxl-10`
-- `ms-xxl-11`
-- `ms-xxl-12`
-- `ms-xxl-13`
-- `ms-xxl-14`
-- `ms-xxl-15`
-- `ms-xxl-16`
-- `ms-xxl-17`
-- `ms-xxl-18`
-- `ms-xxl-19`
-- `ms-xxl-2`
-- `ms-xxl-20`
-- `ms-xxl-3`
-- `ms-xxl-4`
-- `ms-xxl-5`
-- `ms-xxl-6`
-- `ms-xxl-7`
-- `ms-xxl-8`
-- `ms-xxl-9`
-- `ms-xxl-auto`
-- `ms-xxl-n1`
-- `ms-xxl-n10`
-- `ms-xxl-n11`
-- `ms-xxl-n12`
-- `ms-xxl-n13`
-- `ms-xxl-n14`
-- `ms-xxl-n15`
-- `ms-xxl-n16`
-- `ms-xxl-n17`
-- `ms-xxl-n18`
-- `ms-xxl-n19`
-- `ms-xxl-n2`
-- `ms-xxl-n20`
-- `ms-xxl-n3`
-- `ms-xxl-n4`
-- `ms-xxl-n5`
-- `ms-xxl-n6`
-- `ms-xxl-n7`
-- `ms-xxl-n8`
-- `ms-xxl-n9`
-- `mt-0`
-- `mt-1`
-- `mt-10`
-- `mt-11`
-- `mt-12`
-- `mt-13`
-- `mt-14`
-- `mt-15`
-- `mt-16`
-- `mt-17`
-- `mt-18`
-- `mt-19`
-- `mt-2`
-- `mt-20`
-- `mt-3`
-- `mt-4`
-- `mt-5`
-- `mt-6`
-- `mt-7`
-- `mt-8`
-- `mt-9`
-- `mt-auto`
-- `mt-lg-0`
-- `mt-lg-1`
-- `mt-lg-10`
-- `mt-lg-11`
-- `mt-lg-12`
-- `mt-lg-13`
-- `mt-lg-14`
-- `mt-lg-15`
-- `mt-lg-16`
-- `mt-lg-17`
-- `mt-lg-18`
-- `mt-lg-19`
-- `mt-lg-2`
-- `mt-lg-20`
-- `mt-lg-3`
-- `mt-lg-4`
-- `mt-lg-5`
-- `mt-lg-6`
-- `mt-lg-7`
-- `mt-lg-8`
-- `mt-lg-9`
-- `mt-lg-auto`
-- `mt-lg-n1`
-- `mt-lg-n10`
-- `mt-lg-n11`
-- `mt-lg-n12`
-- `mt-lg-n13`
-- `mt-lg-n14`
-- `mt-lg-n15`
-- `mt-lg-n16`
-- `mt-lg-n17`
-- `mt-lg-n18`
-- `mt-lg-n19`
-- `mt-lg-n2`
-- `mt-lg-n20`
-- `mt-lg-n3`
-- `mt-lg-n4`
-- `mt-lg-n5`
-- `mt-lg-n6`
-- `mt-lg-n7`
-- `mt-lg-n8`
-- `mt-lg-n9`
-- `mt-md-0`
-- `mt-md-1`
-- `mt-md-10`
-- `mt-md-11`
-- `mt-md-12`
-- `mt-md-13`
-- `mt-md-14`
-- `mt-md-15`
-- `mt-md-16`
-- `mt-md-17`
-- `mt-md-18`
-- `mt-md-19`
-- `mt-md-2`
-- `mt-md-20`
-- `mt-md-3`
-- `mt-md-4`
-- `mt-md-5`
-- `mt-md-6`
-- `mt-md-7`
-- `mt-md-8`
-- `mt-md-9`
-- `mt-md-auto`
-- `mt-md-n1`
-- `mt-md-n10`
-- `mt-md-n11`
-- `mt-md-n12`
-- `mt-md-n13`
-- `mt-md-n14`
-- `mt-md-n15`
-- `mt-md-n16`
-- `mt-md-n17`
-- `mt-md-n18`
-- `mt-md-n19`
-- `mt-md-n2`
-- `mt-md-n20`
-- `mt-md-n3`
-- `mt-md-n4`
-- `mt-md-n5`
-- `mt-md-n6`
-- `mt-md-n7`
-- `mt-md-n8`
-- `mt-md-n9`
-- `mt-n1`
-- `mt-n10`
-- `mt-n11`
-- `mt-n12`
-- `mt-n13`
-- `mt-n14`
-- `mt-n15`
-- `mt-n16`
-- `mt-n17`
-- `mt-n18`
-- `mt-n19`
-- `mt-n2`
-- `mt-n20`
-- `mt-n3`
-- `mt-n4`
-- `mt-n5`
-- `mt-n6`
-- `mt-n7`
-- `mt-n8`
-- `mt-n9`
-- `mt-sm-0`
-- `mt-sm-1`
-- `mt-sm-10`
-- `mt-sm-11`
-- `mt-sm-12`
-- `mt-sm-13`
-- `mt-sm-14`
-- `mt-sm-15`
-- `mt-sm-16`
-- `mt-sm-17`
-- `mt-sm-18`
-- `mt-sm-19`
-- `mt-sm-2`
-- `mt-sm-20`
-- `mt-sm-3`
-- `mt-sm-4`
-- `mt-sm-5`
-- `mt-sm-6`
-- `mt-sm-7`
-- `mt-sm-8`
-- `mt-sm-9`
-- `mt-sm-auto`
-- `mt-sm-n1`
-- `mt-sm-n10`
-- `mt-sm-n11`
-- `mt-sm-n12`
-- `mt-sm-n13`
-- `mt-sm-n14`
-- `mt-sm-n15`
-- `mt-sm-n16`
-- `mt-sm-n17`
-- `mt-sm-n18`
-- `mt-sm-n19`
-- `mt-sm-n2`
-- `mt-sm-n20`
-- `mt-sm-n3`
-- `mt-sm-n4`
-- `mt-sm-n5`
-- `mt-sm-n6`
-- `mt-sm-n7`
-- `mt-sm-n8`
-- `mt-sm-n9`
-- `mt-xl-0`
-- `mt-xl-1`
-- `mt-xl-10`
-- `mt-xl-11`
-- `mt-xl-12`
-- `mt-xl-13`
-- `mt-xl-14`
-- `mt-xl-15`
-- `mt-xl-16`
-- `mt-xl-17`
-- `mt-xl-18`
-- `mt-xl-19`
-- `mt-xl-2`
-- `mt-xl-20`
-- `mt-xl-3`
-- `mt-xl-4`
-- `mt-xl-5`
-- `mt-xl-6`
-- `mt-xl-7`
-- `mt-xl-8`
-- `mt-xl-9`
-- `mt-xl-auto`
-- `mt-xl-n1`
-- `mt-xl-n10`
-- `mt-xl-n11`
-- `mt-xl-n12`
-- `mt-xl-n13`
-- `mt-xl-n14`
-- `mt-xl-n15`
-- `mt-xl-n16`
-- `mt-xl-n17`
-- `mt-xl-n18`
-- `mt-xl-n19`
-- `mt-xl-n2`
-- `mt-xl-n20`
-- `mt-xl-n3`
-- `mt-xl-n4`
-- `mt-xl-n5`
-- `mt-xl-n6`
-- `mt-xl-n7`
-- `mt-xl-n8`
-- `mt-xl-n9`
-- `mt-xxl-0`
-- `mt-xxl-1`
-- `mt-xxl-10`
-- `mt-xxl-11`
-- `mt-xxl-12`
-- `mt-xxl-13`
-- `mt-xxl-14`
-- `mt-xxl-15`
-- `mt-xxl-16`
-- `mt-xxl-17`
-- `mt-xxl-18`
-- `mt-xxl-19`
-- `mt-xxl-2`
-- `mt-xxl-20`
-- `mt-xxl-3`
-- `mt-xxl-4`
-- `mt-xxl-5`
-- `mt-xxl-6`
-- `mt-xxl-7`
-- `mt-xxl-8`
-- `mt-xxl-9`
-- `mt-xxl-auto`
-- `mt-xxl-n1`
-- `mt-xxl-n10`
-- `mt-xxl-n11`
-- `mt-xxl-n12`
-- `mt-xxl-n13`
-- `mt-xxl-n14`
-- `mt-xxl-n15`
-- `mt-xxl-n16`
-- `mt-xxl-n17`
-- `mt-xxl-n18`
-- `mt-xxl-n19`
-- `mt-xxl-n2`
-- `mt-xxl-n20`
-- `mt-xxl-n3`
-- `mt-xxl-n4`
-- `mt-xxl-n5`
-- `mt-xxl-n6`
-- `mt-xxl-n7`
-- `mt-xxl-n8`
-- `mt-xxl-n9`
-- `mud-appbar`
-- `mud-appbar-dense`
-- `mud-appbar-fixed-bottom`
-- `mud-appbar-fixed-top`
-- `mud-autocomplete`
-- `mud-card`
-- `mud-card-actions`
-- `mud-card-content`
-- `mud-card-header`
-- `mud-card-header-actions`
-- `mud-card-header-content`
-- `mud-card-media`
-- `mud-card::after`
-- `mud-card::before`
-- `mud-carousel`
-- `mud-carousel-elements-rtl`
-- `mud-carousel-item`
-- `mud-carousel-item-exit`
-- `mud-carousel-transition-fade-in`
-- `mud-carousel-transition-fade-out`
-- `mud-carousel-transition-none`
-- `mud-carousel-transition-slide-next-enter`
-- `mud-carousel-transition-slide-next-exit`
-- `mud-carousel-transition-slide-next-rtl-enter`
-- `mud-carousel-transition-slide-next-rtl-exit`
-- `mud-carousel-transition-slide-prev-enter`
-- `mud-carousel-transition-slide-prev-exit`
-- `mud-carousel-transition-slide-prev-rtl-enter`
-- `mud-carousel-transition-slide-prev-rtl-exit`
-- `mud-chart`
-- `mud-chart-donut`
-- `mud-chart-legend`
-- `mud-chart-legend-bottom`
-- `mud-chart-legend-checkbox`
-- `mud-chart-legend-item`
-- `mud-chart-legend-left`
-- `mud-chart-legend-marker`
-- `mud-chart-legend-right`
-- `mud-chart-legend-top`
-- `mud-chart-marker-color-0`
-- `mud-chart-marker-color-1`
-- `mud-chart-marker-color-2`
-- `mud-chart-marker-color-3`
-- `mud-chart-marker-color-4`
-- `mud-chart-pie`
-- `mud-charts-xaxis`
-- `mud-charts-yaxis`
-- `mud-checkbox`
-- `mud-checkbox-dense`
-- `mud-checkbox-input`
-- `mud-checkbox-span`
-- `mud-checked`
-- `mud-chip`
-- `mud-chip-container`
-- `mud-chip-content`
-- `mud-chip-filled`
-- `mud-chip-icon`
-- `mud-chip-label`
-- `mud-chip-selected`
-- `mud-chip-selected:active:not`
-- `mud-chip-selected:focus-visible:not`
-- `mud-chip-size-large`
-- `mud-chip-size-medium`
-- `mud-chip-size-small`
-- `mud-clickable`
-- `mud-clickable:active:not`
-- `mud-clickable:focus-visible:not`
-- `mud-clock-number`
-- `mud-collapse-container`
-- `mud-collapse-entered`
-- `mud-collapse-entering`
-- `mud-collapse-exiting`
-- `mud-collapse-hidden`
-- `mud-collapse-wrapper`
-- `mud-collapse-wrapper-inner`
-- `mud-container`
-- `mud-container--gutters`
-- `mud-container-fixed`
-- `mud-container-maxwidth-lg`
-- `mud-container-maxwidth-md`
-- `mud-container-maxwidth-sm`
-- `mud-container-maxwidth-xl`
-- `mud-container-maxwidth-xs`
-- `mud-container-maxwidth-xxl`
-- `mud-current`
-- `mud-data-grid`
-- `mud-data-grid-columns-panel`
-- `mud-day`
-- `mud-day-label`
-- `mud-dense`
-- `mud-dialog`
-- `mud-dialog-actions`
-- `mud-dialog-bottomcenter`
-- `mud-dialog-bottomleft`
-- `mud-dialog-bottomright`
-- `mud-dialog-center`
-- `mud-dialog-centerleft`
-- `mud-dialog-centerright`
-- `mud-dialog-container`
-- `mud-dialog-content`
-- `mud-dialog-fullscreen`
-- `mud-dialog-no-side-padding`
-- `mud-dialog-rtl`
-- `mud-dialog-title`
-- `mud-dialog-topcenter`
-- `mud-dialog-topleft`
-- `mud-dialog-topright`
-- `mud-dialog-width-false`
-- `mud-dialog-width-full`
-- `mud-dialog-width-lg`
-- `mud-dialog-width-md`
-- `mud-dialog-width-sm`
-- `mud-dialog-width-xl`
-- `mud-dialog-width-xs`
-- `mud-dialog-width-xxl`
-- `mud-direction-asc`
-- `mud-direction-desc`
-- `mud-disabled`
-- `mud-disabled:active`
-- `mud-disabled:before`
-- `mud-disabled:focus-visible`
-- `mud-divider`
-- `mud-divider-absolute`
-- `mud-divider-flexitem`
-- `mud-divider-fullwidth`
-- `mud-divider-inset`
-- `mud-divider-light`
-- `mud-divider-middle`
-- `mud-divider-vertical`
-- `mud-donut-hole`
-- `mud-donut-ring`
-- `mud-donut-segment`
-- `mud-drawer`
-- `mud-drawer--closed`
-- `mud-drawer--closed:not`
-- `mud-drawer--initial`
-- `mud-drawer--initial:not`
-- `mud-drawer--open`
-- `mud-drawer--open:not`
-- `mud-drawer-clipped-always`
-- `mud-drawer-clipped-docked`
-- `mud-drawer-clipped-never`
-- `mud-drawer-close-mini-always`
-- `mud-drawer-close-mini-always-left`
-- `mud-drawer-close-mini-always-right`
-- `mud-drawer-close-mini-lg-left`
-- `mud-drawer-close-mini-lg-right`
-- `mud-drawer-close-mini-md-left`
-- `mud-drawer-close-mini-md-right`
-- `mud-drawer-close-mini-none`
-- `mud-drawer-close-mini-none-left`
-- `mud-drawer-close-mini-none-right`
-- `mud-drawer-close-mini-sm-left`
-- `mud-drawer-close-mini-sm-right`
-- `mud-drawer-close-mini-xl-left`
-- `mud-drawer-close-mini-xl-right`
-- `mud-drawer-close-mini-xs-left`
-- `mud-drawer-close-mini-xs-right`
-- `mud-drawer-close-mini-xxl-left`
-- `mud-drawer-close-mini-xxl-right`
-- `mud-drawer-content`
-- `mud-drawer-fixed`
-- `mud-drawer-header`
-- `mud-drawer-header-dense`
-- `mud-drawer-left-clipped-docked`
-- `mud-drawer-left-clipped-never`
-- `mud-drawer-lg`
-- `mud-drawer-lg:not`
-- `mud-drawer-md`
-- `mud-drawer-md:not`
-- `mud-drawer-mini`
-- `mud-drawer-mini:not`
-- `mud-drawer-open-mini-always`
-- `mud-drawer-open-mini-always-left`
-- `mud-drawer-open-mini-always-right`
-- `mud-drawer-open-mini-lg-left`
-- `mud-drawer-open-mini-lg-right`
-- `mud-drawer-open-mini-md-left`
-- `mud-drawer-open-mini-md-right`
-- `mud-drawer-open-mini-none`
-- `mud-drawer-open-mini-none-left`
-- `mud-drawer-open-mini-none-right`
-- `mud-drawer-open-mini-sm-left`
-- `mud-drawer-open-mini-sm-right`
-- `mud-drawer-open-mini-xl-left`
-- `mud-drawer-open-mini-xl-right`
-- `mud-drawer-open-mini-xs-left`
-- `mud-drawer-open-mini-xs-right`
-- `mud-drawer-open-mini-xxl-left`
-- `mud-drawer-open-mini-xxl-right`
-- `mud-drawer-open-persistent-left`
-- `mud-drawer-open-persistent-left:not`
-- `mud-drawer-open-persistent-right`
-- `mud-drawer-open-persistent-right:not`
-- `mud-drawer-open-responsive-lg-left`
-- `mud-drawer-open-responsive-lg-right`
-- `mud-drawer-open-responsive-md-left`
-- `mud-drawer-open-responsive-md-right`
-- `mud-drawer-open-responsive-sm-left`
-- `mud-drawer-open-responsive-sm-right`
-- `mud-drawer-open-responsive-xl-left`
-- `mud-drawer-open-responsive-xl-right`
-- `mud-drawer-open-responsive-xs-left`
-- `mud-drawer-open-responsive-xs-right`
-- `mud-drawer-open-responsive-xxl-left`
-- `mud-drawer-open-responsive-xxl-right`
-- `mud-drawer-overlay`
-- `mud-drawer-overlay--open`
-- `mud-drawer-overlay-lg`
-- `mud-drawer-overlay-md`
-- `mud-drawer-overlay-mini`
-- `mud-drawer-overlay-responsive`
-- `mud-drawer-overlay-sm`
-- `mud-drawer-overlay-temporary`
-- `mud-drawer-overlay-xl`
-- `mud-drawer-overlay-xs`
-- `mud-drawer-overlay-xxl`
-- `mud-drawer-persistent`
-- `mud-drawer-persistent:not`
-- `mud-drawer-pos-bottom`
-- `mud-drawer-pos-left`
-- `mud-drawer-pos-right`
-- `mud-drawer-pos-top`
-- `mud-drawer-responsive`
-- `mud-drawer-right-clipped-docked`
-- `mud-drawer-right-clipped-never`
-- `mud-drawer-sm`
-- `mud-drawer-sm:not`
-- `mud-drawer-temporary`
-- `mud-drawer-xl`
-- `mud-drawer-xl:not`
-- `mud-drawer-xs`
-- `mud-drawer-xs:not`
-- `mud-drawer-xxl`
-- `mud-drawer-xxl:not`
-- `mud-drawer:not`
-- `mud-drop-item-preview-start`
-- `mud-drop-item:not`
-- `mud-drop-zone`
-- `mud-drop-zone-can-drop`
-- `mud-drop-zone-drag-block`
-- `mud-drop-zone-no-drop`
-- `mud-dynamic-tabs`
-- `mud-expand-panel`
-- `mud-expand-panel-content`
-- `mud-expand-panel-dense`
-- `mud-expand-panel-gutters`
-- `mud-expand-panel-header`
-- `mud-expand-panel-icon`
-- `mud-expand-panel:first-child`
-- `mud-expand-panel:last-child`
-- `mud-expanded`
-- `mud-expansion-panels`
-- `mud-expansion-panels-square`
-- `mud-fab`
-- `mud-fab-color-inherit`
-- `mud-fab-extended`
-- `mud-fab-label`
-- `mud-fab-size-large`
-- `mud-fab-size-medium`
-- `mud-fab-size-small`
-- `mud-fab:active`
-- `mud-fab:disabled`
-- `mud-fab:focus-visible`
-- `mud-field`
-- `mud-file-upload`
-- `mud-flex-break`
-- `mud-flip-x-rtl`
-- `mud-focus-trap`
-- `mud-focus-trap-child-container`
-- `mud-focus-visible`
-- `mud-focused`
-- `mud-form`
-- `mud-grid`
-- `mud-grid-item`
-- `mud-grid-item-lg-1`
-- `mud-grid-item-lg-10`
-- `mud-grid-item-lg-11`
-- `mud-grid-item-lg-12`
-- `mud-grid-item-lg-2`
-- `mud-grid-item-lg-3`
-- `mud-grid-item-lg-4`
-- `mud-grid-item-lg-5`
-- `mud-grid-item-lg-6`
-- `mud-grid-item-lg-7`
-- `mud-grid-item-lg-8`
-- `mud-grid-item-lg-9`
-- `mud-grid-item-lg-auto`
-- `mud-grid-item-lg-true`
-- `mud-grid-item-md-1`
-- `mud-grid-item-md-10`
-- `mud-grid-item-md-11`
-- `mud-grid-item-md-12`
-- `mud-grid-item-md-2`
-- `mud-grid-item-md-3`
-- `mud-grid-item-md-4`
-- `mud-grid-item-md-5`
-- `mud-grid-item-md-6`
-- `mud-grid-item-md-7`
-- `mud-grid-item-md-8`
-- `mud-grid-item-md-9`
-- `mud-grid-item-md-auto`
-- `mud-grid-item-md-true`
-- `mud-grid-item-sm-1`
-- `mud-grid-item-sm-10`
-- `mud-grid-item-sm-11`
-- `mud-grid-item-sm-12`
-- `mud-grid-item-sm-2`
-- `mud-grid-item-sm-3`
-- `mud-grid-item-sm-4`
-- `mud-grid-item-sm-5`
-- `mud-grid-item-sm-6`
-- `mud-grid-item-sm-7`
-- `mud-grid-item-sm-8`
-- `mud-grid-item-sm-9`
-- `mud-grid-item-sm-auto`
-- `mud-grid-item-sm-true`
-- `mud-grid-item-xl-1`
-- `mud-grid-item-xl-10`
-- `mud-grid-item-xl-11`
-- `mud-grid-item-xl-12`
-- `mud-grid-item-xl-2`
-- `mud-grid-item-xl-3`
-- `mud-grid-item-xl-4`
-- `mud-grid-item-xl-5`
-- `mud-grid-item-xl-6`
-- `mud-grid-item-xl-7`
-- `mud-grid-item-xl-8`
-- `mud-grid-item-xl-9`
-- `mud-grid-item-xl-auto`
-- `mud-grid-item-xl-true`
-- `mud-grid-item-xs-1`
-- `mud-grid-item-xs-10`
-- `mud-grid-item-xs-11`
-- `mud-grid-item-xs-12`
-- `mud-grid-item-xs-2`
-- `mud-grid-item-xs-3`
-- `mud-grid-item-xs-4`
-- `mud-grid-item-xs-5`
-- `mud-grid-item-xs-6`
-- `mud-grid-item-xs-7`
-- `mud-grid-item-xs-8`
-- `mud-grid-item-xs-9`
-- `mud-grid-item-xs-auto`
-- `mud-grid-item-xs-true`
-- `mud-grid-item-xxl-1`
-- `mud-grid-item-xxl-10`
-- `mud-grid-item-xxl-11`
-- `mud-grid-item-xxl-12`
-- `mud-grid-item-xxl-2`
-- `mud-grid-item-xxl-3`
-- `mud-grid-item-xxl-4`
-- `mud-grid-item-xxl-5`
-- `mud-grid-item-xxl-6`
-- `mud-grid-item-xxl-7`
-- `mud-grid-item-xxl-8`
-- `mud-grid-item-xxl-9`
-- `mud-grid-item-xxl-auto`
-- `mud-grid-item-xxl-true`
-- `mud-grid-spacing-xs-1`
-- `mud-grid-spacing-xs-10`
-- `mud-grid-spacing-xs-11`
-- `mud-grid-spacing-xs-12`
-- `mud-grid-spacing-xs-13`
-- `mud-grid-spacing-xs-14`
-- `mud-grid-spacing-xs-15`
-- `mud-grid-spacing-xs-16`
-- `mud-grid-spacing-xs-17`
-- `mud-grid-spacing-xs-18`
-- `mud-grid-spacing-xs-19`
-- `mud-grid-spacing-xs-2`
-- `mud-grid-spacing-xs-20`
-- `mud-grid-spacing-xs-3`
-- `mud-grid-spacing-xs-4`
-- `mud-grid-spacing-xs-5`
-- `mud-grid-spacing-xs-6`
-- `mud-grid-spacing-xs-7`
-- `mud-grid-spacing-xs-8`
-- `mud-grid-spacing-xs-9`
-- `mud-height-full`
-- `mud-hidden`
-- `mud-hour:after`
-- `mud-icon-default`
-- `mud-icon-root`
-- `mud-icon-root:first-child`
-- `mud-icon-root:focus`
-- `mud-icon-size-large`
-- `mud-icon-size-medium`
-- `mud-icon-size-small`
-- `mud-image`
-- `mud-input`
-- `mud-input-adorned-end`
-- `mud-input-adorned-start`
-- `mud-input-adornment`
-- `mud-input-adornment-disable-pointerevents`
-- `mud-input-adornment-end`
-- `mud-input-adornment-start`
-- `mud-input-control`
-- `mud-input-control-boolean-input`
-- `mud-input-control-full-width`
-- `mud-input-control-helper-container`
-- `mud-input-control-input-container`
-- `mud-input-control-margin-dense`
-- `mud-input-control-margin-normal`
-- `mud-input-control:focus-within`
-- `mud-input-filled`
-- `mud-input-full-width`
-- `mud-input-helper-onfocus`
-- `mud-input-label`
-- `mud-input-label-animated`
-- `mud-input-label-filled`
-- `mud-input-label-inputcontrol`
-- `mud-input-label-margin-dense`
-- `mud-input-label-margindense`
-- `mud-input-label-shrink`
-- `mud-input-label::after`
-- `mud-input-number-control`
-- `mud-input-numeric-spin`
-- `mud-input-required`
-- `mud-input-root`
-- `mud-input-root-adorned-end`
-- `mud-input-root-adorned-start`
-- `mud-input-root-filled`
-- `mud-input-root-filled-shrink`
-- `mud-input-root-filled:-webkit-autofill`
-- `mud-input-root-hidden-label`
-- `mud-input-root-margin-dense`
-- `mud-input-root-multiline`
-- `mud-input-root-type-search`
-- `mud-input-root:-moz-placeholder`
-- `mud-input-root:-ms-input-placeholder`
-- `mud-input-root:-webkit-autofill`
-- `mud-input-root::-moz-placeholder`
-- `mud-input-root::-ms-input-placeholder`
-- `mud-input-root::-webkit-input-placeholder`
-- `mud-input-root::-webkit-scrollbar`
-- `mud-input-root::-webkit-scrollbar-thumb`
-- `mud-input-root::-webkit-scrollbar-track`
-- `mud-input-root::placeholder`
-- `mud-input-root:active`
-- `mud-input-root:disabled`
-- `mud-input-root:focus`
-- `mud-input-root:invalid`
-- `mud-input-showspin`
-- `mud-input-slot`
-- `mud-input-slot-nopadding`
-- `mud-input-slot::-ms-clear`
-- `mud-input-slot::-ms-reveal`
-- `mud-input-underline`
-- `mud-input-underline:after`
-- `mud-input-underline:before`
-- `mud-input-underline:not`
-- `mud-input:before`
-- `mud-input:focus-within`
-- `mud-input:not`
-- `mud-inputafter`
-- `mud-lg-table`
-- `mud-link`
-- `mud-link-disabled`
-- `mud-link-disabled:not`
-- `mud-link-underline-always`
-- `mud-link-underline-none`
-- `mud-list`
-- `mud-list-item`
-- `mud-list-item-clickable`
-- `mud-list-item-clickable:active`
-- `mud-list-item-clickable:focus:not`
-- `mud-list-item-dense`
-- `mud-list-item-disabled`
-- `mud-list-item-gutters`
-- `mud-list-item-icon`
-- `mud-list-padding`
-- `mud-list-subheader`
-- `mud-list-subheader-gutters`
-- `mud-list-subheader-inset`
-- `mud-list-subheader-sticky`
-- `mud-ltr`
-- `mud-main-content`
-- `mud-md-table`
-- `mud-menu`
-- `mud-menu-activator`
-- `mud-minute:after`
-- `mud-nav-group`
-- `mud-nav-group-disabled`
-- `mud-nav-item`
-- `mud-nav-link`
-- `mud-nav-link-disabled`
-- `mud-nav-link-expand-icon`
-- `mud-nav-link-icon`
-- `mud-nav-link-icon-default`
-- `mud-nav-link:focus:not`
-- `mud-nav-link:not`
-- `mud-navgroup-collapse`
-- `mud-navmenu`
-- `mud-navmenu-default`
-- `mud-navmenu-dense`
-- `mud-navmenu-margin-dense`
-- `mud-navmenu-margin-normal`
-- `mud-navmenu-rounded`
-- `mud-nested-list`
-- `mud-onclock-minute`
-- `mud-overlay`
-- `mud-overlay-absolute`
-- `mud-overlay-content`
-- `mud-overlay-dialog`
-- `mud-overlay-drawer`
-- `mud-overlay-light`
-- `mud-overlay-popover`
-- `mud-overlay-scrim`
-- `mud-pagination`
-- `mud-pagination-filled`
-- `mud-pagination-item`
-- `mud-pagination-item-rectangular`
-- `mud-pagination-item-selected`
-- `mud-pagination-item:not`
-- `mud-pagination-large`
-- `mud-pagination-rtl`
-- `mud-pagination-small`
-- `mud-panel-expanded`
-- `mud-panel-expanded:first-child`
-- `mud-panel-expanded:last-child`
-- `mud-panel-next-expanded`
-- `mud-paper`
-- `mud-paper-square`
-- `mud-picker`
-- `mud-picker-actions`
-- `mud-picker-calendar`
-- `mud-picker-calendar-container`
-- `mud-picker-calendar-content`
-- `mud-picker-calendar-content-1`
-- `mud-picker-calendar-content-2`
-- `mud-picker-calendar-content:not`
-- `mud-picker-calendar-header-1`
-- `mud-picker-calendar-header-10`
-- `mud-picker-calendar-header-11`
-- `mud-picker-calendar-header-12`
-- `mud-picker-calendar-header-2`
-- `mud-picker-calendar-header-3`
-- `mud-picker-calendar-header-4`
-- `mud-picker-calendar-header-5`
-- `mud-picker-calendar-header-6`
-- `mud-picker-calendar-header-7`
-- `mud-picker-calendar-header-8`
-- `mud-picker-calendar-header-9`
-- `mud-picker-calendar-header-day`
-- `mud-picker-calendar-header-last`
-- `mud-picker-calendar-header-switch`
-- `mud-picker-calendar-header-transition`
-- `mud-picker-calendar-transition`
-- `mud-picker-calendar-week`
-- `mud-picker-color-collection`
-- `mud-picker-color-content`
-- `mud-picker-color-controls`
-- `mud-picker-color-controls-row`
-- `mud-picker-color-dot`
-- `mud-picker-color-dot-current`
-- `mud-picker-color-fill`
-- `mud-picker-color-grid`
-- `mud-picker-color-inputfield`
-- `mud-picker-color-inputfield:last-of-type`
-- `mud-picker-color-inputs`
-- `mud-picker-color-overlay`
-- `mud-picker-color-picker`
-- `mud-picker-color-selector`
-- `mud-picker-color-slider`
-- `mud-picker-color-sliders`
-- `mud-picker-color-view`
-- `mud-picker-color-view-collection`
-- `mud-picker-container`
-- `mud-picker-container-landscape`
-- `mud-picker-content`
-- `mud-picker-content-landscape`
-- `mud-picker-control-switch`
-- `mud-picker-datepicker-date-landscape`
-- `mud-picker-hidden`
-- `mud-picker-inline`
-- `mud-picker-inline-paper`
-- `mud-picker-month`
-- `mud-picker-month-container`
-- `mud-picker-month-selected`
-- `mud-picker-open`
-- `mud-picker-popover-paper`
-- `mud-picker-pos-above`
-- `mud-picker-pos-below`
-- `mud-picker-pos-bottom`
-- `mud-picker-pos-left`
-- `mud-picker-pos-right`
-- `mud-picker-pos-top`
-- `mud-picker-slide-transition`
-- `mud-picker-static`
-- `mud-picker-stick`
-- `mud-picker-stick-inner`
-- `mud-picker-stick-outer`
-- `mud-picker-time-clock`
-- `mud-picker-time-clock-mask`
-- `mud-picker-time-clock-pin`
-- `mud-picker-time-clock-pointer`
-- `mud-picker-time-clock-pointer-thumb`
-- `mud-picker-time-container`
-- `mud-picker-view`
-- `mud-picker-year`
-- `mud-picker-year-container`
-- `mud-picker-year-selected`
-- `mud-popover`
-- `mud-popover-cascading-value`
-- `mud-popover-fixed`
-- `mud-popover-open`
-- `mud-popover-relative-width`
-- `mud-popover:not`
-- `mud-radio`
-- `mud-radio-content`
-- `mud-radio-content-placement-bottom`
-- `mud-radio-content-placement-end`
-- `mud-radio-content-placement-start`
-- `mud-radio-content-placement-top`
-- `mud-radio-dense`
-- `mud-radio-icon-checked`
-- `mud-radio-icons`
-- `mud-radio-input`
-- `mud-radio-with-content`
-- `mud-range`
-- `mud-range-between`
-- `mud-range-end-selected`
-- `mud-range-input-separator`
-- `mud-range-selection:not`
-- `mud-range-start-selected`
-- `mud-rating-input`
-- `mud-rating-item`
-- `mud-rating-item-active`
-- `mud-rating-root`
-- `mud-rating-root:active`
-- `mud-rating-root:active:not`
-- `mud-rating-root:focus-visible`
-- `mud-rating-root:focus-visible:not`
-- `mud-readonly`
-- `mud-resizer`
-- `mud-resizing`
-- `mud-rounded`
-- `mud-rtl`
-- `mud-rtl-provider`
-- `mud-scroll-to-top`
-- `mud-scroll-to-top:after`
-- `mud-select`
-- `mud-select-all`
-- `mud-select-input`
-- `mud-select-input:disabled`
-- `mud-selected`
-- `mud-selected-item`
-- `mud-shrink`
-- `mud-simple-table`
-- `mud-slider`
-- `mud-slider-container`
-- `mud-slider-filled`
-- `mud-slider-inner-container`
-- `mud-slider-input`
-- `mud-slider-input::-moz-range-thumb`
-- `mud-slider-input::-moz-range-track`
-- `mud-slider-input::-webkit-slider-runnable-track`
-- `mud-slider-input::-webkit-slider-thumb`
-- `mud-slider-input:active`
-- `mud-slider-input:active::-moz-range-thumb`
-- `mud-slider-input:active::-webkit-slider-thumb`
-- `mud-slider-input:disabled`
-- `mud-slider-input:disabled::-moz-range-thumb`
-- `mud-slider-input:disabled::-moz-range-track`
-- `mud-slider-input:disabled::-webkit-slider-runnable-track`
-- `mud-slider-input:disabled::-webkit-slider-thumb`
-- `mud-slider-input:focus`
-- `mud-slider-input:focus-visible::-moz-range-thumb`
-- `mud-slider-input:focus-visible::-webkit-slider-thumb`
-- `mud-slider-large`
-- `mud-slider-medium`
-- `mud-slider-small`
-- `mud-slider-tickmarks`
-- `mud-slider-track-tick`
-- `mud-slider-track-tick-label`
-- `mud-slider-value-label`
-- `mud-slider-vertical`
-- `mud-sm-table`
-- `mud-snackbar`
-- `mud-snackbar-blurred`
-- `mud-snackbar-content-action`
-- `mud-snackbar-content-message`
-- `mud-snackbar-icon`
-- `mud-snackbar-location-bottom-center`
-- `mud-snackbar-location-bottom-left`
-- `mud-snackbar-location-bottom-right`
-- `mud-snackbar-location-top-center`
-- `mud-snackbar-location-top-left`
-- `mud-snackbar-location-top-right`
-- `mud-snackbar-surface`
-- `mud-sort-index`
-- `mud-square`
-- `mud-step`
-- `mud-step-disabled`
-- `mud-step-label`
-- `mud-step-label-content`
-- `mud-step-label-content-title`
-- `mud-step-label-icon`
-- `mud-stepper`
-- `mud-stepper-content`
-- `mud-stepper-nav`
-- `mud-stepper-nav-connector`
-- `mud-stepper-nav-connector-line`
-- `mud-stepper-nav-scrollable`
-- `mud-stepper__center-labels`
-- `mud-stepper__horizontal`
-- `mud-stepper__vertical`
-- `mud-svg-icon`
-- `mud-switch`
-- `mud-switch-base`
-- `mud-switch-base-large`
-- `mud-switch-base-medium`
-- `mud-switch-base-small`
-- `mud-switch-disabled`
-- `mud-switch-disabled:active`
-- `mud-switch-disabled:focus-visible`
-- `mud-switch-input`
-- `mud-switch-label-large`
-- `mud-switch-label-medium`
-- `mud-switch-label-small`
-- `mud-switch-span`
-- `mud-switch-span-large`
-- `mud-switch-span-medium`
-- `mud-switch-span-small`
-- `mud-switch-thumb-large`
-- `mud-switch-thumb-medium`
-- `mud-switch-thumb-small`
-- `mud-switch-track`
-- `mud-tab`
-- `mud-tab-active`
-- `mud-tab-slider`
-- `mud-tab-slider-horizontal`
-- `mud-tab-slider-horizontal-reverse`
-- `mud-tab-slider-vertical`
-- `mud-tab-slider-vertical-reverse`
-- `mud-table`
-- `mud-table-body`
-- `mud-table-body:last-child`
-- `mud-table-cell`
-- `mud-table-cell-align-center`
-- `mud-table-cell-align-justify`
-- `mud-table-cell-align-left`
-- `mud-table-cell-align-right`
-- `mud-table-cell-checkbox`
-- `mud-table-cell-footer`
-- `mud-table-cell-hide`
-- `mud-table-cell:before`
-- `mud-table-cell:first-child`
-- `mud-table-cell:last-child`
-- `mud-table-cell:not`
-- `mud-table-cell:only-child`
-- `mud-table-container`
-- `mud-table-dense`
-- `mud-table-empty-row`
-- `mud-table-foot`
-- `mud-table-foot:last-child`
-- `mud-table-head`
-- `mud-table-loading`
-- `mud-table-pagination`
-- `mud-table-pagination-actions`
-- `mud-table-pagination-caption`
-- `mud-table-pagination-display`
-- `mud-table-pagination-select`
-- `mud-table-pagination-spacer`
-- `mud-table-pagination:last-child`
-- `mud-table-root`
-- `mud-table-row`
-- `mud-table-row-expander`
-- `mud-table-row-group-indented-1`
-- `mud-table-row-group-indented-2`
-- `mud-table-row-group-indented-3`
-- `mud-table-row-group-indented-4`
-- `mud-table-row-group-indented-5`
-- `mud-table-row:last-child`
-- `mud-table-row:nth-of-type`
-- `mud-table-small-alignright`
-- `mud-table-smalldevices-sortselect`
-- `mud-table-sort-label`
-- `mud-table-sort-label-icon`
-- `mud-table-square`
-- `mud-table-sticky-footer`
-- `mud-table-sticky-header`
-- `mud-table-striped`
-- `mud-tablepager-left`
-- `mud-tablepager-right`
-- `mud-tabs`
-- `mud-tabs-centered`
-- `mud-tabs-header`
-- `mud-tabs-header-after`
-- `mud-tabs-header-before`
-- `mud-tabs-panel-header`
-- `mud-tabs-panel-header-after`
-- `mud-tabs-panel-header-before`
-- `mud-tabs-panels`
-- `mud-tabs-reverse`
-- `mud-tabs-rounded`
-- `mud-tabs-tabbar`
-- `mud-tabs-tabbar-content`
-- `mud-tabs-tabbar-inner`
-- `mud-tabs-tabbar-wrapper`
-- `mud-tabs-vertical`
-- `mud-tabs-vertical-reverse`
-- `mud-time-picker-dial`
-- `mud-time-picker-dial-hidden`
-- `mud-time-picker-dial-out`
-- `mud-time-picker-hour`
-- `mud-time-picker-minute`
-- `mud-timeline`
-- `mud-timeline-align-end`
-- `mud-timeline-align-start`
-- `mud-timeline-dot-default`
-- `mud-timeline-dot-fill`
-- `mud-timeline-dot-size-large`
-- `mud-timeline-dot-size-medium`
-- `mud-timeline-dot-size-small`
-- `mud-timeline-horizontal`
-- `mud-timeline-horizontal::before`
-- `mud-timeline-item`
-- `mud-timeline-item-content`
-- `mud-timeline-item-divider`
-- `mud-timeline-item-dot`
-- `mud-timeline-item-dot-inner`
-- `mud-timeline-item-end`
-- `mud-timeline-item-opposite`
-- `mud-timeline-item-start`
-- `mud-timeline-item:nth-child`
-- `mud-timeline-modifiers`
-- `mud-timeline-position-alternate`
-- `mud-timeline-position-alternate::before`
-- `mud-timeline-position-bottom`
-- `mud-timeline-position-bottom::before`
-- `mud-timeline-position-end`
-- `mud-timeline-position-end::before`
-- `mud-timeline-position-end:not`
-- `mud-timeline-position-start`
-- `mud-timeline-position-start::before`
-- `mud-timeline-position-start:not`
-- `mud-timeline-position-top`
-- `mud-timeline-position-top::before`
-- `mud-timeline-reverse`
-- `mud-timeline-reverse:not`
-- `mud-timeline-rtl`
-- `mud-timeline-rtl::before`
-- `mud-timeline-rtl:not`
-- `mud-timeline-vertical`
-- `mud-timeline-vertical::before`
-- `mud-timepicker-ampm`
-- `mud-timepicker-hourminute`
-- `mud-timepicker-separator`
-- `mud-toggle-group`
-- `mud-toggle-group-horizontal`
-- `mud-toggle-group-horizontal:not`
-- `mud-toggle-group-rtl`
-- `mud-toggle-group-vertical`
-- `mud-toggle-item`
-- `mud-toggle-item-check-icon`
-- `mud-toggle-item-content`
-- `mud-toggle-item-delimiter`
-- `mud-toggle-item-fixed`
-- `mud-toggle-item-size-large`
-- `mud-toggle-item-size-small`
-- `mud-toggle-item:not`
-- `mud-transform`
-- `mud-transform-disabled`
-- `mud-treeview`
-- `mud-treeview-dense`
-- `mud-treeview-group`
-- `mud-treeview-item`
-- `mud-treeview-item-arrow`
-- `mud-treeview-item-arrow-expand`
-- `mud-treeview-item-arrow-load`
-- `mud-treeview-item-checkbox`
-- `mud-treeview-item-content`
-- `mud-treeview-item-disabled`
-- `mud-treeview-item-icon`
-- `mud-treeview-item-label`
-- `mud-treeview-item-selected`
-- `mud-treeview-select-none`
-- `mud-width-full`
-- `mud-xl-table`
-- `mud-xs-table`
-- `mud-xxl-table`
-- `mx-0`
-- `mx-1`
-- `mx-10`
-- `mx-11`
-- `mx-12`
-- `mx-13`
-- `mx-14`
-- `mx-15`
-- `mx-16`
-- `mx-17`
-- `mx-18`
-- `mx-19`
-- `mx-2`
-- `mx-20`
-- `mx-3`
-- `mx-4`
-- `mx-5`
-- `mx-6`
-- `mx-7`
-- `mx-8`
-- `mx-9`
-- `mx-auto`
-- `mx-lg-0`
-- `mx-lg-1`
-- `mx-lg-10`
-- `mx-lg-11`
-- `mx-lg-12`
-- `mx-lg-13`
-- `mx-lg-14`
-- `mx-lg-15`
-- `mx-lg-16`
-- `mx-lg-17`
-- `mx-lg-18`
-- `mx-lg-19`
-- `mx-lg-2`
-- `mx-lg-20`
-- `mx-lg-3`
-- `mx-lg-4`
-- `mx-lg-5`
-- `mx-lg-6`
-- `mx-lg-7`
-- `mx-lg-8`
-- `mx-lg-9`
-- `mx-lg-auto`
-- `mx-lg-n1`
-- `mx-lg-n10`
-- `mx-lg-n11`
-- `mx-lg-n12`
-- `mx-lg-n13`
-- `mx-lg-n14`
-- `mx-lg-n15`
-- `mx-lg-n16`
-- `mx-lg-n17`
-- `mx-lg-n18`
-- `mx-lg-n19`
-- `mx-lg-n2`
-- `mx-lg-n20`
-- `mx-lg-n3`
-- `mx-lg-n4`
-- `mx-lg-n5`
-- `mx-lg-n6`
-- `mx-lg-n7`
-- `mx-lg-n8`
-- `mx-lg-n9`
-- `mx-md-0`
-- `mx-md-1`
-- `mx-md-10`
-- `mx-md-11`
-- `mx-md-12`
-- `mx-md-13`
-- `mx-md-14`
-- `mx-md-15`
-- `mx-md-16`
-- `mx-md-17`
-- `mx-md-18`
-- `mx-md-19`
-- `mx-md-2`
-- `mx-md-20`
-- `mx-md-3`
-- `mx-md-4`
-- `mx-md-5`
-- `mx-md-6`
-- `mx-md-7`
-- `mx-md-8`
-- `mx-md-9`
-- `mx-md-auto`
-- `mx-md-n1`
-- `mx-md-n10`
-- `mx-md-n11`
-- `mx-md-n12`
-- `mx-md-n13`
-- `mx-md-n14`
-- `mx-md-n15`
-- `mx-md-n16`
-- `mx-md-n17`
-- `mx-md-n18`
-- `mx-md-n19`
-- `mx-md-n2`
-- `mx-md-n20`
-- `mx-md-n3`
-- `mx-md-n4`
-- `mx-md-n5`
-- `mx-md-n6`
-- `mx-md-n7`
-- `mx-md-n8`
-- `mx-md-n9`
-- `mx-n1`
-- `mx-n10`
-- `mx-n11`
-- `mx-n12`
-- `mx-n13`
-- `mx-n14`
-- `mx-n15`
-- `mx-n16`
-- `mx-n17`
-- `mx-n18`
-- `mx-n19`
-- `mx-n2`
-- `mx-n20`
-- `mx-n3`
-- `mx-n4`
-- `mx-n5`
-- `mx-n6`
-- `mx-n7`
-- `mx-n8`
-- `mx-n9`
-- `mx-sm-0`
-- `mx-sm-1`
-- `mx-sm-10`
-- `mx-sm-11`
-- `mx-sm-12`
-- `mx-sm-13`
-- `mx-sm-14`
-- `mx-sm-15`
-- `mx-sm-16`
-- `mx-sm-17`
-- `mx-sm-18`
-- `mx-sm-19`
-- `mx-sm-2`
-- `mx-sm-20`
-- `mx-sm-3`
-- `mx-sm-4`
-- `mx-sm-5`
-- `mx-sm-6`
-- `mx-sm-7`
-- `mx-sm-8`
-- `mx-sm-9`
-- `mx-sm-auto`
-- `mx-sm-n1`
-- `mx-sm-n10`
-- `mx-sm-n11`
-- `mx-sm-n12`
-- `mx-sm-n13`
-- `mx-sm-n14`
-- `mx-sm-n15`
-- `mx-sm-n16`
-- `mx-sm-n17`
-- `mx-sm-n18`
-- `mx-sm-n19`
-- `mx-sm-n2`
-- `mx-sm-n20`
-- `mx-sm-n3`
-- `mx-sm-n4`
-- `mx-sm-n5`
-- `mx-sm-n6`
-- `mx-sm-n7`
-- `mx-sm-n8`
-- `mx-sm-n9`
-- `mx-xl-0`
-- `mx-xl-1`
-- `mx-xl-10`
-- `mx-xl-11`
-- `mx-xl-12`
-- `mx-xl-13`
-- `mx-xl-14`
-- `mx-xl-15`
-- `mx-xl-16`
-- `mx-xl-17`
-- `mx-xl-18`
-- `mx-xl-19`
-- `mx-xl-2`
-- `mx-xl-20`
-- `mx-xl-3`
-- `mx-xl-4`
-- `mx-xl-5`
-- `mx-xl-6`
-- `mx-xl-7`
-- `mx-xl-8`
-- `mx-xl-9`
-- `mx-xl-auto`
-- `mx-xl-n1`
-- `mx-xl-n10`
-- `mx-xl-n11`
-- `mx-xl-n12`
-- `mx-xl-n13`
-- `mx-xl-n14`
-- `mx-xl-n15`
-- `mx-xl-n16`
-- `mx-xl-n17`
-- `mx-xl-n18`
-- `mx-xl-n19`
-- `mx-xl-n2`
-- `mx-xl-n20`
-- `mx-xl-n3`
-- `mx-xl-n4`
-- `mx-xl-n5`
-- `mx-xl-n6`
-- `mx-xl-n7`
-- `mx-xl-n8`
-- `mx-xl-n9`
-- `mx-xxl-0`
-- `mx-xxl-1`
-- `mx-xxl-10`
-- `mx-xxl-11`
-- `mx-xxl-12`
-- `mx-xxl-13`
-- `mx-xxl-14`
-- `mx-xxl-15`
-- `mx-xxl-16`
-- `mx-xxl-17`
-- `mx-xxl-18`
-- `mx-xxl-19`
-- `mx-xxl-2`
-- `mx-xxl-20`
-- `mx-xxl-3`
-- `mx-xxl-4`
-- `mx-xxl-5`
-- `mx-xxl-6`
-- `mx-xxl-7`
-- `mx-xxl-8`
-- `mx-xxl-9`
-- `mx-xxl-auto`
-- `mx-xxl-n1`
-- `mx-xxl-n10`
-- `mx-xxl-n11`
-- `mx-xxl-n12`
-- `mx-xxl-n13`
-- `mx-xxl-n14`
-- `mx-xxl-n15`
-- `mx-xxl-n16`
-- `mx-xxl-n17`
-- `mx-xxl-n18`
-- `mx-xxl-n19`
-- `mx-xxl-n2`
-- `mx-xxl-n20`
-- `mx-xxl-n3`
-- `mx-xxl-n4`
-- `mx-xxl-n5`
-- `mx-xxl-n6`
-- `mx-xxl-n7`
-- `mx-xxl-n8`
-- `mx-xxl-n9`
-- `my-0`
-- `my-1`
-- `my-10`
-- `my-11`
-- `my-12`
-- `my-13`
-- `my-14`
-- `my-15`
-- `my-16`
-- `my-17`
-- `my-18`
-- `my-19`
-- `my-2`
-- `my-20`
-- `my-3`
-- `my-4`
-- `my-5`
-- `my-6`
-- `my-7`
-- `my-8`
-- `my-9`
-- `my-auto`
-- `my-lg-0`
-- `my-lg-1`
-- `my-lg-10`
-- `my-lg-11`
-- `my-lg-12`
-- `my-lg-13`
-- `my-lg-14`
-- `my-lg-15`
-- `my-lg-16`
-- `my-lg-17`
-- `my-lg-18`
-- `my-lg-19`
-- `my-lg-2`
-- `my-lg-20`
-- `my-lg-3`
-- `my-lg-4`
-- `my-lg-5`
-- `my-lg-6`
-- `my-lg-7`
-- `my-lg-8`
-- `my-lg-9`
-- `my-lg-auto`
-- `my-lg-n1`
-- `my-lg-n10`
-- `my-lg-n11`
-- `my-lg-n12`
-- `my-lg-n13`
-- `my-lg-n14`
-- `my-lg-n15`
-- `my-lg-n16`
-- `my-lg-n17`
-- `my-lg-n18`
-- `my-lg-n19`
-- `my-lg-n2`
-- `my-lg-n20`
-- `my-lg-n3`
-- `my-lg-n4`
-- `my-lg-n5`
-- `my-lg-n6`
-- `my-lg-n7`
-- `my-lg-n8`
-- `my-lg-n9`
-- `my-md-0`
-- `my-md-1`
-- `my-md-10`
-- `my-md-11`
-- `my-md-12`
-- `my-md-13`
-- `my-md-14`
-- `my-md-15`
-- `my-md-16`
-- `my-md-17`
-- `my-md-18`
-- `my-md-19`
-- `my-md-2`
-- `my-md-20`
-- `my-md-3`
-- `my-md-4`
-- `my-md-5`
-- `my-md-6`
-- `my-md-7`
-- `my-md-8`
-- `my-md-9`
-- `my-md-auto`
-- `my-md-n1`
-- `my-md-n10`
-- `my-md-n11`
-- `my-md-n12`
-- `my-md-n13`
-- `my-md-n14`
-- `my-md-n15`
-- `my-md-n16`
-- `my-md-n17`
-- `my-md-n18`
-- `my-md-n19`
-- `my-md-n2`
-- `my-md-n20`
-- `my-md-n3`
-- `my-md-n4`
-- `my-md-n5`
-- `my-md-n6`
-- `my-md-n7`
-- `my-md-n8`
-- `my-md-n9`
-- `my-n1`
-- `my-n10`
-- `my-n11`
-- `my-n12`
-- `my-n13`
-- `my-n14`
-- `my-n15`
-- `my-n16`
-- `my-n17`
-- `my-n18`
-- `my-n19`
-- `my-n2`
-- `my-n20`
-- `my-n3`
-- `my-n4`
-- `my-n5`
-- `my-n6`
-- `my-n7`
-- `my-n8`
-- `my-n9`
-- `my-sm-0`
-- `my-sm-1`
-- `my-sm-10`
-- `my-sm-11`
-- `my-sm-12`
-- `my-sm-13`
-- `my-sm-14`
-- `my-sm-15`
-- `my-sm-16`
-- `my-sm-17`
-- `my-sm-18`
-- `my-sm-19`
-- `my-sm-2`
-- `my-sm-20`
-- `my-sm-3`
-- `my-sm-4`
-- `my-sm-5`
-- `my-sm-6`
-- `my-sm-7`
-- `my-sm-8`
-- `my-sm-9`
-- `my-sm-auto`
-- `my-sm-n1`
-- `my-sm-n10`
-- `my-sm-n11`
-- `my-sm-n12`
-- `my-sm-n13`
-- `my-sm-n14`
-- `my-sm-n15`
-- `my-sm-n16`
-- `my-sm-n17`
-- `my-sm-n18`
-- `my-sm-n19`
-- `my-sm-n2`
-- `my-sm-n20`
-- `my-sm-n3`
-- `my-sm-n4`
-- `my-sm-n5`
-- `my-sm-n6`
-- `my-sm-n7`
-- `my-sm-n8`
-- `my-sm-n9`
-- `my-xl-0`
-- `my-xl-1`
-- `my-xl-10`
-- `my-xl-11`
-- `my-xl-12`
-- `my-xl-13`
-- `my-xl-14`
-- `my-xl-15`
-- `my-xl-16`
-- `my-xl-17`
-- `my-xl-18`
-- `my-xl-19`
-- `my-xl-2`
-- `my-xl-20`
-- `my-xl-3`
-- `my-xl-4`
-- `my-xl-5`
-- `my-xl-6`
-- `my-xl-7`
-- `my-xl-8`
-- `my-xl-9`
-- `my-xl-auto`
-- `my-xl-n1`
-- `my-xl-n10`
-- `my-xl-n11`
-- `my-xl-n12`
-- `my-xl-n13`
-- `my-xl-n14`
-- `my-xl-n15`
-- `my-xl-n16`
-- `my-xl-n17`
-- `my-xl-n18`
-- `my-xl-n19`
-- `my-xl-n2`
-- `my-xl-n20`
-- `my-xl-n3`
-- `my-xl-n4`
-- `my-xl-n5`
-- `my-xl-n6`
-- `my-xl-n7`
-- `my-xl-n8`
-- `my-xl-n9`
-- `my-xxl-0`
-- `my-xxl-1`
-- `my-xxl-10`
-- `my-xxl-11`
-- `my-xxl-12`
-- `my-xxl-13`
-- `my-xxl-14`
-- `my-xxl-15`
-- `my-xxl-16`
-- `my-xxl-17`
-- `my-xxl-18`
-- `my-xxl-19`
-- `my-xxl-2`
-- `my-xxl-20`
-- `my-xxl-3`
-- `my-xxl-4`
-- `my-xxl-5`
-- `my-xxl-6`
-- `my-xxl-7`
-- `my-xxl-8`
-- `my-xxl-9`
-- `my-xxl-auto`
-- `my-xxl-n1`
-- `my-xxl-n10`
-- `my-xxl-n11`
-- `my-xxl-n12`
-- `my-xxl-n13`
-- `my-xxl-n14`
-- `my-xxl-n15`
-- `my-xxl-n16`
-- `my-xxl-n17`
-- `my-xxl-n18`
-- `my-xxl-n19`
-- `my-xxl-n2`
-- `my-xxl-n20`
-- `my-xxl-n3`
-- `my-xxl-n4`
-- `my-xxl-n5`
-- `my-xxl-n6`
-- `my-xxl-n7`
-- `my-xxl-n8`
-- `my-xxl-n9`
-- `object-bottom`
-- `object-center`
-- `object-contain`
-- `object-cover`
-- `object-fill`
-- `object-left`
-- `object-left-bottom`
-- `object-left-top`
-- `object-none`
-- `object-right`
-- `object-right-bottom`
-- `object-right-top`
-- `object-top`
-- `orange`
-- `order-0`
-- `order-1`
-- `order-10`
-- `order-11`
-- `order-12`
-- `order-2`
-- `order-3`
-- `order-4`
-- `order-5`
-- `order-6`
-- `order-7`
-- `order-8`
-- `order-9`
-- `order-first`
-- `order-last`
-- `order-lg-0`
-- `order-lg-1`
-- `order-lg-10`
-- `order-lg-11`
-- `order-lg-12`
-- `order-lg-2`
-- `order-lg-3`
-- `order-lg-4`
-- `order-lg-5`
-- `order-lg-6`
-- `order-lg-7`
-- `order-lg-8`
-- `order-lg-9`
-- `order-lg-first`
-- `order-lg-last`
-- `order-md-0`
-- `order-md-1`
-- `order-md-10`
-- `order-md-11`
-- `order-md-12`
-- `order-md-2`
-- `order-md-3`
-- `order-md-4`
-- `order-md-5`
-- `order-md-6`
-- `order-md-7`
-- `order-md-8`
-- `order-md-9`
-- `order-md-first`
-- `order-md-last`
-- `order-sm-0`
-- `order-sm-1`
-- `order-sm-10`
-- `order-sm-11`
-- `order-sm-12`
-- `order-sm-2`
-- `order-sm-3`
-- `order-sm-4`
-- `order-sm-5`
-- `order-sm-6`
-- `order-sm-7`
-- `order-sm-8`
-- `order-sm-9`
-- `order-sm-first`
-- `order-sm-last`
-- `order-xl-0`
-- `order-xl-1`
-- `order-xl-10`
-- `order-xl-11`
-- `order-xl-12`
-- `order-xl-2`
-- `order-xl-3`
-- `order-xl-4`
-- `order-xl-5`
-- `order-xl-6`
-- `order-xl-7`
-- `order-xl-8`
-- `order-xl-9`
-- `order-xl-first`
-- `order-xl-last`
-- `order-xxl-0`
-- `order-xxl-1`
-- `order-xxl-10`
-- `order-xxl-11`
-- `order-xxl-12`
-- `order-xxl-2`
-- `order-xxl-3`
-- `order-xxl-4`
-- `order-xxl-5`
-- `order-xxl-6`
-- `order-xxl-7`
-- `order-xxl-8`
-- `order-xxl-9`
-- `order-xxl-first`
-- `order-xxl-last`
-- `outline-dashed`
-- `outline-dotted`
-- `outline-double`
-- `outline-hidden`
-- `outline-none`
-- `outline-solid`
-- `overflow-auto`
-- `overflow-hidden`
-- `overflow-scroll`
-- `overflow-visible`
-- `overflow-x-auto`
-- `overflow-x-hidden`
-- `overflow-x-scroll`
-- `overflow-x-visible`
-- `overflow-y-auto`
-- `overflow-y-hidden`
-- `overflow-y-scroll`
-- `overflow-y-visible`
-- `pa-0`
-- `pa-1`
-- `pa-10`
-- `pa-11`
-- `pa-12`
-- `pa-13`
-- `pa-14`
-- `pa-15`
-- `pa-16`
-- `pa-17`
-- `pa-18`
-- `pa-19`
-- `pa-2`
-- `pa-20`
-- `pa-3`
-- `pa-4`
-- `pa-5`
-- `pa-6`
-- `pa-7`
-- `pa-8`
-- `pa-9`
-- `pa-auto`
-- `pa-lg-0`
-- `pa-lg-1`
-- `pa-lg-10`
-- `pa-lg-11`
-- `pa-lg-12`
-- `pa-lg-13`
-- `pa-lg-14`
-- `pa-lg-15`
-- `pa-lg-16`
-- `pa-lg-17`
-- `pa-lg-18`
-- `pa-lg-19`
-- `pa-lg-2`
-- `pa-lg-20`
-- `pa-lg-3`
-- `pa-lg-4`
-- `pa-lg-5`
-- `pa-lg-6`
-- `pa-lg-7`
-- `pa-lg-8`
-- `pa-lg-9`
-- `pa-lg-auto`
-- `pa-md-0`
-- `pa-md-1`
-- `pa-md-10`
-- `pa-md-11`
-- `pa-md-12`
-- `pa-md-13`
-- `pa-md-14`
-- `pa-md-15`
-- `pa-md-16`
-- `pa-md-17`
-- `pa-md-18`
-- `pa-md-19`
-- `pa-md-2`
-- `pa-md-20`
-- `pa-md-3`
-- `pa-md-4`
-- `pa-md-5`
-- `pa-md-6`
-- `pa-md-7`
-- `pa-md-8`
-- `pa-md-9`
-- `pa-md-auto`
-- `pa-sm-0`
-- `pa-sm-1`
-- `pa-sm-10`
-- `pa-sm-11`
-- `pa-sm-12`
-- `pa-sm-13`
-- `pa-sm-14`
-- `pa-sm-15`
-- `pa-sm-16`
-- `pa-sm-17`
-- `pa-sm-18`
-- `pa-sm-19`
-- `pa-sm-2`
-- `pa-sm-20`
-- `pa-sm-3`
-- `pa-sm-4`
-- `pa-sm-5`
-- `pa-sm-6`
-- `pa-sm-7`
-- `pa-sm-8`
-- `pa-sm-9`
-- `pa-sm-auto`
-- `pa-xl-0`
-- `pa-xl-1`
-- `pa-xl-10`
-- `pa-xl-11`
-- `pa-xl-12`
-- `pa-xl-13`
-- `pa-xl-14`
-- `pa-xl-15`
-- `pa-xl-16`
-- `pa-xl-17`
-- `pa-xl-18`
-- `pa-xl-19`
-- `pa-xl-2`
-- `pa-xl-20`
-- `pa-xl-3`
-- `pa-xl-4`
-- `pa-xl-5`
-- `pa-xl-6`
-- `pa-xl-7`
-- `pa-xl-8`
-- `pa-xl-9`
-- `pa-xl-auto`
-- `pa-xxl-0`
-- `pa-xxl-1`
-- `pa-xxl-10`
-- `pa-xxl-11`
-- `pa-xxl-12`
-- `pa-xxl-13`
-- `pa-xxl-14`
-- `pa-xxl-15`
-- `pa-xxl-16`
-- `pa-xxl-17`
-- `pa-xxl-18`
-- `pa-xxl-19`
-- `pa-xxl-2`
-- `pa-xxl-20`
-- `pa-xxl-3`
-- `pa-xxl-4`
-- `pa-xxl-5`
-- `pa-xxl-6`
-- `pa-xxl-7`
-- `pa-xxl-8`
-- `pa-xxl-9`
-- `pa-xxl-auto`
-- `page-content-navigation`
-- `page-content-navigation-navlink`
-- `pb-0`
-- `pb-1`
-- `pb-10`
-- `pb-11`
-- `pb-12`
-- `pb-13`
-- `pb-14`
-- `pb-15`
-- `pb-16`
-- `pb-17`
-- `pb-18`
-- `pb-19`
-- `pb-2`
-- `pb-20`
-- `pb-3`
-- `pb-4`
-- `pb-5`
-- `pb-6`
-- `pb-7`
-- `pb-8`
-- `pb-9`
-- `pb-auto`
-- `pb-lg-0`
-- `pb-lg-1`
-- `pb-lg-10`
-- `pb-lg-11`
-- `pb-lg-12`
-- `pb-lg-13`
-- `pb-lg-14`
-- `pb-lg-15`
-- `pb-lg-16`
-- `pb-lg-17`
-- `pb-lg-18`
-- `pb-lg-19`
-- `pb-lg-2`
-- `pb-lg-20`
-- `pb-lg-3`
-- `pb-lg-4`
-- `pb-lg-5`
-- `pb-lg-6`
-- `pb-lg-7`
-- `pb-lg-8`
-- `pb-lg-9`
-- `pb-lg-auto`
-- `pb-md-0`
-- `pb-md-1`
-- `pb-md-10`
-- `pb-md-11`
-- `pb-md-12`
-- `pb-md-13`
-- `pb-md-14`
-- `pb-md-15`
-- `pb-md-16`
-- `pb-md-17`
-- `pb-md-18`
-- `pb-md-19`
-- `pb-md-2`
-- `pb-md-20`
-- `pb-md-3`
-- `pb-md-4`
-- `pb-md-5`
-- `pb-md-6`
-- `pb-md-7`
-- `pb-md-8`
-- `pb-md-9`
-- `pb-md-auto`
-- `pb-sm-0`
-- `pb-sm-1`
-- `pb-sm-10`
-- `pb-sm-11`
-- `pb-sm-12`
-- `pb-sm-13`
-- `pb-sm-14`
-- `pb-sm-15`
-- `pb-sm-16`
-- `pb-sm-17`
-- `pb-sm-18`
-- `pb-sm-19`
-- `pb-sm-2`
-- `pb-sm-20`
-- `pb-sm-3`
-- `pb-sm-4`
-- `pb-sm-5`
-- `pb-sm-6`
-- `pb-sm-7`
-- `pb-sm-8`
-- `pb-sm-9`
-- `pb-sm-auto`
-- `pb-xl-0`
-- `pb-xl-1`
-- `pb-xl-10`
-- `pb-xl-11`
-- `pb-xl-12`
-- `pb-xl-13`
-- `pb-xl-14`
-- `pb-xl-15`
-- `pb-xl-16`
-- `pb-xl-17`
-- `pb-xl-18`
-- `pb-xl-19`
-- `pb-xl-2`
-- `pb-xl-20`
-- `pb-xl-3`
-- `pb-xl-4`
-- `pb-xl-5`
-- `pb-xl-6`
-- `pb-xl-7`
-- `pb-xl-8`
-- `pb-xl-9`
-- `pb-xl-auto`
-- `pb-xxl-0`
-- `pb-xxl-1`
-- `pb-xxl-10`
-- `pb-xxl-11`
-- `pb-xxl-12`
-- `pb-xxl-13`
-- `pb-xxl-14`
-- `pb-xxl-15`
-- `pb-xxl-16`
-- `pb-xxl-17`
-- `pb-xxl-18`
-- `pb-xxl-19`
-- `pb-xxl-2`
-- `pb-xxl-20`
-- `pb-xxl-3`
-- `pb-xxl-4`
-- `pb-xxl-5`
-- `pb-xxl-6`
-- `pb-xxl-7`
-- `pb-xxl-8`
-- `pb-xxl-9`
-- `pb-xxl-auto`
-- `pe-0`
-- `pe-1`
-- `pe-10`
-- `pe-11`
-- `pe-12`
-- `pe-13`
-- `pe-14`
-- `pe-15`
-- `pe-16`
-- `pe-17`
-- `pe-18`
-- `pe-19`
-- `pe-2`
-- `pe-20`
-- `pe-3`
-- `pe-4`
-- `pe-5`
-- `pe-6`
-- `pe-7`
-- `pe-8`
-- `pe-9`
-- `pe-auto`
-- `pe-lg-0`
-- `pe-lg-1`
-- `pe-lg-10`
-- `pe-lg-11`
-- `pe-lg-12`
-- `pe-lg-13`
-- `pe-lg-14`
-- `pe-lg-15`
-- `pe-lg-16`
-- `pe-lg-17`
-- `pe-lg-18`
-- `pe-lg-19`
-- `pe-lg-2`
-- `pe-lg-20`
-- `pe-lg-3`
-- `pe-lg-4`
-- `pe-lg-5`
-- `pe-lg-6`
-- `pe-lg-7`
-- `pe-lg-8`
-- `pe-lg-9`
-- `pe-lg-auto`
-- `pe-md-0`
-- `pe-md-1`
-- `pe-md-10`
-- `pe-md-11`
-- `pe-md-12`
-- `pe-md-13`
-- `pe-md-14`
-- `pe-md-15`
-- `pe-md-16`
-- `pe-md-17`
-- `pe-md-18`
-- `pe-md-19`
-- `pe-md-2`
-- `pe-md-20`
-- `pe-md-3`
-- `pe-md-4`
-- `pe-md-5`
-- `pe-md-6`
-- `pe-md-7`
-- `pe-md-8`
-- `pe-md-9`
-- `pe-md-auto`
-- `pe-sm-0`
-- `pe-sm-1`
-- `pe-sm-10`
-- `pe-sm-11`
-- `pe-sm-12`
-- `pe-sm-13`
-- `pe-sm-14`
-- `pe-sm-15`
-- `pe-sm-16`
-- `pe-sm-17`
-- `pe-sm-18`
-- `pe-sm-19`
-- `pe-sm-2`
-- `pe-sm-20`
-- `pe-sm-3`
-- `pe-sm-4`
-- `pe-sm-5`
-- `pe-sm-6`
-- `pe-sm-7`
-- `pe-sm-8`
-- `pe-sm-9`
-- `pe-sm-auto`
-- `pe-xl-0`
-- `pe-xl-1`
-- `pe-xl-10`
-- `pe-xl-11`
-- `pe-xl-12`
-- `pe-xl-13`
-- `pe-xl-14`
-- `pe-xl-15`
-- `pe-xl-16`
-- `pe-xl-17`
-- `pe-xl-18`
-- `pe-xl-19`
-- `pe-xl-2`
-- `pe-xl-20`
-- `pe-xl-3`
-- `pe-xl-4`
-- `pe-xl-5`
-- `pe-xl-6`
-- `pe-xl-7`
-- `pe-xl-8`
-- `pe-xl-9`
-- `pe-xl-auto`
-- `pe-xxl-0`
-- `pe-xxl-1`
-- `pe-xxl-10`
-- `pe-xxl-11`
-- `pe-xxl-12`
-- `pe-xxl-13`
-- `pe-xxl-14`
-- `pe-xxl-15`
-- `pe-xxl-16`
-- `pe-xxl-17`
-- `pe-xxl-18`
-- `pe-xxl-19`
-- `pe-xxl-2`
-- `pe-xxl-20`
-- `pe-xxl-3`
-- `pe-xxl-4`
-- `pe-xxl-5`
-- `pe-xxl-6`
-- `pe-xxl-7`
-- `pe-xxl-8`
-- `pe-xxl-9`
-- `pe-xxl-auto`
-- `pink`
-- `pl-0`
-- `pl-1`
-- `pl-10`
-- `pl-11`
-- `pl-12`
-- `pl-13`
-- `pl-14`
-- `pl-15`
-- `pl-16`
-- `pl-17`
-- `pl-18`
-- `pl-19`
-- `pl-2`
-- `pl-20`
-- `pl-3`
-- `pl-4`
-- `pl-5`
-- `pl-6`
-- `pl-7`
-- `pl-8`
-- `pl-9`
-- `pl-auto`
-- `pl-lg-0`
-- `pl-lg-1`
-- `pl-lg-10`
-- `pl-lg-11`
-- `pl-lg-12`
-- `pl-lg-13`
-- `pl-lg-14`
-- `pl-lg-15`
-- `pl-lg-16`
-- `pl-lg-17`
-- `pl-lg-18`
-- `pl-lg-19`
-- `pl-lg-2`
-- `pl-lg-20`
-- `pl-lg-3`
-- `pl-lg-4`
-- `pl-lg-5`
-- `pl-lg-6`
-- `pl-lg-7`
-- `pl-lg-8`
-- `pl-lg-9`
-- `pl-lg-auto`
-- `pl-md-0`
-- `pl-md-1`
-- `pl-md-10`
-- `pl-md-11`
-- `pl-md-12`
-- `pl-md-13`
-- `pl-md-14`
-- `pl-md-15`
-- `pl-md-16`
-- `pl-md-17`
-- `pl-md-18`
-- `pl-md-19`
-- `pl-md-2`
-- `pl-md-20`
-- `pl-md-3`
-- `pl-md-4`
-- `pl-md-5`
-- `pl-md-6`
-- `pl-md-7`
-- `pl-md-8`
-- `pl-md-9`
-- `pl-md-auto`
-- `pl-sm-0`
-- `pl-sm-1`
-- `pl-sm-10`
-- `pl-sm-11`
-- `pl-sm-12`
-- `pl-sm-13`
-- `pl-sm-14`
-- `pl-sm-15`
-- `pl-sm-16`
-- `pl-sm-17`
-- `pl-sm-18`
-- `pl-sm-19`
-- `pl-sm-2`
-- `pl-sm-20`
-- `pl-sm-3`
-- `pl-sm-4`
-- `pl-sm-5`
-- `pl-sm-6`
-- `pl-sm-7`
-- `pl-sm-8`
-- `pl-sm-9`
-- `pl-sm-auto`
-- `pl-xl-0`
-- `pl-xl-1`
-- `pl-xl-10`
-- `pl-xl-11`
-- `pl-xl-12`
-- `pl-xl-13`
-- `pl-xl-14`
-- `pl-xl-15`
-- `pl-xl-16`
-- `pl-xl-17`
-- `pl-xl-18`
-- `pl-xl-19`
-- `pl-xl-2`
-- `pl-xl-20`
-- `pl-xl-3`
-- `pl-xl-4`
-- `pl-xl-5`
-- `pl-xl-6`
-- `pl-xl-7`
-- `pl-xl-8`
-- `pl-xl-9`
-- `pl-xl-auto`
-- `pl-xxl-0`
-- `pl-xxl-1`
-- `pl-xxl-10`
-- `pl-xxl-11`
-- `pl-xxl-12`
-- `pl-xxl-13`
-- `pl-xxl-14`
-- `pl-xxl-15`
-- `pl-xxl-16`
-- `pl-xxl-17`
-- `pl-xxl-18`
-- `pl-xxl-19`
-- `pl-xxl-2`
-- `pl-xxl-20`
-- `pl-xxl-3`
-- `pl-xxl-4`
-- `pl-xxl-5`
-- `pl-xxl-6`
-- `pl-xxl-7`
-- `pl-xxl-8`
-- `pl-xxl-9`
-- `pl-xxl-auto`
-- `pointer-events-auto`
-- `pointer-events-none`
-- `pr-0`
-- `pr-1`
-- `pr-10`
-- `pr-11`
-- `pr-12`
-- `pr-13`
-- `pr-14`
-- `pr-15`
-- `pr-16`
-- `pr-17`
-- `pr-18`
-- `pr-19`
-- `pr-2`
-- `pr-20`
-- `pr-3`
-- `pr-4`
-- `pr-5`
-- `pr-6`
-- `pr-7`
-- `pr-8`
-- `pr-9`
-- `pr-auto`
-- `pr-lg-0`
-- `pr-lg-1`
-- `pr-lg-10`
-- `pr-lg-11`
-- `pr-lg-12`
-- `pr-lg-13`
-- `pr-lg-14`
-- `pr-lg-15`
-- `pr-lg-16`
-- `pr-lg-17`
-- `pr-lg-18`
-- `pr-lg-19`
-- `pr-lg-2`
-- `pr-lg-20`
-- `pr-lg-3`
-- `pr-lg-4`
-- `pr-lg-5`
-- `pr-lg-6`
-- `pr-lg-7`
-- `pr-lg-8`
-- `pr-lg-9`
-- `pr-lg-auto`
-- `pr-md-0`
-- `pr-md-1`
-- `pr-md-10`
-- `pr-md-11`
-- `pr-md-12`
-- `pr-md-13`
-- `pr-md-14`
-- `pr-md-15`
-- `pr-md-16`
-- `pr-md-17`
-- `pr-md-18`
-- `pr-md-19`
-- `pr-md-2`
-- `pr-md-20`
-- `pr-md-3`
-- `pr-md-4`
-- `pr-md-5`
-- `pr-md-6`
-- `pr-md-7`
-- `pr-md-8`
-- `pr-md-9`
-- `pr-md-auto`
-- `pr-sm-0`
-- `pr-sm-1`
-- `pr-sm-10`
-- `pr-sm-11`
-- `pr-sm-12`
-- `pr-sm-13`
-- `pr-sm-14`
-- `pr-sm-15`
-- `pr-sm-16`
-- `pr-sm-17`
-- `pr-sm-18`
-- `pr-sm-19`
-- `pr-sm-2`
-- `pr-sm-20`
-- `pr-sm-3`
-- `pr-sm-4`
-- `pr-sm-5`
-- `pr-sm-6`
-- `pr-sm-7`
-- `pr-sm-8`
-- `pr-sm-9`
-- `pr-sm-auto`
-- `pr-xl-0`
-- `pr-xl-1`
-- `pr-xl-10`
-- `pr-xl-11`
-- `pr-xl-12`
-- `pr-xl-13`
-- `pr-xl-14`
-- `pr-xl-15`
-- `pr-xl-16`
-- `pr-xl-17`
-- `pr-xl-18`
-- `pr-xl-19`
-- `pr-xl-2`
-- `pr-xl-20`
-- `pr-xl-3`
-- `pr-xl-4`
-- `pr-xl-5`
-- `pr-xl-6`
-- `pr-xl-7`
-- `pr-xl-8`
-- `pr-xl-9`
-- `pr-xl-auto`
-- `pr-xxl-0`
-- `pr-xxl-1`
-- `pr-xxl-10`
-- `pr-xxl-11`
-- `pr-xxl-12`
-- `pr-xxl-13`
-- `pr-xxl-14`
-- `pr-xxl-15`
-- `pr-xxl-16`
-- `pr-xxl-17`
-- `pr-xxl-18`
-- `pr-xxl-19`
-- `pr-xxl-2`
-- `pr-xxl-20`
-- `pr-xxl-3`
-- `pr-xxl-4`
-- `pr-xxl-5`
-- `pr-xxl-6`
-- `pr-xxl-7`
-- `pr-xxl-8`
-- `pr-xxl-9`
-- `pr-xxl-auto`
-- `ps-0`
-- `ps-1`
-- `ps-10`
-- `ps-11`
-- `ps-12`
-- `ps-13`
-- `ps-14`
-- `ps-15`
-- `ps-16`
-- `ps-17`
-- `ps-18`
-- `ps-19`
-- `ps-2`
-- `ps-20`
-- `ps-3`
-- `ps-4`
-- `ps-5`
-- `ps-6`
-- `ps-7`
-- `ps-8`
-- `ps-9`
-- `ps-auto`
-- `ps-lg-0`
-- `ps-lg-1`
-- `ps-lg-10`
-- `ps-lg-11`
-- `ps-lg-12`
-- `ps-lg-13`
-- `ps-lg-14`
-- `ps-lg-15`
-- `ps-lg-16`
-- `ps-lg-17`
-- `ps-lg-18`
-- `ps-lg-19`
-- `ps-lg-2`
-- `ps-lg-20`
-- `ps-lg-3`
-- `ps-lg-4`
-- `ps-lg-5`
-- `ps-lg-6`
-- `ps-lg-7`
-- `ps-lg-8`
-- `ps-lg-9`
-- `ps-lg-auto`
-- `ps-md-0`
-- `ps-md-1`
-- `ps-md-10`
-- `ps-md-11`
-- `ps-md-12`
-- `ps-md-13`
-- `ps-md-14`
-- `ps-md-15`
-- `ps-md-16`
-- `ps-md-17`
-- `ps-md-18`
-- `ps-md-19`
-- `ps-md-2`
-- `ps-md-20`
-- `ps-md-3`
-- `ps-md-4`
-- `ps-md-5`
-- `ps-md-6`
-- `ps-md-7`
-- `ps-md-8`
-- `ps-md-9`
-- `ps-md-auto`
-- `ps-sm-0`
-- `ps-sm-1`
-- `ps-sm-10`
-- `ps-sm-11`
-- `ps-sm-12`
-- `ps-sm-13`
-- `ps-sm-14`
-- `ps-sm-15`
-- `ps-sm-16`
-- `ps-sm-17`
-- `ps-sm-18`
-- `ps-sm-19`
-- `ps-sm-2`
-- `ps-sm-20`
-- `ps-sm-3`
-- `ps-sm-4`
-- `ps-sm-5`
-- `ps-sm-6`
-- `ps-sm-7`
-- `ps-sm-8`
-- `ps-sm-9`
-- `ps-sm-auto`
-- `ps-xl-0`
-- `ps-xl-1`
-- `ps-xl-10`
-- `ps-xl-11`
-- `ps-xl-12`
-- `ps-xl-13`
-- `ps-xl-14`
-- `ps-xl-15`
-- `ps-xl-16`
-- `ps-xl-17`
-- `ps-xl-18`
-- `ps-xl-19`
-- `ps-xl-2`
-- `ps-xl-20`
-- `ps-xl-3`
-- `ps-xl-4`
-- `ps-xl-5`
-- `ps-xl-6`
-- `ps-xl-7`
-- `ps-xl-8`
-- `ps-xl-9`
-- `ps-xl-auto`
-- `ps-xxl-0`
-- `ps-xxl-1`
-- `ps-xxl-10`
-- `ps-xxl-11`
-- `ps-xxl-12`
-- `ps-xxl-13`
-- `ps-xxl-14`
-- `ps-xxl-15`
-- `ps-xxl-16`
-- `ps-xxl-17`
-- `ps-xxl-18`
-- `ps-xxl-19`
-- `ps-xxl-2`
-- `ps-xxl-20`
-- `ps-xxl-3`
-- `ps-xxl-4`
-- `ps-xxl-5`
-- `ps-xxl-6`
-- `ps-xxl-7`
-- `ps-xxl-8`
-- `ps-xxl-9`
-- `ps-xxl-auto`
-- `pt-0`
-- `pt-1`
-- `pt-10`
-- `pt-11`
-- `pt-12`
-- `pt-13`
-- `pt-14`
-- `pt-15`
-- `pt-16`
-- `pt-17`
-- `pt-18`
-- `pt-19`
-- `pt-2`
-- `pt-20`
-- `pt-3`
-- `pt-4`
-- `pt-5`
-- `pt-6`
-- `pt-7`
-- `pt-8`
-- `pt-9`
-- `pt-auto`
-- `pt-lg-0`
-- `pt-lg-1`
-- `pt-lg-10`
-- `pt-lg-11`
-- `pt-lg-12`
-- `pt-lg-13`
-- `pt-lg-14`
-- `pt-lg-15`
-- `pt-lg-16`
-- `pt-lg-17`
-- `pt-lg-18`
-- `pt-lg-19`
-- `pt-lg-2`
-- `pt-lg-20`
-- `pt-lg-3`
-- `pt-lg-4`
-- `pt-lg-5`
-- `pt-lg-6`
-- `pt-lg-7`
-- `pt-lg-8`
-- `pt-lg-9`
-- `pt-lg-auto`
-- `pt-md-0`
-- `pt-md-1`
-- `pt-md-10`
-- `pt-md-11`
-- `pt-md-12`
-- `pt-md-13`
-- `pt-md-14`
-- `pt-md-15`
-- `pt-md-16`
-- `pt-md-17`
-- `pt-md-18`
-- `pt-md-19`
-- `pt-md-2`
-- `pt-md-20`
-- `pt-md-3`
-- `pt-md-4`
-- `pt-md-5`
-- `pt-md-6`
-- `pt-md-7`
-- `pt-md-8`
-- `pt-md-9`
-- `pt-md-auto`
-- `pt-sm-0`
-- `pt-sm-1`
-- `pt-sm-10`
-- `pt-sm-11`
-- `pt-sm-12`
-- `pt-sm-13`
-- `pt-sm-14`
-- `pt-sm-15`
-- `pt-sm-16`
-- `pt-sm-17`
-- `pt-sm-18`
-- `pt-sm-19`
-- `pt-sm-2`
-- `pt-sm-20`
-- `pt-sm-3`
-- `pt-sm-4`
-- `pt-sm-5`
-- `pt-sm-6`
-- `pt-sm-7`
-- `pt-sm-8`
-- `pt-sm-9`
-- `pt-sm-auto`
-- `pt-xl-0`
-- `pt-xl-1`
-- `pt-xl-10`
-- `pt-xl-11`
-- `pt-xl-12`
-- `pt-xl-13`
-- `pt-xl-14`
-- `pt-xl-15`
-- `pt-xl-16`
-- `pt-xl-17`
-- `pt-xl-18`
-- `pt-xl-19`
-- `pt-xl-2`
-- `pt-xl-20`
-- `pt-xl-3`
-- `pt-xl-4`
-- `pt-xl-5`
-- `pt-xl-6`
-- `pt-xl-7`
-- `pt-xl-8`
-- `pt-xl-9`
-- `pt-xl-auto`
-- `pt-xxl-0`
-- `pt-xxl-1`
-- `pt-xxl-10`
-- `pt-xxl-11`
-- `pt-xxl-12`
-- `pt-xxl-13`
-- `pt-xxl-14`
-- `pt-xxl-15`
-- `pt-xxl-16`
-- `pt-xxl-17`
-- `pt-xxl-18`
-- `pt-xxl-19`
-- `pt-xxl-2`
-- `pt-xxl-20`
-- `pt-xxl-3`
-- `pt-xxl-4`
-- `pt-xxl-5`
-- `pt-xxl-6`
-- `pt-xxl-7`
-- `pt-xxl-8`
-- `pt-xxl-9`
-- `pt-xxl-auto`
-- `purple`
-- `px-0`
-- `px-1`
-- `px-10`
-- `px-11`
-- `px-12`
-- `px-13`
-- `px-14`
-- `px-15`
-- `px-16`
-- `px-17`
-- `px-18`
-- `px-19`
-- `px-2`
-- `px-20`
-- `px-3`
-- `px-4`
-- `px-5`
-- `px-6`
-- `px-7`
-- `px-8`
-- `px-9`
-- `px-auto`
-- `px-lg-0`
-- `px-lg-1`
-- `px-lg-10`
-- `px-lg-11`
-- `px-lg-12`
-- `px-lg-13`
-- `px-lg-14`
-- `px-lg-15`
-- `px-lg-16`
-- `px-lg-17`
-- `px-lg-18`
-- `px-lg-19`
-- `px-lg-2`
-- `px-lg-20`
-- `px-lg-3`
-- `px-lg-4`
-- `px-lg-5`
-- `px-lg-6`
-- `px-lg-7`
-- `px-lg-8`
-- `px-lg-9`
-- `px-lg-auto`
-- `px-md-0`
-- `px-md-1`
-- `px-md-10`
-- `px-md-11`
-- `px-md-12`
-- `px-md-13`
-- `px-md-14`
-- `px-md-15`
-- `px-md-16`
-- `px-md-17`
-- `px-md-18`
-- `px-md-19`
-- `px-md-2`
-- `px-md-20`
-- `px-md-3`
-- `px-md-4`
-- `px-md-5`
-- `px-md-6`
-- `px-md-7`
-- `px-md-8`
-- `px-md-9`
-- `px-md-auto`
-- `px-sm-0`
-- `px-sm-1`
-- `px-sm-10`
-- `px-sm-11`
-- `px-sm-12`
-- `px-sm-13`
-- `px-sm-14`
-- `px-sm-15`
-- `px-sm-16`
-- `px-sm-17`
-- `px-sm-18`
-- `px-sm-19`
-- `px-sm-2`
-- `px-sm-20`
-- `px-sm-3`
-- `px-sm-4`
-- `px-sm-5`
-- `px-sm-6`
-- `px-sm-7`
-- `px-sm-8`
-- `px-sm-9`
-- `px-sm-auto`
-- `px-xl-0`
-- `px-xl-1`
-- `px-xl-10`
-- `px-xl-11`
-- `px-xl-12`
-- `px-xl-13`
-- `px-xl-14`
-- `px-xl-15`
-- `px-xl-16`
-- `px-xl-17`
-- `px-xl-18`
-- `px-xl-19`
-- `px-xl-2`
-- `px-xl-20`
-- `px-xl-3`
-- `px-xl-4`
-- `px-xl-5`
-- `px-xl-6`
-- `px-xl-7`
-- `px-xl-8`
-- `px-xl-9`
-- `px-xl-auto`
-- `px-xxl-0`
-- `px-xxl-1`
-- `px-xxl-10`
-- `px-xxl-11`
-- `px-xxl-12`
-- `px-xxl-13`
-- `px-xxl-14`
-- `px-xxl-15`
-- `px-xxl-16`
-- `px-xxl-17`
-- `px-xxl-18`
-- `px-xxl-19`
-- `px-xxl-2`
-- `px-xxl-20`
-- `px-xxl-3`
-- `px-xxl-4`
-- `px-xxl-5`
-- `px-xxl-6`
-- `px-xxl-7`
-- `px-xxl-8`
-- `px-xxl-9`
-- `px-xxl-auto`
-- `py-0`
-- `py-1`
-- `py-10`
-- `py-11`
-- `py-12`
-- `py-13`
-- `py-14`
-- `py-15`
-- `py-16`
-- `py-17`
-- `py-18`
-- `py-19`
-- `py-2`
-- `py-20`
-- `py-3`
-- `py-4`
-- `py-5`
-- `py-6`
-- `py-7`
-- `py-8`
-- `py-9`
-- `py-auto`
-- `py-lg-0`
-- `py-lg-1`
-- `py-lg-10`
-- `py-lg-11`
-- `py-lg-12`
-- `py-lg-13`
-- `py-lg-14`
-- `py-lg-15`
-- `py-lg-16`
-- `py-lg-17`
-- `py-lg-18`
-- `py-lg-19`
-- `py-lg-2`
-- `py-lg-20`
-- `py-lg-3`
-- `py-lg-4`
-- `py-lg-5`
-- `py-lg-6`
-- `py-lg-7`
-- `py-lg-8`
-- `py-lg-9`
-- `py-lg-auto`
-- `py-md-0`
-- `py-md-1`
-- `py-md-10`
-- `py-md-11`
-- `py-md-12`
-- `py-md-13`
-- `py-md-14`
-- `py-md-15`
-- `py-md-16`
-- `py-md-17`
-- `py-md-18`
-- `py-md-19`
-- `py-md-2`
-- `py-md-20`
-- `py-md-3`
-- `py-md-4`
-- `py-md-5`
-- `py-md-6`
-- `py-md-7`
-- `py-md-8`
-- `py-md-9`
-- `py-md-auto`
-- `py-sm-0`
-- `py-sm-1`
-- `py-sm-10`
-- `py-sm-11`
-- `py-sm-12`
-- `py-sm-13`
-- `py-sm-14`
-- `py-sm-15`
-- `py-sm-16`
-- `py-sm-17`
-- `py-sm-18`
-- `py-sm-19`
-- `py-sm-2`
-- `py-sm-20`
-- `py-sm-3`
-- `py-sm-4`
-- `py-sm-5`
-- `py-sm-6`
-- `py-sm-7`
-- `py-sm-8`
-- `py-sm-9`
-- `py-sm-auto`
-- `py-xl-0`
-- `py-xl-1`
-- `py-xl-10`
-- `py-xl-11`
-- `py-xl-12`
-- `py-xl-13`
-- `py-xl-14`
-- `py-xl-15`
-- `py-xl-16`
-- `py-xl-17`
-- `py-xl-18`
-- `py-xl-19`
-- `py-xl-2`
-- `py-xl-20`
-- `py-xl-3`
-- `py-xl-4`
-- `py-xl-5`
-- `py-xl-6`
-- `py-xl-7`
-- `py-xl-8`
-- `py-xl-9`
-- `py-xl-auto`
-- `py-xxl-0`
-- `py-xxl-1`
-- `py-xxl-10`
-- `py-xxl-11`
-- `py-xxl-12`
-- `py-xxl-13`
-- `py-xxl-14`
-- `py-xxl-15`
-- `py-xxl-16`
-- `py-xxl-17`
-- `py-xxl-18`
-- `py-xxl-19`
-- `py-xxl-2`
-- `py-xxl-20`
-- `py-xxl-3`
-- `py-xxl-4`
-- `py-xxl-5`
-- `py-xxl-6`
-- `py-xxl-7`
-- `py-xxl-8`
-- `py-xxl-9`
-- `py-xxl-auto`
-- `red`
-- `relative`
-- `reload`
-- `right`
-- `rounded`
-- `rounded-0`
-- `rounded-b`
-- `rounded-b-0`
-- `rounded-b-lg`
-- `rounded-b-sm`
-- `rounded-b-xl`
-- `rounded-be`
-- `rounded-be-0`
-- `rounded-be-lg`
-- `rounded-be-sm`
-- `rounded-be-xl`
-- `rounded-bl`
-- `rounded-bl-0`
-- `rounded-bl-lg`
-- `rounded-bl-sm`
-- `rounded-bl-xl`
-- `rounded-br`
-- `rounded-br-0`
-- `rounded-br-lg`
-- `rounded-br-sm`
-- `rounded-br-xl`
-- `rounded-bs`
-- `rounded-bs-0`
-- `rounded-bs-lg`
-- `rounded-bs-sm`
-- `rounded-bs-xl`
-- `rounded-circle`
-- `rounded-e`
-- `rounded-e-0`
-- `rounded-e-lg`
-- `rounded-e-sm`
-- `rounded-e-xl`
-- `rounded-l`
-- `rounded-l-0`
-- `rounded-l-lg`
-- `rounded-l-sm`
-- `rounded-l-xl`
-- `rounded-lg`
-- `rounded-pill`
-- `rounded-r`
-- `rounded-r-0`
-- `rounded-r-lg`
-- `rounded-r-sm`
-- `rounded-r-xl`
-- `rounded-s`
-- `rounded-s-0`
-- `rounded-s-lg`
-- `rounded-s-sm`
-- `rounded-s-xl`
-- `rounded-sm`
-- `rounded-t`
-- `rounded-t-0`
-- `rounded-t-lg`
-- `rounded-t-sm`
-- `rounded-t-xl`
-- `rounded-te`
-- `rounded-te-0`
-- `rounded-te-lg`
-- `rounded-te-sm`
-- `rounded-te-xl`
-- `rounded-tl`
-- `rounded-tl-0`
-- `rounded-tl-lg`
-- `rounded-tl-sm`
-- `rounded-tl-xl`
-- `rounded-tr`
-- `rounded-tr-0`
-- `rounded-tr-lg`
-- `rounded-tr-sm`
-- `rounded-tr-xl`
-- `rounded-ts`
-- `rounded-ts-0`
-- `rounded-ts-lg`
-- `rounded-ts-sm`
-- `rounded-ts-xl`
-- `rounded-xl`
-- `scroll-locked`
-- `scroll-locked-no-padding`
-- `selected`
-- `shades`
-- `sort-direction-icon`
-- `sortable-column-header`
-- `static`
-- `sticky`
-- `sticky-left`
-- `sticky-right`
-- `tab-reverse-transition-enter`
-- `tab-reverse-transition-leave`
-- `tab-reverse-transition-leave-to`
-- `tab-transition-enter`
-- `tab-transition-leave`
-- `tab-transition-leave-active`
-- `tab-transition-leave-to`
-- `teal`
-- `vertical`
-- `visible`
-- `w-max`
-- `yellow`
-- `z-0`
-- `z-10`
-- `z-100`
-- `z-20`
-- `z-30`
-- `z-40`
-- `z-50`
-- `z-60`
-- `z-70`
-- `z-80`
-- `z-90`
-- `z-auto`