zhb 1 miesiąc temu
rodzic
commit
44f386d0a7
47 zmienionych plików z 21525 dodań i 1787 usunięć
  1. 1 0
      App.vue
  2. 10 10
      components/cwg-complex-search.vue
  3. 1 1
      components/cwg-custom-footer.vue
  4. 2 2
      components/cwg-detail-popup.vue
  5. 6 5
      components/cwg-dropdown.vue
  6. 1 1
      components/cwg-footer-link.vue
  7. 1 1
      components/cwg-header.vue
  8. 2 2
      components/cwg-label-line-value.vue
  9. 1 1
      components/cwg-notice-drawer.vue
  10. 1 1
      components/cwg-notice.vue
  11. 3 3
      components/cwg-payment.vue
  12. 1 1
      components/cwg-pc-header.vue
  13. 1 1
      components/cwg-popup.vue
  14. 13 11
      components/cwg-sidebar.vue
  15. 2 2
      components/cwg-tabs.vue
  16. 1 1
      pages/activities/components/GiftApplicationPopup.vue
  17. 0 692
      pages/customer/components/AccountCard copy.vue
  18. 10 10
      pages/customer/components/AccountCardDesktop.vue
  19. 19 18
      pages/customer/components/AccountCardMobile.vue
  20. 1 1
      pages/customer/components/CheckPopup.vue
  21. 1 1
      pages/customer/components/ClauseNewListPopup.vue
  22. 3 2
      pages/customer/components/DepositCheckConfirmPopup.vue
  23. 2 2
      pages/customer/components/TerminalChangePasswordDialog.vue
  24. 2 2
      pages/customer/components/TerminalDialog.vue
  25. 4 4
      pages/customer/components/TerminalNickNameDialog.vue
  26. 1 1
      pages/customer/components/WithdrawCheckConfirmPopup.vue
  27. 4 4
      pages/customer/transfer.vue
  28. 5 5
      pages/customer/wallet-transfer.vue
  29. 5 5
      pages/follow/transfer.vue
  30. 4 4
      pages/ib/agent-transfer.vue
  31. 552 567
      pages/ib/components/applyIbDialog.vue
  32. 271 287
      pages/ib/components/pointDialog.vue
  33. 2 2
      pages/ib/promotion.vue
  34. 27 31
      pages/ib/settingPammManager.vue
  35. 7 7
      pages/ib/transfer.vue
  36. 2 2
      pages/login/regist.vue
  37. 3 2
      pages/login/reset.vue
  38. 7 2
      static/scss/global/global.scss
  39. 20448 0
      static/scss/global/vu.css
  40. 1 1
      uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue
  41. 1 1
      uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.css
  42. 1 1
      uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue
  43. 2 2
      uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue
  44. 2 2
      uni_modules/uni-table/components/uni-table/uni-table.vue
  45. 1 1
      uni_modules/x-dropdown/components/x-dropdown/x-dropdown.vue
  46. 28 23
      windows/left-window.vue
  47. 62 62
      windows/top-window.vue

+ 1 - 0
App.vue

@@ -68,6 +68,7 @@ onMounted(() => {
 /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
 @import "uview-plus/index.scss";
 @import "@/static/scss/global/global.scss";
+@import "@/static/scss/global/vu.css";
 @import "/static/scss/style.scss";
 
 @font-face {

+ 10 - 10
components/cwg-complex-search.vue

@@ -75,8 +75,7 @@
                         </template>
                         <template v-else-if="field.type === 'select'">
                             <cwg-combox v-model:value="tempFormData[field.key]" :options="field.options"
-                                :placeholder="field.placeholder || '请选择'" :clearable="false"
-                                :placement="'bottom'"
+                                :placeholder="field.placeholder || '请选择'" :clearable="false" :placement="'bottom'"
                                 v-if="shouldUseSelect(field)" />
                             <view class="chip-group" v-else>
                                 <view class="chip-list">
@@ -100,7 +99,7 @@
                                 @change="(e) => field.onChange?.(e)" @nodeclick="(node) => field.onNodeClick?.(node)" />
                         </template>
                     </view>
-                  <view v-if="nonDateField.length == 1" style="height: 25vh;"/>
+                    <view v-if="nonDateField.length == 1" style="height: 25vh;" />
 
                 </view>
             </scroll-view>
@@ -465,7 +464,7 @@ onMounted(() => {
         padding: px2rpx(0) px2rpx(8);
         font-size: px2rpx(16);
         font-weight: 500;
-        color: #141d22;
+        color: #fff;
         line-height: px2rpx(35);
         transition: all 0.2s ease;
         box-shadow: none;
@@ -473,13 +472,13 @@ onMounted(() => {
         .iconfont,
         .uni-icons {
             font-size: 32rpx;
-            color: #141d22;
+            color: #fff;
         }
 
         /* 按下反馈效果 */
         &:active {
             transform: scale(0.96);
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             /* 轻量点击背景色 */
             border-color: #b9bfc7;
         }
@@ -504,8 +503,9 @@ onMounted(() => {
         margin-bottom: px2rpx(20);
         letter-spacing: px2rpx(1);
     }
-    :deep(.uni-scroll-view ){
-      //min-height: px2rpx(200);
+
+    :deep(.uni-scroll-view) {
+        //min-height: px2rpx(200);
     }
 
     :deep(.uni-scroll-view-content) {
@@ -540,7 +540,7 @@ onMounted(() => {
             transition: all 0.2s ease;
             background-color: #ffffff;
             border: px2rpx(1) solid #d1d5db;
-            color: #141d22;
+            color: #fff;
             cursor: pointer;
 
             &:active {
@@ -558,7 +558,7 @@ onMounted(() => {
             &.chip-outlined {
                 background-color: #ffffff;
                 border-color: #d1d5db;
-                color: #141d22;
+                color: #fff;
             }
         }
     }

+ 1 - 1
components/cwg-custom-footer.vue

@@ -50,7 +50,7 @@ const linkList = [
     // grid-template-columns: 1fr;
     padding: px2rpx(40) 0 px2rpx(24) 0;
 
-    border-top: 1px solid #e5e5e5;
+    border-top: 1px solid var(--bs-border-color);
 
     .footer-description {
         .desc-block {

+ 2 - 2
components/cwg-detail-popup.vue

@@ -79,7 +79,7 @@ const formatTagText = (value, column) => {
 const formatCellValue = (value, column, row) => {
     // note , 详情展示备注
     if (column.type === 'note') {
-       return row.note
+        return row.note
     }
     if (column.formatter) {
         return column.formatter({ value, row })
@@ -145,7 +145,7 @@ const formatDate = (date, format) => {
     align-items: center;
     justify-content: space-between;
     padding: px2rpx(30) px2rpx(30) px2rpx(20);
-    border-bottom: 1px solid #f0f0f0;
+    border-bottom: 1px solid var(--bs-border-color);
 
     .dialog-title {
         font-size: px2rpx(20);

+ 6 - 5
components/cwg-dropdown.vue

@@ -17,8 +17,7 @@
                 </slot>
             </view>
         </view>
-        <view class="cwg-dropdown-mask" :class="{ 'cwg-dropdown-mask-show': maskShow }"
-            @click.stop="close" />
+        <view class="cwg-dropdown-mask" :class="{ 'cwg-dropdown-mask-show': maskShow }" @click.stop="close" />
     </view>
 </template>
 
@@ -176,8 +175,10 @@ defineExpose({
 
     .menu {
         position: relative;
-        background: #FFFFFF;
-        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
+        --bs-bg-opacity: 1;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
+        border: 1px solid var(--bs-border-color);
         border-radius: px2rpx(4);
         overflow: hidden;
 
@@ -188,7 +189,7 @@ defineExpose({
             padding: px2rpx(10) px2rpx(16);
             font-size: px2rpx(14);
             line-height: px2rpx(30);
-            color: #333;
+            color: #fff;
             transition: background 0.2s;
             box-sizing: border-box;
             cursor: pointer;

+ 1 - 1
components/cwg-footer-link.vue

@@ -37,7 +37,7 @@ const linkList = [
     letter-spacing: px2rpx(0.5);
 
     padding: px2rpx(16) 0;
-    border-top: 1px solid #e5e5e5;
+    border-top: 1px solid var(--bs-border-color);
 
     .container {
         max-width: px2rpx(1320);

+ 1 - 1
components/cwg-header.vue

@@ -137,7 +137,7 @@ function handleBack() {
   position: relative;
   text-align: left;
   font-size: px2rpx(24);
-  color: #141d22;
+  color: #fff;
   font-weight: 700;
   margin: px2rpx(10) 0;
   height: px2rpx(40);

+ 2 - 2
components/cwg-label-line-value.vue

@@ -36,7 +36,7 @@ const props = defineProps({
     line-height: px2rpx(24);
 
     .label {
-        color: #6c8595;
+        color: var(--bs-card-cap-color);
     }
     .line {
         flex: 1;
@@ -49,7 +49,7 @@ const props = defineProps({
         display: flex;
         align-items: flex-end;
         font-weight: 500;
-        color: #2e3a47;
+        color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
     }
 }
 </style>

+ 1 - 1
components/cwg-notice-drawer.vue

@@ -96,7 +96,7 @@ defineExpose({
     align-items: center;
     justify-content: space-between;
     padding: px2rpx(12) px2rpx(16);
-    border-bottom: 1px solid #f0f0f0;
+    border-bottom: 1px solid var(--bs-border-color);
     cursor: pointer;
 
     .item-content {

+ 1 - 1
components/cwg-notice.vue

@@ -160,7 +160,7 @@ onUnmounted(() => {
         align-items: center;
         justify-content: space-between;
         padding: px2rpx(12) px2rpx(16);
-        border-bottom: 1px solid #f0f0f0;
+        border-bottom: 1px solid var(--bs-border-color);
         cursor: pointer;
         transition: all 0.3s;
 

+ 3 - 3
components/cwg-payment.vue

@@ -330,7 +330,7 @@ onUnmounted(() => {
       justify-content: space-between;
       align-items: center;
       padding: px2rpx(12) px2rpx(16);
-      border-bottom: 1px solid #f0f0f0;
+      border-bottom: 1px solid var(--bs-border-color);
 
       .drawer-title {
         font-size: px2rpx(14);
@@ -369,7 +369,7 @@ onUnmounted(() => {
         flex: 1;
         height: px2rpx(36);
         line-height: px2rpx(36);
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         color: #333;
         font-size: px2rpx(13);
         border-radius: px2rpx(4);
@@ -395,7 +395,7 @@ onUnmounted(() => {
     align-items: center;
     justify-content: space-between;
     padding: px2rpx(12) px2rpx(16);
-    border-bottom: 1px solid #f0f0f0;
+    border-bottom: 1px solid var(--bs-border-color);
     cursor: pointer;
     transition: all 0.3s;
 

+ 1 - 1
components/cwg-pc-header.vue

@@ -44,7 +44,7 @@ function openLeftDrawer() {
 	width: 100vw;
 	height: 55px;
 	background-color: rgba(255, 255, 255, 0.9);
-	border-bottom: 1px solid #f0f0f0;
+	border-bottom: 1px solid var(--bs-border-color);
 	padding: 0 px2rpx(16);
 	box-sizing: border-box;
 	// position: fixed;

+ 1 - 1
components/cwg-popup.vue

@@ -208,7 +208,7 @@ defineExpose({
     align-items: center;
     justify-content: space-between;
     padding: px2rpx(30) px2rpx(30) px2rpx(20);
-    border-bottom: 1px solid #f0f0f0;
+    border-bottom: 1px solid var(--bs-border-color);
 
     .dialog-title {
         font-size: px2rpx(20);

+ 13 - 11
components/cwg-sidebar.vue

@@ -9,7 +9,7 @@
         </view>
         <view v-else class="wallet-header-left">
           <cwg-icon name="crm-payment" :size="16" color="#141d22" />
-          <text>{{ t(mode === 'customer'?'wallet.item5':'news_add_field.Label.Balance') }}</text>
+          <text>{{ t(mode === 'customer' ? 'wallet.item5' : 'news_add_field.Label.Balance') }}</text>
           <text class="wallet-header-text">{{ mode === 'customer' ? formattedBalance : ibBalance }} USD</text>
         </view>
         <view class="wallet-header-right" :class="{ 'expanded': isWalletOpen }">
@@ -92,7 +92,7 @@
 </template>
 
 <script lang="ts" setup>
-import { ref, computed, watch, onMounted,onUnmounted  } from 'vue'
+import { ref, computed, watch, onMounted, onUnmounted } from 'vue'
 import useUserStore from '@/stores/use-user-store'
 import { useMenuSplit } from '@/composables/useMenuSplit'
 import { storeToRefs } from 'pinia'
@@ -325,7 +325,7 @@ onUnmounted(() => {
 
       .wallet-header-text {
         font-size: 14px;
-        color: #141d22;
+        color: #fff;
         font-weight: 500;
       }
 
@@ -360,7 +360,7 @@ onUnmounted(() => {
         .balance-amount {
           font-size: 16px;
           font-weight: 600;
-          color: #141d22;
+          color: #fff;
           margin-bottom: px2rpx(4);
         }
 
@@ -390,8 +390,8 @@ onUnmounted(() => {
           flex: 1;
           height: px2rpx(32);
           line-height: px2rpx(32);
-          background-color: #f5f7fa;
-          color: #141d22;
+          background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+          color: #fff;
           font-size: 13px;
           border-radius: px2rpx(4);
           margin: 0;
@@ -465,15 +465,17 @@ onUnmounted(() => {
   }
 
   .ib-box {
-    background: rgba(140, 69, 246, 0.08) !important;
-    border: 1px solid rgba(140, 69, 246, 0.2) !important;
+    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
+    border-radius: var(--bs-btn-border-radius);
+    background-color: var(--bs-btn-bg);
     font-size: px2rpx(18);
     font-weight: 600;
-    color: #141d22;
+    color: #fff;
 
     &:hover {
-      background: rgba(140, 69, 246, 0.08) !important;
-      border: 1px solid rgba(140, 69, 246, 0.2) !important;
+      color: var(--bs-btn-hover-color);
+      background-color: var(--bs-btn-hover-bg);
+      border-color: var(--bs-btn-hover-border-color);
     }
   }
 

+ 2 - 2
components/cwg-tabs.vue

@@ -46,14 +46,14 @@ const handleTabClick = (index: number) => {
         font-size: px2rpx(16);
         padding: px2rpx(8) px2rpx(12);
         border-radius: px2rpx(2);
-        background-color: white;
+        background-color: var(--bs-bg-color);
         justify-content: center;
     }
 
     .active {
         background-color: var(--color-error);
         color: #fff;
-        border: none;
+        border: 1px solid var(--bs-bg-color);
     }
 }
 </style>

+ 1 - 1
pages/activities/components/GiftApplicationPopup.vue

@@ -234,7 +234,7 @@ watch(() => props.visible, (newVal) => {
   }
 
   .tips {
-    background-color: #f5f7fa;
+    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
     border-radius: px2rpx(8);
     padding: px2rpx(16);
     margin-bottom: px2rpx(20);

+ 0 - 692
pages/customer/components/AccountCard copy.vue

@@ -1,692 +0,0 @@
-<template>
-    <view class="account-card" :class="{ 'is-grid-layout': isGridLayout }">
-        <!-- 折叠/展开按钮 -->
-        <button class="collapse-btn" @click="toggleExpand">
-            <cwg-icon name="chevron-right" :size="20" color="#6c8595"
-                :class="['chevron-icon', { expanded: isExpanded }]" />
-        </button>
-
-        <!-- 标签区域 -->
-        <view class="labels-container">
-            <view class="account-number"># {{ account.accountNumber }}</view>
-            <view class="account-number" @click="copy(account.fwq)">{{ account.fwq }}</view>
-            <view class="labels">
-                <template v-for="(label, index) in account.labels" :key="index">
-                    <view v-if="label" class="label-badge">
-                        {{ label }}
-                    </view>
-                </template>
-            </view>
-        </view>
-
-        <!-- 主要内容区域(余额和操作按钮) -->
-        <view class="main-content">
-            <!-- 余额 -->
-            <view class="balance">
-                <text class="balance-number">{{ balanceInteger }}</text>
-                <text class="balance-decimal">{{ balanceDecimal }} {{ account.currency }}</text>
-            </view>
-
-            <!-- 移动端圆形按钮组(≤1100px显示) -->
-            <view class="mobile-buttons">
-                <!-- 交易 -->
-                <template v-for="(item, index) in circleButtons" :key="index">
-                    <view class="circle-btn" :class="{ 'is-disabled': item.disabled }" @click="handleAction1(item)"
-                        v-if="!item.needDemo">
-                        <view class="circle-icon" :class="{ 'primary': item.primary }">
-                            <cwg-icon :name="item.icon" :size="16" :color="item.color" />
-                        </view>
-                        <text class="circle-label" v-t="item.label" />
-                    </view>
-                </template>
-                <!-- 更多(三点) -->
-                <cwg-dropdown @open="onOpen" @close="onClose" :menu-list="customMenuList"
-                    @menuClick="handleCustomClick">
-                    <view class="circle-btn">
-                        <view class="circle-icon">
-                            <cwg-icon name="crm-ellipsis-vertical" :size="16" color="#2e3a47" />
-                        </view>
-                        <text class="circle-label" v-t="'vu.item7'" />
-                    </view>
-                </cwg-dropdown>
-            </view>
-
-            <!-- 桌面端按钮组(>1100px显示且非网格布局) -->
-            <view class="desktop-buttons" v-if="!props.isGridLayout">
-                <template v-for="(item, index) in actionButtons" :key="index">
-                    <view class="action-btn" :class="{ 'primary': item.primary, 'is-disabled': item.disabled }"
-                        @click="handleAction1(item)" v-if="!item.needDemo">
-                        <text class="btn-icon">
-                            <cwg-icon :name="item.icon" :size="16" :color="item.color" />
-                        </text>
-                        <text v-t="item.label" />
-                    </view>
-                </template>
-                <cwg-dropdown @open="onOpen" @close="onClose" :menu-list="customMenuList"
-                    @menuClick="handleCustomClick">
-                    <view class="action-btn icon-only">
-                        <cwg-icon name="crm-ellipsis-vertical" :size="16" color="#2e3a47" />
-                    </view>
-                </cwg-dropdown>
-            </view>
-        </view>
-        <view ref="infoBottomRef" class="info-bottom" :style="{
-            height: isExpanded ? infoBottomHeight + 'px' : '0px',
-            transition: 'height 281ms cubic-bezier(0.4, 0, 0.2, 1)'
-        }">
-            <!-- 底部信息区域(折叠时隐藏) -->
-            <view class="info-section">
-                <view class="info-column">
-                    <cwg-label-line-value :label="t('Label.Leverage')" :value="account.actualLeverage" />
-                    <cwg-label-line-value :label="t('Label.FloatingPL')" :value="account.floatingPL" />
-                    <cwg-label-line-value :label="t('Label.Balance')" :value="account.balanceWithSymbol" />
-                </view>
-                <view class="info-column">
-                    <cwg-label-line-value :label="t('Label.Equity')" :value="account.equityWithSymbol" />
-                    <cwg-label-line-value :label="t('Label.Credit')" :value="account.creditWithSymbol" />
-                    <cwg-label-line-value :label="t('Documentary.console.item3')" :value="account.platform" />
-                </view>
-            </view>
-            <!-- 额外操作行(服务器、登录、更改密码,折叠时隐藏) -->
-            <view class="extra-actions">
-                <!-- 登录复制行 -->
-                <view class="copy-row">
-                    <text class="label">服务器</text>
-                    <view class="value">{{ account.fwq }}</view>
-                    <view class="copy-btn" @click="copy(account.fwq)">
-                        <cwg-icon name="copy" :size="16" color="#2e3a47" />
-                    </view>
-                </view>
-                <!-- <view class="divider"></view> -->
-                <view class="copy-row">
-                    <text class="label" v-t="'signin.title'" />
-                    <text class="value">{{ account.login }}</text>
-                    <view class="copy-btn" @click="copy(account.login)">
-                        <cwg-icon name="copy" :size="16" color="#2e3a47" />
-                    </view>
-                </view>
-
-                <view class="divider"></view>
-                <!-- 更改交易密码按钮 -->
-                <view class="change-password-btn" @click="handleAction('changePassword1')" v-if="!isDemo">
-                    <text class="btn-icon">
-                        <cwg-icon name="crm-xg" :size="16" color="#2e3a47" />
-                    </text>
-                    <text v-t="'vu.item3'" />
-                </view>
-            </view>
-        </view>
-
-        <!-- 通知区域(预留) -->
-        <view class="notificators"></view>
-        <TerminalDialog v-model:visible="terminalDialogVisible" />
-        <TerminalChangePasswordDialog v-model:visible="terminalChangePasswordDialogVisible" :pwdType="pwdType"
-            :account="account" :accountLabel="t('Documentary.tradingCenter.item29') + ' # '" />
-        <TerminalInfoDialog v-model:visible="terminalInfoDialogVisible" :accountNumber="accountInfo.login"
-            :form="accountInfo" :fieldList="fieldList" :title="t('Documentary.TundManagement.item29')"
-            :accountLabel="t('Documentary.tradingCenter.item29') + ' # '" />
-    </view>
-</template>
-
-<script setup lang="ts">
-import { ref, computed, onMounted, nextTick, onBeforeUnmount } from 'vue';
-import useRouter from "@/hooks/useRouter";
-const router = useRouter();
-import { useI18n } from 'vue-i18n';
-const { t } = useI18n();
-import TerminalDialog from './TerminalDialog.vue'
-import TerminalChangePasswordDialog from './TerminalChangePasswordDialog.vue'
-import TerminalInfoDialog from './TerminalInfoDialog.vue'
-
-const props = defineProps<{
-    account: Account;
-    isGridLayout?: boolean;
-}>();
-const accountInfo = ref(props.account)
-const isGridLayout = ref(props.isGridLayout || false)
-// 定义账户数据类型
-export interface Account {
-    labels: string[];          // 标签数组,如 ['真实', 'MT4', 'Standard']
-    accountNumber: string;      // 账号,如 '85319215'
-    nickName: string;           // 昵称,如 '标准账户'
-    balance: number;            // 余额数字
-    currency: string;           // 货币,如 'USD'
-    actualLeverage: string;     // 实际杠杆,如 '1:2000'
-    maxLeverage: string;        // 调整杠杆,如 '1:2000'
-    floatingPL: string;         // 浮动盈亏,如 '0.00 USD'
-    creditWithSymbol: string;         // 可用保证金,如 '0.00 USD'
-    equityWithSymbol: string;             // 净值,如 '0.00 USD'
-    platform: string;           // 平台,如 'MT4'
-    server: string;             // 服务器,如 'Exness-Real28'
-    login: string;              // 登录名,如 '85319215'
-    balanceWithSymbol: string;              // 余额,如 '85319215'
-}
-const isDemo = computed(() => accountInfo.value.listType == 'demo')
-const closeFunctionOpen = (code) => {
-    const closeFunctions = accountInfo.value.closeFunctions || ""
-
-    if (closeFunctions == null || closeFunctions === "") {
-        return true;
-    }
-    return String(closeFunctions).indexOf(String(code)) === -1;
-}
-// 圆形按钮数据
-const circleButtons = ref([
-    { key: 'trade', label: 'Shop.Index.Transaction', icon: 'crm-trade', action: 'trade', needDemo: false, primary: true, disabled: false, color: '#fff' },
-    { key: 'deposit', label: 'Home.page_customer.item2', icon: 'crm-deposit', action: 'deposit', needDemo: isDemo.value, disabled: !closeFunctionOpen('1'), color: '#2e3a47' },
-    { key: 'withdraw', label: 'Home.page_customer.item3', icon: 'crm-withdraw', action: 'withdraw', needDemo: isDemo.value, disabled: !closeFunctionOpen('2'), color: '#2e3a47' },
-    { key: 'transfer', label: 'Custom.Index.Transfer', icon: 'crm-transfer', action: 'transfer', needDemo: isDemo.value, disabled: !(closeFunctionOpen('5') && closeFunctionOpen('6') && closeFunctionOpen('3')), color: '#2e3a47' }
-])
-
-// 普通按钮数据
-const actionButtons = computed(() => [
-    { key: 'trade', label: 'Shop.Index.Transaction', icon: 'crm-trade', color: '#fff', primary: true, action: 'trade', needDemo: false, disabled: false },
-    { key: 'deposit', label: 'Home.page_customer.item2', icon: 'crm-deposit', color: '#2e3a47', primary: false, action: 'deposit', needDemo: isDemo.value, disabled: !closeFunctionOpen('1') },
-    { key: 'withdraw', label: 'Home.page_customer.item3', icon: 'crm-withdraw', color: '#2e3a47', primary: false, action: 'withdraw', needDemo: isDemo.value, disabled: !closeFunctionOpen('2') },
-    { key: 'transfer', label: 'Custom.Index.Transfer', icon: 'crm-transfer', color: '#2e3a47', primary: false, action: 'transfer', needDemo: isDemo.value, disabled: !(closeFunctionOpen('5') && closeFunctionOpen('6') && closeFunctionOpen('3')) }
-])
-const fieldList = ref([
-    { label: t('Custom.PaymentHistory.AccountType'), key: 'nickname', copyable: false },
-    { label: t('Label.Leverage'), key: 'actualLeverage', copyable: false },
-    { label: t('Label.FloatingPL'), key: 'floatingPL', copyable: false },
-    { label: t('Label.Balance'), key: 'balanceWithSymbol', copyable: false },
-    { label: t('Label.Equity'), key: 'equityWithSymbol', copyable: false },
-    { label: t('Label.Credit'), key: 'creditWithSymbol', copyable: false },
-    { label: t('Documentary.console.item3'), key: 'platform', copyable: false },
-    { label: t('Documentary.console.item4'), key: 'login', copyable: true }
-])
-const nickName = ref(accountInfo.value.nickName)
-
-const infoBottomRef = ref(null);
-const infoBottomHeight = ref(0);
-// 测量高度
-const updateSubmenuHeight = () => {
-    const el = infoBottomRef.value.$el;
-    if (el) {
-        // 获取内容实际高度(可能需要暂时移除过渡影响)
-        const height = el.scrollHeight || el.offsetHeight;
-        if (height > 0) {
-            infoBottomHeight.value = height;
-        }
-    }
-};
-
-// 折叠状态
-const isExpanded = ref(false);
-
-// 切换折叠
-const toggleExpand = () => {
-    isExpanded.value = !isExpanded.value;
-    if (isExpanded.value) {
-        nextTick(() => {
-            updateSubmenuHeight();
-        });
-    }
-};
-
-
-const terminalDialogVisible = ref(false)
-const terminalChangePasswordDialogVisible = ref(false)
-const terminalInfoDialogVisible = ref(false)
-const pwdType = ref(1)
-const handleAction1 = (item) => {
-    if (item.disabled) {
-        uni.showToast({
-            title: t('news_add_field.Des.item1'),
-            icon: 'none'
-        })
-        return
-    }
-    handleAction(item.action, item)
-}
-// 处理按钮操作
-const handleAction = (type: string) => {
-    console.log(type == 'info', type, 'info');
-    switch (type) {
-        case 'trade':
-            terminalDialogVisible.value = true
-            break;
-        case 'changePassword1':
-            pwdType.value = 1
-            terminalChangePasswordDialogVisible.value = true
-            break;
-        case 'changePassword2':
-            pwdType.value = 2
-            terminalChangePasswordDialogVisible.value = true
-            break;
-        case 'info':
-            console.log(type);
-            terminalInfoDialogVisible.value = true
-            break;
-        case 'deposit':
-            toDeposit()
-            break;
-        case 'withdraw':
-            toWithdraw()
-            break;
-        case 'transfer':
-            toTransfer()
-            break;
-        default:
-            break;
-    }
-};
-
-const customMenuList = computed(() => !isDemo.value ? [{ label: t('vu.item3'), type: 'changePassword1' }, { label: t('vu.item4'), type: 'changePassword2' }, { label: t('Documentary.TundManagement.item29'), type: 'info' }] : [{ label: t('Documentary.TundManagement.item29'), type: 'info' }])
-const handleCustomClick = (item, index) => {
-    handleAction(item.value.type)
-}
-// 复制文本
-const copy = (text: string) => {
-    uni.setClipboardData({
-        data: text,
-        success: function () {
-            uni.showToast({
-                title: t('Btn.item8'),
-                icon: 'none',
-                duration: 2000
-            });
-        }
-    });
-};
-// 按钮对应的操作方法
-const toDeposit = () => {
-    router.push(`/pages/customer/deposit-select?login=${accountInfo.value.login}&type=${accountInfo.value.type}&balance=${accountInfo.value.balance}&currency=${accountInfo.value.currency}`)
-}
-const toWithdraw = () => {
-    router.push(`/pages/customer/withdrawal-select?login=${accountInfo.value.login}&type=${accountInfo.value.type}&balance=${accountInfo.value.balance}&currency=${accountInfo.value.currency}`)
-}
-const toTransfer = () => {
-    router.push(`/pages/customer/transfer?login=${accountInfo.value.login}&type=${accountInfo.value.type}&balance=${accountInfo.value.balance}&currency=${accountInfo.value.currency}`)
-}
-// 格式化余额,拆分为整数和小数部分
-const balanceInteger = computed(() => {
-    return Math.floor(accountInfo.value.balance).toString();
-});
-const balanceDecimal = computed(() => {
-    const parts = accountInfo.value.balance.toFixed(2).split('.');
-    return parts[1] ? '.' + parts[1] : '.00';
-});
-// 在组件挂载后初始化高度
-onMounted(() => {
-    nextTick(() => {
-        updateSubmenuHeight();
-    });
-    window.addEventListener('resize', handleResize);
-    isExpanded.value = accountInfo.value.isExpanded;
-});
-// 监听窗口 resize
-const handleResize = () => {
-    if (isExpanded.value) {
-        updateSubmenuHeight();
-    }
-};
-onBeforeUnmount(() => {
-    window.removeEventListener('resize', handleResize);
-});
-</script>
-
-<style scoped lang="scss">
-@import '@/uni.scss';
-
-.account-card {
-    border-radius: px2rpx(16);
-    padding: px2rpx(16);
-    margin-bottom: px2rpx(16);
-    position: relative;
-    border: 1px solid rgba(108, 133, 149, 0.12);
-    color: #2e3a47;
-
-    .collapse-btn {
-        position: absolute;
-        top: px2rpx(12);
-        right: px2rpx(12);
-        background: transparent;
-        border: none;
-        padding: 0;
-        cursor: pointer;
-        color: #6c8595;
-        width: px2rpx(32);
-        height: px2rpx(32);
-        display: flex;
-        align-items: center;
-        justify-content: center;
-
-        .chevron-icon {
-            transform: rotate(90deg);
-            transition: transform 0.3s;
-
-            &.expanded {
-                transform: rotate(270deg);
-            }
-        }
-    }
-
-    .labels-container {
-        display: flex;
-        align-items: center;
-        flex-wrap: wrap;
-        gap: px2rpx(12);
-
-        margin-bottom: px2rpx(16);
-        padding-right: px2rpx(40); // 为折叠按钮留出空间
-
-        .labels {
-            display: flex;
-            gap: px2rpx(8);
-        }
-
-        .label-badge {
-            background-color: rgba(108, 133, 149, 0.08);
-            border-radius: px2rpx(4);
-            padding: px2rpx(4) px2rpx(8);
-            font-size: px2rpx(12);
-            color: #6c8595;
-            font-weight: 500;
-        }
-
-        .account-number {
-            font-size: px2rpx(18);
-            font-weight: 600;
-            line-height: 1.3;
-        }
-
-        .account-nickname {
-            font-size: px2rpx(14);
-            color: #6c8595;
-        }
-    }
-
-    .main-content {
-        .balance {
-            margin-bottom: px2rpx(16);
-
-            .balance-number {
-                font-size: px2rpx(32);
-                font-weight: 700;
-            }
-
-            .balance-decimal {
-                font-size: px2rpx(16);
-                color: #6c8595;
-                margin-left: px2rpx(4);
-            }
-        }
-
-        // 移动端按钮组(默认显示)
-        .mobile-buttons {
-            display: flex;
-            justify-content: center;
-            gap: px2rpx(0);
-            margin-bottom: px2rpx(16);
-            flex-wrap: wrap;
-
-            .circle-btn {
-                display: flex;
-                flex-direction: column;
-                align-items: center;
-                cursor: pointer;
-                width: px2rpx(64);
-
-                .circle-icon {
-                    width: px2rpx(48);
-                    height: px2rpx(48);
-                    border-radius: 50%;
-                    background-color: #f5f7f9;
-                    display: flex;
-                    align-items: center;
-                    justify-content: center;
-                    color: #2e3a47;
-                    transition: background-color 0.2s;
-
-                    &.primary {
-                        background-color: #cf1322;
-                        ;
-                        color: #fff;
-                    }
-
-                    &:hover {
-                        background-color: #e9ecef;
-                    }
-
-                    svg {
-                        width: px2rpx(24);
-                        height: px2rpx(24);
-                    }
-                }
-
-                .circle-label {
-                    font-size: px2rpx(12);
-                    margin-top: px2rpx(4);
-                    color: #6c8595;
-                }
-            }
-        }
-
-        // 桌面端按钮组(默认隐藏,屏幕>1100px时显示)
-        .desktop-buttons {
-            display: none;
-
-            .action-btn {
-                background: transparent;
-                border: 1px solid rgba(108, 133, 149, 0);
-                border-radius: px2rpx(8);
-                padding: px2rpx(8) px2rpx(20);
-                font-size: px2rpx(14);
-                color: #2e3a47;
-                display: inline-flex;
-                align-items: center;
-                justify-content: center;
-                gap: px2rpx(8);
-                cursor: pointer;
-                transition: all 0.2s;
-                height: px2rpx(40);
-                box-sizing: border-box;
-                background-color: rgba(108, 133, 149, 0.08);
-
-                &.primary {
-                    background-color: #cf1322;
-                    ;
-                    color: #fff;
-
-
-                    &:hover {
-                        background-color: var(--color-navy-600);
-                    }
-                }
-
-                &:hover {
-                    border: 1px solid rgba(108, 133, 149, 0.2);
-                }
-
-                .btn-icon {
-                    display: flex;
-                    align-items: center;
-
-                    svg {
-                        width: px2rpx(18);
-                        height: px2rpx(18);
-                    }
-                }
-
-                &.icon-only {
-                    padding: px2rpx(8);
-                }
-            }
-        }
-
-        .is-disabled {
-            cursor: not-allowed;
-            opacity: 0.5;
-        }
-
-
-    }
-
-    .info-section {
-        display: flex;
-        gap: px2rpx(24);
-        padding: px2rpx(16) 0;
-        border-top: 1px solid rgba(108, 133, 149, 0.12);
-        border-bottom: 1px solid rgba(108, 133, 149, 0.12);
-        margin: px2rpx(16) 0;
-
-        .info-column {
-            flex: 1;
-            display: flex;
-            flex-direction: column;
-            gap: px2rpx(12);
-        }
-
-        .info-item {
-            display: flex;
-            justify-content: space-between;
-            align-items: flex-end;
-            font-size: px2rpx(14);
-
-            .label {
-                color: #6c8595;
-            }
-
-            .line {
-                flex: 1;
-                height: 1px;
-                border-top: 1px dashed rgba(108, 133, 149, 0.5);
-                margin-bottom: px2rpx(1);
-
-            }
-
-            .value {
-                font-weight: 500;
-                color: #2e3a47;
-            }
-        }
-    }
-
-    @media screen and (max-width: 768px) {
-        .info-section {
-            flex-direction: column;
-            gap: px2rpx(12);
-        }
-    }
-
-    .extra-actions {
-        display: flex;
-        align-items: center;
-        gap: px2rpx(8);
-        margin-bottom: px2rpx(12);
-
-        .copy-row {
-            display: flex;
-            align-items: center;
-            gap: px2rpx(4);
-
-            font-size: px2rpx(14);
-
-            .label {
-                color: #6c8595;
-                min-width: px2rpx(30);
-            }
-
-            .value {
-                flex: 1;
-                color: #2e3a47;
-                font-family: monospace;
-            }
-
-            .copy-btn {
-                background: transparent;
-                border: 1px solid rgba(108, 133, 149, 0);
-                padding: 0;
-                cursor: pointer;
-                color: #6c8595;
-                width: px2rpx(24);
-                height: px2rpx(24);
-                display: flex;
-                align-items: center;
-                justify-content: center;
-                box-sizing: border-box;
-
-                svg {
-                    width: px2rpx(20);
-                    height: px2rpx(20);
-                }
-
-                &:hover {
-                    background-color: rgba(108, 133, 149, 0.05);
-                    border: 1px solid rgba(108, 133, 149, 0.2);
-                }
-            }
-        }
-
-        .divider {
-            width: 1px;
-            height: px2rpx(20);
-            border-left: 1px solid rgba(108, 133, 149, 0.5);
-        }
-
-        .change-password-btn {
-            background: transparent;
-            box-sizing: border-box;
-            border: 1px solid rgba(108, 133, 149, 0);
-            border-radius: px2rpx(8);
-            padding: px2rpx(8) px2rpx(16);
-            font-size: px2rpx(14);
-            color: #2e3a47;
-            display: inline-flex;
-            gap: px2rpx(8);
-            cursor: pointer;
-            margin: 0;
-            // transition: all 0.2s;
-
-            .btn-icon svg {
-                width: px2rpx(16);
-                height: px2rpx(16);
-            }
-
-            &:hover {
-                background-color: rgba(108, 133, 149, 0.05);
-                border: 1px solid rgba(108, 133, 149, 0.2);
-            }
-        }
-    }
-
-    .info-bottom {
-        overflow: hidden;
-    }
-
-    .notificators {
-        // 预留通知区域
-    }
-}
-
-// 响应式:屏幕宽度 > 1100px 时,隐藏移动端按钮,显示桌面端按钮
-@media screen and (min-width: 1100px) {
-    .account-card {
-        .main-content {
-            .mobile-buttons {
-                display: none;
-            }
-
-            .desktop-buttons {
-                display: flex;
-                gap: px2rpx(8);
-                justify-content: flex-end;
-            }
-        }
-    }
-}
-
-// 网格布局时,使用移动端样式
-.account-card.is-grid-layout {
-    .main-content {
-        .mobile-buttons {
-            display: flex;
-        }
-
-        .desktop-buttons {
-            display: none;
-        }
-    }
-}
-</style>

+ 10 - 10
pages/customer/components/AccountCardDesktop.vue

@@ -335,7 +335,7 @@ onBeforeUnmount(() => {
     margin-bottom: px2rpx(16);
     position: relative;
     border: 1px solid rgba(108, 133, 149, 0.12);
-    color: #2e3a47;
+    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
 
     .collapse-btn {
         position: absolute;
@@ -390,7 +390,7 @@ onBeforeUnmount(() => {
             font-weight: 600;
             line-height: 1.3;
             cursor: pointer;
-            color: #2e3a47;
+            color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
 
             &:hover {
                 color: #1e2a3a;
@@ -451,7 +451,7 @@ onBeforeUnmount(() => {
                     display: flex;
                     align-items: center;
                     justify-content: center;
-                    color: #2e3a47;
+                    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
                     transition: background-color 0.2s;
 
                     &.primary {
@@ -492,7 +492,7 @@ onBeforeUnmount(() => {
                 border-radius: px2rpx(8);
                 padding: px2rpx(8) px2rpx(20);
                 font-size: px2rpx(14);
-                color: #2e3a47;
+                color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
                 display: inline-flex;
                 align-items: center;
                 justify-content: center;
@@ -564,7 +564,7 @@ onBeforeUnmount(() => {
             font-size: px2rpx(14);
 
             .label {
-                color: #6c8595;
+                color: #fff;
             }
 
             .line {
@@ -577,7 +577,7 @@ onBeforeUnmount(() => {
 
             .value {
                 font-weight: 500;
-                color: #2e3a47;
+                color: #fff;
             }
         }
     }
@@ -603,13 +603,13 @@ onBeforeUnmount(() => {
             font-size: px2rpx(14);
 
             .label {
-                color: #6c8595;
+                color: #fff;
                 min-width: px2rpx(70);
             }
 
             .value {
                 flex: 1;
-                color: #2e3a47;
+                color: #fff;
                 font-family: monospace;
             }
 
@@ -618,7 +618,7 @@ onBeforeUnmount(() => {
                 border: 1px solid rgba(108, 133, 149, 0);
                 padding: 0;
                 cursor: pointer;
-                color: #6c8595;
+                color: #fff;
                 width: px2rpx(32);
                 height: px2rpx(32);
                 display: flex;
@@ -645,7 +645,7 @@ onBeforeUnmount(() => {
             border-radius: px2rpx(8);
             padding: px2rpx(8) px2rpx(16);
             font-size: px2rpx(14);
-            color: #2e3a47;
+            color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
             display: inline-flex;
             gap: px2rpx(8);
             cursor: pointer;

+ 19 - 18
pages/customer/components/AccountCardMobile.vue

@@ -16,7 +16,7 @@
             <cwg-dropdown ref="dropdownRef" @open="onOpen" @close="onClose" :menu-list="customMenuList"
                 @menuClick="handleCustomClick">
                 <view class="more-icon more-btn">
-                    <cwg-icon name="crm-ellipsis-vertical" :size="20" color="#6c8595" />
+                    <cwg-icon name="crm-ellipsis-vertical" :size="20" color="#fff" />
                 </view>
                 <template #btn>
                     <view class="mobile-buttons">
@@ -114,9 +114,9 @@ const closeFunctionOpen = (code) => {
 // 圆形按钮数据
 const circleButtons = ref([
     { key: 'trade', label: 'Shop.Index.Transaction', icon: 'crm-trade', action: 'trade', needDemo: false, primary: true, disabled: false, color: '#fff' },
-    { key: 'deposit', label: 'Home.page_customer.item2', icon: 'crm-deposit', action: 'deposit', needDemo: isDemo.value, disabled: !closeFunctionOpen('1'), color: '#2e3a47' },
-    { key: 'withdraw', label: 'Home.page_customer.item3', icon: 'crm-withdraw', action: 'withdraw', needDemo: isDemo.value, disabled: !closeFunctionOpen('2'), color: '#2e3a47' },
-    { key: 'transfer', label: 'Custom.Index.Transfer', icon: 'crm-transfer', action: 'transfer', needDemo: isDemo.value, disabled: !(closeFunctionOpen('5') && closeFunctionOpen('6') && closeFunctionOpen('3')), color: '#2e3a47' }
+    { key: 'deposit', label: 'Home.page_customer.item2', icon: 'crm-deposit', action: 'deposit', needDemo: isDemo.value, disabled: !closeFunctionOpen('1'), color: '#fff' },
+    { key: 'withdraw', label: 'Home.page_customer.item3', icon: 'crm-withdraw', action: 'withdraw', needDemo: isDemo.value, disabled: !closeFunctionOpen('2'), color: '#fff' },
+    { key: 'transfer', label: 'Custom.Index.Transfer', icon: 'crm-transfer', action: 'transfer', needDemo: isDemo.value, disabled: !(closeFunctionOpen('5') && closeFunctionOpen('6') && closeFunctionOpen('3')), color: '#fff' }
 ])
 
 const fieldList = ref([
@@ -263,7 +263,7 @@ onBeforeUnmount(() => {
     margin-bottom: px2rpx(16);
     position: relative;
     border: 1px solid rgba(108, 133, 149, 0.12);
-    color: #2e3a47;
+    color: #fff;
 
 
 
@@ -286,7 +286,7 @@ onBeforeUnmount(() => {
             border-radius: px2rpx(4);
             padding: px2rpx(4) px2rpx(8);
             font-size: px2rpx(12);
-            color: #6c8595;
+            color: #fff;
             font-weight: 500;
         }
 
@@ -301,7 +301,7 @@ onBeforeUnmount(() => {
             font-weight: 600;
             line-height: 1.3;
             cursor: pointer;
-            color: #2e3a47;
+            color: #fff;
 
             &:hover {
                 color: #1e2a3a;
@@ -310,7 +310,7 @@ onBeforeUnmount(() => {
 
         .account-nickname {
             font-size: px2rpx(14);
-            color: #6c8595;
+            color: #fff;
         }
     }
 
@@ -325,7 +325,7 @@ onBeforeUnmount(() => {
 
             .balance-decimal {
                 font-size: px2rpx(16);
-                color: #6c8595;
+                color: #fff;
                 margin-left: px2rpx(4);
             }
         }
@@ -354,7 +354,7 @@ onBeforeUnmount(() => {
             font-size: px2rpx(14);
 
             .label {
-                color: #6c8595;
+                color: #fff;
             }
 
             .line {
@@ -367,7 +367,7 @@ onBeforeUnmount(() => {
 
             .value {
                 font-weight: 500;
-                color: #2e3a47;
+                color: #fff;
             }
         }
     }
@@ -393,13 +393,13 @@ onBeforeUnmount(() => {
             font-size: px2rpx(14);
 
             .label {
-                color: #6c8595;
+                color: #fff;
                 min-width: px2rpx(30);
             }
 
             .value {
                 flex: 1;
-                color: #2e3a47;
+                color: #fff;
                 font-family: monospace;
             }
 
@@ -408,7 +408,7 @@ onBeforeUnmount(() => {
                 border: 1px solid rgba(108, 133, 149, 0);
                 padding: 0;
                 cursor: pointer;
-                color: #6c8595;
+                color: #fff;
                 width: px2rpx(24);
                 height: px2rpx(24);
                 display: flex;
@@ -441,7 +441,7 @@ onBeforeUnmount(() => {
             border-radius: px2rpx(8);
             padding: px2rpx(8) px2rpx(16);
             font-size: px2rpx(14);
-            color: #2e3a47;
+            color: #fff;
             display: inline-flex;
             gap: px2rpx(8);
             cursor: pointer;
@@ -473,6 +473,7 @@ onBeforeUnmount(() => {
 
     :deep(.cwg-dropdown-menu-container) {
         left: px2rpx(-190) !important;
+
         @media screen and (max-width: 768px) {
             left: px2rpx(-200) !important;
             width: px2rpx(240);
@@ -505,7 +506,7 @@ onBeforeUnmount(() => {
         padding: px2rpx(20);
 
 
-        border-bottom: 1px solid #f0f0f0;
+        border-bottom: 1px solid var(--bs-border-color);
 
         .circle-btn {
             display: flex;
@@ -522,7 +523,7 @@ onBeforeUnmount(() => {
                 display: flex;
                 align-items: center;
                 justify-content: center;
-                color: #2e3a47;
+                color: #fff;
                 transition: background-color 0.2s;
 
                 &.primary {
@@ -550,7 +551,7 @@ onBeforeUnmount(() => {
             .circle-label {
                 font-size: px2rpx(12);
                 margin-top: px2rpx(4);
-                color: #6c8595;
+                color: #fff;
             }
         }
     }

+ 1 - 1
pages/customer/components/CheckPopup.vue

@@ -124,7 +124,7 @@ const CopyShareLink = (link) => {
 
   .GoPay {
     margin-top: 24px;
-    background-color: #f5f7fa;
+    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
     border-radius: 8px;
     padding: 20px;
     text-align: left;

+ 1 - 1
pages/customer/components/ClauseNewListPopup.vue

@@ -79,7 +79,7 @@ const close = () => { visible.value = false; };
 
         :deep(th) {
           font-weight: bold;
-          background-color: #f5f7fa;
+          background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         }
       }
     }

+ 3 - 2
pages/customer/components/DepositCheckConfirmPopup.vue

@@ -1,5 +1,6 @@
 <template>
-  <cwg-popup v-model:visible="visible" type="center" :mask-click="false" :showFooters="true" :showClose="false" :title="t('Home.page_customer.item2')">
+  <cwg-popup v-model:visible="visible" type="center" :mask-click="false" :showFooters="true" :showClose="false"
+    :title="t('Home.page_customer.item2')">
     <view class="popup-content">
       <view class="info-section">
         <cwg-label-line-value :label="t('Custom.Deposit.Title1')" :value="loginDoc" v-if="loginDoc" />
@@ -351,7 +352,7 @@ const submit = async () => {
 
   .merchant-info {
     padding: px2rpx(16);
-    background-color: #f5f7fa;
+    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
     border-radius: px2rpx(8);
     font-size: px2rpx(13);
     line-height: 1.6;

+ 2 - 2
pages/customer/components/TerminalChangePasswordDialog.vue

@@ -158,7 +158,7 @@ watch(() => props.visible, (newVal) => {
     text-align: left;
     display: block;
     font-size: px2rpx(14);
-    color: #141d22;
+    color: #fff;
     margin-bottom: px2rpx(24);
 }
 
@@ -200,7 +200,7 @@ watch(() => props.visible, (newVal) => {
         border-radius: px2rpx(8);
         padding: px2rpx(8) px2rpx(20);
         font-size: px2rpx(14);
-        color: #2e3a47;
+        color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
         display: inline-flex;
         align-items: center;
         justify-content: center;

+ 2 - 2
pages/customer/components/TerminalDialog.vue

@@ -265,7 +265,7 @@ onMounted(() => {
     font-size: px2rpx(14);
     font-weight: 600;
     line-height: 1.4;
-    color: #141d22;
+    color: #fff;
 }
 
 .card-desc {
@@ -282,6 +282,6 @@ onMounted(() => {
     justify-content: center;
     margin-left: 16rpx;
     flex-shrink: 0;
-    color: #141d22;
+    color: #fff;
 }
 </style>

+ 4 - 4
pages/customer/components/TerminalNickNameDialog.vue

@@ -98,14 +98,14 @@ const save = async () => {
 .account-number {
     display: block;
     font-size: px2rpx(14);
-    color: #141d22;
+    color: #fff;
     margin-bottom: px2rpx(40);
 }
 
 .account-hint {
     display: block;
     font-size: px2rpx(13);
-    color: #141d22;
+    color: #fff;
     margin-bottom: px2rpx(40);
 }
 
@@ -115,7 +115,7 @@ const save = async () => {
 
 .input-label {
     font-size: px2rpx(12);
-    color: #141d22;
+    color: #fff;
     margin-bottom: px2rpx(4);
 }
 
@@ -156,7 +156,7 @@ const save = async () => {
         border-radius: px2rpx(8);
         padding: px2rpx(8) px2rpx(20);
         font-size: px2rpx(14);
-        color: #2e3a47;
+        color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
         display: inline-flex;
         align-items: center;
         justify-content: center;

+ 1 - 1
pages/customer/components/WithdrawCheckConfirmPopup.vue

@@ -189,7 +189,7 @@ const submit = async () => {
 
   .merchant-info {
     padding: px2rpx(16);
-    background-color: #f5f7fa;
+    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
     border-radius: px2rpx(8);
     font-size: px2rpx(13);
     line-height: 1.6;

+ 4 - 4
pages/customer/transfer.vue

@@ -710,7 +710,7 @@ watch(transferType, (newVal) => {
     }
 
     .picker-select {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -725,14 +725,14 @@ watch(transferType, (newVal) => {
         }
 
         &.picker-disabled {
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             color: #c0c4cc;
             cursor: not-allowed;
         }
     }
 
     .disabled-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -743,7 +743,7 @@ watch(transferType, (newVal) => {
     }
 
     .m-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);

+ 5 - 5
pages/customer/wallet-transfer.vue

@@ -57,7 +57,7 @@
 
                                 <view class="form-row">
                                     <button class="s-btn reselect" type="primary" @click="toTransfer">{{ t('Btn.Submit')
-                                        }}</button>
+                                    }}</button>
                                 </view>
                             </uni-forms>
                         </view>
@@ -406,7 +406,7 @@ onMounted(() => {
     }
 
     .picker-select {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -421,14 +421,14 @@ onMounted(() => {
         }
 
         &.picker-disabled {
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             color: #c0c4cc;
             cursor: not-allowed;
         }
     }
 
     .disabled-input {
-        // background-color: #f5f7fa;
+        // background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         // border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         // padding: px2rpx(12) px2rpx(14);
@@ -439,7 +439,7 @@ onMounted(() => {
     }
 
     .m-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);

+ 5 - 5
pages/follow/transfer.vue

@@ -58,7 +58,7 @@
 
                                 <view class="form-row">
                                     <button class="s-btn reselect" type="primary" @click="toTransfer">{{ t('Btn.Submit')
-                                        }}</button>
+                                    }}</button>
                                 </view>
                             </uni-forms>
                         </view>
@@ -412,7 +412,7 @@ onMounted(() => {
     }
 
     .picker-select {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -427,14 +427,14 @@ onMounted(() => {
         }
 
         &.picker-disabled {
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             color: #c0c4cc;
             cursor: not-allowed;
         }
     }
 
     .disabled-input {
-        // background-color: #f5f7fa;
+        // background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         // border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         // padding: px2rpx(12) px2rpx(14);
@@ -445,7 +445,7 @@ onMounted(() => {
     }
 
     .m-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);

+ 4 - 4
pages/ib/agent-transfer.vue

@@ -833,7 +833,7 @@ onLoad((options) => {
     }
 
     .picker-select {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -848,14 +848,14 @@ onLoad((options) => {
         }
 
         &.picker-disabled {
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             color: #c0c4cc;
             cursor: not-allowed;
         }
     }
 
     .disabled-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -866,7 +866,7 @@ onLoad((options) => {
     }
 
     .m-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);

+ 552 - 567
pages/ib/components/applyIbDialog.vue

@@ -2,11 +2,11 @@
   <cwg-popup :title="t(title)" :visible="visible" @close="closeDia" @confirm="confirmDia" :width="'900px'">
     <view class="dia-content">
       <uni-forms ref="formRef" labelWidth="200">
-        <uni-forms-item v-if="isFormApplyIb" :label="t('Ib.Custom.Manage3')+':'" prop="customerId">
+        <uni-forms-item v-if="isFormApplyIb" :label="t('Ib.Custom.Manage3') + ':'" prop="customerId">
           <cwg-combox v-model:value="addAgentForm.customerId" :options="customerList"
-                      :placeholder="t('placeholder.choose')" filterable @change="changeCustomer" style="max-width: 280px" />
+            :placeholder="t('placeholder.choose')" filterable @change="changeCustomer" style="max-width: 280px" />
         </uni-forms-item>
-        <uni-loading v-if="laoding"/>
+        <uni-loading v-if="laoding" />
         <view v-else class="commission-table-container" v-if="addAgentForm.customerId">
           <table class="commission-table">
             <thead>
@@ -19,14 +19,14 @@
                 <th>ENERGY</th>
                 <th>CFD</th>
                 <th>INDEX</th>
-<!--                <th>Crypto</th>-->
+                <!--                <th>Crypto</th>-->
               </tr>
             </thead>
             <tbody v-for="(group, gIndex) in commissionTemplateTableData" :key="gIndex">
               <tr v-for="(item, iIndex) in group.items" :key="iIndex">
                 <td v-if="iIndex === 0" :rowspan="group.items.length" class="center-td">
                   <switch :checked="group.isOpen" @change="(e) => onGroupSwitchChange(e, group)" color="#2b5aed"
-                          style="transform:scale(0.8)" />
+                    style="transform:scale(0.8)" />
                 </td>
                 <td v-if="iIndex === 0" :rowspan="group.items.length" class="center-td group-name-td">
                   {{ group.accountGroup }}
@@ -35,642 +35,627 @@
                   {{ item.type }}
                 </td>
                 <td style="width: 80px;">
-                  <cwg-combox
-                    v-model:value="item.energy"
-                    :options="formatOptions(item.energyOptions)"
-                    :placeholder="t('placeholder.choose')"
-                  />
+                  <cwg-combox v-model:value="item.energy" :options="formatOptions(item.energyOptions)"
+                    :placeholder="t('placeholder.choose')" />
                 </td>
                 <td>
-                  <cwg-combox
-                    v-model:value="item.forex"
-                    :options="formatOptions(item.forexOptions)"
-                    :placeholder="t('placeholder.choose')"
-                  />
+                  <cwg-combox v-model:value="item.forex" :options="formatOptions(item.forexOptions)"
+                    :placeholder="t('placeholder.choose')" />
                 </td>
                 <td>
-                  <cwg-combox
-                    v-model:value="item.energy2"
-                    :options="formatOptions(item.energy2Options)"
-                    :placeholder="t('placeholder.choose')"
-                  />
+                  <cwg-combox v-model:value="item.energy2" :options="formatOptions(item.energy2Options)"
+                    :placeholder="t('placeholder.choose')" />
                 </td>
                 <td>
-                  <cwg-combox
-                    v-model:value="item.index"
-                    :options="formatOptions(item.indexOptions)"
-                    :placeholder="t('placeholder.choose')"
-                  />
+                  <cwg-combox v-model:value="item.index" :options="formatOptions(item.indexOptions)"
+                    :placeholder="t('placeholder.choose')" />
                 </td>
                 <td>
-                  <cwg-combox
-                    v-model:value="item.metal"
-                    :options="formatOptions(item.metalOptions)"
-                    :placeholder="t('placeholder.choose')"
-                  />
+                  <cwg-combox v-model:value="item.metal" :options="formatOptions(item.metalOptions)"
+                    :placeholder="t('placeholder.choose')" />
                 </td>
               </tr>
             </tbody>
           </table>
         </view>
-<!--        <view v-else style="height: 50px"/>-->
+        <!--        <view v-else style="height: 50px"/>-->
       </uni-forms>
     </view>
   </cwg-popup>
 </template>
 
 <script setup lang="ts">
-  import { ref, reactive, computed, onMounted, onUnmounted, watch } from 'vue'
-  import { onLoad } from '@dcloudio/uni-app'
-  import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
-  import { customApi } from '@/service/custom'
-  import { financialApi } from '@/service/financial'
-  import Config from '@/config/index'
-  import { ibApi } from '@/service/ib'
-  import useUserStore from '@/stores/use-user-store'
-  import { lang } from '@/composables/config'
-
-  const props = defineProps({
-    paramsType: {
-      type: String,
-      default: '',
-    },
-    title: {
-      type: String,
-      default: 'Ib.Report.Title5',
-    },
-    // 是否显示弹窗
-    visible: {
-      type: Boolean,
-      default: false,
-    },
-    // 详情tableData
-    detail: { type: Array, default: () => ({}) },
-    // 是否需要选择客户
-    isFormApplyIb: {
-      type: Boolean,
-      default: false,
-    },
-  })
-  const { Code, Host80 } = Config
-  const { t } = useI18n()
-  const formRef = ref(null)
-  const addAgentForm = ref({
-    customerId: '',
-  })
-  const customerList = ref([])
-  const commissionAccountTypeSettings = ref({
-    ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
-    standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
-    cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
-  })
-  const commissionAccountTypeData = ref({
-    ecn: [],
-    standard: [],
-    cent: [],
-  })
-  const commissionTemplateTableData = ref<any[]>([])
-  const emit = defineEmits(['close', 'confirm'])
-  const laoding = ref(false)
-  onMounted(() => {
-    // initCommissionTemplateData(29634)
-  })
-
-  watch(() => props.visible, async (val) => {
-    if (val) {
-      laoding.value = true
-      if (props.isFormApplyIb){
-        await loadCustomerList()
+import { ref, reactive, computed, onMounted, onUnmounted, watch } from 'vue'
+import { onLoad } from '@dcloudio/uni-app'
+import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
+import { customApi } from '@/service/custom'
+import { financialApi } from '@/service/financial'
+import Config from '@/config/index'
+import { ibApi } from '@/service/ib'
+import useUserStore from '@/stores/use-user-store'
+import { lang } from '@/composables/config'
+
+const props = defineProps({
+  paramsType: {
+    type: String,
+    default: '',
+  },
+  title: {
+    type: String,
+    default: 'Ib.Report.Title5',
+  },
+  // 是否显示弹窗
+  visible: {
+    type: Boolean,
+    default: false,
+  },
+  // 详情tableData
+  detail: { type: Array, default: () => ({}) },
+  // 是否需要选择客户
+  isFormApplyIb: {
+    type: Boolean,
+    default: false,
+  },
+})
+const { Code, Host80 } = Config
+const { t } = useI18n()
+const formRef = ref(null)
+const addAgentForm = ref({
+  customerId: '',
+})
+const customerList = ref([])
+const commissionAccountTypeSettings = ref({
+  ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
+  standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
+  cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
+})
+const commissionAccountTypeData = ref({
+  ecn: [],
+  standard: [],
+  cent: [],
+})
+const commissionTemplateTableData = ref<any[]>([])
+const emit = defineEmits(['close', 'confirm'])
+const laoding = ref(false)
+onMounted(() => {
+  // initCommissionTemplateData(29634)
+})
+
+watch(() => props.visible, async (val) => {
+  if (val) {
+    laoding.value = true
+    if (props.isFormApplyIb) {
+      await loadCustomerList()
+    }
+    if (props.detail.id) {
+      let params = {
+        customId: props.detail.id,
       }
-      if (props.detail.id) {
-        let params = {
-          customId: props.detail.id,
-        }
-        addAgentForm.value = {
-          customerId: props.detail.id,
-        };
-        if (props.paramsType == 'vietnam') {
-          params = {
-            agentId: props.detail.id,
-          }
+      addAgentForm.value = {
+        customerId: props.detail.id,
+      };
+      if (props.paramsType == 'vietnam') {
+        params = {
+          agentId: props.detail.id,
         }
-        await initCommissionTemplateData(params)
       }
-      laoding.value = false
-    }
-  })
-
-  const getSpreadLabelCommission = (item) => {
-    return item.groupName || ''
-  }
-
-  const handleCommissionAccountTypeChange = (type, loginType) => {
-    const setting = commissionAccountTypeSettings.value[type]
-    const availableSpreads = getAvailableSpreadsCommission(loginType)
-    if (
-      setting.selectedIndex !== null &&
-      setting.selectedIndex !== undefined
-    ) {
-      setting.selectedItem = availableSpreads[setting.selectedIndex] || null
-    } else {
-      setting.selectedItem = null
-    }
-  }
-
-  const generateOptions = (currentValue) => {
-    const options = []
-    for (let i = 0; i <= currentValue; i++) {
-      options.push(i)
+      await initCommissionTemplateData(params)
     }
-    return options
-  }
-
-  // 格式化 options 为 combox 期望的格式
-  const formatOptions = (opts) => {
-    if (!opts || !Array.isArray(opts)) return []
-    return opts.map(val => ({ text: String(val), value: val }))
-  }
-
-  const toggleGroup = (group) => {
-    group.isOpen = !group.isOpen
-  }
-
-  const onGroupSwitchChange = (e, group) => {
-    group.isOpen = e.detail.value
-  }
-
-  const initCommissionTemplateData = async (params) => {
-    try {
-      const res = await ibApi.getVietnamPoints(params)
-
-      if (res.code == Code.StatusOK && res.data && Array.isArray(res.data)) {
-        const groupedData: Record<string, any[]> = {}
-
-        res.data.forEach((group: any) => {
-          const accountGroup = group.groupCategoryName || '--'
-          const isOpen = group.valid !== undefined ? group.valid : 1
-
-          if (!groupedData[accountGroup]) {
-            groupedData[accountGroup] = []
-          }
+    laoding.value = false
+  }
+})
+
+const getSpreadLabelCommission = (item) => {
+  return item.groupName || ''
+}
+
+const handleCommissionAccountTypeChange = (type, loginType) => {
+  const setting = commissionAccountTypeSettings.value[type]
+  const availableSpreads = getAvailableSpreadsCommission(loginType)
+  if (
+    setting.selectedIndex !== null &&
+    setting.selectedIndex !== undefined
+  ) {
+    setting.selectedItem = availableSpreads[setting.selectedIndex] || null
+  } else {
+    setting.selectedItem = null
+  }
+}
+
+const generateOptions = (currentValue) => {
+  const options = []
+  for (let i = 0; i <= currentValue; i++) {
+    options.push(i)
+  }
+  return options
+}
+
+// 格式化 options 为 combox 期望的格式
+const formatOptions = (opts) => {
+  if (!opts || !Array.isArray(opts)) return []
+  return opts.map(val => ({ text: String(val), value: val }))
+}
+
+const toggleGroup = (group) => {
+  group.isOpen = !group.isOpen
+}
+
+const onGroupSwitchChange = (e, group) => {
+  group.isOpen = e.detail.value
+}
+
+const initCommissionTemplateData = async (params) => {
+  try {
+    const res = await ibApi.getVietnamPoints(params)
+
+    if (res.code == Code.StatusOK && res.data && Array.isArray(res.data)) {
+      const groupedData: Record<string, any[]> = {}
+
+      res.data.forEach((group: any) => {
+        const accountGroup = group.groupCategoryName || '--'
+        const isOpen = group.valid !== undefined ? group.valid : 1
+
+        if (!groupedData[accountGroup]) {
+          groupedData[accountGroup] = []
+        }
 
-          const rebates = Array.isArray(group.rebates) ? group.rebates : []
-          const superRebates = Array.isArray(group.superRebates) ? group.superRebates : []
-          if (superRebates.length > 0) {
-            const rebateRow: any = {
-              accountGroup,
-              groupCategoryId: group.groupCategoryId,
-              dataType: 'rebates',
-              type: group.rebateTypeName || 'Point',
-              isOpen,
-              forex: 0,
-              index: 0,
-              metal: 0,
-              energy: 0,
-              energy2: 0,
-              energy2Max: 0,
-              forex1: 0,
-              index1: 0,
-              metal1: 0,
-              energy1: 0,
-            }
-
-            rebates.forEach((rebate: any) => {
-              if (rebate.symbolCategory === 1) rebateRow.forex = rebate.point || 0
-              else if (rebate.symbolCategory === 2) rebateRow.index = rebate.point || 0
-              else if (rebate.symbolCategory === 3) rebateRow.metal = rebate.point || 0
-              else if (rebate.symbolCategory === 4) rebateRow.energy = rebate.point || 0
-              else if (rebate.symbolCategory === 5) rebateRow.energy2 = rebate.point || 0
-            })
-
-            superRebates.forEach((rebate: any) => {
-              if (rebate.symbolCategory === 1) rebateRow.forex1 = rebate.point || 0
-              else if (rebate.symbolCategory === 2) rebateRow.index1 = rebate.point || 0
-              else if (rebate.symbolCategory === 3) rebateRow.metal1 = rebate.point || 0
-              else if (rebate.symbolCategory === 4) rebateRow.energy1 = rebate.point || 0
-              else if (rebate.symbolCategory === 5) rebateRow.energy2Max = rebate.point || 0
-            })
-
-            rebateRow.forexOptions = generateOptions(rebateRow.forex1)
-            rebateRow.indexOptions = generateOptions(rebateRow.index1)
-            rebateRow.metalOptions = generateOptions(rebateRow.metal1)
-            rebateRow.energyOptions = generateOptions(rebateRow.energy1)
-            rebateRow.energy2Options = generateOptions(rebateRow.energy2Max)
-
-            groupedData[accountGroup].push(rebateRow)
+        const rebates = Array.isArray(group.rebates) ? group.rebates : []
+        const superRebates = Array.isArray(group.superRebates) ? group.superRebates : []
+        if (superRebates.length > 0) {
+          const rebateRow: any = {
+            accountGroup,
+            groupCategoryId: group.groupCategoryId,
+            dataType: 'rebates',
+            type: group.rebateTypeName || 'Point',
+            isOpen,
+            forex: 0,
+            index: 0,
+            metal: 0,
+            energy: 0,
+            energy2: 0,
+            energy2Max: 0,
+            forex1: 0,
+            index1: 0,
+            metal1: 0,
+            energy1: 0,
           }
 
-          const commissions = Array.isArray(group.commissions) ? group.commissions : []
-          const superCommissions = Array.isArray(group.superCommissions) ? group.superCommissions : []
-          if (superCommissions.length > 0) {
-            const commissionRow: any = {
-              accountGroup,
-              groupCategoryId: group.groupCategoryId,
-              dataType: 'commissions',
-              type: group.commissionTypeName || 'Commission',
-              isOpen,
-              forex: 0,
-              index: 0,
-              metal: 0,
-              energy: 0,
-              energy2: 0,
-              energy2Max: 0,
-              forex1: 0,
-              index1: 0,
-              metal1: 0,
-              energy1: 0,
-            }
-
-            commissions.forEach((comm: any) => {
-              if (comm.symbolCategory === 1) commissionRow.forex = comm.point || 0
-              else if (comm.symbolCategory === 2) commissionRow.index = comm.point || 0
-              else if (comm.symbolCategory === 3) commissionRow.metal = comm.point || 0
-              else if (comm.symbolCategory === 4) commissionRow.energy = comm.point || 0
-              else if (comm.symbolCategory === 5) commissionRow.energy2 = comm.point || 0
-            })
-
-            superCommissions.forEach((comm: any) => {
-              if (comm.symbolCategory === 1) commissionRow.forex1 = comm.point || 0
-              else if (comm.symbolCategory === 2) commissionRow.index1 = comm.point || 0
-              else if (comm.symbolCategory === 3) commissionRow.metal1 = comm.point || 0
-              else if (comm.symbolCategory === 4) commissionRow.energy1 = comm.point || 0
-              else if (comm.symbolCategory === 5) commissionRow.energy2Max = comm.point || 0
-            })
-
-            commissionRow.forexOptions = generateOptions(commissionRow.forex1)
-            commissionRow.indexOptions = generateOptions(commissionRow.index1)
-            commissionRow.metalOptions = generateOptions(commissionRow.metal1)
-            commissionRow.energyOptions = generateOptions(commissionRow.energy1)
-            commissionRow.energy2Options = generateOptions(commissionRow.energy2Max)
-
-            groupedData[accountGroup].push(commissionRow)
-          }
-        })
+          rebates.forEach((rebate: any) => {
+            if (rebate.symbolCategory === 1) rebateRow.forex = rebate.point || 0
+            else if (rebate.symbolCategory === 2) rebateRow.index = rebate.point || 0
+            else if (rebate.symbolCategory === 3) rebateRow.metal = rebate.point || 0
+            else if (rebate.symbolCategory === 4) rebateRow.energy = rebate.point || 0
+            else if (rebate.symbolCategory === 5) rebateRow.energy2 = rebate.point || 0
+          })
+
+          superRebates.forEach((rebate: any) => {
+            if (rebate.symbolCategory === 1) rebateRow.forex1 = rebate.point || 0
+            else if (rebate.symbolCategory === 2) rebateRow.index1 = rebate.point || 0
+            else if (rebate.symbolCategory === 3) rebateRow.metal1 = rebate.point || 0
+            else if (rebate.symbolCategory === 4) rebateRow.energy1 = rebate.point || 0
+            else if (rebate.symbolCategory === 5) rebateRow.energy2Max = rebate.point || 0
+          })
+
+          rebateRow.forexOptions = generateOptions(rebateRow.forex1)
+          rebateRow.indexOptions = generateOptions(rebateRow.index1)
+          rebateRow.metalOptions = generateOptions(rebateRow.metal1)
+          rebateRow.energyOptions = generateOptions(rebateRow.energy1)
+          rebateRow.energy2Options = generateOptions(rebateRow.energy2Max)
+
+          groupedData[accountGroup].push(rebateRow)
+        }
 
-        // 将按 accountGroup 聚合后的对象转换为包含 accountGroup 和 items 数组的结构
-        const finalData = Object.keys(groupedData).map((accountGroup) => {
-          return {
+        const commissions = Array.isArray(group.commissions) ? group.commissions : []
+        const superCommissions = Array.isArray(group.superCommissions) ? group.superCommissions : []
+        if (superCommissions.length > 0) {
+          const commissionRow: any = {
             accountGroup,
-            // 默认不展开
-            isOpen:groupedData[accountGroup].some(item => item.isOpen == 1) || false ,
-            items: groupedData[accountGroup],
+            groupCategoryId: group.groupCategoryId,
+            dataType: 'commissions',
+            type: group.commissionTypeName || 'Commission',
+            isOpen,
+            forex: 0,
+            index: 0,
+            metal: 0,
+            energy: 0,
+            energy2: 0,
+            energy2Max: 0,
+            forex1: 0,
+            index1: 0,
+            metal1: 0,
+            energy1: 0,
           }
-        }).filter(item => item.items.length > 0)
 
-        console.log('tableData', finalData)
-        commissionTemplateTableData.value = finalData
-        return
-      }
-
-      commissionTemplateTableData.value = []
-      uni.showToast({
-        title: res.msg || t('Ib.Custom.GetDataFailed'),
-        icon: 'none',
+          commissions.forEach((comm: any) => {
+            if (comm.symbolCategory === 1) commissionRow.forex = comm.point || 0
+            else if (comm.symbolCategory === 2) commissionRow.index = comm.point || 0
+            else if (comm.symbolCategory === 3) commissionRow.metal = comm.point || 0
+            else if (comm.symbolCategory === 4) commissionRow.energy = comm.point || 0
+            else if (comm.symbolCategory === 5) commissionRow.energy2 = comm.point || 0
+          })
+
+          superCommissions.forEach((comm: any) => {
+            if (comm.symbolCategory === 1) commissionRow.forex1 = comm.point || 0
+            else if (comm.symbolCategory === 2) commissionRow.index1 = comm.point || 0
+            else if (comm.symbolCategory === 3) commissionRow.metal1 = comm.point || 0
+            else if (comm.symbolCategory === 4) commissionRow.energy1 = comm.point || 0
+            else if (comm.symbolCategory === 5) commissionRow.energy2Max = comm.point || 0
+          })
+
+          commissionRow.forexOptions = generateOptions(commissionRow.forex1)
+          commissionRow.indexOptions = generateOptions(commissionRow.index1)
+          commissionRow.metalOptions = generateOptions(commissionRow.metal1)
+          commissionRow.energyOptions = generateOptions(commissionRow.energy1)
+          commissionRow.energy2Options = generateOptions(commissionRow.energy2Max)
+
+          groupedData[accountGroup].push(commissionRow)
+        }
       })
-    } catch (error) {
-      commissionTemplateTableData.value = []
-      uni.showToast({ title: t('Ib.Custom.GetDataFailed'), icon: 'none' })
-    }
-  }
 
+      // 将按 accountGroup 聚合后的对象转换为包含 accountGroup 和 items 数组的结构
+      const finalData = Object.keys(groupedData).map((accountGroup) => {
+        return {
+          accountGroup,
+          // 默认不展开
+          isOpen: groupedData[accountGroup].some(item => item.isOpen == 1) || false,
+          items: groupedData[accountGroup],
+        }
+      }).filter(item => item.items.length > 0)
 
-  // 加载客户列表
-  const loadCustomerList = async () => {
-    try {
-      let res = await ibApi.customerSubsList({
-        ibStatus: 1,
-      })
-      if (res.code == Code.StatusOK) {
-        customerList.value = res.data.map(item => ({
-          text: `${item.name || ''}-${item.cId}`,
-          value: item.id || '',
-          cId: item.cId, // 保存 cId 供后续提交使用
-        })) || []
-      } else {
-        uni.showToast({ title: res.msg, icon: 'none' })
-        customerList.value = []
-      }
-    } catch (error) {
-      console.error('加载客户列表失败:', error)
-      customerList.value = []
-    } finally {
+      console.log('tableData', finalData)
+      commissionTemplateTableData.value = finalData
+      return
     }
+
+    commissionTemplateTableData.value = []
+    uni.showToast({
+      title: res.msg || t('Ib.Custom.GetDataFailed'),
+      icon: 'none',
+    })
+  } catch (error) {
+    commissionTemplateTableData.value = []
+    uni.showToast({ title: t('Ib.Custom.GetDataFailed'), icon: 'none' })
   }
+}
 
-  // 客户选择改变时触发
-  const changeCustomer = async (val) => {
-    if (val) {
-      laoding.value = true
-      await initCommissionTemplateData({ customId: val })
-      laoding.value = false
+
+// 加载客户列表
+const loadCustomerList = async () => {
+  try {
+    let res = await ibApi.customerSubsList({
+      ibStatus: 1,
+    })
+    if (res.code == Code.StatusOK) {
+      customerList.value = res.data.map(item => ({
+        text: `${item.name || ''}-${item.cId}`,
+        value: item.id || '',
+        cId: item.cId, // 保存 cId 供后续提交使用
+      })) || []
     } else {
-      commissionTemplateTableData.value = []
+      uni.showToast({ title: res.msg, icon: 'none' })
+      customerList.value = []
     }
+  } catch (error) {
+    console.error('加载客户列表失败:', error)
+    customerList.value = []
+  } finally {
+  }
+}
+
+// 客户选择改变时触发
+const changeCustomer = async (val) => {
+  if (val) {
+    laoding.value = true
+    await initCommissionTemplateData({ customId: val })
+    laoding.value = false
+  } else {
+    commissionTemplateTableData.value = []
   }
-
-  // 构建佣金模板points数据
-  const buildCommissionTemplatePoints = () => {
-    const points: any[] = []
-    const groupedData: Record<string, any> = {}
-
-    // 由于现在的 commissionTemplateTableData 是 { accountGroup, isOpen, items } 嵌套结构,需要双层遍历提取
-    commissionTemplateTableData.value.forEach((groupObj) => {
-      groupObj.items.forEach((row: any) => {
-        const groupId = row.groupCategoryId
-        if (!groupedData[groupId]) {
-          groupedData[groupId] = {
-            groupCategoryId: groupId,
-            commissions: [],
-            rebates: [],
-            valid: groupObj.isOpen ? 1 : 0,
-          }
+}
+
+// 构建佣金模板points数据
+const buildCommissionTemplatePoints = () => {
+  const points: any[] = []
+  const groupedData: Record<string, any> = {}
+
+  // 由于现在的 commissionTemplateTableData 是 { accountGroup, isOpen, items } 嵌套结构,需要双层遍历提取
+  commissionTemplateTableData.value.forEach((groupObj) => {
+    groupObj.items.forEach((row: any) => {
+      const groupId = row.groupCategoryId
+      if (!groupedData[groupId]) {
+        groupedData[groupId] = {
+          groupCategoryId: groupId,
+          commissions: [],
+          rebates: [],
+          valid: groupObj.isOpen ? 1 : 0,
         }
+      }
 
-        // 根据dataType添加到对应的数组
-        const pointList = row.dataType === 'commissions'
-          ? groupedData[groupId].commissions
-          : groupedData[groupId].rebates
+      // 根据dataType添加到对应的数组
+      const pointList = row.dataType === 'commissions'
+        ? groupedData[groupId].commissions
+        : groupedData[groupId].rebates
 
-        // 添加各个symbolCategory的数据
-        if (row.forex !== undefined && row.forex !== null) {
-          pointList.push({ symbolCategory: 1, point: row.forex }) // FX
-        }
-        if (row.index !== undefined && row.index !== null) {
-          pointList.push({ symbolCategory: 2, point: row.index }) // CFD
-        }
-        if (row.metal !== undefined && row.metal !== null) {
-          pointList.push({ symbolCategory: 3, point: row.metal }) // INDEX
-        }
-        if (row.energy !== undefined && row.energy !== null) {
-          pointList.push({ symbolCategory: 4, point: row.energy }) // METAL
-        }
-        if (row.energy2 !== undefined && row.energy2 !== null) {
-          pointList.push({ symbolCategory: 5, point: row.energy2 }) // Energy
-        }
-        // if (row.energy2 !== undefined && row.energy2 !== null) {
-        //   pointList.push({ symbolCategory: 5, point: row.energy2 }) // Energy
-        // }
-      })
-    })
-
-    // 转换为数组格式
-    Object.keys(groupedData).forEach((groupId) => {
-      const group = groupedData[groupId]
-      if (group.commissions.length > 0 || group.rebates.length > 0) {
-        points.push({
-          groupCategoryId: group.groupCategoryId,
-          commissions: group.commissions.length > 0 ? group.commissions : undefined,
-          rebates: group.rebates.length > 0 ? group.rebates : undefined,
-          valid: group.valid,
-        })
+      // 添加各个symbolCategory的数据
+      if (row.forex !== undefined && row.forex !== null) {
+        pointList.push({ symbolCategory: 1, point: row.forex }) // FX
       }
+      if (row.index !== undefined && row.index !== null) {
+        pointList.push({ symbolCategory: 2, point: row.index }) // CFD
+      }
+      if (row.metal !== undefined && row.metal !== null) {
+        pointList.push({ symbolCategory: 3, point: row.metal }) // INDEX
+      }
+      if (row.energy !== undefined && row.energy !== null) {
+        pointList.push({ symbolCategory: 4, point: row.energy }) // METAL
+      }
+      if (row.energy2 !== undefined && row.energy2 !== null) {
+        pointList.push({ symbolCategory: 5, point: row.energy2 }) // Energy
+      }
+      // if (row.energy2 !== undefined && row.energy2 !== null) {
+      //   pointList.push({ symbolCategory: 5, point: row.energy2 }) // Energy
+      // }
     })
+  })
 
-    return points
-  }
-
-  const toVerified = () => {
-    // 确认按钮点击事件
-    emit('confirm')
-  }
-
-  const closeDia = () => {
-    addAgentForm.value = {
-      customerId: ''
+  // 转换为数组格式
+  Object.keys(groupedData).forEach((groupId) => {
+    const group = groupedData[groupId]
+    if (group.commissions.length > 0 || group.rebates.length > 0) {
+      points.push({
+        groupCategoryId: group.groupCategoryId,
+        commissions: group.commissions.length > 0 ? group.commissions : undefined,
+        rebates: group.rebates.length > 0 ? group.rebates : undefined,
+        valid: group.valid,
+      })
     }
-    commissionTemplateTableData.value = []
-    emit('close')
-  }
+  })
 
-  const confirmDia = async () => {
-    //  越南分配也用,看怎么调整提交接口
-    let customId, cId
+  return points
+}
 
-    // 越南佣金分配不用判断customId
-    if (props.paramsType !== 'vietnam') {
-      if (!props.isFormApplyIb) {
-        if (!props.detail.id) {
-          uni.showToast({ title: t('Ib.Custom.CustomerNotExist'), icon: 'none' })
-          return
-        }
-        const applyIbRowData: any = props.detail || {}
-        customId = applyIbRowData.id
-        cId = applyIbRowData.cId
-      } else {
-        // 从其他地方打开,需要选择客户
-        if (!addAgentForm.value.customerId) {
-          uni.showToast({ title: t('placeholder.choose'), icon: 'none' })
-          return
-        }
+const toVerified = () => {
+  // 确认按钮点击事件
+  emit('confirm')
+}
 
-        // 从客户列表中找到选中的客户对象
-        const selectedCustomer: any = customerList.value.find(
-          (item: any) => item.value === addAgentForm.value.customerId,
-        )
-        if (!selectedCustomer) {
-          uni.showToast({ title: t('Ib.Custom.CustomerNotFound'), icon: 'none' })
-          return
-        }
-        customId = selectedCustomer.value
-        cId = selectedCustomer.cId
-      }
-    }
+const closeDia = () => {
+  addAgentForm.value = {
+    customerId: ''
+  }
+  commissionTemplateTableData.value = []
+  emit('close')
+}
 
-    try {
-      // 构建points数据
-      const points = buildCommissionTemplatePoints()
-      // console.log(points)
-      // 调用新增代理申请接口
-      let params = {
-        customId: customId,
-        cId: cId,
-        points: points,
+const confirmDia = async () => {
+  //  越南分配也用,看怎么调整提交接口
+  let customId, cId
+
+  // 越南佣金分配不用判断customId
+  if (props.paramsType !== 'vietnam') {
+    if (!props.isFormApplyIb) {
+      if (!props.detail.id) {
+        uni.showToast({ title: t('Ib.Custom.CustomerNotExist'), icon: 'none' })
+        return
       }
-      if (props.paramsType === 'vietnam') {
-        params = {
-          agentId: props.detail.id,
-          points: points,
-        }
+      const applyIbRowData: any = props.detail || {}
+      customId = applyIbRowData.id
+      cId = applyIbRowData.cId
+    } else {
+      // 从其他地方打开,需要选择客户
+      if (!addAgentForm.value.customerId) {
+        uni.showToast({ title: t('placeholder.choose'), icon: 'none' })
+        return
       }
 
-      // 越南分配和新增代理
-      const res = props.paramsType === 'vietnam' ? await ibApi.saveVietnamPoints(params) : await ibApi.agentApplyAddPoint(params)
-
-      if (res.code == Code.StatusOK) {
-        uni.showToast({
-          title: res.msg || props.paramsType ? t('Ib.Custom.SaveSuccess') : t('Ib.Custom.SubmitSuccess'),
-          icon: 'success',
-        })
-        closeDia()
-        emit('confirm')
-
-      } else {
-        uni.showToast({
-          title: res.msg || props.paramsType ? t('Ib.Custom.SaveFailed') : t('Ib.Custom.SubmitFailed'),
-          icon: 'none',
-        })
+      // 从客户列表中找到选中的客户对象
+      const selectedCustomer: any = customerList.value.find(
+        (item: any) => item.value === addAgentForm.value.customerId,
+      )
+      if (!selectedCustomer) {
+        uni.showToast({ title: t('Ib.Custom.CustomerNotFound'), icon: 'none' })
+        return
       }
-    } catch (error) {
-      console.error('新增代理失败或保存越南分配数据失败:', error)
-      uni.showToast({ title: props.paramsType ? t('Ib.Custom.SaveFailed') : t('Ib.Custom.SubmitFailed'), icon: 'none' })
+      customId = selectedCustomer.value
+      cId = selectedCustomer.cId
     }
   }
-</script>
-<style lang="scss" scoped>
-  @import "@/uni.scss";
-
-  .commission-table-container {
-    margin-top: px2rpx(10);
-    padding-bottom: px2rpx(150); /* 预留底部空间,防止最下面的下拉框被截断或遮挡 */
-    width: 100%;
-    overflow-x: auto;
-  }
 
-  .commission-table {
-    width: 100%;
-    border-collapse: collapse;
-    border-spacing: 0;
-    font-size: px2rpx(14);
-    color: #606266;
-    border: 1px solid #ebeef5;
-
-    thead {
-      background-color: #f5f7fa;
-    }
-
-    th {
-      padding: px2rpx(12) px2rpx(10);
-      text-align: center;
-      font-weight: bold;
-      color: #909399;
-      border: 1px solid #ebeef5;
-      font-size: px2rpx(13);
-      white-space: nowrap;
-    }
-
-    td {
-      padding: px2rpx(8) px2rpx(10);
-      border: 1px solid #ebeef5;
-      vertical-align: middle;
+  try {
+    // 构建points数据
+    const points = buildCommissionTemplatePoints()
+    // console.log(points)
+    // 调用新增代理申请接口
+    let params = {
+      customId: customId,
+      cId: cId,
+      points: points,
     }
-
-    .center-td {
-      text-align: center;
+    if (props.paramsType === 'vietnam') {
+      params = {
+        agentId: props.detail.id,
+        points: points,
+      }
     }
 
-    .group-name-td {
-      color: #303133;
-      font-weight: 500;
-    }
+    // 越南分配和新增代理
+    const res = props.paramsType === 'vietnam' ? await ibApi.saveVietnamPoints(params) : await ibApi.agentApplyAddPoint(params)
 
-    .type-td {
-      color: #606266;
-    }
+    if (res.code == Code.StatusOK) {
+      uni.showToast({
+        title: res.msg || props.paramsType ? t('Ib.Custom.SaveSuccess') : t('Ib.Custom.SubmitSuccess'),
+        icon: 'success',
+      })
+      closeDia()
+      emit('confirm')
 
-    :deep(.cwg-combox) {
-      width: 100%;
-      min-width: px2rpx(80);
+    } else {
+      uni.showToast({
+        title: res.msg || props.paramsType ? t('Ib.Custom.SaveFailed') : t('Ib.Custom.SubmitFailed'),
+        icon: 'none',
+      })
     }
+  } catch (error) {
+    console.error('新增代理失败或保存越南分配数据失败:', error)
+    uni.showToast({ title: props.paramsType ? t('Ib.Custom.SaveFailed') : t('Ib.Custom.SubmitFailed'), icon: 'none' })
   }
-
-  .dialog-account-adjust-body {
-    padding: 20rpx;
-  }
-
-  .account-adjust-cid-row {
-    display: flex;
-    align-items: center;
-    margin-bottom: 20rpx;
-  }
-
-  .account-adjust-cid-label {
-    color: #606266;
-    margin-right: px2rpx(5);
-  }
-
-  .account-adjust-cid-value {
-    font-weight: bold;
-    color: #303133;
-  }
-
-  .form-section {
-    margin-bottom: 20rpx;
-  }
-
-  .section-title {
-    display: flex;
-    align-items: center;
-    margin-bottom: px2rpx(15);
-    font-weight: bold;
-    font-size: px2rpx(14);
-  }
-
-  .section-title i {
-    margin-right: 10rpx;
-  }
-
-  .account-type-grid {
-  }
-
-  .account-type-card {
-    display: flex;
-    flex-direction: column;
-    margin-bottom: px2rpx(20);
-  }
-
-  .account-type-label {
-    margin-bottom: 10rpx;
-    font-size: 14rpx;
-  }
-
-  .account-select {
-    width: 100%;
-  }
-
-  .dialog-account-adjust-footer {
-    padding: 20rpx;
-  }
-
-  .account-adjust-notes-panel {
-    margin-bottom: 20rpx;
-  }
-
-  .account-adjust-notes-section {
-    background-color: #f5f7fa;
-    padding: 15rpx;
-    border-radius: 8rpx;
-  }
-
-  .account-adjust-notes-title {
-    display: flex;
-    align-items: center;
-    margin-bottom: px2rpx(10);
+}
+</script>
+<style lang="scss" scoped>
+@import "@/uni.scss";
+
+.commission-table-container {
+  margin-top: px2rpx(10);
+  padding-bottom: px2rpx(150);
+  /* 预留底部空间,防止最下面的下拉框被截断或遮挡 */
+  width: 100%;
+  overflow-x: auto;
+}
+
+.commission-table {
+  width: 100%;
+  border-collapse: collapse;
+  border-spacing: 0;
+  font-size: px2rpx(14);
+  color: #606266;
+  border: 1px solid #ebeef5;
+
+  thead {
+    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+  }
+
+  th {
+    padding: px2rpx(12) px2rpx(10);
+    text-align: center;
     font-weight: bold;
+    color: #909399;
+    border: 1px solid #ebeef5;
     font-size: px2rpx(13);
+    white-space: nowrap;
   }
 
-  .account-adjust-notes-title-icon {
-    margin-right: px2rpx(10);
+  td {
+    padding: px2rpx(8) px2rpx(10);
+    border: 1px solid #ebeef5;
+    vertical-align: middle;
   }
 
-  .account-adjust-notes-list {
-    margin-left: px2rpx(20);
-    color: #606266;
-    font-size: px2rpx(13);
+  .center-td {
+    text-align: center;
   }
 
-  .account-adjust-notes-list .list {
-    margin-bottom: px2rpx(5);
-    margin-left: px2rpx(10);
+  .group-name-td {
+    color: #303133;
+    font-weight: 500;
   }
 
-  .account-adjust-footer-buttons {
-    display: flex;
-    justify-content: flex-end;
-    gap: 15rpx;
+  .type-td {
+    color: #606266;
   }
 
-  .account-adjust-footer-buttons button {
-    min-width: 120rpx;
-  }
+  :deep(.cwg-combox) {
+    width: 100%;
+    min-width: px2rpx(80);
+  }
+}
+
+.dialog-account-adjust-body {
+  padding: 20rpx;
+}
+
+.account-adjust-cid-row {
+  display: flex;
+  align-items: center;
+  margin-bottom: 20rpx;
+}
+
+.account-adjust-cid-label {
+  color: #606266;
+  margin-right: px2rpx(5);
+}
+
+.account-adjust-cid-value {
+  font-weight: bold;
+  color: #303133;
+}
+
+.form-section {
+  margin-bottom: 20rpx;
+}
+
+.section-title {
+  display: flex;
+  align-items: center;
+  margin-bottom: px2rpx(15);
+  font-weight: bold;
+  font-size: px2rpx(14);
+}
+
+.section-title i {
+  margin-right: 10rpx;
+}
+
+.account-type-grid {}
+
+.account-type-card {
+  display: flex;
+  flex-direction: column;
+  margin-bottom: px2rpx(20);
+}
+
+.account-type-label {
+  margin-bottom: 10rpx;
+  font-size: 14rpx;
+}
+
+.account-select {
+  width: 100%;
+}
+
+.dialog-account-adjust-footer {
+  padding: 20rpx;
+}
+
+.account-adjust-notes-panel {
+  margin-bottom: 20rpx;
+}
+
+.account-adjust-notes-section {
+  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+  padding: 15rpx;
+  border-radius: 8rpx;
+}
+
+.account-adjust-notes-title {
+  display: flex;
+  align-items: center;
+  margin-bottom: px2rpx(10);
+  font-weight: bold;
+  font-size: px2rpx(13);
+}
+
+.account-adjust-notes-title-icon {
+  margin-right: px2rpx(10);
+}
+
+.account-adjust-notes-list {
+  margin-left: px2rpx(20);
+  color: #606266;
+  font-size: px2rpx(13);
+}
+
+.account-adjust-notes-list .list {
+  margin-bottom: px2rpx(5);
+  margin-left: px2rpx(10);
+}
+
+.account-adjust-footer-buttons {
+  display: flex;
+  justify-content: flex-end;
+  gap: 15rpx;
+}
+
+.account-adjust-footer-buttons button {
+  min-width: 120rpx;
+}
 </style>

+ 271 - 287
pages/ib/components/pointDialog.vue

@@ -16,46 +16,31 @@
               <view class="account-type-label">
                 {{ t('AccountType.StandardAccount') }}
               </view>
-              <cwg-combox
-                v-model:value="commissionAccountTypeSettings.standard.selectedIndex"
-                :options="getAvailableSpreadsCommission('7').map((item, index) => ({
-                  text: getSpreadLabelCommission(item),
-                  value: index
-                }))"
-                :placeholder="t('placeholder.choose')"
-                class="account-select"
-                @change="(value) => handleCommissionAccountTypeChange('standard', '7', value)"
-              />
+              <cwg-combox v-model:value="commissionAccountTypeSettings.standard.selectedIndex" :options="getAvailableSpreadsCommission('7').map((item, index) => ({
+                text: getSpreadLabelCommission(item),
+                value: index
+              }))" :placeholder="t('placeholder.choose')" class="account-select"
+                @change="(value) => handleCommissionAccountTypeChange('standard', '7', value)" />
             </view>
             <view class="account-type-card">
               <view class="account-type-label">
                 {{ t('AccountType.SeniorAccount') }}
               </view>
-              <cwg-combox
-                v-model:value="commissionAccountTypeSettings.ecn.selectedIndex"
-                :options="getAvailableSpreadsCommission('2').map((item, index) => ({
-                  text: getSpreadLabelCommission(item),
-                  value: index
-                }))"
-                :placeholder="t('placeholder.choose')"
-                class="account-select"
-                @change="(value) => handleCommissionAccountTypeChange('ecn', '2', value)"
-              />
+              <cwg-combox v-model:value="commissionAccountTypeSettings.ecn.selectedIndex" :options="getAvailableSpreadsCommission('2').map((item, index) => ({
+                text: getSpreadLabelCommission(item),
+                value: index
+              }))" :placeholder="t('placeholder.choose')" class="account-select"
+                @change="(value) => handleCommissionAccountTypeChange('ecn', '2', value)" />
             </view>
             <view class="account-type-card">
               <view class="account-type-label">
                 {{ t('AccountType.CentAccount') }}
               </view>
-              <cwg-combox
-                v-model:value="commissionAccountTypeSettings.cent.selectedIndex"
-                :options="getAvailableSpreadsCommission('8').map((item, index) => ({
-                  text: getSpreadLabelCommission(item),
-                  value: index
-                }))"
-                :placeholder="t('placeholder.choose')"
-                class="account-select"
-                @change="(value) => handleCommissionAccountTypeChange('cent', '8', value)"
-              />
+              <cwg-combox v-model:value="commissionAccountTypeSettings.cent.selectedIndex" :options="getAvailableSpreadsCommission('8').map((item, index) => ({
+                text: getSpreadLabelCommission(item),
+                value: index
+              }))" :placeholder="t('placeholder.choose')" class="account-select"
+                @change="(value) => handleCommissionAccountTypeChange('cent', '8', value)" />
             </view>
           </view>
         </view>
@@ -79,301 +64,300 @@
 </template>
 
 <script setup lang="ts">
-  import { ref, reactive, computed, onMounted, onUnmounted, watch } from 'vue'
-  import { onLoad } from '@dcloudio/uni-app'
-  import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
-  import { customApi } from '@/service/custom'
-  import { financialApi } from '@/service/financial'
-  import Config from '@/config/index'
-  import PaymentMethodsList from './components/PaymentMethodsList.vue'
-  import { ibApi } from '@/service/ib'
-  import useUserStore from '@/stores/use-user-store'
-  import { lang } from '@/composables/config'
+import { ref, reactive, computed, onMounted, onUnmounted, watch } from 'vue'
+import { onLoad } from '@dcloudio/uni-app'
+import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
+import { customApi } from '@/service/custom'
+import { financialApi } from '@/service/financial'
+import Config from '@/config/index'
+import PaymentMethodsList from './components/PaymentMethodsList.vue'
+import { ibApi } from '@/service/ib'
+import useUserStore from '@/stores/use-user-store'
+import { lang } from '@/composables/config'
 
-  const props = defineProps({
-    // 是否显示弹窗
-    visible: {
-      type: Boolean,
-      default: false,
-    },
-    // 详情formData
-    detail: { type: Object, default: () => ({}) },
-  })
-  const { Code, Host80 } = Config
-  const { t } = useI18n()
-  const formRef = ref(null)
-  const dialogForm = ref({
-    cId: '',
-  })
-  const commissionAccountTypeSettings = ref({
-    ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
-    standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
-    cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
-  })
-  const commissionAccountTypeData = ref({
-    ecn: [],
-    standard: [],
-    cent: [],
-  })
-  const emit = defineEmits(['close', 'confirm'])
+const props = defineProps({
+  // 是否显示弹窗
+  visible: {
+    type: Boolean,
+    default: false,
+  },
+  // 详情formData
+  detail: { type: Object, default: () => ({}) },
+})
+const { Code, Host80 } = Config
+const { t } = useI18n()
+const formRef = ref(null)
+const dialogForm = ref({
+  cId: '',
+})
+const commissionAccountTypeSettings = ref({
+  ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
+  standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
+  cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
+})
+const commissionAccountTypeData = ref({
+  ecn: [],
+  standard: [],
+  cent: [],
+})
+const emit = defineEmits(['close', 'confirm'])
 
-  onMounted(() => {
-    console.log(props.visible)
-  })
-  // 佣金调整弹框:拉取点差/价格数据(与 ConsumerShareLink getCustomLinkTypes 一致)
-  const loadCommissionAccountTypes = async (ibId) => {
-    const params = ibId ? { ibId } : {}
-    let res = await ibApi.customLinkTypes(params)
-    if (res.code == Code.StatusOK) {
-      const data = res.data || []
-      commissionAccountTypeData.value = {
-        ecn: data.filter(
-          (item) => item.loginType === 2 || item.loginType === '2',
-        ),
-        standard: data.filter(
-          (item) => item.loginType === 7 || item.loginType === '7',
-        ),
-        cent: data.filter(
-          (item) => item.loginType === 8 || item.loginType === '8',
-        ),
-      }
-    } else {
-      uni.showToast({
-        title: res.msg,
-        icon: 'none',
-      })
-      commissionAccountTypeData.value = { ecn: [], standard: [], cent: [] }
+onMounted(() => {
+  console.log(props.visible)
+})
+// 佣金调整弹框:拉取点差/价格数据(与 ConsumerShareLink getCustomLinkTypes 一致)
+const loadCommissionAccountTypes = async (ibId) => {
+  const params = ibId ? { ibId } : {}
+  let res = await ibApi.customLinkTypes(params)
+  if (res.code == Code.StatusOK) {
+    const data = res.data || []
+    commissionAccountTypeData.value = {
+      ecn: data.filter(
+        (item) => item.loginType === 2 || item.loginType === '2',
+      ),
+      standard: data.filter(
+        (item) => item.loginType === 7 || item.loginType === '7',
+      ),
+      cent: data.filter(
+        (item) => item.loginType === 8 || item.loginType === '8',
+      ),
     }
+  } else {
+    uni.showToast({
+      title: res.msg,
+      icon: 'none',
+    })
+    commissionAccountTypeData.value = { ecn: [], standard: [], cent: [] }
   }
-  const getAvailableSpreadsCommission = (loginType) => {
-    if (loginType === '2') return commissionAccountTypeData.value.ecn || []
-    if (loginType === '7')
-      return commissionAccountTypeData.value.standard || []
-    if (loginType === '8') return commissionAccountTypeData.value.cent || []
-    return []
+}
+const getAvailableSpreadsCommission = (loginType) => {
+  if (loginType === '2') return commissionAccountTypeData.value.ecn || []
+  if (loginType === '7')
+    return commissionAccountTypeData.value.standard || []
+  if (loginType === '8') return commissionAccountTypeData.value.cent || []
+  return []
+}
+// 佣金调整弹框:根据佣金查看(getLoginPoint)的当前值设置账户类型下拉默认选中
+const setCommissionDefaultsFromLoginPoint = async (customerId) => {
+  if (!customerId) return
+  try {
+    const res = await ibApi.getLoginPoint({ id: customerId })
+    if (res.code !== Code.StatusOK || !Array.isArray(res.data)) return
+    const list = res.data || []
+    const norm = (v) =>
+      v === 2 || v === '2'
+        ? '2'
+        : v === 7 || v === '7'
+          ? '7'
+          : v === 8 || v === '8'
+            ? '8'
+            : null
+    const byType = { 2: [], 7: [], 8: [] }
+    list.forEach((d) => {
+      const t = norm(d.loginType)
+      if (t && d.groupName) byType[t].push(d.groupName)
+    });
+    ['2', '7', '8'].forEach((loginType) => {
+      const key =
+        loginType === '2' ? 'ecn' : loginType === '7' ? 'standard' : 'cent'
+      const currentGroupName = byType[loginType][0]
+      const options = getAvailableSpreadsCommission(loginType)
+      const idx =
+        currentGroupName == null
+          ? -1
+          : options.findIndex(
+            (item) => (item.groupName || '') === currentGroupName,
+          )
+      const setting = commissionAccountTypeSettings.value[key]
+      if (idx >= 0) {
+        setting.selectedIndex = idx
+        setting.selectedItem = options[idx]
+      } else {
+        setting.selectedIndex = null
+        setting.selectedItem = null
+      }
+    })
+  } catch (e) {
+    console.error('设置佣金调整默认值失败:', e)
   }
-  // 佣金调整弹框:根据佣金查看(getLoginPoint)的当前值设置账户类型下拉默认选中
-  const setCommissionDefaultsFromLoginPoint = async (customerId) => {
-    if (!customerId) return
-    try {
-      const res = await ibApi.getLoginPoint({ id: customerId })
-      if (res.code !== Code.StatusOK || !Array.isArray(res.data)) return
-      const list = res.data || []
-      const norm = (v) =>
-        v === 2 || v === '2'
-          ? '2'
-          : v === 7 || v === '7'
-            ? '7'
-            : v === 8 || v === '8'
-              ? '8'
-              : null
-      const byType = { 2: [], 7: [], 8: [] }
-      list.forEach((d) => {
-        const t = norm(d.loginType)
-        if (t && d.groupName) byType[t].push(d.groupName)
-      });
-      ['2', '7', '8'].forEach((loginType) => {
-        const key =
-          loginType === '2' ? 'ecn' : loginType === '7' ? 'standard' : 'cent'
-        const currentGroupName = byType[loginType][0]
-        const options = getAvailableSpreadsCommission(loginType)
-        const idx =
-          currentGroupName == null
-            ? -1
-            : options.findIndex(
-              (item) => (item.groupName || '') === currentGroupName,
-            )
-        const setting = commissionAccountTypeSettings.value[key]
-        if (idx >= 0) {
-          setting.selectedIndex = idx
-          setting.selectedItem = options[idx]
-        } else {
-          setting.selectedIndex = null
-          setting.selectedItem = null
-        }
-      })
-    } catch (e) {
-      console.error('设置佣金调整默认值失败:', e)
+}
+
+watch(() => props.detail, (val) => {
+  if (val.cId) {
+    const { cId, id, comPoint1, hide1 } = val
+    dialogForm.value = {
+      cId, id, comPoint1, hide1,
     }
+    loadCommissionAccountTypes(val.ibId).then(
+      () => {
+        return setCommissionDefaultsFromLoginPoint(val.id)
+      },
+    )
   }
+})
 
-  watch(() => props.detail, (val) => {
-    if (val.cId) {
-      const { cId, id, comPoint1, hide1 } = val
-      dialogForm.value = {
-        cId, id, comPoint1, hide1,
-      }
-        loadCommissionAccountTypes(val.ibId).then(
-          () => {
-            return setCommissionDefaultsFromLoginPoint(val.id)
-          },
-        )
-    }
-  })
+const getSpreadLabelCommission = (item) => {
+  return item.groupName || ''
+}
 
-  const getSpreadLabelCommission = (item) => {
-    return item.groupName || ''
+const handleCommissionAccountTypeChange = (type, loginType) => {
+  const setting = commissionAccountTypeSettings.value[type]
+  const availableSpreads = getAvailableSpreadsCommission(loginType)
+  if (
+    setting.selectedIndex !== null &&
+    setting.selectedIndex !== undefined
+  ) {
+    setting.selectedItem = availableSpreads[setting.selectedIndex] || null
+  } else {
+    setting.selectedItem = null
   }
+}
 
-  const handleCommissionAccountTypeChange = (type, loginType) => {
-    const setting = commissionAccountTypeSettings.value[type]
-    const availableSpreads = getAvailableSpreadsCommission(loginType)
-    if (
-      setting.selectedIndex !== null &&
-      setting.selectedIndex !== undefined
-    ) {
-      setting.selectedItem = availableSpreads[setting.selectedIndex] || null
-    } else {
-      setting.selectedItem = null
-    }
-  }
+const toVerified = () => {
+  // 确认按钮点击事件
+  emit('confirm')
+}
 
-  const toVerified = () => {
-    // 确认按钮点击事件
-    emit('confirm')
+const closeDia = () => {
+  dialogForm.value = {
+    cId: '',
   }
-
-  const closeDia = () => {
-    dialogForm.value = {
-      cId: '',
-    }
-    commissionAccountTypeSettings.value = {
-      ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
-      standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
-      cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
-    }
-    emit('close')
+  commissionAccountTypeSettings.value = {
+    ecn: { selectedIndex: null, selectedItem: null, loginType: '2' },
+    standard: { selectedIndex: null, selectedItem: null, loginType: '7' },
+    cent: { selectedIndex: null, selectedItem: null, loginType: '8' },
   }
+  emit('close')
+}
 
-  const confirmDia = async () => {
-    // 确认按钮点击事件
-    const loginConfig = []
-    Object.keys(commissionAccountTypeSettings.value).forEach((key) => {
-      const setting = commissionAccountTypeSettings.value[key]
-      if (setting.selectedItem) {
-        loginConfig.push(setting.selectedItem)
-      }
+const confirmDia = async () => {
+  // 确认按钮点击事件
+  const loginConfig = []
+  Object.keys(commissionAccountTypeSettings.value).forEach((key) => {
+    const setting = commissionAccountTypeSettings.value[key]
+    if (setting.selectedItem) {
+      loginConfig.push(setting.selectedItem)
+    }
+  })
+  let res = await ibApi.customCommissionPoint({
+    id: dialogForm.value.id,
+    loginConfig,
+  })
+  if (res.code == Code.StatusOK) {
+    uni.showToast({
+      title: t('Msg.ModifySuccess'),
     })
-    let res = await ibApi.customCommissionPoint({
-      id: dialogForm.value.id,
-      loginConfig,
+    closeDia()
+  } else {
+    uni.showToast({
+      title: res.msg,
+      icon: 'none',
     })
-    if (res.code == Code.StatusOK) {
-      uni.showToast({
-        title: t('Msg.ModifySuccess'),
-      })
-      closeDia()
-    } else {
-      uni.showToast({
-        title: res.msg,
-        icon: 'none',
-      })
-    }
-    emit('confirm')
   }
+  emit('confirm')
+}
 </script>
 <style lang="scss" scoped>
-  @import "@/uni.scss";
+@import "@/uni.scss";
 
-  .dialog-account-adjust-body {
-    padding: 20rpx;
-  }
+.dialog-account-adjust-body {
+  padding: 20rpx;
+}
 
-  .account-adjust-cid-row {
-    display: flex;
-    align-items: center;
-    margin-bottom: 20rpx;
-    font-size: px2rpx(20);
-  }
+.account-adjust-cid-row {
+  display: flex;
+  align-items: center;
+  margin-bottom: 20rpx;
+  font-size: px2rpx(20);
+}
 
-  .account-adjust-cid-label {
-    color: #606266;
-    margin-right: px2rpx(5);
-  }
+.account-adjust-cid-label {
+  color: #606266;
+  margin-right: px2rpx(5);
+}
 
-  .account-adjust-cid-value {
-    font-weight: bold;
-    color: #303133;
-  }
+.account-adjust-cid-value {
+  font-weight: bold;
+  color: #303133;
+}
 
-  .form-section {
-    margin-bottom: 20rpx;
-  }
+.form-section {
+  margin-bottom: 20rpx;
+}
 
-  .section-title {
-    display: flex;
-    align-items: center;
-    margin-bottom: px2rpx(15);
-    font-weight: bold;
-    font-size: px2rpx(18);
-  }
+.section-title {
+  display: flex;
+  align-items: center;
+  margin-bottom: px2rpx(15);
+  font-weight: bold;
+  font-size: px2rpx(18);
+}
 
-  .section-title i {
-    margin-right: 10rpx;
-  }
+.section-title i {
+  margin-right: 10rpx;
+}
 
-  .account-type-grid {
-  }
+.account-type-grid {}
 
-  .account-type-card {
-    display: flex;
-    flex-direction: column;
-    margin-bottom: px2rpx(20);
-  }
+.account-type-card {
+  display: flex;
+  flex-direction: column;
+  margin-bottom: px2rpx(20);
+}
 
-  .account-type-label {
-    margin-bottom: 10rpx;
-    font-size: 14rpx;
-  }
+.account-type-label {
+  margin-bottom: 10rpx;
+  font-size: 14rpx;
+}
 
-  .account-select {
-    width: 100%;
-  }
+.account-select {
+  width: 100%;
+}
 
-  .dialog-account-adjust-footer {
-    padding: 20rpx;
-  }
+.dialog-account-adjust-footer {
+  padding: 20rpx;
+}
 
-  .account-adjust-notes-panel {
-    margin-bottom: 20rpx;
-  }
+.account-adjust-notes-panel {
+  margin-bottom: 20rpx;
+}
 
-  .account-adjust-notes-section {
-    background-color: #f5f7fa;
-    padding: 15rpx;
-    border-radius: 8rpx;
-  }
+.account-adjust-notes-section {
+  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+  padding: 15rpx;
+  border-radius: 8rpx;
+}
 
-  .account-adjust-notes-title {
-    display: flex;
-    align-items: center;
-    margin-bottom: px2rpx(10);
-    font-weight: bold;
-    font-size: px2rpx(13);
-  }
+.account-adjust-notes-title {
+  display: flex;
+  align-items: center;
+  margin-bottom: px2rpx(10);
+  font-weight: bold;
+  font-size: px2rpx(13);
+}
 
-  .account-adjust-notes-title-icon {
-    margin-right: px2rpx(10);
-  }
+.account-adjust-notes-title-icon {
+  margin-right: px2rpx(10);
+}
 
-  .account-adjust-notes-list {
-    margin-left: px2rpx(20);
-    color: #606266;
-    font-size: px2rpx(13);
-  }
+.account-adjust-notes-list {
+  margin-left: px2rpx(20);
+  color: #606266;
+  font-size: px2rpx(13);
+}
 
-  .account-adjust-notes-list .list {
-    margin-bottom: px2rpx(5);
-    margin-left: px2rpx(10);
-  }
+.account-adjust-notes-list .list {
+  margin-bottom: px2rpx(5);
+  margin-left: px2rpx(10);
+}
 
-  .account-adjust-footer-buttons {
-    display: flex;
-    justify-content: flex-end;
-    gap: 15rpx;
-  }
+.account-adjust-footer-buttons {
+  display: flex;
+  justify-content: flex-end;
+  gap: 15rpx;
+}
 
-  .account-adjust-footer-buttons button {
-    min-width: 120rpx;
-  }
+.account-adjust-footer-buttons button {
+  min-width: 120rpx;
+}
 </style>

+ 2 - 2
pages/ib/promotion.vue

@@ -1,7 +1,7 @@
 <template>
   <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
     <cwg-header title="推广素材" />
-    
+
     <!-- 顶部 Tabs -->
     <cwg-asset-tabs v-model="activeTab" :tabs="tabsConfig" />
 
@@ -325,7 +325,7 @@ const logoList = ref([
       justify-content: space-between;
       align-items: center;
       padding: px2rpx(10) 0;
-      border-bottom: 1px solid #f0f0f0;
+      border-bottom: 1px solid var(--bs-border-color);
       font-size: px2rpx(13);
 
       &.mt-10 {

+ 27 - 31
pages/ib/settingPammManager.vue

@@ -11,7 +11,7 @@
 
     <view class="main-content account-content">
       <view class="tips-text">{{ t('Ib.PammManager.tips3') }}</view>
-      
+
       <view class="tab-group">
         <view class="tab-item" :class="{ active: subs === '1' }" @click="tableSearch('1')">
           {{ t('Ib.Settings.Hang') }}
@@ -26,7 +26,7 @@
         <!-- 左侧面板 (未选择) -->
         <view class="transfer-panel">
           <view class="transfer-header">
-            <checkbox :checked="isAllLeftChecked" @click="toggleAllLeft" style="transform:scale(0.7)"/>
+            <checkbox :checked="isAllLeftChecked" @click="toggleAllLeft" style="transform:scale(0.7)" />
             <text>{{ subs === '1' ? t('Ib.Settings.NotHang') : t('Ib.Settings.NotUndo') }}</text>
             <text class="count">{{ leftListData.length }}</text>
           </view>
@@ -36,11 +36,12 @@
           <scroll-view scroll-y class="transfer-list">
             <checkbox-group @change="onLeftChange">
               <label class="transfer-item" v-for="item in filteredLeftList" :key="item.key">
-                <checkbox :value="item.key" :checked="leftChecked.includes(item.key)" style="transform:scale(0.7)"/>
+                <checkbox :value="item.key" :checked="leftChecked.includes(item.key)" style="transform:scale(0.7)" />
                 <text>{{ item.label }}</text>
               </label>
             </checkbox-group>
-            <view v-if="filteredLeftList.length === 0" class="empty-text">{{ t('Documentary.tradingCenter.item143') }}</view>
+            <view v-if="filteredLeftList.length === 0" class="empty-text">{{ t('Documentary.tradingCenter.item143') }}
+            </view>
           </scroll-view>
         </view>
 
@@ -50,14 +51,15 @@
             <text>></text>
           </button>
           <button class="action-btn left" :disabled="rightChecked.length === 0" @click="moveToLeft">
-            <text><</text>
+            <text>
+              << /text>
           </button>
         </view>
 
         <!-- 右侧面板 (已选择) -->
         <view class="transfer-panel">
           <view class="transfer-header">
-            <checkbox :checked="isAllRightChecked" @click="toggleAllRight" style="transform:scale(0.7)"/>
+            <checkbox :checked="isAllRightChecked" @click="toggleAllRight" style="transform:scale(0.7)" />
             <text>{{ subs === '1' ? t('Ib.Settings.HaveHang') : t('Ib.Settings.HaveUndo') }}</text>
             <text class="count">{{ rightListData.length }}</text>
           </view>
@@ -67,11 +69,12 @@
           <scroll-view scroll-y class="transfer-list">
             <checkbox-group @change="onRightChange">
               <label class="transfer-item" v-for="item in filteredRightList" :key="item.key">
-                <checkbox :value="item.key" :checked="rightChecked.includes(item.key)" style="transform:scale(0.7)"/>
+                <checkbox :value="item.key" :checked="rightChecked.includes(item.key)" style="transform:scale(0.7)" />
                 <text>{{ item.label }}</text>
               </label>
             </checkbox-group>
-            <view v-if="filteredRightList.length === 0" class="empty-text">{{ t('Documentary.tradingCenter.item143') }}</view>
+            <view v-if="filteredRightList.length === 0" class="empty-text">{{ t('Documentary.tradingCenter.item143') }}
+            </view>
           </scroll-view>
         </view>
       </view>
@@ -82,15 +85,8 @@
     </view>
 
     <!-- 提交结果弹窗 -->
-    <cwg-popup 
-      :visible="dialogCheck" 
-      :showClose="false" 
-      :showFooters="true"
-      :confirmText="t('Btn.Confirm')"
-      :cancelText="t('Btn.Cancel')"
-      @confirm="closeDia"
-      @close="closeDia"
-    >
+    <cwg-popup :visible="dialogCheck" :showClose="false" :showFooters="true" :confirmText="t('Btn.Confirm')"
+      :cancelText="t('Btn.Cancel')" @confirm="closeDia" @close="closeDia">
       <view class="result-dialog">
         <view v-if="dialogVisible" class="icon-wrap">
           <cwg-icon name="icon_success" :size="50" color="#67C23A" />
@@ -284,7 +280,7 @@ onLoad((options: any) => {
   font-size: px2rpx(14);
   color: #333;
   cursor: pointer;
-  
+
   text {
     margin-left: px2rpx(5);
   }
@@ -308,7 +304,7 @@ onLoad((options: any) => {
 .tab-group {
   display: flex;
   margin-bottom: px2rpx(20);
-  
+
   .tab-item {
     height: px2rpx(32);
     line-height: px2rpx(32);
@@ -318,16 +314,16 @@ onLoad((options: any) => {
     background-color: #fff;
     font-size: px2rpx(14);
     cursor: pointer;
-    
+
     &:first-child {
       border-radius: px2rpx(4) 0 0 px2rpx(4);
     }
-    
+
     &:last-child {
       border-radius: 0 px2rpx(4) px2rpx(4) 0;
       border-left: none;
     }
-    
+
     &.active {
       font-weight: bold;
       background-color: var(--color-error);
@@ -367,7 +363,7 @@ onLoad((options: any) => {
   display: flex;
   align-items: center;
   font-size: px2rpx(14);
-  
+
   .count {
     margin-left: auto;
     color: #909399;
@@ -405,7 +401,7 @@ onLoad((options: any) => {
   flex-direction: column;
   justify-content: center;
   padding: 0 px2rpx(15);
-  
+
   .action-btn {
     width: px2rpx(32);
     height: px2rpx(32);
@@ -418,9 +414,9 @@ onLoad((options: any) => {
     margin-bottom: px2rpx(10);
     padding: 0;
     font-size: px2rpx(16);
-    
+
     &[disabled] {
-      background-color: #f5f7fa;
+      background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
       border: 1px solid #ebeef5;
       color: #c0c4cc;
       cursor: not-allowed;
@@ -430,7 +426,7 @@ onLoad((options: any) => {
 
 .submit-bar {
   margin-top: px2rpx(20);
-  
+
   .submit-btn {
     width: 100%;
   }
@@ -439,24 +435,24 @@ onLoad((options: any) => {
 .result-dialog {
   text-align: center;
   padding: px2rpx(20);
-  
+
   .icon-wrap {
     margin-bottom: px2rpx(20);
   }
-  
+
   .result-text {
     font-size: px2rpx(16);
     font-weight: bold;
     margin-top: px2rpx(10);
     line-height: 1.5;
   }
-  
+
   .dialog-footer {
     display: flex;
     justify-content: center;
     gap: px2rpx(15);
     margin-top: px2rpx(30);
-    
+
     button {
       min-width: px2rpx(100);
       margin: 0;

+ 7 - 7
pages/ib/transfer.vue

@@ -57,19 +57,19 @@
                                                 <label class="checkbox">
                                                     <checkbox value="1" :checked="form.agree5" />
                                                     <text>{{ t('news_add_field1.activitiesNZTwo.itemDeposit1')
-                                                    }}</text>
+                                                        }}</text>
 
                                                     <view style="margin-top: 10px;line-height: 1.5; font-size: 14px">
                                                         <text class="crm-cursor" @click.stop="dialogCheckTip = true">{{
                                                             t('Custom.Withdraw.Des') }}</text>
                                                         <text>{{ t('news_add_field1.activitiesNZTwo.itemDeposit2')
-                                                        }}</text>
+                                                            }}</text>
                                                         <text class="clause crm-cursor"
                                                             style="text-decoration: underline;"
                                                             @click.stop="dialogClauseNZTwo = true">{{
                                                                 t('news_add_field1.activitiesNZTwo.itemDeposit3') }}</text>
                                                         <text>{{ t('news_add_field1.activitiesNZTwo.itemDeposit4')
-                                                        }}</text>
+                                                            }}</text>
                                                     </view>
 
                                                 </label>
@@ -887,7 +887,7 @@ onLoad((options) => {
     }
 
     .picker-select {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -902,14 +902,14 @@ onLoad((options) => {
         }
 
         &.picker-disabled {
-            background-color: #f5f7fa;
+            background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
             color: #c0c4cc;
             cursor: not-allowed;
         }
     }
 
     .disabled-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);
@@ -920,7 +920,7 @@ onLoad((options) => {
     }
 
     .m-input {
-        background-color: #f5f7fa;
+        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
         border: 1px solid #dcdfe6;
         border-radius: px2rpx(4);
         padding: px2rpx(12) px2rpx(14);

+ 2 - 2
pages/login/regist.vue

@@ -939,13 +939,13 @@ onMounted(() => {
   .title {
     font-size: px2rpx(28);
     font-weight: bold;
-    color: #141d22;
+    color: #fff;
     line-height: 1;
   }
 
   .login-link {
     font-size: px2rpx(14);
-    color: #141d22;
+    color: #fff;
     display: flex;
     align-items: center;
     line-height: 1;

+ 3 - 2
pages/login/reset.vue

@@ -113,9 +113,10 @@ function handleLogin() {
 <style scoped lang="scss">
 @import "@/uni.scss";
 
-.company{
+.company {
   margin-bottom: px2rpx(24);
 }
+
 .chat-icon {
   width: px2rpx(50);
   height: px2rpx(50);
@@ -205,7 +206,7 @@ function handleLogin() {
 .reset-title {
   font-size: px2rpx(28);
   font-weight: bold;
-  color: #141d22;
+  color: #fff;
   margin-bottom: px2rpx(40);
   width: 100%;
   text-align: center;

+ 7 - 2
static/scss/global/global.scss

@@ -510,7 +510,7 @@ body {
     margin: 0 auto !important;
     font-size: px2rpx(12);
     line-height: 1;
-    color: #000;
+    color: #fff;
 }
 
 .bg-body {
@@ -1166,7 +1166,7 @@ uni-content.collapsed {
     }
 
     .uni-select__input-text {
-        color: #6a6a6a;
+        color: var(--bs-body-color);
         font-size: 12px;
         margin: 1px 0;
         padding: 0 !important;
@@ -1177,6 +1177,11 @@ uni-content.collapsed {
     }
 }
 
+.uni-date-x,
+.uni-select__input-text {
+    color: var(--bs-body-color) !important;
+}
+
 // 公共title样式
 .content-title {
     width: 100%;

+ 20448 - 0
static/scss/global/vu.css

@@ -0,0 +1,20448 @@
+@charset "UTF-8";
+@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
+:root {
+  --custom-modal-backdrop-bg: #a6adbf;
+}
+
+:root {
+  --custom-body-bg: #fdfdfd;
+  --app-sidebar-bg: var(--bs-body-bg);
+  --app-header-bg: var(--bs-body-bg);
+}
+
+[data-bs-theme=dark] {
+  --custom-body-bg: var(--bs-secondary-bg);
+  --app-sidebar-bg: var(--bs-body-bg);
+  --app-header-bg: var(--bs-body-bg);
+}
+
+/*!
+ * Bootstrap  v5.3.8 (https://getbootstrap.com/)
+ * Copyright 2011-2025 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+:root,
+[data-bs-theme=light] {
+  --bs-blue: #0d6efd;
+  --bs-indigo: #6610f2;
+  --bs-purple: #6f42c1;
+  --bs-pink: #d63384;
+  --bs-red: #dc3545;
+  --bs-orange: #fd7e14;
+  --bs-yellow: #ffc107;
+  --bs-green: #198754;
+  --bs-teal: #20c997;
+  --bs-cyan: #0dcaf0;
+  --bs-black: #000;
+  --bs-white: #ffffff;
+  --bs-gray: #6c757d;
+  --bs-gray-dark: #343a40;
+  --bs-gray-100: #f8f9fa;
+  --bs-gray-200: #e9ecef;
+  --bs-gray-300: #dee2e6;
+  --bs-gray-400: #ced4da;
+  --bs-gray-500: #adb5bd;
+  --bs-gray-600: #6c757d;
+  --bs-gray-700: #495057;
+  --bs-gray-800: #343a40;
+  --bs-gray-900: #212529;
+  --bs-secondary: #ef4223;
+
+  --bs-success: #22B07E;
+  --bs-info: #02B4FA;
+  --bs-warning: #FDBB1F;
+  --bs-danger: #FF401C;
+  --bs-light: #ECF2FD;
+  --bs-dark: #0C243C;
+  --bs-white: #ffffff;
+  --bs-gray: #97A1C0;
+  --bs-secondary-rgb: 49, 106, 255;
+  --bs-secondary-rgb: 255, 129, 16;
+  --bs-success-rgb: 34, 176, 126;
+  --bs-info-rgb: 2, 180, 250;
+  --bs-warning-rgb: 253, 187, 31;
+  --bs-danger-rgb: 255, 64, 28;
+  --bs-light-rgb: 236, 242, 253;
+  --bs-dark-rgb: 12, 36, 60;
+  --bs-white-rgb: 255, 255, 255;
+  --bs-gray-rgb: 151, 161, 192;
+  --bs-secondary-text-emphasis: #142a66;
+  --bs-secondary-text-emphasis: #663406;
+  --bs-success-text-emphasis: #0e4632;
+  --bs-info-text-emphasis: #014864;
+  --bs-warning-text-emphasis: #654b0c;
+  --bs-danger-text-emphasis: #661a0b;
+  --bs-light-text-emphasis: #495057;
+  --bs-dark-text-emphasis: #495057;
+  --bs-secondary-bg-subtle: #eaf0ff;
+  --bs-secondary-bg-subtle: #fff2e7;
+  --bs-success-bg-subtle: #e9f7f2;
+  --bs-info-bg-subtle: #e6f8ff;
+  --bs-warning-bg-subtle: #fff8e9;
+  --bs-danger-bg-subtle: #ffece8;
+  --bs-light-bg-subtle: #fcfcfd;
+  --bs-dark-bg-subtle: #ced4da;
+  --bs-secondary-border-subtle: #ccdaff;
+  --bs-secondary-border-subtle: #ffe0c3;
+  --bs-success-border-subtle: #c8ebdf;
+  --bs-info-border-subtle: #c0ecfe;
+  --bs-warning-border-subtle: #ffeec7;
+  --bs-danger-border-subtle: #ffcfc6;
+  --bs-light-border-subtle: #e9ecef;
+  --bs-dark-border-subtle: #adb5bd;
+  --bs-white-rgb: 255, 255, 255;
+  --bs-black-rgb: 0, 0, 0;
+  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
+  --bs-body-font-size: 0.875rem;
+  --bs-body-font-weight: 500;
+  --bs-body-line-height: 1.6;
+  --bs-body-color: #858585;
+  --bs-body-color-rgb: 151, 161, 192;
+  --bs-body-bg: #fff;
+--bs-body: #fdfdfd;
+  --bs-body-bg-rgb: 255, 255, 255;
+  --bs-emphasis-color: #000;
+  --bs-emphasis-color-rgb: 0, 0, 0;
+  --bs-secondary-color: rgba(151, 161, 192, 0.75);
+  --bs-secondary-color-rgb: 151, 161, 192;
+  --bs-secondary-bg: #f9f9f9;
+  --bs-secondary-bg-rgb: 249, 249, 249;
+  --bs-tertiary-color: rgba(151, 161, 192, 0.5);
+  --bs-tertiary-color-rgb: 151, 161, 192;
+  --bs-tertiary-bg: #f8f9fa;
+  --bs-tertiary-bg-rgb: 248, 249, 250;
+  --bs-heading-color: #0C243C;
+  --bs-link-color: #316AFF;
+  --bs-link-color-rgb: 49, 106, 255;
+  --bs-link-decoration: none;
+  --bs-link-hover-color: #2755cc;
+  --bs-link-hover-color-rgb: 39, 85, 204;
+  --bs-code-color: #d63384;
+  --bs-highlight-color: #97A1C0;
+  --bs-highlight-bg: #fff3cd;
+  --bs-border-width: 1px;
+  --bs-border-style: solid;
+  --bs-border-color: #e4e4e4;
+  --bs-border-color-translucent: rgba(0, 0, 0, 0.1);
+  --bs-border-radius: 0.375rem;
+  --bs-border-radius-sm: 0.25rem;
+  --bs-border-radius-lg: 0.625rem;
+  --bs-border-radius-xl: 1rem;
+  --bs-border-radius-xxl: 2rem;
+  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
+  --bs-border-radius-pill: 50rem;
+  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
+  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
+  --bs-box-shadow-lg: 0 0.26rem 1.126rem 0 rgba(45, 42, 60, 0.15);
+  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
+  --bs-focus-ring-width: 0.1rem;
+  --bs-focus-ring-opacity: 0.25;
+  --bs-focus-ring-color: rgba(49, 106, 255, 0.25);
+  --bs-form-valid-color: #22B07E;
+  --bs-form-valid-border-color: #22B07E;
+  --bs-form-invalid-color: #FF401C;
+  --bs-form-invalid-border-color: #FF401C;
+}
+
+[data-bs-theme=dark] {
+  color-scheme: dark;
+  --bs-body-color: #8c96a9;
+  --bs-body-color-rgb: 140, 150, 169;
+  --bs-body-bg: #282b44;
+--bs-body: #282b44;
+  --bs-body-bg-rgb: 40, 43, 68;
+  --bs-emphasis-color: #ffffff;
+  --bs-emphasis-color-rgb: 255, 255, 255;
+  --bs-secondary-color: rgba(140, 150, 169, 0.75);
+  --bs-secondary-color-rgb: 140, 150, 169;
+  --bs-secondary-bg: #26283e;
+  --bs-secondary-bg-rgb: 38, 40, 62;
+  --bs-tertiary-color: rgba(140, 150, 169, 0.5);
+  --bs-tertiary-color-rgb: 140, 150, 169;
+  --bs-tertiary-bg: #26283e;
+  --bs-tertiary-bg-rgb: 38, 40, 62;
+  --bs-secondary-text-emphasis: #83a6ff;
+  --bs-secondary-text-emphasis: #ffb370;
+  --bs-success-text-emphasis: #7ad0b2;
+  --bs-info-text-emphasis: #67d2fc;
+  --bs-warning-text-emphasis: #fed679;
+  --bs-danger-text-emphasis: #ff8c77;
+  --bs-light-text-emphasis: #888bb2;
+  --bs-dark-text-emphasis: #999999;
+  --bs-secondary-bg-subtle: #0a1533;
+  --bs-secondary-bg-subtle: #331a03;
+  --bs-success-bg-subtle: #072319;
+  --bs-info-bg-subtle: #002432;
+  --bs-warning-bg-subtle: #332506;
+  --bs-danger-bg-subtle: #330d06;
+  --bs-light-bg-subtle: #1a1c31;
+  --bs-dark-bg-subtle: #10101d;
+  --bs-secondary-border-subtle: #1d4099;
+  --bs-secondary-border-subtle: #994d0a;
+  --bs-success-border-subtle: #146a4c;
+  --bs-info-border-subtle: #016c96;
+  --bs-warning-border-subtle: #987013;
+  --bs-danger-border-subtle: #992611;
+  --bs-light-border-subtle: #484c83;
+  --bs-dark-border-subtle: #494949;
+  --bs-heading-color: #fff;
+  --bs-link-color: #83a6ff;
+  --bs-link-hover-color: #9cb8ff;
+  --bs-link-color-rgb: 131, 166, 255;
+  --bs-link-hover-color-rgb: 156, 184, 255;
+  --bs-code-color: #e685b5;
+  --bs-highlight-color: #8c96a9;
+  --bs-highlight-bg: #664d03;
+  --bs-border-color: #3a3b4d;
+  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
+  --bs-form-valid-color: #75b798;
+  --bs-form-valid-border-color: #75b798;
+  --bs-form-invalid-color: #ea868f;
+  --bs-form-invalid-border-color: #ea868f;
+}
+
+*,
+*::before,
+*::after {
+  box-sizing: border-box;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+  :root {
+    scroll-behavior: smooth;
+  }
+}
+
+
+body {
+  margin: 0;
+  font-family: "Google Sans", sans-serif;
+  text-align: var(--bs-body-text-align);
+  background-color: var(--bs-body);
+  -webkit-text-size-adjust: 100%;
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+font-weight: 600;
+}
+
+hr {
+  margin: 1rem 0;
+  color: inherit;
+  border: 0;
+  border-top: var(--bs-border-width) solid;
+  opacity: 0.25;
+}
+
+h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
+  margin-top: 0;
+  margin-bottom: 0.5rem;
+  font-weight: 600;
+  line-height: 1.2;
+  color: var(--bs-heading-color);
+}
+
+h1, .h1 {
+  font-size: calc(1.34375rem + 1.125vw);
+}
+@media (min-width: 1200px) {
+  h1, .h1 {
+    font-size: 2.1875rem;
+  }
+}
+
+h2, .h2 {
+  font-size: calc(1.3rem + 0.6vw);
+}
+@media (min-width: 1200px) {
+  h2, .h2 {
+    font-size: 1.75rem;
+  }
+}
+
+h3, .h3 {
+  font-size: calc(1.278125rem + 0.3375vw);
+}
+@media (min-width: 1200px) {
+  h3, .h3 {
+    font-size: 1.53125rem;
+  }
+}
+
+h4, .h4 {
+  font-size: calc(1.25625rem + 0.075vw);
+}
+@media (min-width: 1200px) {
+  h4, .h4 {
+    font-size: 1.3125rem;
+  }
+}
+
+h5, .h5 {
+  font-size: 1.09375rem;
+}
+
+h6, .h6 {
+  font-size: 0.875rem;
+}
+
+p {
+  margin-top: 0;
+  margin-bottom: 1rem;
+    font-weight: 500;
+}
+
+abbr[title] {
+  text-decoration: underline dotted;
+  cursor: help;
+  text-decoration-skip-ink: none;
+}
+
+address {
+  margin-bottom: 1rem;
+  font-style: normal;
+  line-height: inherit;
+}
+
+ol,
+ul {
+  padding-left: 2rem;
+}
+
+ol,
+ul,
+dl {
+  margin-top: 0;
+  margin-bottom: 1rem;
+}
+
+ol ol,
+ul ul,
+ol ul,
+ul ol {
+  margin-bottom: 0;
+}
+
+dt {
+  font-weight: 500;
+}
+
+dd {
+  margin-bottom: 0.5rem;
+  margin-left: 0;
+}
+
+blockquote {
+  margin: 0 0 1rem;
+}
+
+b,
+strong {
+  font-weight: bolder;
+}
+
+small, .small {
+  font-size: 0.875em;
+}
+
+mark, .mark {
+  padding: 0.1875em;
+  color: var(--bs-highlight-color);
+  background-color: var(--bs-highlight-bg);
+}
+
+sub,
+sup {
+  position: relative;
+  font-size: 0.75em;
+  line-height: 0;
+  vertical-align: baseline;
+}
+
+sub {
+  bottom: -0.25em;
+}
+
+sup {
+  top: -0.5em;
+}
+
+a {
+  color: var(--bs-danger);
+  text-decoration: none;
+}
+
+
+a:not([href]):not([class]), a:not([href]):not([class]):hover {
+  color: inherit;
+  text-decoration: none;
+}
+
+pre,
+code,
+kbd,
+samp {
+  font-family: var(--bs-font-monospace);
+  font-size: 1em;
+}
+
+pre {
+  display: block;
+  margin-top: 0;
+  margin-bottom: 1rem;
+  overflow: auto;
+  font-size: 0.875em;
+}
+pre code {
+  font-size: inherit;
+  color: inherit;
+  word-break: normal;
+}
+
+code {
+  font-size: 0.875em;
+  color: var(--bs-code-color);
+  word-wrap: break-word;
+}
+a > code {
+  color: inherit;
+}
+
+kbd {
+  padding: 0.1875rem 0.375rem;
+  font-size: 0.875em;
+  color: var(--bs-body-bg);
+  background-color: var(--bs-body-color);
+  border-radius: 0.25rem;
+}
+kbd kbd {
+  padding: 0;
+  font-size: 1em;
+}
+
+figure {
+  margin: 0 0 1rem;
+}
+
+img,
+svg {
+  vertical-align: middle;
+}
+
+table {
+  caption-side: bottom;
+  border-collapse: collapse;
+}
+
+caption {
+  padding-top: 10px;
+  padding-bottom: 10px;
+  color: var(--bs-secondary-color);
+  text-align: left;
+}
+
+th {
+  text-align: inherit;
+  text-align: -webkit-match-parent;
+}
+
+thead,
+tbody,
+tfoot,
+tr,
+td,
+th {
+  border-color: inherit;
+  border-style: solid;
+  border-width: 0;
+}
+
+label {
+  display: inline-block;
+font-weight: 500;
+}
+
+button {
+  border-radius: 0;
+}
+
+button:focus:not(:focus-visible) {
+  outline: 0;
+}
+
+input,
+button,
+select,
+optgroup,
+textarea {
+  margin: 0;
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+
+button,
+select {
+  text-transform: none;
+}
+
+[role=button] {
+  cursor: pointer;
+}
+
+select {
+  word-wrap: normal;
+}
+select:disabled {
+  opacity: 1;
+}
+
+[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
+  display: none !important;
+}
+
+button,
+[type=button],
+[type=reset],
+[type=submit] {
+  -webkit-appearance: button;
+}
+button:not(:disabled),
+[type=button]:not(:disabled),
+[type=reset]:not(:disabled),
+[type=submit]:not(:disabled) {
+  cursor: pointer;
+}
+
+::-moz-focus-inner {
+  padding: 0;
+  border-style: none;
+}
+
+textarea {
+  resize: vertical;
+}
+
+fieldset {
+  min-width: 0;
+  padding: 0;
+  margin: 0;
+  border: 0;
+}
+
+legend {
+  float: left;
+  width: 100%;
+  padding: 0;
+  margin-bottom: 0.5rem;
+  line-height: inherit;
+  font-size: calc(1.275rem + 0.3vw);
+}
+@media (min-width: 1200px) {
+  legend {
+    font-size: 1.5rem;
+  }
+}
+legend + * {
+  clear: left;
+}
+
+::-webkit-datetime-edit-fields-wrapper,
+::-webkit-datetime-edit-text,
+::-webkit-datetime-edit-minute,
+::-webkit-datetime-edit-hour-field,
+::-webkit-datetime-edit-day-field,
+::-webkit-datetime-edit-month-field,
+::-webkit-datetime-edit-year-field {
+  padding: 0;
+}
+
+::-webkit-inner-spin-button {
+  height: auto;
+}
+
+[type=search] {
+  -webkit-appearance: textfield;
+  outline-offset: -2px;
+}
+[type=search]::-webkit-search-cancel-button {
+  cursor: pointer;
+  filter: grayscale(1);
+}
+
+/* rtl:raw:
+[type="tel"],
+[type="url"],
+[type="email"],
+[type="number"] {
+  direction: ltr;
+}
+*/
+::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+
+::-webkit-color-swatch-wrapper {
+  padding: 0;
+}
+
+::file-selector-button {
+  font: inherit;
+  -webkit-appearance: button;
+}
+
+output {
+  display: inline-block;
+}
+
+iframe {
+  border: 0;
+}
+
+summary {
+  display: list-item;
+  cursor: pointer;
+}
+
+progress {
+  vertical-align: baseline;
+}
+
+[hidden] {
+  display: none !important;
+}
+
+.lead {
+  font-size: 1.09375rem;
+  font-weight: 300;
+}
+
+.display-1 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.625rem + 4.5vw);
+}
+@media (min-width: 1200px) {
+  .display-1 {
+    font-size: 5rem;
+  }
+}
+
+.display-2 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.575rem + 3.9vw);
+}
+@media (min-width: 1200px) {
+  .display-2 {
+    font-size: 4.5rem;
+  }
+}
+
+.display-3 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.525rem + 3.3vw);
+}
+@media (min-width: 1200px) {
+  .display-3 {
+    font-size: 4rem;
+  }
+}
+
+.display-4 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.475rem + 2.7vw);
+}
+@media (min-width: 1200px) {
+  .display-4 {
+    font-size: 3.5rem;
+  }
+}
+
+.display-5 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.425rem + 2.1vw);
+}
+@media (min-width: 1200px) {
+  .display-5 {
+    font-size: 3rem;
+  }
+}
+
+.display-6 {
+  font-weight: 300;
+  line-height: 1.2;
+  font-size: calc(1.375rem + 1.5vw);
+}
+@media (min-width: 1200px) {
+  .display-6 {
+    font-size: 2.5rem;
+  }
+}
+
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+
+.list-inline {
+  padding-left: 0;
+  list-style: none;
+}
+
+.list-inline-item {
+  display: inline-block;
+}
+.list-inline-item:not(:last-child) {
+  margin-right: 0.5rem;
+}
+
+.initialism {
+  font-size: 0.875em;
+  text-transform: uppercase;
+}
+
+.blockquote {
+  margin-bottom: 1rem;
+  font-size: 1.09375rem;
+}
+.blockquote > :last-child {
+  margin-bottom: 0;
+}
+
+.blockquote-footer {
+  margin-top: -1rem;
+  margin-bottom: 1rem;
+  font-size: 0.875em;
+  color: #6c757d;
+}
+.blockquote-footer::before {
+  content: "— ";
+}
+
+.img-fluid {
+  max-width: 100%;
+  height: auto;
+}
+
+.img-thumbnail {
+  padding: 0.25rem;
+  background-color: var(--bs-body-bg);
+  border: var(--bs-border-width) solid var(--bs-border-color);
+  border-radius: var(--bs-border-radius);
+  max-width: 100%;
+  height: auto;
+}
+
+.figure {
+  display: inline-block;
+}
+
+.figure-img {
+  margin-bottom: 0.5rem;
+  line-height: 1;
+}
+
+.figure-caption {
+  font-size: 0.875em;
+  color: var(--bs-secondary-color);
+}
+
+.container,
+.container-fluid,
+.container-xxl,
+.container-xl,
+.container-lg,
+.container-md,
+.container-sm {
+  --bs-gutter-x: 1.5rem;
+  --bs-gutter-y: 0;
+  width: 100%;
+  padding-right: calc(var(--bs-gutter-x) * 0.5);
+  padding-left: calc(var(--bs-gutter-x) * 0.5);
+  margin-right: auto;
+  margin-left: auto;
+}
+
+
+@media (min-width: 768px) {
+  .container-md, .container-sm, .container {
+    max-width: 720px;
+  }
+}
+@media (min-width: 992px) {
+  .container-lg, .container-md, .container-sm, .container {
+    max-width: 960px;
+  }
+}
+@media (min-width: 1200px) {
+  .container-xl, .container-lg, .container-md, .container-sm, .container {
+    max-width: 1140px;
+  }
+}
+@media (min-width: 1400px) {
+  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
+    max-width: 1320px;
+  }
+}
+:root {
+  --bs-breakpoint-xs: 0;
+  --bs-breakpoint-sm: 576px;
+  --bs-breakpoint-md: 768px;
+  --bs-breakpoint-lg: 992px;
+  --bs-breakpoint-xl: 1200px;
+  --bs-breakpoint-xxl: 1400px;
+}
+
+.row {
+  --bs-gutter-x: 0.5rem;
+  --bs-gutter-y: 0;
+  display: flex;
+  flex-wrap: wrap;
+  margin-top: calc(-1 * var(--bs-gutter-y));
+  margin-right: calc(-0.5 * var(--bs-gutter-x));
+  margin-left: calc(-0.5 * var(--bs-gutter-x));
+}
+.row > * {
+  flex-shrink: 0;
+  width: 100%;
+  max-width: 100%;
+  padding-right: calc(var(--bs-gutter-x) * 0.5);
+  padding-left: calc(var(--bs-gutter-x) * 0.5);
+  margin-top: var(--bs-gutter-y);
+}
+
+.col {
+  flex: 1 0 0;
+}
+
+.row-cols-auto > * {
+  flex: 0 0 auto;
+  width: auto;
+}
+
+.row-cols-1 > * {
+  flex: 0 0 auto;
+  width: 100%;
+}
+
+.row-cols-2 > * {
+  flex: 0 0 auto;
+  width: 50%;
+}
+
+.row-cols-3 > * {
+  flex: 0 0 auto;
+  width: 33.33333333%;
+}
+
+.row-cols-4 > * {
+  flex: 0 0 auto;
+  width: 25%;
+}
+
+.row-cols-5 > * {
+  flex: 0 0 auto;
+  width: 20%;
+}
+
+.row-cols-6 > * {
+  flex: 0 0 auto;
+  width: 16.66666667%;
+}
+
+.col-auto {
+  flex: 0 0 auto;
+  width: auto;
+}
+
+.col-1 {
+  flex: 0 0 auto;
+  width: 8.33333333%;
+}
+
+.col-2 {
+  flex: 0 0 auto;
+  width: 16.66666667%;
+}
+
+.col-3 {
+  flex: 0 0 auto;
+  width: 25%;
+}
+
+.col-4 {
+  flex: 0 0 auto;
+  width: 33.33333333%;
+}
+
+.col-5 {
+  flex: 0 0 auto;
+  width: 41.66666667%;
+}
+
+.col-6 {
+  flex: 0 0 auto;
+  width: 50%;
+}
+
+.col-7 {
+  flex: 0 0 auto;
+  width: 58.33333333%;
+}
+
+.col-8 {
+  flex: 0 0 auto;
+  width: 66.66666667%;
+}
+
+.col-9 {
+  flex: 0 0 auto;
+  width: 75%;
+}
+
+.col-10 {
+  flex: 0 0 auto;
+  width: 83.33333333%;
+}
+
+.col-11 {
+  flex: 0 0 auto;
+  width: 91.66666667%;
+}
+
+.col-12 {
+  flex: 0 0 auto;
+  width: 100%;
+}
+
+.offset-1 {
+  margin-left: 8.33333333%;
+}
+
+.offset-2 {
+  margin-left: 16.66666667%;
+}
+
+.offset-3 {
+  margin-left: 25%;
+}
+
+.offset-4 {
+  margin-left: 33.33333333%;
+}
+
+.offset-5 {
+  margin-left: 41.66666667%;
+}
+
+.offset-6 {
+  margin-left: 50%;
+}
+
+.offset-7 {
+  margin-left: 58.33333333%;
+}
+
+.offset-8 {
+  margin-left: 66.66666667%;
+}
+
+.offset-9 {
+  margin-left: 75%;
+}
+
+.offset-10 {
+  margin-left: 83.33333333%;
+}
+
+.offset-11 {
+  margin-left: 91.66666667%;
+}
+
+.g-0,
+.gx-0 {
+  --bs-gutter-x: 0;
+}
+
+.g-0,
+.gy-0 {
+  --bs-gutter-y: 0;
+}
+
+.g-1,
+.gx-1 {
+  --bs-gutter-x: 0.25rem;
+}
+
+.g-1,
+.gy-1 {
+  --bs-gutter-y: 0.25rem;
+}
+
+.g-2,
+.gx-2 {
+  --bs-gutter-x: 0.5rem;
+}
+
+.g-2,
+.gy-2 {
+  --bs-gutter-y: 0.5rem;
+}
+
+.g-3,
+.gx-3 {
+  --bs-gutter-x: 1rem;
+}
+
+.g-3,
+.gy-3 {
+  --bs-gutter-y: 1rem;
+}
+
+.g-4,
+.gx-4 {
+  --bs-gutter-x: 1.5rem;
+}
+
+.g-4,
+.gy-4 {
+  --bs-gutter-y: 1.5rem;
+}
+
+.g-5,
+.gx-5 {
+  --bs-gutter-x: 2.5rem;
+}
+
+.g-5,
+.gy-5 {
+  --bs-gutter-y: 2.5rem;
+}
+
+.g-6,
+.gx-6 {
+  --bs-gutter-x: 2.813rem;
+}
+
+.g-6,
+.gy-6 {
+  --bs-gutter-y: 2.813rem;
+}
+
+.g-7,
+.gx-7 {
+  --bs-gutter-x: 3.125rem;
+}
+
+.g-7,
+.gy-7 {
+  --bs-gutter-y: 3.125rem;
+}
+
+@media (min-width: 576px) {
+  .col-sm {
+    flex: 1 0 0;
+  }
+  .row-cols-sm-auto > * {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .row-cols-sm-1 > * {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .row-cols-sm-2 > * {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .row-cols-sm-3 > * {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .row-cols-sm-4 > * {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .row-cols-sm-5 > * {
+    flex: 0 0 auto;
+    width: 20%;
+  }
+  .row-cols-sm-6 > * {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-sm-auto {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .col-sm-1 {
+    flex: 0 0 auto;
+    width: 8.33333333%;
+  }
+  .col-sm-2 {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-sm-3 {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .col-sm-4 {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .col-sm-5 {
+    flex: 0 0 auto;
+    width: 41.66666667%;
+  }
+  .col-sm-6 {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .col-sm-7 {
+    flex: 0 0 auto;
+    width: 58.33333333%;
+  }
+  .col-sm-8 {
+    flex: 0 0 auto;
+    width: 66.66666667%;
+  }
+  .col-sm-9 {
+    flex: 0 0 auto;
+    width: 75%;
+  }
+  .col-sm-10 {
+    flex: 0 0 auto;
+    width: 83.33333333%;
+  }
+  .col-sm-11 {
+    flex: 0 0 auto;
+    width: 91.66666667%;
+  }
+  .col-sm-12 {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .offset-sm-0 {
+    margin-left: 0;
+  }
+  .offset-sm-1 {
+    margin-left: 8.33333333%;
+  }
+  .offset-sm-2 {
+    margin-left: 16.66666667%;
+  }
+  .offset-sm-3 {
+    margin-left: 25%;
+  }
+  .offset-sm-4 {
+    margin-left: 33.33333333%;
+  }
+  .offset-sm-5 {
+    margin-left: 41.66666667%;
+  }
+  .offset-sm-6 {
+    margin-left: 50%;
+  }
+  .offset-sm-7 {
+    margin-left: 58.33333333%;
+  }
+  .offset-sm-8 {
+    margin-left: 66.66666667%;
+  }
+  .offset-sm-9 {
+    margin-left: 75%;
+  }
+  .offset-sm-10 {
+    margin-left: 83.33333333%;
+  }
+  .offset-sm-11 {
+    margin-left: 91.66666667%;
+  }
+  .g-sm-0,
+  .gx-sm-0 {
+    --bs-gutter-x: 0;
+  }
+  .g-sm-0,
+  .gy-sm-0 {
+    --bs-gutter-y: 0;
+  }
+  .g-sm-1,
+  .gx-sm-1 {
+    --bs-gutter-x: 0.25rem;
+  }
+  .g-sm-1,
+  .gy-sm-1 {
+    --bs-gutter-y: 0.25rem;
+  }
+  .g-sm-2,
+  .gx-sm-2 {
+    --bs-gutter-x: 0.5rem;
+  }
+  .g-sm-2,
+  .gy-sm-2 {
+    --bs-gutter-y: 0.5rem;
+  }
+  .g-sm-3,
+  .gx-sm-3 {
+    --bs-gutter-x: 1rem;
+  }
+  .g-sm-3,
+  .gy-sm-3 {
+    --bs-gutter-y: 1rem;
+  }
+  .g-sm-4,
+  .gx-sm-4 {
+    --bs-gutter-x: 1.5rem;
+  }
+  .g-sm-4,
+  .gy-sm-4 {
+    --bs-gutter-y: 1.5rem;
+  }
+  .g-sm-5,
+  .gx-sm-5 {
+    --bs-gutter-x: 2.5rem;
+  }
+  .g-sm-5,
+  .gy-sm-5 {
+    --bs-gutter-y: 2.5rem;
+  }
+  .g-sm-6,
+  .gx-sm-6 {
+    --bs-gutter-x: 2.813rem;
+  }
+  .g-sm-6,
+  .gy-sm-6 {
+    --bs-gutter-y: 2.813rem;
+  }
+  .g-sm-7,
+  .gx-sm-7 {
+    --bs-gutter-x: 3.125rem;
+  }
+  .g-sm-7,
+  .gy-sm-7 {
+    --bs-gutter-y: 3.125rem;
+  }
+}
+@media (min-width: 768px) {
+  .col-md {
+    flex: 1 0 0;
+  }
+  .row-cols-md-auto > * {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .row-cols-md-1 > * {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .row-cols-md-2 > * {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .row-cols-md-3 > * {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .row-cols-md-4 > * {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .row-cols-md-5 > * {
+    flex: 0 0 auto;
+    width: 20%;
+  }
+  .row-cols-md-6 > * {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-md-auto {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .col-md-1 {
+    flex: 0 0 auto;
+    width: 8.33333333%;
+  }
+  .col-md-2 {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-md-3 {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .col-md-4 {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .col-md-5 {
+    flex: 0 0 auto;
+    width: 41.66666667%;
+  }
+  .col-md-6 {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .col-md-7 {
+    flex: 0 0 auto;
+    width: 58.33333333%;
+  }
+  .col-md-8 {
+    flex: 0 0 auto;
+    width: 66.66666667%;
+  }
+  .col-md-9 {
+    flex: 0 0 auto;
+    width: 75%;
+  }
+  .col-md-10 {
+    flex: 0 0 auto;
+    width: 83.33333333%;
+  }
+  .col-md-11 {
+    flex: 0 0 auto;
+    width: 91.66666667%;
+  }
+  .col-md-12 {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .offset-md-0 {
+    margin-left: 0;
+  }
+  .offset-md-1 {
+    margin-left: 8.33333333%;
+  }
+  .offset-md-2 {
+    margin-left: 16.66666667%;
+  }
+  .offset-md-3 {
+    margin-left: 25%;
+  }
+  .offset-md-4 {
+    margin-left: 33.33333333%;
+  }
+  .offset-md-5 {
+    margin-left: 41.66666667%;
+  }
+  .offset-md-6 {
+    margin-left: 50%;
+  }
+  .offset-md-7 {
+    margin-left: 58.33333333%;
+  }
+  .offset-md-8 {
+    margin-left: 66.66666667%;
+  }
+  .offset-md-9 {
+    margin-left: 75%;
+  }
+  .offset-md-10 {
+    margin-left: 83.33333333%;
+  }
+  .offset-md-11 {
+    margin-left: 91.66666667%;
+  }
+  .g-md-0,
+  .gx-md-0 {
+    --bs-gutter-x: 0;
+  }
+  .g-md-0,
+  .gy-md-0 {
+    --bs-gutter-y: 0;
+  }
+  .g-md-1,
+  .gx-md-1 {
+    --bs-gutter-x: 0.25rem;
+  }
+  .g-md-1,
+  .gy-md-1 {
+    --bs-gutter-y: 0.25rem;
+  }
+  .g-md-2,
+  .gx-md-2 {
+    --bs-gutter-x: 0.5rem;
+  }
+  .g-md-2,
+  .gy-md-2 {
+    --bs-gutter-y: 0.5rem;
+  }
+  .g-md-3,
+  .gx-md-3 {
+    --bs-gutter-x: 1rem;
+  }
+  .g-md-3,
+  .gy-md-3 {
+    --bs-gutter-y: 1rem;
+  }
+  .g-md-4,
+  .gx-md-4 {
+    --bs-gutter-x: 1.5rem;
+  }
+  .g-md-4,
+  .gy-md-4 {
+    --bs-gutter-y: 1.5rem;
+  }
+  .g-md-5,
+  .gx-md-5 {
+    --bs-gutter-x: 2.5rem;
+  }
+  .g-md-5,
+  .gy-md-5 {
+    --bs-gutter-y: 2.5rem;
+  }
+  .g-md-6,
+  .gx-md-6 {
+    --bs-gutter-x: 2.813rem;
+  }
+  .g-md-6,
+  .gy-md-6 {
+    --bs-gutter-y: 2.813rem;
+  }
+  .g-md-7,
+  .gx-md-7 {
+    --bs-gutter-x: 3.125rem;
+  }
+  .g-md-7,
+  .gy-md-7 {
+    --bs-gutter-y: 3.125rem;
+  }
+}
+@media (min-width: 992px) {
+  .col-lg {
+    flex: 1 0 0;
+  }
+  .row-cols-lg-auto > * {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .row-cols-lg-1 > * {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .row-cols-lg-2 > * {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .row-cols-lg-3 > * {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .row-cols-lg-4 > * {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .row-cols-lg-5 > * {
+    flex: 0 0 auto;
+    width: 20%;
+  }
+  .row-cols-lg-6 > * {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-lg-auto {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .col-lg-1 {
+    flex: 0 0 auto;
+    width: 8.33333333%;
+  }
+  .col-lg-2 {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-lg-3 {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .col-lg-4 {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .col-lg-5 {
+    flex: 0 0 auto;
+    width: 41.66666667%;
+  }
+  .col-lg-6 {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .col-lg-7 {
+    flex: 0 0 auto;
+    width: 58.33333333%;
+  }
+  .col-lg-8 {
+    flex: 0 0 auto;
+    width: 66.66666667%;
+  }
+  .col-lg-9 {
+    flex: 0 0 auto;
+    width: 75%;
+  }
+  .col-lg-10 {
+    flex: 0 0 auto;
+    width: 83.33333333%;
+  }
+  .col-lg-11 {
+    flex: 0 0 auto;
+    width: 91.66666667%;
+  }
+  .col-lg-12 {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .offset-lg-0 {
+    margin-left: 0;
+  }
+  .offset-lg-1 {
+    margin-left: 8.33333333%;
+  }
+  .offset-lg-2 {
+    margin-left: 16.66666667%;
+  }
+  .offset-lg-3 {
+    margin-left: 25%;
+  }
+  .offset-lg-4 {
+    margin-left: 33.33333333%;
+  }
+  .offset-lg-5 {
+    margin-left: 41.66666667%;
+  }
+  .offset-lg-6 {
+    margin-left: 50%;
+  }
+  .offset-lg-7 {
+    margin-left: 58.33333333%;
+  }
+  .offset-lg-8 {
+    margin-left: 66.66666667%;
+  }
+  .offset-lg-9 {
+    margin-left: 75%;
+  }
+  .offset-lg-10 {
+    margin-left: 83.33333333%;
+  }
+  .offset-lg-11 {
+    margin-left: 91.66666667%;
+  }
+  .g-lg-0,
+  .gx-lg-0 {
+    --bs-gutter-x: 0;
+  }
+  .g-lg-0,
+  .gy-lg-0 {
+    --bs-gutter-y: 0;
+  }
+  .g-lg-1,
+  .gx-lg-1 {
+    --bs-gutter-x: 0.25rem;
+  }
+  .g-lg-1,
+  .gy-lg-1 {
+    --bs-gutter-y: 0.25rem;
+  }
+  .g-lg-2,
+  .gx-lg-2 {
+    --bs-gutter-x: 0.5rem;
+  }
+  .g-lg-2,
+  .gy-lg-2 {
+    --bs-gutter-y: 0.5rem;
+  }
+  .g-lg-3,
+  .gx-lg-3 {
+    --bs-gutter-x: 1rem;
+  }
+  .g-lg-3,
+  .gy-lg-3 {
+    --bs-gutter-y: 1rem;
+  }
+  .g-lg-4,
+  .gx-lg-4 {
+    --bs-gutter-x: 1.5rem;
+  }
+  .g-lg-4,
+  .gy-lg-4 {
+    --bs-gutter-y: 1.5rem;
+  }
+  .g-lg-5,
+  .gx-lg-5 {
+    --bs-gutter-x: 2.5rem;
+  }
+  .g-lg-5,
+  .gy-lg-5 {
+    --bs-gutter-y: 2.5rem;
+  }
+  .g-lg-6,
+  .gx-lg-6 {
+    --bs-gutter-x: 2.813rem;
+  }
+  .g-lg-6,
+  .gy-lg-6 {
+    --bs-gutter-y: 2.813rem;
+  }
+  .g-lg-7,
+  .gx-lg-7 {
+    --bs-gutter-x: 3.125rem;
+  }
+  .g-lg-7,
+  .gy-lg-7 {
+    --bs-gutter-y: 3.125rem;
+  }
+}
+@media (min-width: 1200px) {
+  .col-xl {
+    flex: 1 0 0;
+  }
+  .row-cols-xl-auto > * {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .row-cols-xl-1 > * {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .row-cols-xl-2 > * {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .row-cols-xl-3 > * {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .row-cols-xl-4 > * {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .row-cols-xl-5 > * {
+    flex: 0 0 auto;
+    width: 20%;
+  }
+  .row-cols-xl-6 > * {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-xl-auto {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .col-xl-1 {
+    flex: 0 0 auto;
+    width: 8.33333333%;
+  }
+  .col-xl-2 {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-xl-3 {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .col-xl-4 {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .col-xl-5 {
+    flex: 0 0 auto;
+    width: 41.66666667%;
+  }
+  .col-xl-6 {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .col-xl-7 {
+    flex: 0 0 auto;
+    width: 58.33333333%;
+  }
+  .col-xl-8 {
+    flex: 0 0 auto;
+    width: 66.66666667%;
+  }
+  .col-xl-9 {
+    flex: 0 0 auto;
+    width: 75%;
+  }
+  .col-xl-10 {
+    flex: 0 0 auto;
+    width: 83.33333333%;
+  }
+  .col-xl-11 {
+    flex: 0 0 auto;
+    width: 91.66666667%;
+  }
+  .col-xl-12 {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .offset-xl-0 {
+    margin-left: 0;
+  }
+  .offset-xl-1 {
+    margin-left: 8.33333333%;
+  }
+  .offset-xl-2 {
+    margin-left: 16.66666667%;
+  }
+  .offset-xl-3 {
+    margin-left: 25%;
+  }
+  .offset-xl-4 {
+    margin-left: 33.33333333%;
+  }
+  .offset-xl-5 {
+    margin-left: 41.66666667%;
+  }
+  .offset-xl-6 {
+    margin-left: 50%;
+  }
+  .offset-xl-7 {
+    margin-left: 58.33333333%;
+  }
+  .offset-xl-8 {
+    margin-left: 66.66666667%;
+  }
+  .offset-xl-9 {
+    margin-left: 75%;
+  }
+  .offset-xl-10 {
+    margin-left: 83.33333333%;
+  }
+  .offset-xl-11 {
+    margin-left: 91.66666667%;
+  }
+  .g-xl-0,
+  .gx-xl-0 {
+    --bs-gutter-x: 0;
+  }
+  .g-xl-0,
+  .gy-xl-0 {
+    --bs-gutter-y: 0;
+  }
+  .g-xl-1,
+  .gx-xl-1 {
+    --bs-gutter-x: 0.25rem;
+  }
+  .g-xl-1,
+  .gy-xl-1 {
+    --bs-gutter-y: 0.25rem;
+  }
+  .g-xl-2,
+  .gx-xl-2 {
+    --bs-gutter-x: 0.5rem;
+  }
+  .g-xl-2,
+  .gy-xl-2 {
+    --bs-gutter-y: 0.5rem;
+  }
+  .g-xl-3,
+  .gx-xl-3 {
+    --bs-gutter-x: 1rem;
+  }
+  .g-xl-3,
+  .gy-xl-3 {
+    --bs-gutter-y: 1rem;
+  }
+  .g-xl-4,
+  .gx-xl-4 {
+    --bs-gutter-x: 1.5rem;
+  }
+  .g-xl-4,
+  .gy-xl-4 {
+    --bs-gutter-y: 1.5rem;
+  }
+  .g-xl-5,
+  .gx-xl-5 {
+    --bs-gutter-x: 2.5rem;
+  }
+  .g-xl-5,
+  .gy-xl-5 {
+    --bs-gutter-y: 2.5rem;
+  }
+  .g-xl-6,
+  .gx-xl-6 {
+    --bs-gutter-x: 2.813rem;
+  }
+  .g-xl-6,
+  .gy-xl-6 {
+    --bs-gutter-y: 2.813rem;
+  }
+  .g-xl-7,
+  .gx-xl-7 {
+    --bs-gutter-x: 3.125rem;
+  }
+  .g-xl-7,
+  .gy-xl-7 {
+    --bs-gutter-y: 3.125rem;
+  }
+}
+@media (min-width: 1400px) {
+  .col-xxl {
+    flex: 1 0 0;
+  }
+  .row-cols-xxl-auto > * {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .row-cols-xxl-1 > * {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .row-cols-xxl-2 > * {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .row-cols-xxl-3 > * {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .row-cols-xxl-4 > * {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .row-cols-xxl-5 > * {
+    flex: 0 0 auto;
+    width: 20%;
+  }
+  .row-cols-xxl-6 > * {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-xxl-auto {
+    flex: 0 0 auto;
+    width: auto;
+  }
+  .col-xxl-1 {
+    flex: 0 0 auto;
+    width: 8.33333333%;
+  }
+  .col-xxl-2 {
+    flex: 0 0 auto;
+    width: 16.66666667%;
+  }
+  .col-xxl-3 {
+    flex: 0 0 auto;
+    width: 25%;
+  }
+  .col-xxl-4 {
+    flex: 0 0 auto;
+    width: 33.33333333%;
+  }
+  .col-xxl-5 {
+    flex: 0 0 auto;
+    width: 41.66666667%;
+  }
+  .col-xxl-6 {
+    flex: 0 0 auto;
+    width: 50%;
+  }
+  .col-xxl-7 {
+    flex: 0 0 auto;
+    width: 58.33333333%;
+  }
+  .col-xxl-8 {
+    flex: 0 0 auto;
+    width: 66.66666667%;
+  }
+  .col-xxl-9 {
+    flex: 0 0 auto;
+    width: 75%;
+  }
+  .col-xxl-10 {
+    flex: 0 0 auto;
+    width: 83.33333333%;
+  }
+  .col-xxl-11 {
+    flex: 0 0 auto;
+    width: 91.66666667%;
+  }
+  .col-xxl-12 {
+    flex: 0 0 auto;
+    width: 100%;
+  }
+  .offset-xxl-0 {
+    margin-left: 0;
+  }
+  .offset-xxl-1 {
+    margin-left: 8.33333333%;
+  }
+  .offset-xxl-2 {
+    margin-left: 16.66666667%;
+  }
+  .offset-xxl-3 {
+    margin-left: 25%;
+  }
+  .offset-xxl-4 {
+    margin-left: 33.33333333%;
+  }
+  .offset-xxl-5 {
+    margin-left: 41.66666667%;
+  }
+  .offset-xxl-6 {
+    margin-left: 50%;
+  }
+  .offset-xxl-7 {
+    margin-left: 58.33333333%;
+  }
+  .offset-xxl-8 {
+    margin-left: 66.66666667%;
+  }
+  .offset-xxl-9 {
+    margin-left: 75%;
+  }
+  .offset-xxl-10 {
+    margin-left: 83.33333333%;
+  }
+  .offset-xxl-11 {
+    margin-left: 91.66666667%;
+  }
+  .g-xxl-0,
+  .gx-xxl-0 {
+    --bs-gutter-x: 0;
+  }
+  .g-xxl-0,
+  .gy-xxl-0 {
+    --bs-gutter-y: 0;
+  }
+  .g-xxl-1,
+  .gx-xxl-1 {
+    --bs-gutter-x: 0.25rem;
+  }
+  .g-xxl-1,
+  .gy-xxl-1 {
+    --bs-gutter-y: 0.25rem;
+  }
+  .g-xxl-2,
+  .gx-xxl-2 {
+    --bs-gutter-x: 0.5rem;
+  }
+  .g-xxl-2,
+  .gy-xxl-2 {
+    --bs-gutter-y: 0.5rem;
+  }
+  .g-xxl-3,
+  .gx-xxl-3 {
+    --bs-gutter-x: 1rem;
+  }
+  .g-xxl-3,
+  .gy-xxl-3 {
+    --bs-gutter-y: 1rem;
+  }
+  .g-xxl-4,
+  .gx-xxl-4 {
+    --bs-gutter-x: 1.5rem;
+  }
+  .g-xxl-4,
+  .gy-xxl-4 {
+    --bs-gutter-y: 1.5rem;
+  }
+  .g-xxl-5,
+  .gx-xxl-5 {
+    --bs-gutter-x: 2.5rem;
+  }
+  .g-xxl-5,
+  .gy-xxl-5 {
+    --bs-gutter-y: 2.5rem;
+  }
+  .g-xxl-6,
+  .gx-xxl-6 {
+    --bs-gutter-x: 2.813rem;
+  }
+  .g-xxl-6,
+  .gy-xxl-6 {
+    --bs-gutter-y: 2.813rem;
+  }
+  .g-xxl-7,
+  .gx-xxl-7 {
+    --bs-gutter-x: 3.125rem;
+  }
+  .g-xxl-7,
+  .gy-xxl-7 {
+    --bs-gutter-y: 3.125rem;
+  }
+}
+.table {
+  --bs-table-color-type: initial;
+  --bs-table-bg-type: initial;
+  --bs-table-color-state: initial;
+  --bs-table-bg-state: initial;
+  --bs-table-color: var(--bs-heading-color);
+  --bs-table-bg: transparent;
+  --bs-table-border-color: var(--bs-border-color);
+  --bs-table-accent-bg: transparent;
+  --bs-table-striped-color: var(--bs-heading-color);
+  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
+  --bs-table-active-color: var(--bs-heading-color);
+  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
+  --bs-table-hover-color: var(--bs-heading-color);
+  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.025);
+  width: 100%;
+  margin-bottom: 1rem;
+  vertical-align: middle;
+  border-color: var(--bs-table-border-color);
+}
+.table > :not(caption) > * > * {
+  padding: 10px 15px;
+  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
+  background-color: var(--bs-table-bg);
+  border-bottom-width: var(--bs-border-width);
+  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
+}
+.table > tbody {
+  vertical-align: inherit;
+}
+.table > thead {
+  vertical-align: bottom;
+}
+
+.table-group-divider {
+  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
+}
+
+.caption-top {
+  caption-side: top;
+}
+
+.table-sm > :not(caption) > * > * {
+  padding: 8px 6px;
+}
+
+.table-bordered > :not(caption) > * {
+  border-width: var(--bs-border-width) 0;
+}
+.table-bordered > :not(caption) > * > * {
+  border-width: 0 var(--bs-border-width);
+}
+
+.table-borderless > :not(caption) > * > * {
+  border-bottom-width: 0;
+}
+.table-borderless > :not(:first-child) {
+  border-top-width: 0;
+}
+
+.table-striped > tbody > tr:nth-of-type(odd) > * {
+  --bs-table-color-type: var(--bs-table-striped-color);
+  --bs-table-bg-type: var(--bs-table-striped-bg);
+}
+
+.table-striped-columns > :not(caption) > tr > :nth-child(even) {
+  --bs-table-color-type: var(--bs-table-striped-color);
+  --bs-table-bg-type: var(--bs-table-striped-bg);
+}
+
+.table-active {
+  --bs-table-color-state: var(--bs-table-active-color);
+  --bs-table-bg-state: var(--bs-table-active-bg);
+}
+
+.table-hover > tbody > tr:hover > * {
+  --bs-table-color-state: var(--bs-table-hover-color);
+  --bs-table-bg-state: var(--bs-table-hover-bg);
+}
+
+.table-primary {
+  --bs-table-color: #000;
+  --bs-table-bg: #d6e1ff;
+  --bs-table-border-color: #c1cbe6;
+  --bs-table-striped-bg: #cbd6f2;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #c1cbe6;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #d1dbf9;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-secondary {
+  --bs-table-color: #000;
+  --bs-table-bg: #ffe6cf;
+  --bs-table-border-color: #e6cfba;
+  --bs-table-striped-bg: #f2dbc5;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #e6cfba;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #f9e0ca;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-success {
+  --bs-table-color: #000;
+  --bs-table-bg: #d3efe5;
+  --bs-table-border-color: #bed7ce;
+  --bs-table-striped-bg: #c8e3da;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #bed7ce;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #cee9df;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-info {
+  --bs-table-color: #000;
+  --bs-table-bg: #ccf0fe;
+  --bs-table-border-color: #b8d8e5;
+  --bs-table-striped-bg: #c2e4f1;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #b8d8e5;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #c7eaf8;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-warning {
+  --bs-table-color: #000;
+  --bs-table-bg: #fff1d2;
+  --bs-table-border-color: #e6d9bd;
+  --bs-table-striped-bg: #f2e5c8;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #e6d9bd;
+  --bs-table-active-color: #000;
+  --bs-table-hover-bg: #f9ebcd;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-danger {
+  --bs-table-color: #000;
+  --bs-table-bg: #ffd9d2;
+  --bs-table-border-color: #e6c3bd;
+  --bs-table-striped-bg: #f2cec8;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #e6c3bd;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #f9d4cd;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-light {
+  --bs-table-color: #000;
+  --bs-table-bg: #ECF2FD;
+  --bs-table-border-color: #d4dae4;
+  --bs-table-striped-bg: #e0e6f0;
+  --bs-table-striped-color: #000;
+  --bs-table-active-bg: #d4dae4;
+  --bs-table-active-color: #000;
+  --bs-table-hover-bg: #e6ecf7;
+  --bs-table-hover-color: #000;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-dark {
+  --bs-table-color: #ffffff;
+  --bs-table-bg: #0C243C;
+  --bs-table-border-color: #243a50;
+  --bs-table-striped-bg: #182f46;
+  --bs-table-striped-color: #ffffff;
+  --bs-table-active-bg: #243a50;
+  --bs-table-active-color: #ffffff;
+  --bs-table-hover-bg: #122941;
+  --bs-table-hover-color: #ffffff;
+  color: var(--bs-table-color);
+  border-color: var(--bs-table-border-color);
+}
+
+.table-responsive {
+  overflow-x: auto;
+  -webkit-overflow-scrolling: touch;
+}
+
+@media (max-width: 575.98px) {
+  .table-responsive-sm {
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+}
+@media (max-width: 767.98px) {
+  .table-responsive-md {
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+}
+@media (max-width: 991.98px) {
+  .table-responsive-lg {
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+}
+@media (max-width: 1199.98px) {
+  .table-responsive-xl {
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+}
+@media (max-width: 1399.98px) {
+  .table-responsive-xxl {
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+}
+.form-label {
+  margin-bottom: 4px;
+}
+
+.col-form-label {
+  padding-top: calc(0.532rem + var(--bs-border-width));
+  padding-bottom: calc(0.532rem + var(--bs-border-width));
+  margin-bottom: 0;
+  font-size: inherit;
+  line-height: 1.6;
+}
+
+.col-form-label-lg {
+  padding-top: calc(0.75rem + var(--bs-border-width));
+  padding-bottom: calc(0.75rem + var(--bs-border-width));
+  font-size: 0.9375rem;
+}
+
+.col-form-label-sm {
+  padding-top: calc(0.35rem + var(--bs-border-width));
+  padding-bottom: calc(0.35rem + var(--bs-border-width));
+  font-size: 0.8125rem;
+}
+
+.form-text {
+  margin-top: 0.25rem;
+  font-size: 12px;
+  color: var(--bs-secondary-color);
+}
+
+.form-control {
+  display: block;
+  width: 100%;
+  padding: 0.532rem 1.2rem;
+  font-size: 16px;
+  font-weight: 500;
+  line-height: 2;
+  color: var(--bs-emphasis-color);
+  appearance: none;
+  background-color: var(--bs-body-bg);
+  background-clip: padding-box;
+  border: var(--bs-border-width) solid var(--bs-border-color);
+  border-radius: var(--bs-border-radius);
+  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-control {
+    transition: none;
+  }
+}
+.form-control[type=file] {
+  overflow: hidden;
+}
+.form-control[type=file]:not(:disabled):not([readonly]) {
+  cursor: pointer;
+}
+.form-control:focus {
+  color: var(--bs-body-color);
+  background-color: var(--bs-body-bg);
+  border-color: var(--fc-now-indicator-color);
+  outline: 0;
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--fc-now-indicator-color), 0.2), 0 0 0 1px var(--fc-now-indicator-color);
+}
+.form-control::-webkit-date-and-time-value {
+  min-width: 85px;
+  height: 1.6em;
+  margin: 0;
+}
+.form-control::-webkit-datetime-edit {
+  display: block;
+  padding: 0;
+}
+.form-control::placeholder {
+  color: var(--bs-body-color);
+  opacity: 1;
+}
+.form-control:disabled {
+  background-color: var(--bs-secondary-bg);
+  opacity: 1;
+}
+.form-control::file-selector-button {
+  padding: 0.532rem 1.2rem;
+  margin: -0.532rem -1.2rem;
+  margin-inline-end: 1.2rem;
+  color: var(--bs-body-color);
+  background-color: var(--bs-tertiary-bg);
+  pointer-events: none;
+  border-color: inherit;
+  border-style: solid;
+  border-width: 0;
+  border-inline-end-width: var(--bs-border-width);
+  border-radius: 0;
+  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-control::file-selector-button {
+    transition: none;
+  }
+}
+.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
+  background-color: var(--bs-secondary-bg);
+}
+
+.form-control-plaintext {
+  display: block;
+  width: 100%;
+  padding: 0.532rem 0;
+  margin-bottom: 0;
+  line-height: 1.6;
+  color: var(--bs-body-color);
+  background-color: transparent;
+  border: solid transparent;
+  border-width: var(--bs-border-width) 0;
+}
+.form-control-plaintext:focus {
+  outline: 0;
+}
+.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
+  padding-right: 0;
+  padding-left: 0;
+}
+
+.form-control-sm {
+  min-height: calc(1.6em + 0.7rem + calc(var(--bs-border-width) * 2));
+  padding: 0.35rem 0.7rem;
+  font-size: 0.8125rem;
+  border-radius: 8px;
+}
+.form-control-sm::file-selector-button {
+  padding: 0.35rem 0.7rem;
+  margin: -0.35rem -0.7rem;
+  margin-inline-end: 0.7rem;
+}
+
+.form-control-lg {
+  min-height: calc(1.6em + 1.5rem + calc(var(--bs-border-width) * 2));
+  padding: 0.75rem 1.4rem;
+  font-size: 0.9375rem;
+  border-radius: var(--bs-border-radius-lg);
+}
+.form-control-lg::file-selector-button {
+  padding: 0.75rem 1.4rem;
+  margin: -0.75rem -1.4rem;
+  margin-inline-end: 1.4rem;
+}
+
+textarea.form-control {
+  min-height: calc(1.6em + 1.064rem + calc(var(--bs-border-width) * 2));
+}
+textarea.form-control-sm {
+  min-height: calc(1.6em + 0.7rem + calc(var(--bs-border-width) * 2));
+}
+textarea.form-control-lg {
+  min-height: calc(1.6em + 1.5rem + calc(var(--bs-border-width) * 2));
+}
+
+.form-control-color {
+  width: 3rem;
+  height: calc(1.6em + 1.064rem + calc(var(--bs-border-width) * 2));
+  padding: 0.532rem;
+}
+.form-control-color:not(:disabled):not([readonly]) {
+  cursor: pointer;
+}
+.form-control-color::-moz-color-swatch {
+  border: 0 !important;
+  border-radius: var(--bs-border-radius);
+}
+.form-control-color::-webkit-color-swatch {
+  border: 0 !important;
+  border-radius: var(--bs-border-radius);
+}
+.form-control-color.form-control-sm {
+  height: calc(1.6em + 0.7rem + calc(var(--bs-border-width) * 2));
+}
+.form-control-color.form-control-lg {
+  height: calc(1.6em + 1.5rem + calc(var(--bs-border-width) * 2));
+}
+
+.form-select {
+  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
+  display: block;
+  width: 100%;
+  padding: 0.75rem 1.2rem;
+    font-size: 16px;
+  font-weight: 500;
+  line-height: 1.6;
+  color: var(--bs-body-color);
+  appearance: none;
+  background-color: var(--bs-body-bg);
+  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
+  background-repeat: no-repeat;
+  background-position: right 1.2rem center;
+  background-size: 16px 12px;
+  border: var(--bs-border-width) solid var(--bs-border-color);
+  border-radius: var(--bs-border-radius);
+  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-select {
+    transition: none;
+  }
+}
+.form-select:focus {
+  border-color: var(--bs-secondary);
+  outline: 0;
+  box-shadow: 0 0 0 0.1rem rgba(49, 106, 255, 0.25);
+}
+.form-select[multiple], .form-select[size]:not([size="1"]) {
+  padding-right: 1.2rem;
+  background-image: none;
+}
+.form-select:disabled {
+  background-color: var(--bs-secondary-bg);
+}
+.form-select:-moz-focusring {
+  color: transparent;
+  text-shadow: 0 0 0 var(--bs-body-color);
+}
+
+.form-select-sm {
+  padding-top: 0.35rem;
+  padding-bottom: 0.35rem;
+  padding-left: 0.7rem;
+  font-size: 0.8125rem;
+  border-radius: 8px;
+}
+
+.form-select-lg {
+  padding-top: 0.75rem;
+  padding-bottom: 0.75rem;
+  padding-left: 1.4rem;
+  font-size: 0.9375rem;
+  border-radius: var(--bs-border-radius-lg);
+}
+
+[data-bs-theme=dark] .form-select {
+  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238c96a9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
+}
+
+.form-check {
+  display: block;
+  min-height: 1.4rem;
+  padding-left: 2em;
+  margin-bottom: 0.125rem;
+}
+.form-check .form-check-input {
+  float: left;
+  margin-left: -2em;
+}
+
+.form-check-reverse {
+  padding-right: 2em;
+  padding-left: 0;
+  text-align: right;
+}
+.form-check-reverse .form-check-input {
+  float: right;
+  margin-right: -2em;
+  margin-left: 0;
+}
+
+.form-check-input {
+  --bs-form-check-bg: var(--bs-body-bg);
+  flex-shrink: 0;
+  width: 1.5em;
+  height: 1.5em;
+  margin-top: 0.05em;
+  vertical-align: top;
+  appearance: none;
+  background-color: var(--bs-form-check-bg);
+  background-image: var(--bs-form-check-bg-image);
+  background-repeat: no-repeat;
+  background-position: center;
+  background-size: contain;
+  border: var(--bs-border-width) solid var(--bs-border-color);
+  print-color-adjust: exact;
+}
+.form-check-input[type=checkbox] {
+  border-radius: var(--bs-border-radius);
+}
+.form-check-input[type=radio] {
+  border-radius: 50%;
+}
+.form-check-input:active {
+  filter: brightness(90%);
+}
+.form-check-input:focus {
+  border-color: var(--bs-secondary);
+  outline: 0;
+  box-shadow: none;
+}
+.form-check-input:checked {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+.form-check-input:checked[type=checkbox] {
+  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M5 10l3 3 7-7'/%3e%3c/svg%3e");
+}
+.form-check-input:checked[type=radio] {
+  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
+}
+.form-check-input[type=checkbox]:indeterminate {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
+}
+.form-check-input:disabled {
+  pointer-events: none;
+  filter: none;
+  opacity: 0.5;
+}
+.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
+  cursor: default;
+  opacity: 0.5;
+}
+
+.form-switch {
+  padding-left: 3.3em;
+}
+.form-switch .form-check-input {
+  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
+  width: 2.8em;
+  margin-left: -3.3em;
+  background-image: var(--bs-form-switch-bg);
+  background-position: left center;
+  border-radius: 2.8em;
+  transition: background-position 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-switch .form-check-input {
+    transition: none;
+  }
+}
+.form-switch .form-check-input:focus {
+  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='var%28--bs-secondary%29'/%3e%3c/svg%3e");
+}
+.form-switch .form-check-input:checked {
+  background-position: right center;
+  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
+}
+.form-switch.form-check-reverse {
+  padding-right: 3.3em;
+  padding-left: 0;
+}
+.form-switch.form-check-reverse .form-check-input {
+  margin-right: -3.3em;
+  margin-left: 0;
+}
+
+.form-check-inline {
+  display: inline-block;
+  margin-right: 1rem;
+}
+
+.btn-check {
+  position: absolute;
+  clip: rect(0, 0, 0, 0);
+  pointer-events: none;
+}
+.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
+  pointer-events: none;
+  filter: none;
+  opacity: 0.65;
+}
+
+[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
+  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
+}
+
+.form-range {
+  width: 100%;
+  height: calc(1rem + 2px);
+  padding: 0;
+  appearance: none;
+  background-color: transparent;
+}
+.form-range:focus {
+  outline: 0;
+}
+.form-range:focus::-webkit-slider-thumb {
+  box-shadow: 0 0 0 5px rgba(var(--bs-secondary-rgb), 0.25), 0 0.1rem 0.3rem 0 rgba(var(--bs-secondary-rgb), 0.2), 0 0 0 1px var(--bs-secondary);
+}
+.form-range:focus::-moz-range-thumb {
+  box-shadow: 0 0 0 5px rgba(var(--bs-secondary-rgb), 0.25), 0 0.1rem 0.3rem 0 rgba(var(--bs-secondary-rgb), 0.2), 0 0 0 1px var(--bs-secondary);
+}
+.form-range::-moz-focus-outer {
+  border: 0;
+}
+.form-range::-webkit-slider-thumb {
+  width: 1rem;
+  height: 1rem;
+  margin-top: -0.3rem;
+  appearance: none;
+  background-color: var(--bs-secondary);
+  border: 0;
+  border-radius: 1rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-range::-webkit-slider-thumb {
+    transition: none;
+  }
+}
+.form-range::-webkit-slider-thumb:active {
+  background-color: var(--bs-secondary);
+}
+.form-range::-webkit-slider-runnable-track {
+  width: 100%;
+  height: 0.4rem;
+  color: transparent;
+  cursor: pointer;
+  background-color: rgba(var(--bs-secondary-rgb), 0.25);
+  border-color: transparent;
+  border-radius: 1rem;
+}
+.form-range::-moz-range-thumb {
+  width: 1rem;
+  height: 1rem;
+  appearance: none;
+  background-color: var(--bs-secondary);
+  border: 0;
+  border-radius: 1rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-range::-moz-range-thumb {
+    transition: none;
+  }
+}
+.form-range::-moz-range-thumb:active {
+  background-color: var(--bs-secondary);
+}
+.form-range::-moz-range-track {
+  width: 100%;
+  height: 0.4rem;
+  color: transparent;
+  cursor: pointer;
+  background-color: rgba(var(--bs-secondary-rgb), 0.25);
+  border-color: transparent;
+  border-radius: 1rem;
+}
+.form-range:disabled {
+  pointer-events: none;
+}
+.form-range:disabled::-webkit-slider-thumb {
+  background-color: var(--bs-body-color);
+}
+.form-range:disabled::-moz-range-thumb {
+  background-color: var(--bs-body-color);
+}
+
+.form-floating {
+  position: relative;
+}
+.form-floating > .form-control,
+.form-floating > .form-control-plaintext,
+.form-floating > .form-select {
+  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
+  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
+  line-height: 1.25;
+}
+.form-floating > label {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: 2;
+  max-width: 100%;
+  height: 100%;
+  padding: 1rem 1.2rem;
+  overflow: hidden;
+  color: rgba(var(--bs-body-color-rgb), 0.65);
+  text-align: start;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  pointer-events: none;
+  border: var(--bs-border-width) solid transparent;
+  transform-origin: 0 0;
+  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .form-floating > label {
+    transition: none;
+  }
+}
+.form-floating > .form-control,
+.form-floating > .form-control-plaintext {
+  padding: 1rem 1.2rem;
+}
+.form-floating > .form-control::placeholder,
+.form-floating > .form-control-plaintext::placeholder {
+  color: transparent;
+}
+.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
+.form-floating > .form-control-plaintext:focus,
+.form-floating > .form-control-plaintext:not(:placeholder-shown) {
+  padding-top: 1.625rem;
+  padding-bottom: 0.625rem;
+}
+.form-floating > .form-control:-webkit-autofill,
+.form-floating > .form-control-plaintext:-webkit-autofill {
+  padding-top: 1.625rem;
+  padding-bottom: 0.625rem;
+}
+.form-floating > .form-select {
+  padding-top: 1.625rem;
+  padding-bottom: 0.625rem;
+  padding-left: 1.2rem;
+}
+.form-floating > .form-control:focus ~ label,
+.form-floating > .form-control:not(:placeholder-shown) ~ label,
+.form-floating > .form-control-plaintext ~ label,
+.form-floating > .form-select ~ label {
+  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
+}
+.form-floating > .form-control:-webkit-autofill ~ label {
+  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
+}
+.form-floating > textarea:focus ~ label::after,
+.form-floating > textarea:not(:placeholder-shown) ~ label::after {
+  position: absolute;
+  inset: 1rem 0.6rem;
+  z-index: -1;
+  height: 1.5em;
+  content: "";
+  background-color: var(--bs-body-bg);
+  border-radius: var(--bs-border-radius);
+}
+.form-floating > textarea:disabled ~ label::after {
+  background-color: var(--bs-secondary-bg);
+}
+.form-floating > .form-control-plaintext ~ label {
+  border-width: var(--bs-border-width) 0;
+}
+.form-floating > :disabled ~ label,
+.form-floating > .form-control:disabled ~ label {
+  color: #6c757d;
+}
+
+.input-group {
+  position: relative;
+  display: flex;
+  flex-wrap: wrap;
+  align-items: stretch;
+  width: 100%;
+}
+.input-group > .form-control,
+.input-group > .form-select,
+.input-group > .form-floating {
+  position: relative;
+  flex: 1 1 auto;
+  width: 1%;
+  min-width: 0;
+}
+.input-group > .form-control:focus,
+.input-group > .form-select:focus,
+.input-group > .form-floating:focus-within {
+  z-index: 5;
+}
+.input-group .btn {
+  position: relative;
+  z-index: 2;
+}
+.input-group .btn:focus {
+  z-index: 5;
+}
+
+.input-group-text {
+  display: flex;
+  align-items: center;
+  padding: 0.532rem 1.2rem;
+  font-size: 0.875rem;
+  font-weight: 500;
+  line-height: 1.6;
+  color: var(--bs-body-color);
+  text-align: center;
+  white-space: nowrap;
+  background-color: var(--bs-tertiary-bg);
+  border: var(--bs-border-width) solid var(--bs-border-color);
+  border-radius: var(--bs-border-radius);
+}
+
+.input-group-lg > .form-control,
+.input-group-lg > .form-select,
+.input-group-lg > .input-group-text,
+.input-group-lg > .btn {
+  padding: 0.75rem 1.4rem;
+  font-size: 0.9375rem;
+  border-radius: var(--bs-border-radius-lg);
+}
+
+.input-group-sm > .form-control,
+.input-group-sm > .form-select,
+.input-group-sm > .input-group-text,
+.input-group-sm > .btn {
+  padding: 0.35rem 0.7rem;
+  font-size: 0.8125rem;
+  border-radius: 8px;
+}
+
+.input-group-lg > .form-select,
+.input-group-sm > .form-select {
+  padding-right: 4.8rem;
+}
+
+.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
+.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
+.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
+.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
+.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
+.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
+.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
+  margin-left: calc(-1 * var(--bs-border-width));
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.input-group > .form-floating:not(:first-child) > .form-control,
+.input-group > .form-floating:not(:first-child) > .form-select {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.valid-feedback {
+  display: none;
+  width: 100%;
+  margin-top: 0.25rem;
+  font-size: 0.875em;
+  color: var(--bs-form-valid-color);
+}
+
+.valid-tooltip {
+  position: absolute;
+  top: 100%;
+  z-index: 5;
+  display: none;
+  max-width: 100%;
+  padding: 3px 8px;
+  margin-top: 0.1rem;
+  font-size: 0.6875rem;
+  color: #fff;
+  background-color: var(--bs-success);
+  border-radius: var(--bs-border-radius-sm);
+}
+
+.was-validated :valid ~ .valid-feedback,
+.was-validated :valid ~ .valid-tooltip,
+.is-valid ~ .valid-feedback,
+.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .form-control:valid, .form-control.is-valid {
+  border-color: var(--bs-form-valid-border-color);
+  padding-right: calc(1.6em + 1.064rem);
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2322B07E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
+  background-repeat: no-repeat;
+  background-position: right calc(0.4em + 0.266rem) center;
+  background-size: calc(0.8em + 0.532rem) calc(0.8em + 0.532rem);
+}
+.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
+  border-color: var(--bs-form-valid-border-color);
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-success-rgb), 0.25);
+}
+
+.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
+  padding-right: calc(1.6em + 1.064rem);
+  background-position: top calc(0.4em + 0.266rem) right calc(0.4em + 0.266rem);
+}
+
+.was-validated .form-select:valid, .form-select.is-valid {
+  border-color: var(--bs-form-valid-border-color);
+}
+.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
+  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2322B07E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
+  padding-right: 6.6rem;
+  background-position: right 1.2rem center, center right 3.6rem;
+  background-size: 16px 12px, calc(0.8em + 0.532rem) calc(0.8em + 0.532rem);
+}
+.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
+  border-color: var(--bs-form-valid-border-color);
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-success-rgb), 0.25);
+}
+
+.was-validated .form-control-color:valid, .form-control-color.is-valid {
+  width: calc(3rem + calc(1.6em + 1.064rem));
+}
+
+.was-validated .form-check-input:valid, .form-check-input.is-valid {
+  border-color: var(--bs-form-valid-border-color);
+}
+.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
+  background-color: var(--bs-form-valid-color);
+}
+.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-success-rgb), 0.25);
+}
+.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
+  color: var(--bs-form-valid-color);
+}
+
+.form-check-inline .form-check-input ~ .valid-feedback {
+  margin-left: 0.5em;
+}
+
+.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
+.was-validated .input-group > .form-select:not(:focus):valid,
+.input-group > .form-select:not(:focus).is-valid,
+.was-validated .input-group > .form-floating:not(:focus-within):valid,
+.input-group > .form-floating:not(:focus-within).is-valid {
+  z-index: 3;
+}
+
+.invalid-feedback {
+  display: none;
+  width: 100%;
+  margin-top: 0.25rem;
+  font-size: 0.875em;
+  color: var(--bs-form-invalid-color);
+}
+
+.invalid-tooltip {
+  position: absolute;
+  top: 100%;
+  z-index: 5;
+  display: none;
+  max-width: 100%;
+  padding: 3px 8px;
+  margin-top: 0.1rem;
+  font-size: 0.6875rem;
+  color: #fff;
+  background-color: var(--bs-danger);
+  border-radius: var(--bs-border-radius-sm);
+}
+
+.was-validated :invalid ~ .invalid-feedback,
+.was-validated :invalid ~ .invalid-tooltip,
+.is-invalid ~ .invalid-feedback,
+.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .form-control:invalid, .form-control.is-invalid {
+  border-color: var(--bs-form-invalid-border-color);
+  padding-right: calc(1.6em + 1.064rem);
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23FF401C'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FF401C' stroke='none'/%3e%3c/svg%3e");
+  background-repeat: no-repeat;
+  background-position: right calc(0.4em + 0.266rem) center;
+  background-size: calc(0.8em + 0.532rem) calc(0.8em + 0.532rem);
+}
+.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
+  border-color: var(--bs-form-invalid-border-color);
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-danger-rgb), 0.25);
+}
+
+.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
+  padding-right: calc(1.6em + 1.064rem);
+  background-position: top calc(0.4em + 0.266rem) right calc(0.4em + 0.266rem);
+}
+
+.was-validated .form-select:invalid, .form-select.is-invalid {
+  border-color: var(--bs-form-invalid-border-color);
+}
+.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
+  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23FF401C'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FF401C' stroke='none'/%3e%3c/svg%3e");
+  padding-right: 6.6rem;
+  background-position: right 1.2rem center, center right 3.6rem;
+  background-size: 16px 12px, calc(0.8em + 0.532rem) calc(0.8em + 0.532rem);
+}
+.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
+  border-color: var(--bs-form-invalid-border-color);
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-danger-rgb), 0.25);
+}
+
+.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
+  width: calc(3rem + calc(1.6em + 1.064rem));
+}
+
+.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
+  border-color: var(--bs-form-invalid-border-color);
+}
+.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
+  background-color: var(--bs-form-invalid-color);
+}
+.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
+  box-shadow: 0 0 0 0.1rem rgba(var(--bs-danger-rgb), 0.25);
+}
+.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
+  color: var(--bs-form-invalid-color);
+}
+
+.form-check-inline .form-check-input ~ .invalid-feedback {
+  margin-left: 0.5em;
+}
+
+.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
+.was-validated .input-group > .form-select:not(:focus):invalid,
+.input-group > .form-select:not(:focus).is-invalid,
+.was-validated .input-group > .form-floating:not(:focus-within):invalid,
+.input-group > .form-floating:not(:focus-within).is-invalid {
+  z-index: 4;
+}
+
+.btn {
+  --bs-btn-padding-x: 1.2rem;
+  --bs-btn-padding-y: 0.5rem;
+  --bs-btn-font-family: ;
+  --bs-btn-font-size: 0.875rem;
+  --bs-btn-font-weight: 500;
+  --bs-btn-line-height: 1.5;
+  --bs-btn-color: var(--bs-body-color);
+  --bs-btn-bg: transparent;
+  --bs-btn-border-width: var(--bs-border-width);
+  --bs-btn-border-color: transparent;
+  --bs-btn-border-radius: 30px;
+  --bs-btn-hover-border-color: transparent;
+  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
+  --bs-btn-disabled-opacity: 0.65;
+  --bs-btn-focus-box-shadow: 0 0 0 0.1rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
+  display: inline-block;
+  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
+  font-family: var(--bs-btn-font-family);
+  font-size: var(--bs-btn-font-size);
+  font-weight: var(--bs-btn-font-weight);
+  line-height: var(--bs-btn-line-height);
+  color: var(--bs-btn-color);
+  text-align: center;
+  vertical-align: middle;
+  cursor: pointer;
+  user-select: none;
+  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
+  border-radius: var(--bs-btn-border-radius);
+  background-color: var(--bs-btn-bg);
+  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .btn {
+    transition: none;
+  }
+}
+.btn:hover {
+  color: var(--bs-btn-hover-color);
+  background-color: var(--bs-btn-hover-bg);
+  border-color: var(--bs-btn-hover-border-color);
+}
+.btn-check + .btn:hover {
+  color: var(--bs-btn-color);
+  background-color: var(--bs-btn-bg);
+  border-color: var(--bs-btn-border-color);
+}
+.btn:focus-visible {
+  color: var(--bs-btn-hover-color);
+  background-color: var(--bs-btn-hover-bg);
+  border-color: var(--bs-btn-hover-border-color);
+  outline: 0;
+  box-shadow: var(--bs-btn-focus-box-shadow);
+}
+.btn-check:focus-visible + .btn {
+  border-color: var(--bs-btn-hover-border-color);
+  outline: 0;
+  box-shadow: var(--bs-btn-focus-box-shadow);
+}
+.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
+  color: var(--bs-btn-active-color);
+  background-color: var(--bs-btn-active-bg);
+  border-color: var(--bs-btn-active-border-color);
+}
+.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
+  box-shadow: var(--bs-btn-focus-box-shadow);
+}
+.btn-check:checked:focus-visible + .btn {
+  box-shadow: var(--bs-btn-focus-box-shadow);
+}
+.btn:disabled, .btn.disabled, fieldset:disabled .btn {
+  color: var(--bs-btn-disabled-color);
+  pointer-events: none;
+  background-color: var(--bs-btn-disabled-bg);
+  border-color: var(--bs-btn-disabled-border-color);
+  opacity: var(--bs-btn-disabled-opacity);
+}
+
+.btn-primary {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #316AFF;
+  --bs-btn-border-color: #316AFF;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #2a5ad9;
+  --bs-btn-hover-border-color: #2755cc;
+  --bs-btn-focus-shadow-rgb: 80, 128, 255;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #2755cc;
+  --bs-btn-active-border-color: #2550bf;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #316AFF;
+  --bs-btn-disabled-border-color: #316AFF;
+}
+
+.btn-secondary {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #FF8110;
+  --bs-btn-border-color: #FF8110;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #d96e0e;
+  --bs-btn-hover-border-color: #cc670d;
+  --bs-btn-focus-shadow-rgb: 255, 148, 52;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #cc670d;
+  --bs-btn-active-border-color: #bf610c;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #FF8110;
+  --bs-btn-disabled-border-color: #FF8110;
+}
+
+.btn-success {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #22B07E;
+  --bs-btn-border-color: #22B07E;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #1d966b;
+  --bs-btn-hover-border-color: #1b8d65;
+  --bs-btn-focus-shadow-rgb: 67, 188, 145;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #1b8d65;
+  --bs-btn-active-border-color: #1a845f;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #22B07E;
+  --bs-btn-disabled-border-color: #22B07E;
+}
+
+.btn-info {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #02B4FA;
+  --bs-btn-border-color: #02B4FA;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #0299d5;
+  --bs-btn-hover-border-color: #0290c8;
+  --bs-btn-focus-shadow-rgb: 40, 191, 251;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #0290c8;
+  --bs-btn-active-border-color: #0287bc;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #02B4FA;
+  --bs-btn-disabled-border-color: #02B4FA;
+}
+
+.btn-warning {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #FDBB1F;
+  --bs-btn-border-color: #FDBB1F;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #d79f1a;
+  --bs-btn-hover-border-color: #ca9619;
+  --bs-btn-focus-shadow-rgb: 253, 197, 65;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #ca9619;
+  --bs-btn-active-border-color: #be8c17;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #FDBB1F;
+  --bs-btn-disabled-border-color: #FDBB1F;
+}
+
+.btn-danger {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #FF401C;
+  --bs-btn-border-color: #FF401C;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #d93618;
+  --bs-btn-hover-border-color: #cc3316;
+  --bs-btn-focus-shadow-rgb: 255, 93, 62;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #cc3316;
+  --bs-btn-active-border-color: #bf3015;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #FF401C;
+  --bs-btn-disabled-border-color: #FF401C;
+}
+
+.btn-light {
+  --bs-btn-color: #000;
+  --bs-btn-bg: #ECF2FD;
+  --bs-btn-border-color: #ECF2FD;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #c9ced7;
+  --bs-btn-hover-border-color: #bdc2ca;
+  --bs-btn-focus-shadow-rgb: 201, 206, 215;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #bdc2ca;
+  --bs-btn-active-border-color: #b1b6be;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #000;
+  --bs-btn-disabled-bg: #ECF2FD;
+  --bs-btn-disabled-border-color: #ECF2FD;
+}
+
+.btn-dark {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #0C243C;
+  --bs-btn-border-color: #0C243C;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #304559;
+  --bs-btn-hover-border-color: #243a50;
+  --bs-btn-focus-shadow-rgb: 48, 69, 89;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #3d5063;
+  --bs-btn-active-border-color: #243a50;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #0C243C;
+  --bs-btn-disabled-border-color: #0C243C;
+}
+
+.btn-white {
+  --bs-btn-color: #000;
+  --bs-btn-bg: #ffffff;
+  --bs-btn-border-color: #ffffff;
+  --bs-btn-hover-color: #000;
+  --bs-btn-hover-bg: white;
+  --bs-btn-hover-border-color: white;
+  --bs-btn-focus-shadow-rgb: 217, 217, 217;
+  --bs-btn-active-color: #000;
+  --bs-btn-active-bg: white;
+  --bs-btn-active-border-color: white;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #000;
+  --bs-btn-disabled-bg: #ffffff;
+  --bs-btn-disabled-border-color: #ffffff;
+}
+
+.btn-gray {
+  --bs-btn-color: #ffffff;
+  --bs-btn-bg: #97A1C0;
+  --bs-btn-border-color: #97A1C0;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #8089a3;
+  --bs-btn-hover-border-color: #79819a;
+  --bs-btn-focus-shadow-rgb: 167, 175, 201;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #79819a;
+  --bs-btn-active-border-color: #717990;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: #97A1C0;
+  --bs-btn-disabled-border-color: #97A1C0;
+}
+
+.btn-outline-primary {
+  --bs-btn-color: #316AFF;
+  --bs-btn-border-color: #316AFF;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #316AFF;
+  --bs-btn-hover-border-color: #316AFF;
+  --bs-btn-focus-shadow-rgb: 49, 106, 255;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #316AFF;
+  --bs-btn-active-border-color: #316AFF;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #316AFF;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #316AFF;
+  --bs-gradient: none;
+}
+
+.btn-outline-secondary {
+  --bs-btn-color: #FF8110;
+  --bs-btn-border-color: #FF8110;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #FF8110;
+  --bs-btn-hover-border-color: #FF8110;
+  --bs-btn-focus-shadow-rgb: 255, 129, 16;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #FF8110;
+  --bs-btn-active-border-color: #FF8110;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #FF8110;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #FF8110;
+  --bs-gradient: none;
+}
+
+.btn-outline-success {
+  --bs-btn-color: #22B07E;
+  --bs-btn-border-color: #22B07E;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #22B07E;
+  --bs-btn-hover-border-color: #22B07E;
+  --bs-btn-focus-shadow-rgb: 34, 176, 126;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #22B07E;
+  --bs-btn-active-border-color: #22B07E;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #22B07E;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #22B07E;
+  --bs-gradient: none;
+}
+
+.btn-outline-info {
+  --bs-btn-color: #02B4FA;
+  --bs-btn-border-color: #02B4FA;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #02B4FA;
+  --bs-btn-hover-border-color: #02B4FA;
+  --bs-btn-focus-shadow-rgb: 2, 180, 250;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #02B4FA;
+  --bs-btn-active-border-color: #02B4FA;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #02B4FA;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #02B4FA;
+  --bs-gradient: none;
+}
+
+.btn-outline-warning {
+  --bs-btn-color: #FDBB1F;
+  --bs-btn-border-color: #FDBB1F;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #FDBB1F;
+  --bs-btn-hover-border-color: #FDBB1F;
+  --bs-btn-focus-shadow-rgb: 253, 187, 31;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #FDBB1F;
+  --bs-btn-active-border-color: #FDBB1F;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #FDBB1F;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #FDBB1F;
+  --bs-gradient: none;
+}
+
+.btn-outline-danger {
+  --bs-btn-color: #FF401C;
+  --bs-btn-border-color: #FF401C;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #FF401C;
+  --bs-btn-hover-border-color: #FF401C;
+  --bs-btn-focus-shadow-rgb: 255, 64, 28;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #FF401C;
+  --bs-btn-active-border-color: #FF401C;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #FF401C;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #FF401C;
+  --bs-gradient: none;
+}
+
+.btn-outline-light {
+  --bs-btn-color: #ECF2FD;
+  --bs-btn-border-color: #ECF2FD;
+  --bs-btn-hover-color: #000;
+  --bs-btn-hover-bg: #ECF2FD;
+  --bs-btn-hover-border-color: #ECF2FD;
+  --bs-btn-focus-shadow-rgb: 236, 242, 253;
+  --bs-btn-active-color: #000;
+  --bs-btn-active-bg: #ECF2FD;
+  --bs-btn-active-border-color: #ECF2FD;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ECF2FD;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #ECF2FD;
+  --bs-gradient: none;
+}
+
+.btn-outline-dark {
+  --bs-btn-color: #0C243C;
+  --bs-btn-border-color: #0C243C;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #0C243C;
+  --bs-btn-hover-border-color: #0C243C;
+  --bs-btn-focus-shadow-rgb: 12, 36, 60;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #0C243C;
+  --bs-btn-active-border-color: #0C243C;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #0C243C;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #0C243C;
+  --bs-gradient: none;
+}
+
+.btn-outline-white {
+  --bs-btn-color: #ffffff;
+  --bs-btn-border-color: #ffffff;
+  --bs-btn-hover-color: #000;
+  --bs-btn-hover-bg: #ffffff;
+  --bs-btn-hover-border-color: #ffffff;
+  --bs-btn-focus-shadow-rgb: 255, 255, 255;
+  --bs-btn-active-color: #000;
+  --bs-btn-active-bg: #ffffff;
+  --bs-btn-active-border-color: #ffffff;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #ffffff;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #ffffff;
+  --bs-gradient: none;
+}
+
+.btn-outline-gray {
+  --bs-btn-color: #97A1C0;
+  --bs-btn-border-color: #97A1C0;
+  --bs-btn-hover-color: #ffffff;
+  --bs-btn-hover-bg: #97A1C0;
+  --bs-btn-hover-border-color: #97A1C0;
+  --bs-btn-focus-shadow-rgb: 151, 161, 192;
+  --bs-btn-active-color: #ffffff;
+  --bs-btn-active-bg: #97A1C0;
+  --bs-btn-active-border-color: #97A1C0;
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: #97A1C0;
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: #97A1C0;
+  --bs-gradient: none;
+}
+
+.btn-link {
+  --bs-btn-font-weight: 400;
+  --bs-btn-color: var(--bs-link-color);
+  --bs-btn-bg: transparent;
+  --bs-btn-border-color: transparent;
+  --bs-btn-hover-color: var(--bs-link-hover-color);
+  --bs-btn-hover-border-color: transparent;
+  --bs-btn-active-color: var(--bs-link-hover-color);
+  --bs-btn-active-border-color: transparent;
+  --bs-btn-disabled-color: #6c757d;
+  --bs-btn-disabled-border-color: transparent;
+  --bs-btn-box-shadow: 0 0 0 #000;
+  --bs-btn-focus-shadow-rgb: 80, 128, 255;
+  text-decoration: none;
+}
+.btn-link:focus-visible {
+  color: var(--bs-btn-color);
+}
+.btn-link:hover {
+  color: var(--bs-btn-hover-color);
+}
+
+.btn-lg, .btn-group-lg > .btn {
+  --bs-btn-padding-y: 0.75rem;
+  --bs-btn-padding-x: 1.4rem;
+  --bs-btn-font-size: 0.9375rem;
+  --bs-btn-border-radius: 10px;
+}
+
+.btn-sm, .btn-group-sm > .btn {
+  --bs-btn-padding-y: 0.35rem;
+  --bs-btn-padding-x: 0.7rem;
+  --bs-btn-font-size: 0.8125rem;
+  --bs-btn-border-radius: 6px;
+}
+
+.fade {
+  transition: opacity 0.15s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+  .fade {
+    transition: none;
+  }
+}
+.fade:not(.show) {
+  opacity: 0;
+}
+
+.collapse:not(.show) {
+  display: none;
+}
+
+.collapsing {
+  height: 0;
+  overflow: hidden;
+  transition: height 0.35s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+  .collapsing {
+    transition: none;
+  }
+}
+.collapsing.collapse-horizontal {
+  width: 0;
+  height: auto;
+  transition: width 0.35s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+  .collapsing.collapse-horizontal {
+    transition: none;
+  }
+}
+
+.dropup,
+.dropend,
+.dropdown,
+.dropstart,
+.dropup-center,
+.dropdown-center {
+  position: relative;
+}
+
+.dropdown-toggle {
+  white-space: nowrap;
+}
+.dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid;
+  border-right: 0.3em solid transparent;
+  border-bottom: 0;
+  border-left: 0.3em solid transparent;
+}
+.dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropdown-menu {
+  --bs-dropdown-zindex: 1000;
+  --bs-dropdown-min-width: 10rem;
+  --bs-dropdown-padding-x: 6px;
+  --bs-dropdown-padding-y: 6px;
+  --bs-dropdown-spacer: 0.125rem;
+  --bs-dropdown-font-size: 0.875rem;
+  --bs-dropdown-color: var(--bs-body-color);
+  --bs-dropdown-bg: var(--bs-body-bg);
+  --bs-dropdown-border-color: var(--bs-border-color);
+  --bs-dropdown-border-radius: var(--bs-border-radius);
+  --bs-dropdown-border-width: var(--bs-border-width);
+  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
+  --bs-dropdown-divider-bg: var(--bs-border-color);
+  --bs-dropdown-divider-margin-y: 0.5rem;
+  --bs-dropdown-box-shadow: var(--bs-box-shadow);
+  --bs-dropdown-link-color: var(--bs-body-color);
+  --bs-dropdown-link-hover-color: var(--bs-body-color);
+  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
+  --bs-dropdown-link-active-color: var(--bs-secondary);
+  --bs-dropdown-link-active-bg: var(--bs-secondary-bg-subtle);
+  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
+  --bs-dropdown-item-padding-x: 15px;
+  --bs-dropdown-item-padding-y: 8px;
+  --bs-dropdown-header-color: #6c757d;
+  --bs-dropdown-header-padding-x: 15px;
+  --bs-dropdown-header-padding-y: 6px;
+  position: absolute;
+  z-index: var(--bs-dropdown-zindex);
+  display: none;
+  min-width: var(--bs-dropdown-min-width);
+  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
+  margin: 0;
+  font-size: var(--bs-dropdown-font-size);
+  color: var(--bs-dropdown-color);
+  text-align: left;
+  list-style: none;
+  background-color: var(--bs-dropdown-bg);
+  background-clip: padding-box;
+  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
+  border-radius: var(--bs-dropdown-border-radius);
+}
+.dropdown-menu[data-bs-popper] {
+  top: 100%;
+  left: 0;
+  margin-top: var(--bs-dropdown-spacer);
+}
+
+.dropdown-menu-start {
+  --bs-position: start;
+}
+.dropdown-menu-start[data-bs-popper] {
+  right: auto;
+  left: 0;
+}
+
+.dropdown-menu-end {
+  --bs-position: end;
+}
+.dropdown-menu-end[data-bs-popper] {
+  right: 0;
+  left: auto;
+}
+
+@media (min-width: 576px) {
+  .dropdown-menu-sm-start {
+    --bs-position: start;
+  }
+  .dropdown-menu-sm-start[data-bs-popper] {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-sm-end {
+    --bs-position: end;
+  }
+  .dropdown-menu-sm-end[data-bs-popper] {
+    right: 0;
+    left: auto;
+  }
+}
+@media (min-width: 768px) {
+  .dropdown-menu-md-start {
+    --bs-position: start;
+  }
+  .dropdown-menu-md-start[data-bs-popper] {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-md-end {
+    --bs-position: end;
+  }
+  .dropdown-menu-md-end[data-bs-popper] {
+    right: 0;
+    left: auto;
+  }
+}
+@media (min-width: 992px) {
+  .dropdown-menu-lg-start {
+    --bs-position: start;
+  }
+  .dropdown-menu-lg-start[data-bs-popper] {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-lg-end {
+    --bs-position: end;
+  }
+  .dropdown-menu-lg-end[data-bs-popper] {
+    right: 0;
+    left: auto;
+  }
+}
+@media (min-width: 1200px) {
+  .dropdown-menu-xl-start {
+    --bs-position: start;
+  }
+  .dropdown-menu-xl-start[data-bs-popper] {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-xl-end {
+    --bs-position: end;
+  }
+  .dropdown-menu-xl-end[data-bs-popper] {
+    right: 0;
+    left: auto;
+  }
+}
+@media (min-width: 1400px) {
+  .dropdown-menu-xxl-start {
+    --bs-position: start;
+  }
+  .dropdown-menu-xxl-start[data-bs-popper] {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-xxl-end {
+    --bs-position: end;
+  }
+  .dropdown-menu-xxl-end[data-bs-popper] {
+    right: 0;
+    left: auto;
+  }
+}
+.dropup .dropdown-menu[data-bs-popper] {
+  top: auto;
+  bottom: 100%;
+  margin-top: 0;
+  margin-bottom: var(--bs-dropdown-spacer);
+}
+.dropup .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0;
+  border-right: 0.3em solid transparent;
+  border-bottom: 0.3em solid;
+  border-left: 0.3em solid transparent;
+}
+.dropup .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropend .dropdown-menu[data-bs-popper] {
+  top: 0;
+  right: auto;
+  left: 100%;
+  margin-top: 0;
+  margin-left: var(--bs-dropdown-spacer);
+}
+.dropend .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid transparent;
+  border-right: 0;
+  border-bottom: 0.3em solid transparent;
+  border-left: 0.3em solid;
+}
+.dropend .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+.dropend .dropdown-toggle::after {
+  vertical-align: 0;
+}
+
+.dropstart .dropdown-menu[data-bs-popper] {
+  top: 0;
+  right: 100%;
+  left: auto;
+  margin-top: 0;
+  margin-right: var(--bs-dropdown-spacer);
+}
+.dropstart .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+}
+.dropstart .dropdown-toggle::after {
+  display: none;
+}
+.dropstart .dropdown-toggle::before {
+  display: inline-block;
+  margin-right: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid transparent;
+  border-right: 0.3em solid;
+  border-bottom: 0.3em solid transparent;
+}
+.dropstart .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+.dropstart .dropdown-toggle::before {
+  vertical-align: 0;
+}
+
+.dropdown-divider {
+  height: 0;
+  margin: var(--bs-dropdown-divider-margin-y) 0;
+  overflow: hidden;
+  border-top: 1px solid var(--bs-dropdown-divider-bg);
+  opacity: 1;
+}
+
+.dropdown-item {
+  display: block;
+  width: 100%;
+  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
+  clear: both;
+  font-weight: 400;
+  color: var(--bs-dropdown-link-color);
+  text-align: inherit;
+  white-space: nowrap;
+  background-color: transparent;
+  border: 0;
+  border-radius: var(--bs-dropdown-item-border-radius, 0);
+}
+.dropdown-item:hover, .dropdown-item:focus {
+  color: var(--bs-dropdown-link-hover-color);
+  background-color: var(--bs-dropdown-link-hover-bg);
+}
+.dropdown-item.active, .dropdown-item:active {
+  color: var(--bs-dropdown-link-active-color);
+  text-decoration: none;
+  background-color: var(--bs-dropdown-link-active-bg);
+}
+.dropdown-item.disabled, .dropdown-item:disabled {
+  color: var(--bs-dropdown-link-disabled-color);
+  pointer-events: none;
+  background-color: transparent;
+}
+
+.dropdown-menu.show {
+  display: block;
+}
+
+.dropdown-header {
+  display: block;
+  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
+  margin-bottom: 0;
+  font-size: 0.765625rem;
+  color: var(--bs-dropdown-header-color);
+  white-space: nowrap;
+}
+
+.dropdown-item-text {
+  display: block;
+  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
+  color: var(--bs-dropdown-link-color);
+}
+
+.dropdown-menu-dark {
+  --bs-dropdown-color: #dee2e6;
+  --bs-dropdown-bg: #343a40;
+  --bs-dropdown-border-color: var(--bs-border-color);
+  --bs-dropdown-box-shadow: ;
+  --bs-dropdown-link-color: #dee2e6;
+  --bs-dropdown-link-hover-color: #ffffff;
+  --bs-dropdown-divider-bg: var(--bs-border-color);
+  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
+  --bs-dropdown-link-active-color: var(--bs-secondary);
+  --bs-dropdown-link-active-bg: var(--bs-secondary-bg-subtle);
+  --bs-dropdown-link-disabled-color: #adb5bd;
+  --bs-dropdown-header-color: #adb5bd;
+}
+
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-flex;
+  vertical-align: middle;
+}
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+  position: relative;
+  flex: 1 1 auto;
+}
+.btn-group > .btn-check:checked + .btn,
+.btn-group > .btn-check:focus + .btn,
+.btn-group > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group > .btn:active,
+.btn-group > .btn.active,
+.btn-group-vertical > .btn-check:checked + .btn,
+.btn-group-vertical > .btn-check:focus + .btn,
+.btn-group-vertical > .btn:hover,
+.btn-group-vertical > .btn:focus,
+.btn-group-vertical > .btn:active,
+.btn-group-vertical > .btn.active {
+  z-index: 1;
+}
+
+.btn-toolbar {
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: flex-start;
+}
+.btn-toolbar .input-group {
+  width: auto;
+}
+
+.btn-group {
+  border-radius: 8px;
+}
+.btn-group > :not(.btn-check:first-child) + .btn,
+.btn-group > .btn-group:not(:first-child) {
+  margin-left: calc(-1 * var(--bs-border-width));
+}
+.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+.btn-group > .btn.dropdown-toggle-split:first-child,
+.btn-group > .btn-group:not(:last-child) > .btn {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+.btn-group > .btn:nth-child(n+3),
+.btn-group > :not(.btn-check) + .btn,
+.btn-group > .btn-group:not(:first-child) > .btn {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.dropdown-toggle-split {
+  padding-right: 0.9rem;
+  padding-left: 0.9rem;
+}
+.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
+  margin-left: 0;
+}
+.dropstart .dropdown-toggle-split::before {
+  margin-right: 0;
+}
+
+.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
+  padding-right: 0.525rem;
+  padding-left: 0.525rem;
+}
+
+.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
+  padding-right: 1.05rem;
+  padding-left: 1.05rem;
+}
+
+.btn-group-vertical {
+  flex-direction: column;
+  align-items: flex-start;
+  justify-content: center;
+}
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group {
+  width: 100%;
+}
+.btn-group-vertical > .btn:not(:first-child),
+.btn-group-vertical > .btn-group:not(:first-child) {
+  margin-top: calc(-1 * var(--bs-border-width));
+}
+.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
+.btn-group-vertical > .btn-group:not(:last-child) > .btn {
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn:nth-child(n+3),
+.btn-group-vertical > :not(.btn-check) + .btn,
+.btn-group-vertical > .btn-group:not(:first-child) > .btn {
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.nav {
+  --bs-nav-link-padding-x: 1.2rem;
+  --bs-nav-link-padding-y: 0.5rem;
+  --bs-nav-link-font-weight: ;
+  --bs-nav-link-color: var(--bs-body-color);
+  --bs-nav-link-hover-color: var(--bs-secondary);
+  --bs-nav-link-disabled-color: var(--bs-secondary-color);
+  display: flex;
+  flex-wrap: wrap;
+  padding-left: 0;
+  margin-bottom: 0;
+  list-style: none;
+}
+
+.nav-link {
+  display: block;
+  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
+  font-size: var(--bs-nav-link-font-size);
+  font-weight: var(--bs-nav-link-font-weight);
+  color: var(--bs-emphasis-color);
+  background: none;
+  border: 0;
+  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .nav-link {
+    transition: none;
+  }
+}
+.nav-link:hover, .nav-link:focus {
+  color: var(--bs-nav-link-hover-color);
+}
+.nav-link:focus-visible {
+  outline: 0;
+  box-shadow: 0 0 0 0.1rem rgba(49, 106, 255, 0.25);
+}
+.nav-link.disabled, .nav-link:disabled {
+  color: var(--bs-nav-link-disabled-color);
+  pointer-events: none;
+  cursor: default;
+}
+
+.nav-tabs {
+  --bs-nav-tabs-border-width: var(--bs-border-width);
+  --bs-nav-tabs-border-color: var(--bs-border-color);
+  --bs-nav-tabs-border-radius: var(--bs-border-radius);
+  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
+  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
+  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
+  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
+  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
+}
+.nav-tabs .nav-link {
+  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
+  border: var(--bs-nav-tabs-border-width) solid transparent;
+  border-top-left-radius: var(--bs-nav-tabs-border-radius);
+  border-top-right-radius: var(--bs-nav-tabs-border-radius);
+}
+.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
+  isolation: isolate;
+  border-color: var(--bs-nav-tabs-link-hover-border-color);
+}
+.nav-tabs .nav-link.active,
+.nav-tabs .nav-item.show .nav-link {
+  color: var(--bs-nav-tabs-link-active-color);
+  background-color: var(--bs-nav-tabs-link-active-bg);
+  border-color: var(--bs-nav-tabs-link-active-border-color);
+}
+.nav-tabs .dropdown-menu {
+  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.nav-pills {
+  --bs-nav-pills-border-radius: var(--bs-border-radius);
+  --bs-nav-pills-link-active-color: #ffffff;
+  --bs-nav-pills-link-active-bg: var(--bs-secondary);
+}
+.nav-pills .nav-link {
+  border-radius: var(--bs-nav-pills-border-radius);
+}
+.nav-pills .nav-link.active,
+.nav-pills .show > .nav-link {
+  color: var(--bs-nav-pills-link-active-color);
+  background-color: var(--bs-nav-pills-link-active-bg);
+}
+
+.nav-underline {
+  --bs-nav-underline-gap: 1rem;
+  --bs-nav-underline-border-width: 0.125rem;
+  --bs-nav-underline-link-active-color: var(--bs-secondary);
+  gap: var(--bs-nav-underline-gap);
+}
+.nav-underline .nav-link {
+  padding-right: 0;
+  padding-left: 0;
+  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
+}
+.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
+  border-bottom-color: #e32326;
+}
+.nav-underline .nav-link.active,
+.nav-underline .show > .nav-link {
+  font-weight: 700;
+  color: var(--bs-nav-underline-link-active-color);
+  border-bottom-color: #e32326;
+}
+
+.nav-fill > .nav-link,
+.nav-fill .nav-item {
+  flex: 1 1 auto;
+  text-align: center;
+}
+
+.nav-justified > .nav-link,
+.nav-justified .nav-item {
+  flex-grow: 1;
+  flex-basis: 0;
+  text-align: center;
+}
+
+.nav-fill .nav-item .nav-link,
+.nav-justified .nav-item .nav-link {
+  width: 100%;
+}
+
+.tab-content > .tab-pane {
+  display: none;
+}
+.tab-content > .active {
+  display: block;
+}
+
+.navbar {
+  --bs-navbar-padding-x: 12px;
+  --bs-navbar-padding-y: 10px;
+  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
+  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
+  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
+  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
+  --bs-navbar-brand-padding-y: 0.325rem;
+  --bs-navbar-brand-margin-end: 1rem;
+  --bs-navbar-brand-font-size: 1.09375rem;
+  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
+  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
+  --bs-navbar-nav-link-padding-x: 0.5rem;
+  --bs-navbar-toggler-padding-y: 5px;
+  --bs-navbar-toggler-padding-x: 5px;
+  --bs-navbar-toggler-font-size: 1.09375rem;
+  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28151, 161, 192, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
+  --bs-navbar-toggler-border-radius: 8px;
+  --bs-navbar-toggler-focus-width: 0.1rem;
+  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
+  position: relative;
+  display: flex;
+  flex-wrap: wrap;
+  align-items: center;
+  justify-content: space-between;
+  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
+}
+.navbar > .container,
+.navbar > .container-fluid,
+.navbar > .container-sm,
+.navbar > .container-md,
+.navbar > .container-lg,
+.navbar > .container-xl,
+.navbar > .container-xxl {
+  display: flex;
+  flex-wrap: inherit;
+  align-items: center;
+  justify-content: space-between;
+}
+.navbar-brand {
+  padding-top: var(--bs-navbar-brand-padding-y);
+  padding-bottom: var(--bs-navbar-brand-padding-y);
+  margin-right: var(--bs-navbar-brand-margin-end);
+  font-size: var(--bs-navbar-brand-font-size);
+  color: var(--bs-navbar-brand-color);
+  white-space: nowrap;
+}
+.navbar-brand:hover, .navbar-brand:focus {
+  color: var(--bs-navbar-brand-hover-color);
+}
+
+.navbar-nav {
+  --bs-nav-link-padding-x: 0;
+  --bs-nav-link-padding-y: 0.5rem;
+  --bs-nav-link-font-weight: ;
+  --bs-nav-link-color: var(--bs-navbar-color);
+  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
+  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
+  display: flex;
+  flex-direction: column;
+  padding-left: 0;
+  margin-bottom: 0;
+  list-style: none;
+}
+.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
+  color: var(--bs-navbar-active-color);
+}
+.navbar-nav .dropdown-menu {
+  position: static;
+}
+
+.navbar-text {
+  padding-top: 0.5rem;
+  padding-bottom: 0.5rem;
+  color: var(--bs-navbar-color);
+}
+.navbar-text a,
+.navbar-text a:hover,
+.navbar-text a:focus {
+  color: var(--bs-navbar-active-color);
+}
+
+.navbar-collapse {
+  flex-grow: 1;
+  flex-basis: 100%;
+  align-items: center;
+}
+
+.navbar-toggler {
+  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
+  font-size: var(--bs-navbar-toggler-font-size);
+  line-height: 1;
+  color: var(--bs-navbar-color);
+  background-color: transparent;
+  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
+  border-radius: var(--bs-navbar-toggler-border-radius);
+  transition: var(--bs-navbar-toggler-transition);
+}
+@media (prefers-reduced-motion: reduce) {
+  .navbar-toggler {
+    transition: none;
+  }
+}
+.navbar-toggler:hover {
+  text-decoration: none;
+}
+.navbar-toggler:focus {
+  text-decoration: none;
+  outline: 0;
+  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
+}
+
+.navbar-toggler-icon {
+  display: inline-block;
+  width: 1.5em;
+  height: 1.5em;
+  vertical-align: middle;
+  background-image: var(--bs-navbar-toggler-icon-bg);
+  background-repeat: no-repeat;
+  background-position: center;
+  background-size: 100%;
+}
+
+.navbar-nav-scroll {
+  max-height: var(--bs-scroll-height, 75vh);
+  overflow-y: auto;
+}
+
+@media (min-width: 576px) {
+  .navbar-expand-sm {
+    flex-wrap: nowrap;
+    justify-content: flex-start;
+  }
+  .navbar-expand-sm .navbar-nav {
+    flex-direction: row;
+  }
+  .navbar-expand-sm .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-sm .navbar-nav .nav-link {
+    padding-right: var(--bs-navbar-nav-link-padding-x);
+    padding-left: var(--bs-navbar-nav-link-padding-x);
+  }
+  .navbar-expand-sm .navbar-nav-scroll {
+    overflow: visible;
+  }
+  .navbar-expand-sm .navbar-collapse {
+    display: flex !important;
+    flex-basis: auto;
+  }
+  .navbar-expand-sm .navbar-toggler {
+    display: none;
+  }
+  .navbar-expand-sm .offcanvas {
+    position: static;
+    z-index: auto;
+    flex-grow: 1;
+    width: auto !important;
+    height: auto !important;
+    visibility: visible !important;
+    background-color: transparent !important;
+    border: 0 !important;
+    transform: none !important;
+    transition: none;
+  }
+  .navbar-expand-sm .offcanvas .offcanvas-header {
+    display: none;
+  }
+  .navbar-expand-sm .offcanvas .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-expand-md {
+    flex-wrap: nowrap;
+    justify-content: flex-start;
+  }
+  .navbar-expand-md .navbar-nav {
+    flex-direction: row;
+  }
+  .navbar-expand-md .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-md .navbar-nav .nav-link {
+    padding-right: var(--bs-navbar-nav-link-padding-x);
+    padding-left: var(--bs-navbar-nav-link-padding-x);
+  }
+  .navbar-expand-md .navbar-nav-scroll {
+    overflow: visible;
+  }
+  .navbar-expand-md .navbar-collapse {
+    display: flex !important;
+    flex-basis: auto;
+  }
+  .navbar-expand-md .navbar-toggler {
+    display: none;
+  }
+  .navbar-expand-md .offcanvas {
+    position: static;
+    z-index: auto;
+    flex-grow: 1;
+    width: auto !important;
+    height: auto !important;
+    visibility: visible !important;
+    background-color: transparent !important;
+    border: 0 !important;
+    transform: none !important;
+    transition: none;
+  }
+  .navbar-expand-md .offcanvas .offcanvas-header {
+    display: none;
+  }
+  .navbar-expand-md .offcanvas .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+  }
+}
+@media (min-width: 992px) {
+  .navbar-expand-lg {
+    flex-wrap: nowrap;
+    justify-content: flex-start;
+  }
+  .navbar-expand-lg .navbar-nav {
+    flex-direction: row;
+  }
+  .navbar-expand-lg .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-lg .navbar-nav .nav-link {
+    padding-right: var(--bs-navbar-nav-link-padding-x);
+    padding-left: var(--bs-navbar-nav-link-padding-x);
+  }
+  .navbar-expand-lg .navbar-nav-scroll {
+    overflow: visible;
+  }
+  .navbar-expand-lg .navbar-collapse {
+    display: flex !important;
+    flex-basis: auto;
+  }
+  .navbar-expand-lg .navbar-toggler {
+    display: none;
+  }
+  .navbar-expand-lg .offcanvas {
+    position: static;
+    z-index: auto;
+    flex-grow: 1;
+    width: auto !important;
+    height: auto !important;
+    visibility: visible !important;
+    background-color: transparent !important;
+    border: 0 !important;
+    transform: none !important;
+    transition: none;
+  }
+  .navbar-expand-lg .offcanvas .offcanvas-header {
+    display: none;
+  }
+  .navbar-expand-lg .offcanvas .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+  }
+}
+@media (min-width: 1200px) {
+  .navbar-expand-xl {
+    flex-wrap: nowrap;
+    justify-content: flex-start;
+  }
+  .navbar-expand-xl .navbar-nav {
+    flex-direction: row;
+  }
+  .navbar-expand-xl .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-xl .navbar-nav .nav-link {
+    padding-right: var(--bs-navbar-nav-link-padding-x);
+    padding-left: var(--bs-navbar-nav-link-padding-x);
+  }
+  .navbar-expand-xl .navbar-nav-scroll {
+    overflow: visible;
+  }
+  .navbar-expand-xl .navbar-collapse {
+    display: flex !important;
+    flex-basis: auto;
+  }
+  .navbar-expand-xl .navbar-toggler {
+    display: none;
+  }
+  .navbar-expand-xl .offcanvas {
+    position: static;
+    z-index: auto;
+    flex-grow: 1;
+    width: auto !important;
+    height: auto !important;
+    visibility: visible !important;
+    background-color: transparent !important;
+    border: 0 !important;
+    transform: none !important;
+    transition: none;
+  }
+  .navbar-expand-xl .offcanvas .offcanvas-header {
+    display: none;
+  }
+  .navbar-expand-xl .offcanvas .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+  }
+}
+@media (min-width: 1400px) {
+  .navbar-expand-xxl {
+    flex-wrap: nowrap;
+    justify-content: flex-start;
+  }
+  .navbar-expand-xxl .navbar-nav {
+    flex-direction: row;
+  }
+  .navbar-expand-xxl .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-xxl .navbar-nav .nav-link {
+    padding-right: var(--bs-navbar-nav-link-padding-x);
+    padding-left: var(--bs-navbar-nav-link-padding-x);
+  }
+  .navbar-expand-xxl .navbar-nav-scroll {
+    overflow: visible;
+  }
+  .navbar-expand-xxl .navbar-collapse {
+    display: flex !important;
+    flex-basis: auto;
+  }
+  .navbar-expand-xxl .navbar-toggler {
+    display: none;
+  }
+  .navbar-expand-xxl .offcanvas {
+    position: static;
+    z-index: auto;
+    flex-grow: 1;
+    width: auto !important;
+    height: auto !important;
+    visibility: visible !important;
+    background-color: transparent !important;
+    border: 0 !important;
+    transform: none !important;
+    transition: none;
+  }
+  .navbar-expand-xxl .offcanvas .offcanvas-header {
+    display: none;
+  }
+  .navbar-expand-xxl .offcanvas .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+  }
+}
+.navbar-expand {
+  flex-wrap: nowrap;
+  justify-content: flex-start;
+}
+.navbar-expand .navbar-nav {
+  flex-direction: row;
+}
+.navbar-expand .navbar-nav .dropdown-menu {
+  position: absolute;
+}
+.navbar-expand .navbar-nav .nav-link {
+  padding-right: var(--bs-navbar-nav-link-padding-x);
+  padding-left: var(--bs-navbar-nav-link-padding-x);
+}
+.navbar-expand .navbar-nav-scroll {
+  overflow: visible;
+}
+.navbar-expand .navbar-collapse {
+  display: flex !important;
+  flex-basis: auto;
+}
+.navbar-expand .navbar-toggler {
+  display: none;
+}
+.navbar-expand .offcanvas {
+  position: static;
+  z-index: auto;
+  flex-grow: 1;
+  width: auto !important;
+  height: auto !important;
+  visibility: visible !important;
+  background-color: transparent !important;
+  border: 0 !important;
+  transform: none !important;
+  transition: none;
+}
+.navbar-expand .offcanvas .offcanvas-header {
+  display: none;
+}
+.navbar-expand .offcanvas .offcanvas-body {
+  display: flex;
+  flex-grow: 0;
+  padding: 0;
+  overflow-y: visible;
+}
+
+.navbar-dark,
+.navbar[data-bs-theme=dark] {
+  --bs-navbar-color: rgba(255, 255, 255, 0.55);
+  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
+  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
+  --bs-navbar-active-color: #ffffff;
+  --bs-navbar-brand-color: #ffffff;
+  --bs-navbar-brand-hover-color: #ffffff;
+  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
+  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
+[data-bs-theme=dark] .navbar-toggler-icon {
+  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
+.card {
+  --bs-card-spacer-y: 20px;
+  --bs-card-spacer-x: 20px;
+  --bs-card-title-spacer-y: 0.5rem;
+  --bs-card-title-color: ;
+  --bs-card-subtitle-color: ;
+  --bs-card-border-width: var(--bs-border-width);
+  --bs-card-border-color: var(--bs-border-color);
+  --bs-card-border-radius: 0.625rem;
+  --bs-card-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.02);
+  --bs-card-inner-border-radius: calc(0.625rem - (var(--bs-border-width)));
+  --bs-card-cap-padding-y: 20px;
+  --bs-card-cap-padding-x: 20px;
+  --bs-card-cap-bg: transparent;
+  --bs-card-cap-color: ;
+  --bs-card-height: calc(100% - var(--bs-gutter-x));
+  --bs-card-color: ;
+  --bs-card-bg: var(--bs-body-bg);
+  --bs-card-img-overlay-padding: 1rem;
+  --bs-card-group-margin: 0.75rem;
+  position: relative;
+  display: flex;
+  flex-direction: column;
+  min-width: 0;
+  color: var(--bs-body-color);
+  word-wrap: break-word;
+  background-color: var(--bs-card-bg);
+  background-clip: border-box;
+  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
+  border-radius: var(--bs-card-border-radius);
+}
+.card > hr {
+  margin-right: 0;
+  margin-left: 0;
+}
+.card > .list-group {
+  border-top: inherit;
+  border-bottom: inherit;
+}
+.card > .list-group:first-child {
+  border-top-width: 0;
+  border-top-left-radius: var(--bs-card-inner-border-radius);
+  border-top-right-radius: var(--bs-card-inner-border-radius);
+}
+.card > .list-group:last-child {
+  border-bottom-width: 0;
+  border-bottom-right-radius: var(--bs-card-inner-border-radius);
+  border-bottom-left-radius: var(--bs-card-inner-border-radius);
+}
+.card > .card-header + .list-group,
+.card > .list-group + .card-footer {
+  border-top: 0;
+}
+
+.card-body {
+  flex: 1 1 auto;
+  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
+
+}
+
+.card-title {
+  margin-bottom: var(--bs-card-title-spacer-y);
+  color: var(--bs-card-title-color);
+}
+
+.card-subtitle {
+  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
+  margin-bottom: 0;
+  color: var(--bs-card-subtitle-color);
+}
+
+.card-text:last-child {
+  margin-bottom: 0;
+}
+
+.card-link + .card-link {
+  margin-left: var(--bs-card-spacer-x);
+}
+
+.card-header {
+  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
+  margin-bottom: 0;
+  color: var(--bs-card-cap-color);
+  background-color: var(--bs-card-cap-bg);
+  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
+}
+.card-header:first-child {
+  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
+}
+
+.card-footer {
+  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
+  color: var(--bs-card-cap-color);
+  background-color: var(--bs-card-cap-bg);
+  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
+}
+.card-footer:last-child {
+  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
+}
+
+.card-header-tabs {
+  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
+  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
+  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
+  border-bottom: 0;
+}
+.card-header-tabs .nav-link.active {
+  background-color: var(--bs-card-bg);
+  border-bottom-color: var(--bs-card-bg);
+}
+
+.card-header-pills {
+  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
+  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
+}
+
+.card-img-overlay {
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  padding: var(--bs-card-img-overlay-padding);
+  border-radius: var(--bs-card-inner-border-radius);
+}
+
+.card-img,
+.card-img-top,
+.card-img-bottom {
+  width: 100%;
+}
+
+.card-img,
+.card-img-top {
+  border-top-left-radius: var(--bs-card-inner-border-radius);
+  border-top-right-radius: var(--bs-card-inner-border-radius);
+}
+
+.card-img,
+.card-img-bottom {
+  border-bottom-right-radius: var(--bs-card-inner-border-radius);
+  border-bottom-left-radius: var(--bs-card-inner-border-radius);
+}
+
+.card-group > .card {
+  margin-bottom: var(--bs-card-group-margin);
+}
+@media (min-width: 576px) {
+  .card-group {
+    display: flex;
+    flex-flow: row wrap;
+  }
+  .card-group > .card {
+    flex: 1 0 0;
+    margin-bottom: 0;
+  }
+  .card-group > .card + .card {
+    margin-left: 0;
+    border-left: 0;
+  }
+  .card-group > .card:not(:last-child) {
+    border-top-right-radius: 0;
+    border-bottom-right-radius: 0;
+  }
+  .card-group > .card:not(:last-child) > .card-img-top,
+  .card-group > .card:not(:last-child) > .card-header {
+    border-top-right-radius: 0;
+  }
+  .card-group > .card:not(:last-child) > .card-img-bottom,
+  .card-group > .card:not(:last-child) > .card-footer {
+    border-bottom-right-radius: 0;
+  }
+  .card-group > .card:not(:first-child) {
+    border-top-left-radius: 0;
+    border-bottom-left-radius: 0;
+  }
+  .card-group > .card:not(:first-child) > .card-img-top,
+  .card-group > .card:not(:first-child) > .card-header {
+    border-top-left-radius: 0;
+  }
+  .card-group > .card:not(:first-child) > .card-img-bottom,
+  .card-group > .card:not(:first-child) > .card-footer {
+    border-bottom-left-radius: 0;
+  }
+}
+
+.accordion {
+  --bs-accordion-color: var(--bs-body-color);
+  --bs-accordion-bg: var(--bs-body-bg);
+  --bs-accordion-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-radius 0.2s ease;
+  --bs-accordion-border-color: var(--bs-border-color);
+  --bs-accordion-border-width: var(--bs-border-width);
+  --bs-accordion-border-radius: var(--bs-border-radius);
+  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
+  --bs-accordion-btn-padding-x: 20px;
+  --bs-accordion-btn-padding-y: 15px;
+  --bs-accordion-btn-color: var(--bs-heading-color);
+  --bs-accordion-btn-bg: var(--bs-accordion-bg);
+  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-width='1.5' stroke='%2397A1C0' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
+  --bs-accordion-btn-icon-width: 14px;
+  --bs-accordion-btn-icon-transform: rotate(-180deg);
+  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
+  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-width='1.5' stroke='%23142a66' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
+  --bs-accordion-btn-focus-box-shadow: none;
+  --bs-accordion-body-padding-x: 20px;
+  --bs-accordion-body-padding-y: 15px;
+  --bs-accordion-active-color: var(--bs-secondary-text-emphasis);
+  --bs-accordion-active-bg: var(--bs-gray-100);
+}
+
+.accordion-button {
+  position: relative;
+  display: flex;
+  align-items: center;
+  width: 100%;
+  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
+  font-size: 0.875rem;
+  color: var(--bs-accordion-btn-color);
+  text-align: left;
+  background-color: var(--bs-accordion-btn-bg);
+  border: 0;
+  border-radius: 0;
+  overflow-anchor: none;
+  transition: var(--bs-accordion-transition);
+}
+@media (prefers-reduced-motion: reduce) {
+  .accordion-button {
+    transition: none;
+  }
+}
+.accordion-button:not(.collapsed) {
+  color: var(--bs-accordion-active-color);
+  background-color: var(--bs-accordion-active-bg);
+  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
+}
+.accordion-button:not(.collapsed)::after {
+  background-image: var(--bs-accordion-btn-active-icon);
+  transform: var(--bs-accordion-btn-icon-transform);
+}
+.accordion-button::after {
+  flex-shrink: 0;
+  width: var(--bs-accordion-btn-icon-width);
+  height: var(--bs-accordion-btn-icon-width);
+  margin-left: auto;
+  content: "";
+  background-image: var(--bs-accordion-btn-icon);
+  background-repeat: no-repeat;
+  background-size: var(--bs-accordion-btn-icon-width);
+  transition: var(--bs-accordion-btn-icon-transition);
+}
+@media (prefers-reduced-motion: reduce) {
+  .accordion-button::after {
+    transition: none;
+  }
+}
+.accordion-button:hover {
+  z-index: 2;
+}
+.accordion-button:focus {
+  z-index: 3;
+  outline: 0;
+  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
+}
+
+.accordion-header {
+  margin-bottom: 0;
+}
+
+.accordion-item {
+  color: var(--bs-accordion-color);
+  background-color: var(--bs-accordion-bg);
+  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
+}
+.accordion-item:first-of-type {
+  border-top-left-radius: var(--bs-accordion-border-radius);
+  border-top-right-radius: var(--bs-accordion-border-radius);
+}
+.accordion-item:first-of-type > .accordion-header .accordion-button {
+  border-top-left-radius: var(--bs-accordion-inner-border-radius);
+  border-top-right-radius: var(--bs-accordion-inner-border-radius);
+}
+.accordion-item:not(:first-of-type) {
+  border-top: 0;
+}
+.accordion-item:last-of-type {
+  border-bottom-right-radius: var(--bs-accordion-border-radius);
+  border-bottom-left-radius: var(--bs-accordion-border-radius);
+}
+.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
+  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
+  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
+}
+.accordion-item:last-of-type > .accordion-collapse {
+  border-bottom-right-radius: var(--bs-accordion-border-radius);
+  border-bottom-left-radius: var(--bs-accordion-border-radius);
+}
+
+.accordion-body {
+  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
+}
+
+.accordion-flush > .accordion-item {
+  border-right: 0;
+  border-left: 0;
+  border-radius: 0;
+}
+.accordion-flush > .accordion-item:first-child {
+  border-top: 0;
+}
+.accordion-flush > .accordion-item:last-child {
+  border-bottom: 0;
+}
+.accordion-flush > .accordion-item > .accordion-collapse,
+.accordion-flush > .accordion-item > .accordion-header .accordion-button,
+.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
+  border-radius: 0;
+}
+
+[data-bs-theme=dark] .accordion-button::after {
+  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2383a6ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
+  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2383a6ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
+}
+
+.breadcrumb {
+  --bs-breadcrumb-padding-x: 0;
+  --bs-breadcrumb-padding-y: 0;
+  --bs-breadcrumb-margin-bottom: 1rem;
+  --bs-breadcrumb-bg: ;
+  --bs-breadcrumb-border-radius: ;
+  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
+  --bs-breadcrumb-item-padding-x: 0.5rem;
+  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
+  display: flex;
+  flex-wrap: wrap;
+  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
+  margin-bottom: var(--bs-breadcrumb-margin-bottom);
+  font-size: var(--bs-breadcrumb-font-size);
+  list-style: none;
+  background-color: var(--bs-breadcrumb-bg);
+  border-radius: var(--bs-breadcrumb-border-radius);
+}
+
+.breadcrumb-item + .breadcrumb-item {
+  padding-left: var(--bs-breadcrumb-item-padding-x);
+}
+.breadcrumb-item + .breadcrumb-item::before {
+  float: left;
+  padding-right: var(--bs-breadcrumb-item-padding-x);
+  color: var(--bs-breadcrumb-divider-color);
+  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
+}
+.breadcrumb-item.active {
+  color: var(--bs-breadcrumb-item-active-color);
+}
+
+.pagination {
+  --bs-pagination-padding-x: 10px;
+  --bs-pagination-padding-y: 5px;
+  --bs-pagination-font-size: 0.9375rem;
+  --bs-pagination-color: var(--bs-link-color);
+  --bs-pagination-bg: var(--bs-body-bg);
+  --bs-pagination-border-width: var(--bs-border-width);
+  --bs-pagination-border-color: var(--bs-border-color);
+  --bs-pagination-border-radius: var(--bs-border-radius);
+  --bs-pagination-hover-color: #fff;
+  --bs-pagination-hover-bg: var(--bs-secondary);
+  --bs-pagination-hover-border-color: var(--bs-border-color);
+  --bs-pagination-focus-color: #fff;
+  --bs-pagination-focus-bg: var(--bs-secondary);
+  --bs-pagination-focus-box-shadow: none;
+  --bs-pagination-active-color: #ffffff;
+  --bs-pagination-active-bg: var(--bs-secondary);
+  --bs-pagination-active-border-color: var(--bs-secondary);
+  --bs-pagination-disabled-color: var(--bs-secondary-subtle);
+  --bs-pagination-disabled-bg: var(--bs-light);
+  --bs-pagination-disabled-border-color: var(--bs-light);
+  display: flex;
+  padding-left: 0;
+  list-style: none;
+}
+
+.page-link {
+  position: relative;
+  display: block;
+  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
+  font-size: var(--bs-pagination-font-size);
+  color: var(--bs-pagination-color);
+  background-color: var(--bs-pagination-bg);
+  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
+  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .page-link {
+    transition: none;
+  }
+}
+.page-link:hover {
+  z-index: 2;
+  color: var(--bs-pagination-hover-color);
+  background-color: var(--bs-pagination-hover-bg);
+  border-color: var(--bs-pagination-hover-border-color);
+}
+.page-link:focus {
+  z-index: 3;
+  color: var(--bs-pagination-focus-color);
+  background-color: var(--bs-pagination-focus-bg);
+  outline: 0;
+  box-shadow: var(--bs-pagination-focus-box-shadow);
+}
+.page-link.active, .active > .page-link {
+  z-index: 3;
+  color: var(--bs-pagination-active-color);
+  background-color: var(--bs-pagination-active-bg);
+  border-color: var(--bs-pagination-active-border-color);
+}
+.page-link.disabled, .disabled > .page-link {
+  color: var(--bs-pagination-disabled-color);
+  pointer-events: none;
+  background-color: var(--bs-pagination-disabled-bg);
+  border-color: var(--bs-pagination-disabled-border-color);
+}
+
+.page-item:not(:first-child) .page-link {
+  margin-left: 5px;
+}
+.page-item .page-link {
+  border-radius: var(--bs-pagination-border-radius);
+}
+
+.pagination-lg {
+  --bs-pagination-padding-x: 10px;
+  --bs-pagination-padding-y: 10px;
+  --bs-pagination-font-size: 1.09375rem;
+  --bs-pagination-border-radius: var(--bs-border-radius-lg);
+}
+
+.pagination-sm {
+  --bs-pagination-padding-x: 0.5rem;
+  --bs-pagination-padding-y: 0.25rem;
+  --bs-pagination-font-size: 0.765625rem;
+  --bs-pagination-border-radius: var(--bs-border-radius-sm);
+}
+
+.badge {
+  --bs-badge-padding-x: 10px;
+  --bs-badge-padding-y: 4px;
+  --bs-badge-font-size: 0.75rem;
+  --bs-badge-font-weight: 500;
+  --bs-badge-color: #ffffff;
+  --bs-badge-border-radius: var(--bs-border-radius);
+  display: inline-block;
+  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
+  font-size: var(--bs-badge-font-size);
+  font-weight: var(--bs-badge-font-weight);
+  line-height: 1;
+  color: var(--bs-badge-color);
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: var(--bs-badge-border-radius);
+}
+.badge:empty {
+  display: none;
+}
+
+.btn .badge {
+  position: relative;
+  top: -1px;
+}
+
+.alert {
+  --bs-alert-bg: transparent;
+  --bs-alert-padding-x: 15px;
+  --bs-alert-padding-y: 12px;
+  --bs-alert-margin-bottom: 12px;
+  --bs-alert-color: inherit;
+  --bs-alert-border-color: transparent;
+  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
+  --bs-alert-border-radius: var(--bs-border-radius);
+  --bs-alert-link-color: inherit;
+  position: relative;
+  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
+  margin-bottom: var(--bs-alert-margin-bottom);
+  color: var(--bs-alert-color);
+  background-color: var(--bs-alert-bg);
+  border: var(--bs-alert-border);
+  border-radius: var(--bs-alert-border-radius);
+}
+
+.alert-heading {
+  color: inherit;
+}
+
+.alert-link {
+  font-weight: 600;
+  color: var(--bs-alert-link-color);
+}
+
+.alert-dismissible {
+  padding-right: 45px;
+}
+.alert-dismissible .btn-close {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2;
+  padding: 15px 15px;
+}
+
+.alert-primary {
+  --bs-alert-color: var(--bs-secondary-text-emphasis);
+  --bs-alert-bg: var(--bs-secondary-bg-subtle);
+  --bs-alert-border-color: var(--bs-secondary-border-subtle);
+  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
+}
+
+.alert-secondary {
+  --bs-alert-color: var(--bs-secondary-text-emphasis);
+  --bs-alert-bg: var(--bs-secondary-bg-subtle);
+  --bs-alert-border-color: var(--bs-secondary-border-subtle);
+  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
+}
+
+.alert-success {
+  --bs-alert-color: var(--bs-success-text-emphasis);
+  --bs-alert-bg: var(--bs-success-bg-subtle);
+  --bs-alert-border-color: var(--bs-success-border-subtle);
+  --bs-alert-link-color: var(--bs-success-text-emphasis);
+}
+
+.alert-info {
+  --bs-alert-color: var(--bs-info-text-emphasis);
+  --bs-alert-bg: var(--bs-info-bg-subtle);
+  --bs-alert-border-color: var(--bs-info-border-subtle);
+  --bs-alert-link-color: var(--bs-info-text-emphasis);
+}
+
+.alert-warning {
+  --bs-alert-color: var(--bs-warning-text-emphasis);
+  --bs-alert-bg: var(--bs-warning-bg-subtle);
+  --bs-alert-border-color: var(--bs-warning-border-subtle);
+  --bs-alert-link-color: var(--bs-warning-text-emphasis);
+}
+
+.alert-danger {
+  --bs-alert-color: var(--bs-danger-text-emphasis);
+  --bs-alert-bg: var(--bs-danger-bg-subtle);
+  --bs-alert-border-color: var(--bs-danger-border-subtle);
+  --bs-alert-link-color: var(--bs-danger-text-emphasis);
+}
+
+.alert-light {
+  --bs-alert-color: var(--bs-light-text-emphasis);
+  --bs-alert-bg: var(--bs-light-bg-subtle);
+  --bs-alert-border-color: var(--bs-light-border-subtle);
+  --bs-alert-link-color: var(--bs-light-text-emphasis);
+}
+
+.alert-dark {
+  --bs-alert-color: var(--bs-dark-text-emphasis);
+  --bs-alert-bg: var(--bs-dark-bg-subtle);
+  --bs-alert-border-color: var(--bs-dark-border-subtle);
+  --bs-alert-link-color: var(--bs-dark-text-emphasis);
+}
+
+.alert-white {
+  --bs-alert-color: var(--bs-white-text-emphasis);
+  --bs-alert-bg: var(--bs-white-bg-subtle);
+  --bs-alert-border-color: var(--bs-white-border-subtle);
+  --bs-alert-link-color: var(--bs-white-text-emphasis);
+}
+
+.alert-gray {
+  --bs-alert-color: var(--bs-gray-text-emphasis);
+  --bs-alert-bg: var(--bs-gray-bg-subtle);
+  --bs-alert-border-color: var(--bs-gray-border-subtle);
+  --bs-alert-link-color: var(--bs-gray-text-emphasis);
+}
+
+@keyframes progress-bar-stripes {
+  0% {
+    background-position-x: var(--bs-progress-height);
+  }
+}
+.progress,
+.progress-stacked {
+  --bs-progress-height: 12px;
+  --bs-progress-font-size: 0.65625rem;
+  --bs-progress-bg: var(--bs-secondary-bg);
+  --bs-progress-border-radius: var(--bs-border-radius);
+  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
+  --bs-progress-bar-color: #ffffff;
+  --bs-progress-bar-bg: var(--bs-secondary);
+  --bs-progress-bar-transition: width 0.6s ease;
+  display: flex;
+  height: var(--bs-progress-height);
+  overflow: hidden;
+  font-size: var(--bs-progress-font-size);
+  background-color: var(--bs-progress-bg);
+  border-radius: var(--bs-progress-border-radius);
+}
+
+.progress-bar {
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  overflow: hidden;
+  color: var(--bs-progress-bar-color);
+  text-align: center;
+  white-space: nowrap;
+  background-color: var(--bs-progress-bar-bg);
+  transition: var(--bs-progress-bar-transition);
+}
+@media (prefers-reduced-motion: reduce) {
+  .progress-bar {
+    transition: none;
+  }
+}
+
+.progress-bar-striped {
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-size: var(--bs-progress-height) var(--bs-progress-height);
+}
+
+.progress-stacked > .progress {
+  overflow: visible;
+}
+
+.progress-stacked > .progress > .progress-bar {
+  width: 100%;
+}
+
+.progress-bar-animated {
+  animation: 1s linear infinite progress-bar-stripes;
+}
+@media (prefers-reduced-motion: reduce) {
+  .progress-bar-animated {
+    animation: none;
+  }
+}
+
+.list-group {
+  --bs-list-group-color: var(--bs-heading-color);
+  --bs-list-group-bg: var(--bs-body-bg);
+  --bs-list-group-border-color: var(--bs-border-color);
+  --bs-list-group-border-width: var(--bs-border-width);
+  --bs-list-group-border-radius: var(--bs-border-radius);
+  --bs-list-group-item-padding-x: 20px;
+  --bs-list-group-item-padding-y: 10px;
+  --bs-list-group-action-color: var(--bs-secondary-color);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
+  --bs-list-group-action-active-color: var(--bs-body-color);
+  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
+  --bs-list-group-disabled-color: var(--bs-secondary-color);
+  --bs-list-group-disabled-bg: var(--bs-body-bg);
+  --bs-list-group-active-color: #ffffff;
+  --bs-list-group-active-bg: var(--bs-secondary);
+  --bs-list-group-active-border-color: var(--bs-secondary);
+  display: flex;
+  flex-direction: column;
+  padding-left: 0;
+  margin-bottom: 0;
+  border-radius: var(--bs-list-group-border-radius);
+}
+
+.list-group-numbered {
+  list-style-type: none;
+  counter-reset: section;
+}
+.list-group-numbered > .list-group-item::before {
+  content: counters(section, ".") ". ";
+  counter-increment: section;
+}
+
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
+  color: var(--bs-list-group-color);
+  background-color: var(--bs-list-group-bg);
+  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
+}
+.list-group-item:first-child {
+  border-top-left-radius: inherit;
+  border-top-right-radius: inherit;
+}
+.list-group-item:last-child {
+  border-bottom-right-radius: inherit;
+  border-bottom-left-radius: inherit;
+}
+.list-group-item.disabled, .list-group-item:disabled {
+  color: var(--bs-list-group-disabled-color);
+  pointer-events: none;
+  background-color: var(--bs-list-group-disabled-bg);
+}
+.list-group-item.active {
+  z-index: 2;
+  color: var(--bs-list-group-active-color);
+  background-color: var(--bs-list-group-active-bg);
+  border-color: var(--bs-list-group-active-border-color);
+}
+.list-group-item + .list-group-item {
+  border-top-width: 0;
+}
+.list-group-item + .list-group-item.active {
+  margin-top: calc(-1 * var(--bs-list-group-border-width));
+  border-top-width: var(--bs-list-group-border-width);
+}
+
+.list-group-item-action {
+  width: 100%;
+  color: var(--bs-list-group-action-color);
+  text-align: inherit;
+}
+.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
+  z-index: 1;
+  color: var(--bs-list-group-action-hover-color);
+  text-decoration: none;
+  background-color: var(--bs-list-group-action-hover-bg);
+}
+.list-group-item-action:not(.active):active {
+  color: var(--bs-list-group-action-active-color);
+  background-color: var(--bs-list-group-action-active-bg);
+}
+
+.list-group-horizontal {
+  flex-direction: row;
+}
+.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
+  border-bottom-left-radius: var(--bs-list-group-border-radius);
+  border-top-right-radius: 0;
+}
+.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
+  border-top-right-radius: var(--bs-list-group-border-radius);
+  border-bottom-left-radius: 0;
+}
+.list-group-horizontal > .list-group-item.active {
+  margin-top: 0;
+}
+.list-group-horizontal > .list-group-item + .list-group-item {
+  border-top-width: var(--bs-list-group-border-width);
+  border-left-width: 0;
+}
+.list-group-horizontal > .list-group-item + .list-group-item.active {
+  margin-left: calc(-1 * var(--bs-list-group-border-width));
+  border-left-width: var(--bs-list-group-border-width);
+}
+
+@media (min-width: 576px) {
+  .list-group-horizontal-sm {
+    flex-direction: row;
+  }
+  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
+    border-bottom-left-radius: var(--bs-list-group-border-radius);
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
+    border-top-right-radius: var(--bs-list-group-border-radius);
+    border-bottom-left-radius: 0;
+  }
+  .list-group-horizontal-sm > .list-group-item.active {
+    margin-top: 0;
+  }
+  .list-group-horizontal-sm > .list-group-item + .list-group-item {
+    border-top-width: var(--bs-list-group-border-width);
+    border-left-width: 0;
+  }
+  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
+    margin-left: calc(-1 * var(--bs-list-group-border-width));
+    border-left-width: var(--bs-list-group-border-width);
+  }
+}
+@media (min-width: 768px) {
+  .list-group-horizontal-md {
+    flex-direction: row;
+  }
+  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
+    border-bottom-left-radius: var(--bs-list-group-border-radius);
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
+    border-top-right-radius: var(--bs-list-group-border-radius);
+    border-bottom-left-radius: 0;
+  }
+  .list-group-horizontal-md > .list-group-item.active {
+    margin-top: 0;
+  }
+  .list-group-horizontal-md > .list-group-item + .list-group-item {
+    border-top-width: var(--bs-list-group-border-width);
+    border-left-width: 0;
+  }
+  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
+    margin-left: calc(-1 * var(--bs-list-group-border-width));
+    border-left-width: var(--bs-list-group-border-width);
+  }
+}
+@media (min-width: 992px) {
+  .list-group-horizontal-lg {
+    flex-direction: row;
+  }
+  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
+    border-bottom-left-radius: var(--bs-list-group-border-radius);
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
+    border-top-right-radius: var(--bs-list-group-border-radius);
+    border-bottom-left-radius: 0;
+  }
+  .list-group-horizontal-lg > .list-group-item.active {
+    margin-top: 0;
+  }
+  .list-group-horizontal-lg > .list-group-item + .list-group-item {
+    border-top-width: var(--bs-list-group-border-width);
+    border-left-width: 0;
+  }
+  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
+    margin-left: calc(-1 * var(--bs-list-group-border-width));
+    border-left-width: var(--bs-list-group-border-width);
+  }
+}
+@media (min-width: 1200px) {
+  .list-group-horizontal-xl {
+    flex-direction: row;
+  }
+  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
+    border-bottom-left-radius: var(--bs-list-group-border-radius);
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
+    border-top-right-radius: var(--bs-list-group-border-radius);
+    border-bottom-left-radius: 0;
+  }
+  .list-group-horizontal-xl > .list-group-item.active {
+    margin-top: 0;
+  }
+  .list-group-horizontal-xl > .list-group-item + .list-group-item {
+    border-top-width: var(--bs-list-group-border-width);
+    border-left-width: 0;
+  }
+  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
+    margin-left: calc(-1 * var(--bs-list-group-border-width));
+    border-left-width: var(--bs-list-group-border-width);
+  }
+}
+@media (min-width: 1400px) {
+  .list-group-horizontal-xxl {
+    flex-direction: row;
+  }
+  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
+    border-bottom-left-radius: var(--bs-list-group-border-radius);
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
+    border-top-right-radius: var(--bs-list-group-border-radius);
+    border-bottom-left-radius: 0;
+  }
+  .list-group-horizontal-xxl > .list-group-item.active {
+    margin-top: 0;
+  }
+  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
+    border-top-width: var(--bs-list-group-border-width);
+    border-left-width: 0;
+  }
+  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
+    margin-left: calc(-1 * var(--bs-list-group-border-width));
+    border-left-width: var(--bs-list-group-border-width);
+  }
+}
+.list-group-flush {
+  border-radius: 0;
+}
+.list-group-flush > .list-group-item {
+  border-width: 0 0 var(--bs-list-group-border-width);
+}
+.list-group-flush > .list-group-item:last-child {
+  border-bottom-width: 0;
+}
+
+.list-group-item-primary {
+  --bs-list-group-color: var(--bs-secondary-text-emphasis);
+  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
+  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
+  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
+}
+
+.list-group-item-secondary {
+  --bs-list-group-color: var(--bs-secondary-text-emphasis);
+  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
+  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
+  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
+}
+
+.list-group-item-success {
+  --bs-list-group-color: var(--bs-success-text-emphasis);
+  --bs-list-group-bg: var(--bs-success-bg-subtle);
+  --bs-list-group-border-color: var(--bs-success-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
+  --bs-list-group-active-color: var(--bs-success-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
+}
+
+.list-group-item-info {
+  --bs-list-group-color: var(--bs-info-text-emphasis);
+  --bs-list-group-bg: var(--bs-info-bg-subtle);
+  --bs-list-group-border-color: var(--bs-info-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
+  --bs-list-group-active-color: var(--bs-info-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
+}
+
+.list-group-item-warning {
+  --bs-list-group-color: var(--bs-warning-text-emphasis);
+  --bs-list-group-bg: var(--bs-warning-bg-subtle);
+  --bs-list-group-border-color: var(--bs-warning-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
+  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
+}
+
+.list-group-item-danger {
+  --bs-list-group-color: var(--bs-danger-text-emphasis);
+  --bs-list-group-bg: var(--bs-danger-bg-subtle);
+  --bs-list-group-border-color: var(--bs-danger-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
+  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
+}
+
+.list-group-item-light {
+  --bs-list-group-color: var(--bs-light-text-emphasis);
+  --bs-list-group-bg: var(--bs-light-bg-subtle);
+  --bs-list-group-border-color: var(--bs-light-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
+  --bs-list-group-active-color: var(--bs-light-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
+}
+
+.list-group-item-dark {
+  --bs-list-group-color: var(--bs-dark-text-emphasis);
+  --bs-list-group-bg: var(--bs-dark-bg-subtle);
+  --bs-list-group-border-color: var(--bs-dark-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
+  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
+}
+
+.list-group-item-white {
+  --bs-list-group-color: var(--bs-white-text-emphasis);
+  --bs-list-group-bg: var(--bs-white-bg-subtle);
+  --bs-list-group-border-color: var(--bs-white-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-white-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-white-border-subtle);
+  --bs-list-group-active-color: var(--bs-white-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-white-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-white-text-emphasis);
+}
+
+.list-group-item-gray {
+  --bs-list-group-color: var(--bs-gray-text-emphasis);
+  --bs-list-group-bg: var(--bs-gray-bg-subtle);
+  --bs-list-group-border-color: var(--bs-gray-border-subtle);
+  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
+  --bs-list-group-action-hover-bg: var(--bs-gray-border-subtle);
+  --bs-list-group-action-active-color: var(--bs-emphasis-color);
+  --bs-list-group-action-active-bg: var(--bs-gray-border-subtle);
+  --bs-list-group-active-color: var(--bs-gray-bg-subtle);
+  --bs-list-group-active-bg: var(--bs-gray-text-emphasis);
+  --bs-list-group-active-border-color: var(--bs-gray-text-emphasis);
+}
+
+.btn-close {
+  --bs-btn-close-color: #000;
+  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
+  --bs-btn-close-opacity: 0.5;
+  --bs-btn-close-hover-opacity: 0.75;
+  --bs-btn-close-focus-shadow: none;
+  --bs-btn-close-focus-opacity: 1;
+  --bs-btn-close-disabled-opacity: 0.25;
+  box-sizing: content-box;
+  width: 10px;
+  height: 10px;
+  padding: 0.25em 0.25em;
+  color: var(--bs-btn-close-color);
+  background: transparent var(--bs-btn-close-bg) center/10px auto no-repeat;
+  filter: var(--bs-btn-close-filter);
+  border: 0;
+  border-radius: 0.375rem;
+  opacity: var(--bs-btn-close-opacity);
+}
+.btn-close:hover {
+  color: var(--bs-btn-close-color);
+  text-decoration: none;
+  opacity: var(--bs-btn-close-hover-opacity);
+}
+.btn-close:focus {
+  outline: 0;
+  box-shadow: var(--bs-btn-close-focus-shadow);
+  opacity: var(--bs-btn-close-focus-opacity);
+}
+.btn-close:disabled, .btn-close.disabled {
+  pointer-events: none;
+  user-select: none;
+  opacity: var(--bs-btn-close-disabled-opacity);
+}
+
+.btn-close-white {
+  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
+}
+
+:root,
+[data-bs-theme=light] {
+  --bs-btn-close-filter: ;
+}
+
+[data-bs-theme=dark] {
+  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
+}
+
+.toast {
+  --bs-toast-zindex: 1090;
+  --bs-toast-padding-x: 0.75rem;
+  --bs-toast-padding-y: 0.5rem;
+  --bs-toast-spacing: 1.5rem;
+  --bs-toast-max-width: 350px;
+  --bs-toast-font-size: 0.8125rem;
+  --bs-toast-color: ;
+  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.9);
+  --bs-toast-border-width: var(--bs-border-width);
+  --bs-toast-border-color: var(--bs-border-color-translucent);
+  --bs-toast-border-radius: var(--bs-border-radius);
+  --bs-toast-box-shadow: var(--bs-box-shadow-lg);
+  --bs-toast-header-color: var(--bs-heading-color);
+  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
+  --bs-toast-header-border-color: var(--bs-border-color-translucent);
+  width: var(--bs-toast-max-width);
+  max-width: 100%;
+  font-size: var(--bs-toast-font-size);
+  color: var(--bs-toast-color);
+  pointer-events: auto;
+  background-color: var(--bs-toast-bg);
+  background-clip: padding-box;
+  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
+  box-shadow: var(--bs-toast-box-shadow);
+  border-radius: var(--bs-toast-border-radius);
+}
+.toast.showing {
+  opacity: 0;
+}
+.toast:not(.show) {
+  display: none;
+}
+
+.toast-container {
+  --bs-toast-zindex: 1090;
+  position: absolute;
+  z-index: var(--bs-toast-zindex);
+  width: max-content;
+  max-width: 100%;
+  pointer-events: none;
+}
+.toast-container > :not(:last-child) {
+  margin-bottom: var(--bs-toast-spacing);
+}
+
+.toast-header {
+  display: flex;
+  align-items: center;
+  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
+  color: var(--bs-toast-header-color);
+  background-color: var(--bs-toast-header-bg);
+  background-clip: padding-box;
+  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
+  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
+  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
+}
+.toast-header .btn-close {
+  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
+  margin-left: var(--bs-toast-padding-x);
+}
+
+.toast-body {
+  padding: var(--bs-toast-padding-x);
+  word-wrap: break-word;
+}
+
+.modal {
+  --bs-modal-zindex: 1055;
+  --bs-modal-width: 500px;
+  --bs-modal-padding: 20px;
+  --bs-modal-margin: 0.5rem;
+  --bs-modal-color: var(--bs-body-color);
+  --bs-modal-bg: var(--bs-body-bg);
+  --bs-modal-border-color: var(--bs-border-color-translucent);
+  --bs-modal-border-width: 0;
+  --bs-modal-border-radius: var(--bs-border-radius-lg);
+  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
+  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - 0);
+  --bs-modal-header-padding-x: 20px;
+  --bs-modal-header-padding-y: 20px;
+  --bs-modal-header-padding: 20px 20px;
+  --bs-modal-header-border-color: var(--bs-border-color);
+  --bs-modal-header-border-width: 1px;
+  --bs-modal-title-line-height: 1.6;
+  --bs-modal-footer-gap: 0.5rem;
+  --bs-modal-footer-bg: ;
+  --bs-modal-footer-border-color: var(--bs-border-color);
+  --bs-modal-footer-border-width: 1px;
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: var(--bs-modal-zindex);
+  display: none;
+  width: 100%;
+  height: 100%;
+  overflow-x: hidden;
+  overflow-y: auto;
+  outline: 0;
+}
+
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: var(--bs-modal-margin);
+  pointer-events: none;
+}
+.modal.fade .modal-dialog {
+  transform: translate(0, -35px);
+  transition: transform 0.3s ease-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .modal.fade .modal-dialog {
+    transition: none;
+  }
+}
+.modal.show .modal-dialog {
+  transform: none;
+}
+.modal.modal-static .modal-dialog {
+  transform: scale(1.02);
+}
+
+.modal-dialog-scrollable {
+  height: calc(100% - var(--bs-modal-margin) * 2);
+}
+.modal-dialog-scrollable .modal-content {
+  max-height: 100%;
+  overflow: hidden;
+}
+.modal-dialog-scrollable .modal-body {
+  overflow-y: auto;
+}
+
+.modal-dialog-centered {
+  display: flex;
+  align-items: center;
+  min-height: calc(100% - var(--bs-modal-margin) * 2);
+}
+
+.modal-content {
+  position: relative;
+  display: flex;
+  flex-direction: column;
+  width: 100%;
+  color: var(--bs-modal-color);
+  pointer-events: auto;
+  background-color: var(--bs-modal-bg);
+  background-clip: padding-box;
+  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
+  border-radius: var(--bs-modal-border-radius);
+  outline: 0;
+}
+
+.modal-backdrop {
+  --bs-backdrop-zindex: 1050;
+  --bs-backdrop-bg: var(--custom-modal-backdrop-bg);
+  --bs-backdrop-opacity: 0.6;
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: var(--bs-backdrop-zindex);
+  width: 100vw;
+  height: 100vh;
+  background-color: var(--bs-backdrop-bg);
+}
+.modal-backdrop.fade {
+  opacity: 0;
+}
+.modal-backdrop.show {
+  opacity: var(--bs-backdrop-opacity);
+}
+
+.modal-header {
+  display: flex;
+  flex-shrink: 0;
+  align-items: center;
+  padding: var(--bs-modal-header-padding);
+  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
+  border-top-left-radius: var(--bs-modal-inner-border-radius);
+  border-top-right-radius: var(--bs-modal-inner-border-radius);
+}
+.modal-header .btn-close {
+  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
+  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
+  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
+  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
+  margin-left: auto;
+}
+
+.modal-title {
+  margin-bottom: 0;
+  line-height: var(--bs-modal-title-line-height);
+}
+
+.modal-body {
+  position: relative;
+  flex: 1 1 auto;
+  padding: var(--bs-modal-padding);
+}
+
+.modal-footer {
+  display: flex;
+  flex-shrink: 0;
+  flex-wrap: wrap;
+  align-items: center;
+  justify-content: flex-end;
+  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
+  background-color: var(--bs-modal-footer-bg);
+  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
+  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
+  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
+}
+.modal-footer > * {
+  margin: calc(var(--bs-modal-footer-gap) * 0.5);
+}
+
+@media (min-width: 576px) {
+  .modal {
+    --bs-modal-margin: 1.75rem;
+    --bs-modal-box-shadow: var(--bs-box-shadow-lg);
+  }
+  .modal-dialog {
+    max-width: var(--bs-modal-width);
+    margin-right: auto;
+    margin-left: auto;
+  }
+  .modal-sm {
+    --bs-modal-width: 300px;
+  }
+}
+@media (min-width: 992px) {
+  .modal-lg,
+  .modal-xl {
+    --bs-modal-width: 800px;
+  }
+}
+@media (min-width: 1200px) {
+  .modal-xl {
+    --bs-modal-width: 1140px;
+  }
+}
+.modal-fullscreen {
+  width: 100vw;
+  max-width: none;
+  height: 100%;
+  margin: 0;
+}
+.modal-fullscreen .modal-content {
+  height: 100%;
+  border: 0;
+  border-radius: 0;
+}
+.modal-fullscreen .modal-header,
+.modal-fullscreen .modal-footer {
+  border-radius: 0;
+}
+.modal-fullscreen .modal-body {
+  overflow-y: auto;
+}
+
+@media (max-width: 575.98px) {
+  .modal-fullscreen-sm-down {
+    width: 100vw;
+    max-width: none;
+    height: 100%;
+    margin: 0;
+  }
+  .modal-fullscreen-sm-down .modal-content {
+    height: 100%;
+    border: 0;
+    border-radius: 0;
+  }
+  .modal-fullscreen-sm-down .modal-header,
+  .modal-fullscreen-sm-down .modal-footer {
+    border-radius: 0;
+  }
+  .modal-fullscreen-sm-down .modal-body {
+    overflow-y: auto;
+  }
+}
+@media (max-width: 767.98px) {
+  .modal-fullscreen-md-down {
+    width: 100vw;
+    max-width: none;
+    height: 100%;
+    margin: 0;
+  }
+  .modal-fullscreen-md-down .modal-content {
+    height: 100%;
+    border: 0;
+    border-radius: 0;
+  }
+  .modal-fullscreen-md-down .modal-header,
+  .modal-fullscreen-md-down .modal-footer {
+    border-radius: 0;
+  }
+  .modal-fullscreen-md-down .modal-body {
+    overflow-y: auto;
+  }
+}
+@media (max-width: 991.98px) {
+  .modal-fullscreen-lg-down {
+    width: 100vw;
+    max-width: none;
+    height: 100%;
+    margin: 0;
+  }
+  .modal-fullscreen-lg-down .modal-content {
+    height: 100%;
+    border: 0;
+    border-radius: 0;
+  }
+  .modal-fullscreen-lg-down .modal-header,
+  .modal-fullscreen-lg-down .modal-footer {
+    border-radius: 0;
+  }
+  .modal-fullscreen-lg-down .modal-body {
+    overflow-y: auto;
+  }
+}
+@media (max-width: 1199.98px) {
+  .modal-fullscreen-xl-down {
+    width: 100vw;
+    max-width: none;
+    height: 100%;
+    margin: 0;
+  }
+  .modal-fullscreen-xl-down .modal-content {
+    height: 100%;
+    border: 0;
+    border-radius: 0;
+  }
+  .modal-fullscreen-xl-down .modal-header,
+  .modal-fullscreen-xl-down .modal-footer {
+    border-radius: 0;
+  }
+  .modal-fullscreen-xl-down .modal-body {
+    overflow-y: auto;
+  }
+}
+@media (max-width: 1399.98px) {
+  .modal-fullscreen-xxl-down {
+    width: 100vw;
+    max-width: none;
+    height: 100%;
+    margin: 0;
+  }
+  .modal-fullscreen-xxl-down .modal-content {
+    height: 100%;
+    border: 0;
+    border-radius: 0;
+  }
+  .modal-fullscreen-xxl-down .modal-header,
+  .modal-fullscreen-xxl-down .modal-footer {
+    border-radius: 0;
+  }
+  .modal-fullscreen-xxl-down .modal-body {
+    overflow-y: auto;
+  }
+}
+.tooltip {
+  --bs-tooltip-zindex: 1080;
+  --bs-tooltip-max-width: 200px;
+  --bs-tooltip-padding-x: 10px;
+  --bs-tooltip-padding-y: 5px;
+  --bs-tooltip-margin: ;
+  --bs-tooltip-font-size: 0.765625rem;
+  --bs-tooltip-color: var(--bs-body-bg);
+  --bs-tooltip-bg: var(--bs-dark);
+  --bs-tooltip-border-radius: var(--bs-border-radius);
+  --bs-tooltip-opacity: 0.9;
+  --bs-tooltip-arrow-width: 0.8rem;
+  --bs-tooltip-arrow-height: 0.4rem;
+  z-index: var(--bs-tooltip-zindex);
+  display: block;
+  margin: var(--bs-tooltip-margin);
+  font-family: "Plus Jakarta Sans", sans-serif;
+  font-style: normal;
+  font-weight: 400;
+  line-height: 1.6;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  letter-spacing: normal;
+  word-break: normal;
+  white-space: normal;
+  word-spacing: normal;
+  line-break: auto;
+  font-size: var(--bs-tooltip-font-size);
+  word-wrap: break-word;
+  opacity: 0;
+}
+.tooltip.show {
+  opacity: var(--bs-tooltip-opacity);
+}
+.tooltip .tooltip-arrow {
+  display: block;
+  width: var(--bs-tooltip-arrow-width);
+  height: var(--bs-tooltip-arrow-height);
+}
+.tooltip .tooltip-arrow::before {
+  position: absolute;
+  content: "";
+  border-color: transparent;
+  border-style: solid;
+}
+
+.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
+  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
+}
+.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
+  top: -1px;
+  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
+  border-top-color: var(--bs-tooltip-bg);
+}
+
+/* rtl:begin:ignore */
+.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
+  left: calc(-1 * var(--bs-tooltip-arrow-height));
+  width: var(--bs-tooltip-arrow-height);
+  height: var(--bs-tooltip-arrow-width);
+}
+.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
+  right: -1px;
+  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
+  border-right-color: var(--bs-tooltip-bg);
+}
+
+/* rtl:end:ignore */
+.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
+  top: calc(-1 * var(--bs-tooltip-arrow-height));
+}
+.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
+  bottom: -1px;
+  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
+  border-bottom-color: var(--bs-tooltip-bg);
+}
+
+/* rtl:begin:ignore */
+.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
+  right: calc(-1 * var(--bs-tooltip-arrow-height));
+  width: var(--bs-tooltip-arrow-height);
+  height: var(--bs-tooltip-arrow-width);
+}
+.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
+  left: -1px;
+  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
+  border-left-color: var(--bs-tooltip-bg);
+}
+
+/* rtl:end:ignore */
+.tooltip-inner {
+  max-width: var(--bs-tooltip-max-width);
+  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
+  color: var(--bs-tooltip-color);
+  text-align: center;
+  background-color: var(--bs-tooltip-bg);
+  border-radius: var(--bs-tooltip-border-radius);
+}
+
+.popover {
+  --bs-popover-zindex: 1070;
+  --bs-popover-max-width: 276px;
+  --bs-popover-font-size: 0.8125rem;
+  --bs-popover-bg: var(--bs-body-bg);
+  --bs-popover-border-width: 0px;
+  --bs-popover-border-color: var(--bs-border-color-translucent);
+  --bs-popover-border-radius: var(--bs-border-radius);
+  --bs-popover-inner-border-radius: calc(var(--bs-border-radius) - 0px);
+  --bs-popover-box-shadow: var(--bs-box-shadow-lg);
+  --bs-popover-header-padding-x: 20px;
+  --bs-popover-header-padding-y: 12px;
+  --bs-popover-header-font-size: 0.875rem;
+  --bs-popover-header-color: var(--bs-heading-color);
+  --bs-popover-header-bg: var(--bs-light);
+  --bs-popover-body-padding-x: 20px;
+  --bs-popover-body-padding-y: 14px;
+  --bs-popover-body-color: var(--bs-body-color);
+  --bs-popover-arrow-width: 1rem;
+  --bs-popover-arrow-height: 0.5rem;
+  --bs-popover-arrow-border: var(--bs-popover-border-color);
+  z-index: var(--bs-popover-zindex);
+  display: block;
+  max-width: var(--bs-popover-max-width);
+  font-family: "Plus Jakarta Sans", sans-serif;
+  font-style: normal;
+  font-weight: 400;
+  line-height: 1.6;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  letter-spacing: normal;
+  word-break: normal;
+  white-space: normal;
+  word-spacing: normal;
+  line-break: auto;
+  font-size: var(--bs-popover-font-size);
+  word-wrap: break-word;
+  background-color: var(--bs-popover-bg);
+  background-clip: padding-box;
+  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
+  border-radius: var(--bs-popover-border-radius);
+}
+.popover .popover-arrow {
+  display: block;
+  width: var(--bs-popover-arrow-width);
+  height: var(--bs-popover-arrow-height);
+}
+.popover .popover-arrow::before, .popover .popover-arrow::after {
+  position: absolute;
+  display: block;
+  content: "";
+  border-color: transparent;
+  border-style: solid;
+  border-width: 0;
+}
+
+.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
+  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
+}
+.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
+  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
+}
+.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
+  bottom: 0;
+  border-top-color: var(--bs-popover-arrow-border);
+}
+.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
+  bottom: var(--bs-popover-border-width);
+  border-top-color: var(--bs-popover-bg);
+}
+
+/* rtl:begin:ignore */
+.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
+  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
+  width: var(--bs-popover-arrow-height);
+  height: var(--bs-popover-arrow-width);
+}
+.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
+  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
+}
+.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
+  left: 0;
+  border-right-color: var(--bs-popover-arrow-border);
+}
+.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
+  left: var(--bs-popover-border-width);
+  border-right-color: var(--bs-popover-bg);
+}
+
+/* rtl:end:ignore */
+.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
+  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
+}
+.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
+  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
+}
+.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
+  top: 0;
+  border-bottom-color: var(--bs-popover-arrow-border);
+}
+.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
+  top: var(--bs-popover-border-width);
+  border-bottom-color: var(--bs-popover-bg);
+}
+.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
+  position: absolute;
+  top: 0;
+  left: 50%;
+  display: block;
+  width: var(--bs-popover-arrow-width);
+  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
+  content: "";
+  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
+}
+
+/* rtl:begin:ignore */
+.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
+  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
+  width: var(--bs-popover-arrow-height);
+  height: var(--bs-popover-arrow-width);
+}
+.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
+  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
+}
+.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
+  right: 0;
+  border-left-color: var(--bs-popover-arrow-border);
+}
+.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
+  right: var(--bs-popover-border-width);
+  border-left-color: var(--bs-popover-bg);
+}
+
+/* rtl:end:ignore */
+.popover-header {
+  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
+  margin-bottom: 0;
+  font-size: var(--bs-popover-header-font-size);
+  color: var(--bs-popover-header-color);
+  background-color: var(--bs-popover-header-bg);
+  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
+  border-top-left-radius: var(--bs-popover-inner-border-radius);
+  border-top-right-radius: var(--bs-popover-inner-border-radius);
+}
+.popover-header:empty {
+  display: none;
+}
+
+.popover-body {
+  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
+  color: var(--bs-popover-body-color);
+}
+
+.carousel {
+  position: relative;
+}
+
+.carousel.pointer-event {
+  touch-action: pan-y;
+}
+
+.carousel-inner {
+  position: relative;
+  width: 100%;
+  overflow: hidden;
+}
+.carousel-inner::after {
+  display: block;
+  clear: both;
+  content: "";
+}
+
+.carousel-item {
+  position: relative;
+  display: none;
+  float: left;
+  width: 100%;
+  margin-right: -100%;
+  backface-visibility: hidden;
+  transition: transform 0.6s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+  .carousel-item {
+    transition: none;
+  }
+}
+
+.carousel-item.active,
+.carousel-item-next,
+.carousel-item-prev {
+  display: block;
+}
+
+.carousel-item-next:not(.carousel-item-start),
+.active.carousel-item-end {
+  transform: translateX(100%);
+}
+
+.carousel-item-prev:not(.carousel-item-end),
+.active.carousel-item-start {
+  transform: translateX(-100%);
+}
+
+.carousel-fade .carousel-item {
+  opacity: 0;
+  transition-property: opacity;
+  transform: none;
+}
+.carousel-fade .carousel-item.active,
+.carousel-fade .carousel-item-next.carousel-item-start,
+.carousel-fade .carousel-item-prev.carousel-item-end {
+  z-index: 1;
+  opacity: 1;
+}
+.carousel-fade .active.carousel-item-start,
+.carousel-fade .active.carousel-item-end {
+  z-index: 0;
+  opacity: 0;
+  transition: opacity 0s 0.6s;
+}
+@media (prefers-reduced-motion: reduce) {
+  .carousel-fade .active.carousel-item-start,
+  .carousel-fade .active.carousel-item-end {
+    transition: none;
+  }
+}
+
+.carousel-control-prev,
+.carousel-control-next {
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  z-index: 1;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  width: 15%;
+  padding: 0;
+  color: #ffffff;
+  text-align: center;
+  background: none;
+  filter: var(--bs-carousel-control-icon-filter);
+  border: 0;
+  opacity: 0.5;
+  transition: opacity 0.15s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+  .carousel-control-prev,
+  .carousel-control-next {
+    transition: none;
+  }
+}
+.carousel-control-prev:hover, .carousel-control-prev:focus,
+.carousel-control-next:hover,
+.carousel-control-next:focus {
+  color: #ffffff;
+  text-decoration: none;
+  outline: 0;
+  opacity: 0.9;
+}
+
+.carousel-control-prev {
+  left: 0;
+}
+
+.carousel-control-next {
+  right: 0;
+}
+
+.carousel-control-prev-icon,
+.carousel-control-next-icon {
+  display: inline-block;
+  width: 2rem;
+  height: 2rem;
+  background-repeat: no-repeat;
+  background-position: 50%;
+  background-size: 100% 100%;
+}
+
+.carousel-control-prev-icon {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
+}
+
+.carousel-control-next-icon {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
+}
+
+.carousel-indicators {
+  position: absolute;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 2;
+  display: flex;
+  justify-content: center;
+  padding: 0;
+  margin-right: 15%;
+  margin-bottom: 1rem;
+  margin-left: 15%;
+}
+.carousel-indicators [data-bs-target] {
+  box-sizing: content-box;
+  flex: 0 1 auto;
+  width: 30px;
+  height: 3px;
+  padding: 0;
+  margin-right: 3px;
+  margin-left: 3px;
+  text-indent: -999px;
+  cursor: pointer;
+  background-color: var(--bs-carousel-indicator-active-bg);
+  background-clip: padding-box;
+  border: 0;
+  border-top: 10px solid transparent;
+  border-bottom: 10px solid transparent;
+  opacity: 0.5;
+  transition: opacity 0.6s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+  .carousel-indicators [data-bs-target] {
+    transition: none;
+  }
+}
+.carousel-indicators .active {
+  opacity: 1;
+}
+
+.carousel-caption {
+  position: absolute;
+  right: 15%;
+  bottom: 1.25rem;
+  left: 15%;
+  padding-top: 1.25rem;
+  padding-bottom: 1.25rem;
+  color: var(--bs-carousel-caption-color);
+  text-align: center;
+}
+
+.carousel-dark {
+  --bs-carousel-indicator-active-bg: #000;
+  --bs-carousel-caption-color: #000;
+  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
+}
+
+:root,
+[data-bs-theme=light] {
+  --bs-carousel-indicator-active-bg: #ffffff;
+  --bs-carousel-caption-color: #ffffff;
+  --bs-carousel-control-icon-filter: ;
+}
+
+[data-bs-theme=dark] {
+  --bs-carousel-indicator-active-bg: #000;
+  --bs-carousel-caption-color: #000;
+  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
+}
+
+.spinner-grow,
+.spinner-border {
+  display: inline-block;
+  flex-shrink: 0;
+  width: var(--bs-spinner-width);
+  height: var(--bs-spinner-height);
+  vertical-align: var(--bs-spinner-vertical-align);
+  border-radius: 50%;
+  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
+}
+
+@keyframes spinner-border {
+  to {
+    transform: rotate(360deg) /* rtl:ignore */;
+  }
+}
+.spinner-border {
+  --bs-spinner-width: 2rem;
+  --bs-spinner-height: 2rem;
+  --bs-spinner-vertical-align: -0.125em;
+  --bs-spinner-border-width: 0.25em;
+  --bs-spinner-animation-speed: 0.75s;
+  --bs-spinner-animation-name: spinner-border;
+  border: var(--bs-spinner-border-width) solid currentcolor;
+  border-right-color: transparent;
+}
+
+.spinner-border-sm {
+  --bs-spinner-width: 1rem;
+  --bs-spinner-height: 1rem;
+  --bs-spinner-border-width: 0.2em;
+}
+
+@keyframes spinner-grow {
+  0% {
+    transform: scale(0);
+  }
+  50% {
+    opacity: 1;
+    transform: none;
+  }
+}
+.spinner-grow {
+  --bs-spinner-width: 2rem;
+  --bs-spinner-height: 2rem;
+  --bs-spinner-vertical-align: -0.125em;
+  --bs-spinner-animation-speed: 0.75s;
+  --bs-spinner-animation-name: spinner-grow;
+  background-color: currentcolor;
+  opacity: 0;
+}
+
+.spinner-grow-sm {
+  --bs-spinner-width: 1rem;
+  --bs-spinner-height: 1rem;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .spinner-border,
+  .spinner-grow {
+    --bs-spinner-animation-speed: 1.5s;
+  }
+}
+.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
+  --bs-offcanvas-zindex: 1045;
+  --bs-offcanvas-width: 400px;
+  --bs-offcanvas-height: 30vh;
+  --bs-offcanvas-padding-x: 20px;
+  --bs-offcanvas-padding-y: 20px;
+  --bs-offcanvas-color: var(--bs-body-color);
+  --bs-offcanvas-bg: var(--bs-body-bg);
+  --bs-offcanvas-border-width: 0;
+  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
+  --bs-offcanvas-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
+  --bs-offcanvas-transition: transform 0.3s ease-in-out;
+  --bs-offcanvas-title-line-height: 1.6;
+}
+
+@media (max-width: 575.98px) {
+  .offcanvas-sm {
+    position: fixed;
+    bottom: 0;
+    z-index: var(--bs-offcanvas-zindex);
+    display: flex;
+    flex-direction: column;
+    max-width: 100%;
+    color: var(--bs-offcanvas-color);
+    visibility: hidden;
+    background-color: var(--bs-offcanvas-bg);
+    background-clip: padding-box;
+    outline: 0;
+    transition: var(--bs-offcanvas-transition);
+  }
+}
+@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
+  .offcanvas-sm {
+    transition: none;
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.offcanvas-start {
+    top: 0;
+    left: 0;
+    width: var(--bs-offcanvas-width);
+    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(-100%);
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.offcanvas-end {
+    top: 0;
+    right: 0;
+    width: var(--bs-offcanvas-width);
+    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(100%);
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.offcanvas-top {
+    top: 0;
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(-100%);
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.offcanvas-bottom {
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(100%);
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
+    transform: none;
+  }
+}
+@media (max-width: 575.98px) {
+  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
+    visibility: visible;
+  }
+}
+@media (min-width: 576px) {
+  .offcanvas-sm {
+    --bs-offcanvas-height: auto;
+    --bs-offcanvas-border-width: 0;
+    background-color: transparent !important;
+  }
+  .offcanvas-sm .offcanvas-header {
+    display: none;
+  }
+  .offcanvas-sm .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+    background-color: transparent !important;
+  }
+}
+
+@media (max-width: 767.98px) {
+  .offcanvas-md {
+    position: fixed;
+    bottom: 0;
+    z-index: var(--bs-offcanvas-zindex);
+    display: flex;
+    flex-direction: column;
+    max-width: 100%;
+    color: var(--bs-offcanvas-color);
+    visibility: hidden;
+    background-color: var(--bs-offcanvas-bg);
+    background-clip: padding-box;
+    outline: 0;
+    transition: var(--bs-offcanvas-transition);
+  }
+}
+@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
+  .offcanvas-md {
+    transition: none;
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.offcanvas-start {
+    top: 0;
+    left: 0;
+    width: var(--bs-offcanvas-width);
+    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(-100%);
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.offcanvas-end {
+    top: 0;
+    right: 0;
+    width: var(--bs-offcanvas-width);
+    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(100%);
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.offcanvas-top {
+    top: 0;
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(-100%);
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.offcanvas-bottom {
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(100%);
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
+    transform: none;
+  }
+}
+@media (max-width: 767.98px) {
+  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
+    visibility: visible;
+  }
+}
+@media (min-width: 768px) {
+  .offcanvas-md {
+    --bs-offcanvas-height: auto;
+    --bs-offcanvas-border-width: 0;
+    background-color: transparent !important;
+  }
+  .offcanvas-md .offcanvas-header {
+    display: none;
+  }
+  .offcanvas-md .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+    background-color: transparent !important;
+  }
+}
+
+@media (max-width: 991.98px) {
+  .offcanvas-lg {
+    position: fixed;
+    bottom: 0;
+    z-index: var(--bs-offcanvas-zindex);
+    display: flex;
+    flex-direction: column;
+    max-width: 100%;
+    color: var(--bs-offcanvas-color);
+    visibility: hidden;
+    background-color: var(--bs-offcanvas-bg);
+    background-clip: padding-box;
+    outline: 0;
+    transition: var(--bs-offcanvas-transition);
+  }
+}
+@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
+  .offcanvas-lg {
+    transition: none;
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.offcanvas-start {
+    top: 0;
+    left: 0;
+    width: var(--bs-offcanvas-width);
+    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(-100%);
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.offcanvas-end {
+    top: 0;
+    right: 0;
+    width: var(--bs-offcanvas-width);
+    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(100%);
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.offcanvas-top {
+    top: 0;
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(-100%);
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.offcanvas-bottom {
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(100%);
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
+    transform: none;
+  }
+}
+@media (max-width: 991.98px) {
+  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
+    visibility: visible;
+  }
+}
+@media (min-width: 992px) {
+  .offcanvas-lg {
+    --bs-offcanvas-height: auto;
+    --bs-offcanvas-border-width: 0;
+    background-color: transparent !important;
+  }
+  .offcanvas-lg .offcanvas-header {
+    display: none;
+  }
+  .offcanvas-lg .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+    background-color: transparent !important;
+  }
+}
+
+@media (max-width: 1199.98px) {
+  .offcanvas-xl {
+    position: fixed;
+    bottom: 0;
+    z-index: var(--bs-offcanvas-zindex);
+    display: flex;
+    flex-direction: column;
+    max-width: 100%;
+    color: var(--bs-offcanvas-color);
+    visibility: hidden;
+    background-color: var(--bs-offcanvas-bg);
+    background-clip: padding-box;
+    outline: 0;
+    transition: var(--bs-offcanvas-transition);
+  }
+}
+@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
+  .offcanvas-xl {
+    transition: none;
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.offcanvas-start {
+    top: 0;
+    left: 0;
+    width: var(--bs-offcanvas-width);
+    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(-100%);
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.offcanvas-end {
+    top: 0;
+    right: 0;
+    width: var(--bs-offcanvas-width);
+    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(100%);
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.offcanvas-top {
+    top: 0;
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(-100%);
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.offcanvas-bottom {
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(100%);
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
+    transform: none;
+  }
+}
+@media (max-width: 1199.98px) {
+  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
+    visibility: visible;
+  }
+}
+@media (min-width: 1200px) {
+  .offcanvas-xl {
+    --bs-offcanvas-height: auto;
+    --bs-offcanvas-border-width: 0;
+    background-color: transparent !important;
+  }
+  .offcanvas-xl .offcanvas-header {
+    display: none;
+  }
+  .offcanvas-xl .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+    background-color: transparent !important;
+  }
+}
+
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl {
+    position: fixed;
+    bottom: 0;
+    z-index: var(--bs-offcanvas-zindex);
+    display: flex;
+    flex-direction: column;
+    max-width: 100%;
+    color: var(--bs-offcanvas-color);
+    visibility: hidden;
+    background-color: var(--bs-offcanvas-bg);
+    background-clip: padding-box;
+    outline: 0;
+    transition: var(--bs-offcanvas-transition);
+  }
+}
+@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
+  .offcanvas-xxl {
+    transition: none;
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.offcanvas-start {
+    top: 0;
+    left: 0;
+    width: var(--bs-offcanvas-width);
+    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(-100%);
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.offcanvas-end {
+    top: 0;
+    right: 0;
+    width: var(--bs-offcanvas-width);
+    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateX(100%);
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.offcanvas-top {
+    top: 0;
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(-100%);
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.offcanvas-bottom {
+    right: 0;
+    left: 0;
+    height: var(--bs-offcanvas-height);
+    max-height: 100%;
+    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+    transform: translateY(100%);
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
+    transform: none;
+  }
+}
+@media (max-width: 1399.98px) {
+  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
+    visibility: visible;
+  }
+}
+@media (min-width: 1400px) {
+  .offcanvas-xxl {
+    --bs-offcanvas-height: auto;
+    --bs-offcanvas-border-width: 0;
+    background-color: transparent !important;
+  }
+  .offcanvas-xxl .offcanvas-header {
+    display: none;
+  }
+  .offcanvas-xxl .offcanvas-body {
+    display: flex;
+    flex-grow: 0;
+    padding: 0;
+    overflow-y: visible;
+    background-color: transparent !important;
+  }
+}
+
+.offcanvas {
+  position: fixed;
+  bottom: 0;
+  z-index: var(--bs-offcanvas-zindex);
+  display: flex;
+  flex-direction: column;
+  max-width: 100%;
+  color: var(--bs-offcanvas-color);
+  visibility: hidden;
+  background-color: var(--bs-offcanvas-bg);
+  background-clip: padding-box;
+  outline: 0;
+  transition: var(--bs-offcanvas-transition);
+}
+@media (prefers-reduced-motion: reduce) {
+  .offcanvas {
+    transition: none;
+  }
+}
+.offcanvas.offcanvas-start {
+  top: 0;
+  left: 0;
+  width: var(--bs-offcanvas-width);
+  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+  transform: translateX(-100%);
+}
+.offcanvas.offcanvas-end {
+  top: 0;
+  right: 0;
+  width: var(--bs-offcanvas-width);
+  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+  transform: translateX(100%);
+}
+.offcanvas.offcanvas-top {
+  top: 0;
+  right: 0;
+  left: 0;
+  height: var(--bs-offcanvas-height);
+  max-height: 100%;
+  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+  transform: translateY(-100%);
+}
+.offcanvas.offcanvas-bottom {
+  right: 0;
+  left: 0;
+  height: var(--bs-offcanvas-height);
+  max-height: 100%;
+  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
+  transform: translateY(100%);
+}
+.offcanvas.showing, .offcanvas.show:not(.hiding) {
+  transform: none;
+}
+.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
+  visibility: visible;
+}
+
+.offcanvas-backdrop {
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: 1040;
+  width: 100vw;
+  height: 100vh;
+  background-color: var(--custom-modal-backdrop-bg);
+}
+.offcanvas-backdrop.fade {
+  opacity: 0;
+}
+.offcanvas-backdrop.show {
+  opacity: 0.6;
+}
+
+.offcanvas-header {
+  display: flex;
+  align-items: center;
+  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
+}
+.offcanvas-header .btn-close {
+  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
+  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
+  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
+  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
+  margin-left: auto;
+}
+
+.offcanvas-title {
+  margin-bottom: 0;
+  line-height: var(--bs-offcanvas-title-line-height);
+}
+
+.offcanvas-body {
+  flex-grow: 1;
+  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
+  overflow-y: auto;
+}
+
+.placeholder {
+  display: inline-block;
+  min-height: 1em;
+  vertical-align: middle;
+  cursor: wait;
+  background-color: currentcolor;
+  opacity: 0.5;
+}
+.placeholder.btn::before {
+  display: inline-block;
+  content: "";
+}
+
+.placeholder-xs {
+  min-height: 0.6em;
+}
+
+.placeholder-sm {
+  min-height: 0.8em;
+}
+
+.placeholder-lg {
+  min-height: 1.2em;
+}
+
+.placeholder-glow .placeholder {
+  animation: placeholder-glow 2s ease-in-out infinite;
+}
+
+@keyframes placeholder-glow {
+  50% {
+    opacity: 0.2;
+  }
+}
+.placeholder-wave {
+  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
+  mask-size: 200% 100%;
+  animation: placeholder-wave 2s linear infinite;
+}
+
+@keyframes placeholder-wave {
+  100% {
+    mask-position: -200% 0%;
+  }
+}
+.clearfix::after {
+  display: block;
+  clear: both;
+  content: "";
+}
+
+.text-bg-primary {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-secondary {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-success {
+  color: #ffffff !important;
+  background-color: #4CAF50;
+}
+
+.text-bg-info {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-warning {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-danger {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-light {
+  color: #000 !important;
+  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-dark {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-white {
+  color: #000 !important;
+  background-color: RGBA(var(--bs-white-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.text-bg-gray {
+  color: #ffffff !important;
+  background-color: RGBA(var(--bs-gray-rgb), var(--bs-bg-opacity, 1)) !important;
+}
+
+.link-primary {
+  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-primary:hover, .link-primary:focus {
+  color: RGBA(39, 85, 204, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(39, 85, 204, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-secondary {
+  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-secondary:hover, .link-secondary:focus {
+  color: RGBA(204, 103, 13, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(204, 103, 13, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-success {
+  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-success:hover, .link-success:focus {
+  color: RGBA(27, 141, 101, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(27, 141, 101, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-info {
+  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-info:hover, .link-info:focus {
+  color: RGBA(2, 144, 200, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(2, 144, 200, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-warning {
+  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-warning:hover, .link-warning:focus {
+  color: RGBA(202, 150, 25, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(202, 150, 25, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-danger {
+  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-danger:hover, .link-danger:focus {
+  color: RGBA(204, 51, 22, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(204, 51, 22, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-light {
+  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-light:hover, .link-light:focus {
+  color: RGBA(240, 245, 253, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(240, 245, 253, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-dark {
+  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-dark:hover, .link-dark:focus {
+  color: RGBA(10, 29, 48, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(10, 29, 48, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-white {
+  color: RGBA(var(--bs-white-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-white-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-white:hover, .link-white:focus {
+  color: RGBA(255, 255, 255, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(255, 255, 255, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-gray {
+  color: RGBA(var(--bs-gray-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-gray-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-gray:hover, .link-gray:focus {
+  color: RGBA(121, 129, 154, var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(121, 129, 154, var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-body-emphasis {
+  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
+  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+.link-body-emphasis:hover, .link-body-emphasis:focus {
+  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
+  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
+}
+
+.focus-ring:focus {
+  outline: 0;
+  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
+}
+
+.icon-link {
+  display: inline-flex;
+  gap: 0.375rem;
+  align-items: center;
+  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
+  text-underline-offset: 0.25em;
+  backface-visibility: hidden;
+}
+.icon-link > .bi {
+  flex-shrink: 0;
+  width: 1em;
+  height: 1em;
+  fill: currentcolor;
+  transition: 0.2s ease-in-out transform;
+}
+@media (prefers-reduced-motion: reduce) {
+  .icon-link > .bi {
+    transition: none;
+  }
+}
+
+.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
+  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
+}
+
+.ratio {
+  position: relative;
+  width: 100%;
+}
+.ratio::before {
+  display: block;
+  padding-top: var(--bs-aspect-ratio);
+  content: "";
+}
+.ratio > * {
+  position: absolute;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+}
+
+.ratio-1x1 {
+  --bs-aspect-ratio: 100%;
+}
+
+.ratio-4x3 {
+  --bs-aspect-ratio: 75%;
+}
+
+.ratio-16x9 {
+  --bs-aspect-ratio: 56.25%;
+}
+
+.ratio-21x9 {
+  --bs-aspect-ratio: 42.8571428571%;
+}
+
+.fixed-top {
+  position: fixed;
+  top: 0;
+  right: 0;
+  left: 0;
+  z-index: 1030;
+}
+
+.fixed-bottom {
+  position: fixed;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1030;
+}
+
+.sticky-top {
+  position: sticky;
+  top: 0;
+  z-index: 1020;
+}
+
+.sticky-bottom {
+  position: sticky;
+  bottom: 0;
+  z-index: 1020;
+}
+
+@media (min-width: 576px) {
+  .sticky-sm-top {
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+  .sticky-sm-bottom {
+    position: sticky;
+    bottom: 0;
+    z-index: 1020;
+  }
+}
+@media (min-width: 768px) {
+  .sticky-md-top {
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+  .sticky-md-bottom {
+    position: sticky;
+    bottom: 0;
+    z-index: 1020;
+  }
+}
+@media (min-width: 992px) {
+  .sticky-lg-top {
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+  .sticky-lg-bottom {
+    position: sticky;
+    bottom: 0;
+    z-index: 1020;
+  }
+}
+@media (min-width: 1200px) {
+  .sticky-xl-top {
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+  .sticky-xl-bottom {
+    position: sticky;
+    bottom: 0;
+    z-index: 1020;
+  }
+}
+@media (min-width: 1400px) {
+  .sticky-xxl-top {
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+  .sticky-xxl-bottom {
+    position: sticky;
+    bottom: 0;
+    z-index: 1020;
+  }
+}
+.hstack {
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  align-self: stretch;
+}
+
+.vstack {
+  display: flex;
+  flex: 1 1 auto;
+  flex-direction: column;
+  align-self: stretch;
+}
+
+.visually-hidden,
+.visually-hidden-focusable:not(:focus):not(:focus-within) {
+  width: 1px !important;
+  height: 1px !important;
+  padding: 0 !important;
+  margin: -1px !important;
+  overflow: hidden !important;
+  clip: rect(0, 0, 0, 0) !important;
+  white-space: nowrap !important;
+  border: 0 !important;
+}
+.visually-hidden:not(caption),
+.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
+  position: absolute !important;
+}
+.visually-hidden *,
+.visually-hidden-focusable:not(:focus):not(:focus-within) * {
+  overflow: hidden !important;
+}
+
+.stretched-link::after {
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1;
+  content: "";
+}
+
+.text-truncate {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+.vr {
+  display: inline-block;
+  align-self: stretch;
+  width: var(--bs-border-width);
+  min-height: 1em;
+  background-color: currentcolor;
+  opacity: 0.25;
+}
+
+.align-baseline {
+  vertical-align: baseline !important;
+}
+
+.align-top {
+  vertical-align: top !important;
+}
+
+.align-middle {
+  vertical-align: middle !important;
+}
+
+.align-bottom {
+  vertical-align: bottom !important;
+}
+
+.align-text-bottom {
+  vertical-align: text-bottom !important;
+}
+
+.align-text-top {
+  vertical-align: text-top !important;
+}
+
+.float-start {
+  float: left !important;
+}
+
+.float-end {
+  float: right !important;
+}
+
+.float-none {
+  float: none !important;
+}
+
+.object-fit-contain {
+  object-fit: contain !important;
+}
+
+.object-fit-cover {
+  object-fit: cover !important;
+}
+
+.object-fit-fill {
+  object-fit: fill !important;
+}
+
+.object-fit-scale {
+  object-fit: scale-down !important;
+}
+
+.object-fit-none {
+  object-fit: none !important;
+}
+
+.opacity-0 {
+  opacity: 0 !important;
+}
+
+.opacity-25 {
+  opacity: 0.25 !important;
+}
+
+.opacity-50 {
+  opacity: 0.5 !important;
+}
+
+.opacity-75 {
+  opacity: 0.75 !important;
+}
+
+.opacity-100 {
+  opacity: 1 !important;
+}
+
+.overflow-auto {
+  overflow: auto !important;
+}
+
+.overflow-hidden {
+  overflow: hidden !important;
+}
+
+.overflow-visible {
+  overflow: visible !important;
+}
+
+.overflow-scroll {
+  overflow: scroll !important;
+}
+
+.overflow-x-auto {
+  overflow-x: auto !important;
+}
+
+.overflow-x-hidden {
+  overflow-x: hidden !important;
+}
+
+.overflow-x-visible {
+  overflow-x: visible !important;
+}
+
+.overflow-x-scroll {
+  overflow-x: scroll !important;
+}
+
+.overflow-y-auto {
+  overflow-y: auto !important;
+}
+
+.overflow-y-hidden {
+  overflow-y: hidden !important;
+}
+
+.overflow-y-visible {
+  overflow-y: visible !important;
+}
+
+.overflow-y-scroll {
+  overflow-y: scroll !important;
+}
+
+.d-inline {
+  display: inline !important;
+}
+
+.d-inline-block {
+  display: inline-block !important;
+}
+
+.d-block {
+  display: block !important;
+}
+
+.d-grid {
+  display: grid !important;
+}
+
+.d-inline-grid {
+  display: inline-grid !important;
+}
+
+.d-table {
+  display: table !important;
+}
+
+.d-table-row {
+  display: table-row !important;
+}
+
+.d-table-cell {
+  display: table-cell !important;
+}
+
+.d-flex {
+  display: flex !important;
+}
+
+.d-inline-flex {
+  display: inline-flex !important;
+}
+
+.d-none {
+  display: none !important;
+}
+
+.shadow {
+  box-shadow: var(--bs-box-shadow) !important;
+}
+
+.shadow-sm {
+  box-shadow: var(--bs-box-shadow-sm) !important;
+}
+
+.shadow-lg {
+  box-shadow: var(--bs-box-shadow-lg) !important;
+}
+
+.shadow-none {
+  box-shadow: none !important;
+}
+
+.focus-ring-primary {
+  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-secondary {
+  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-success {
+  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-info {
+  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-warning {
+  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-danger {
+  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-light {
+  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-dark {
+  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-white {
+  --bs-focus-ring-color: rgba(var(--bs-white-rgb), var(--bs-focus-ring-opacity));
+}
+
+.focus-ring-gray {
+  --bs-focus-ring-color: rgba(var(--bs-gray-rgb), var(--bs-focus-ring-opacity));
+}
+
+.position-static {
+  position: static !important;
+}
+
+.position-relative {
+  position: relative !important;
+}
+
+.position-absolute {
+  position: absolute !important;
+}
+
+.position-fixed {
+  position: fixed !important;
+}
+
+.position-sticky {
+  position: sticky !important;
+}
+
+.top-0 {
+  top: 0 !important;
+}
+
+.top-50 {
+  top: 50% !important;
+}
+
+.top-100 {
+  top: 100% !important;
+}
+
+.bottom-0 {
+  bottom: 0 !important;
+}
+
+.bottom-50 {
+  bottom: 50% !important;
+}
+
+.bottom-100 {
+  bottom: 100% !important;
+}
+
+.start-0 {
+  left: 0 !important;
+}
+
+.start-50 {
+  left: 50% !important;
+}
+
+.start-100 {
+  left: 100% !important;
+}
+
+.end-0 {
+  right: 0 !important;
+}
+
+.end-50 {
+  right: 50% !important;
+}
+
+.end-100 {
+  right: 100% !important;
+}
+
+.translate-middle {
+  transform: translate(-50%, -50%) !important;
+}
+
+.translate-middle-x {
+  transform: translateX(-50%) !important;
+}
+
+.translate-middle-y {
+  transform: translateY(-50%) !important;
+}
+
+.border {
+  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
+}
+
+.border-0 {
+  border: 0 !important;
+}
+
+.border-top {
+  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
+}
+
+.border-top-0 {
+  border-top: 0 !important;
+}
+
+.border-end {
+  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
+}
+
+.border-end-0 {
+  border-right: 0 !important;
+}
+
+.border-bottom {
+  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
+}
+
+.border-bottom-0 {
+  border-bottom: 0 !important;
+}
+
+.border-start {
+  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
+}
+
+.border-start-0 {
+  border-left: 0 !important;
+}
+
+.border-primary {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-secondary {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-success {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-info {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-warning {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-danger {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-light {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-dark {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-white {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-gray {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-gray-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-black {
+  --bs-border-opacity: 1;
+  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
+}
+
+.border-primary-subtle {
+  border-color: var(--bs-secondary-border-subtle) !important;
+}
+
+.border-secondary-subtle {
+  border-color: var(--bs-secondary-border-subtle) !important;
+}
+
+.border-success-subtle {
+  border-color: var(--bs-success-border-subtle) !important;
+}
+
+.border-info-subtle {
+  border-color: var(--bs-info-border-subtle) !important;
+}
+
+.border-warning-subtle {
+  border-color: var(--bs-warning-border-subtle) !important;
+}
+
+.border-danger-subtle {
+  border-color: var(--bs-danger-border-subtle) !important;
+}
+
+.border-light-subtle {
+  border-color: var(--bs-light-border-subtle) !important;
+}
+
+.border-dark-subtle {
+  border-color: var(--bs-dark-border-subtle) !important;
+}
+
+.border-1 {
+  border-width: 1px !important;
+}
+
+.border-2 {
+  border-width: 2px !important;
+}
+
+.border-3 {
+  border-width: 3px !important;
+}
+
+.border-4 {
+  border-width: 4px !important;
+}
+
+.border-5 {
+  border-width: 5px !important;
+}
+
+.border-opacity-10 {
+  --bs-border-opacity: 0.1;
+}
+
+.border-opacity-25 {
+  --bs-border-opacity: 0.25;
+}
+
+.border-opacity-50 {
+  --bs-border-opacity: 0.5;
+}
+
+.border-opacity-75 {
+  --bs-border-opacity: 0.75;
+}
+
+.border-opacity-100 {
+  --bs-border-opacity: 1;
+}
+.w-10 {
+  width: 15% !important;
+}
+.w-25 {
+  width: 25% !important;
+}
+.w-40 {
+  width: 40% !important;
+}
+.w-50 {
+  width: 50% !important;
+}
+
+.w-75 {
+  width: 75% !important;
+}
+
+.w-100 {
+  width: 100% !important;
+}
+
+.w-auto {
+  width: auto !important;
+}
+
+.mw-100 {
+  max-width: 100% !important;
+}
+
+.vw-100 {
+  width: 100vw !important;
+}
+
+.min-vw-100 {
+  min-width: 100vw !important;
+}
+
+.h-25 {
+  height: 25% !important;
+}
+
+.h-50 {
+  height: 50% !important;
+}
+
+.h-75 {
+  height: 75% !important;
+}
+
+.h-100 {
+  height: 100% !important;
+}
+
+.h-auto {
+  height: auto !important;
+}
+
+.mh-100 {
+  max-height: 100% !important;
+}
+
+.vh-100 {
+  height: 100vh !important;
+}
+
+.min-vh-100 {
+  min-height: 100vh !important;
+}
+
+.flex-fill {
+  flex: 1 1 auto !important;
+}
+
+.flex-row {
+  flex-direction: row !important;
+}
+
+.flex-column {
+  flex-direction: column !important;
+}
+
+.flex-row-reverse {
+  flex-direction: row-reverse !important;
+}
+
+.flex-column-reverse {
+  flex-direction: column-reverse !important;
+}
+
+.flex-grow-0 {
+  flex-grow: 0 !important;
+}
+
+.flex-grow-1 {
+  flex-grow: 1 !important;
+}
+
+.flex-shrink-0 {
+  flex-shrink: 0 !important;
+}
+
+.flex-shrink-1 {
+  flex-shrink: 1 !important;
+}
+
+.flex-wrap {
+  flex-wrap: wrap !important;
+}
+
+.flex-nowrap {
+  flex-wrap: nowrap !important;
+}
+
+.flex-wrap-reverse {
+  flex-wrap: wrap-reverse !important;
+}
+
+.justify-content-start {
+  justify-content: flex-start !important;
+}
+
+.justify-content-end {
+  justify-content: flex-end !important;
+}
+
+.justify-content-center {
+  justify-content: center !important;
+}
+
+.justify-content-between {
+  justify-content: space-between !important;
+}
+
+.justify-content-around {
+  justify-content: space-around !important;
+}
+
+.justify-content-evenly {
+  justify-content: space-evenly !important;
+}
+
+.align-items-start {
+  align-items: flex-start !important;
+}
+
+.align-items-end {
+  align-items: flex-end !important;
+}
+
+.align-items-center {
+  align-items: center !important;
+}
+
+.align-items-baseline {
+  align-items: baseline !important;
+}
+
+.align-items-stretch {
+  align-items: stretch !important;
+}
+
+.align-content-start {
+  align-content: flex-start !important;
+}
+
+.align-content-end {
+  align-content: flex-end !important;
+}
+
+.align-content-center {
+  align-content: center !important;
+}
+
+.align-content-between {
+  align-content: space-between !important;
+}
+
+.align-content-around {
+  align-content: space-around !important;
+}
+
+.align-content-stretch {
+  align-content: stretch !important;
+}
+
+.align-self-auto {
+  align-self: auto !important;
+}
+
+.align-self-start {
+  align-self: flex-start !important;
+}
+
+.align-self-end {
+  align-self: flex-end !important;
+}
+
+.align-self-center {
+  align-self: center !important;
+}
+
+.align-self-baseline {
+  align-self: baseline !important;
+}
+
+.align-self-stretch {
+  align-self: stretch !important;
+}
+
+.order-first {
+  order: -1 !important;
+}
+
+.order-0 {
+  order: 0 !important;
+}
+
+.order-1 {
+  order: 1 !important;
+}
+
+.order-2 {
+  order: 2 !important;
+}
+
+.order-3 {
+  order: 3 !important;
+}
+
+.order-4 {
+  order: 4 !important;
+}
+
+.order-5 {
+  order: 5 !important;
+}
+
+.order-last {
+  order: 6 !important;
+}
+
+.m-0 {
+  margin: 0 !important;
+}
+
+.m-1 {
+  margin: 0.25rem !important;
+}
+
+.m-2 {
+  margin: 0.5rem !important;
+}
+
+.m-3 {
+  margin: 1rem !important;
+}
+
+.m-4 {
+  margin: 1.5rem !important;
+}
+
+.m-5 {
+  margin: 2.5rem !important;
+}
+
+.m-6 {
+  margin: 2.813rem !important;
+}
+
+.m-7 {
+  margin: 3.125rem !important;
+}
+
+.m-auto {
+  margin: auto !important;
+}
+
+.mx-0 {
+  margin-right: 0 !important;
+  margin-left: 0 !important;
+}
+
+.mx-1 {
+  margin-right: 0.25rem !important;
+  margin-left: 0.25rem !important;
+}
+
+.mx-2 {
+  margin-right: 0.5rem !important;
+  margin-left: 0.5rem !important;
+}
+
+.mx-3 {
+  margin-right: 1rem !important;
+  margin-left: 1rem !important;
+}
+
+.mx-4 {
+  margin-right: 1.5rem !important;
+  margin-left: 1.5rem !important;
+}
+
+.mx-5 {
+  margin-right: 2.5rem !important;
+  margin-left: 2.5rem !important;
+}
+
+.mx-6 {
+  margin-right: 2.813rem !important;
+  margin-left: 2.813rem !important;
+}
+
+.mx-7 {
+  margin-right: 3.125rem !important;
+  margin-left: 3.125rem !important;
+}
+
+.mx-auto {
+  margin-right: auto !important;
+  margin-left: auto !important;
+}
+
+.my-0 {
+  margin-top: 0 !important;
+  margin-bottom: 0 !important;
+}
+
+.my-1 {
+  margin-top: 0.25rem !important;
+  margin-bottom: 0.25rem !important;
+}
+
+.my-2 {
+  margin-top: 0.5rem !important;
+  margin-bottom: 0.5rem !important;
+}
+
+.my-3 {
+  margin-top: 1rem !important;
+  margin-bottom: 1rem !important;
+}
+
+.my-4 {
+  margin-top: 1.5rem !important;
+  margin-bottom: 1.5rem !important;
+}
+
+.my-5 {
+  margin-top: 2.5rem !important;
+  margin-bottom: 2.5rem !important;
+}
+
+.my-6 {
+  margin-top: 2.813rem !important;
+  margin-bottom: 2.813rem !important;
+}
+
+.my-7 {
+  margin-top: 3.125rem !important;
+  margin-bottom: 3.125rem !important;
+}
+
+.my-auto {
+  margin-top: auto !important;
+  margin-bottom: auto !important;
+}
+
+.mt-0 {
+  margin-top: 0 !important;
+}
+
+.mt-1 {
+  margin-top: 0.25rem !important;
+}
+
+.mt-2 {
+  margin-top: 0.5rem !important;
+}
+
+.mt-3 {
+  margin-top: 1rem !important;
+}
+
+.mt-4 {
+  margin-top: 1.5rem !important;
+}
+
+.mt-5 {
+  margin-top: 2.5rem !important;
+}
+
+.mt-6 {
+  margin-top: 2.813rem !important;
+}
+
+.mt-7 {
+  margin-top: 3.125rem !important;
+}
+
+.mt-auto {
+  margin-top: auto !important;
+}
+
+.me-0 {
+  margin-right: 0 !important;
+}
+
+.me-1 {
+  margin-right: 0.25rem !important;
+}
+
+.me-2 {
+  margin-right: 0.5rem !important;
+}
+
+.me-3 {
+  margin-right: 1rem !important;
+}
+
+.me-4 {
+  margin-right: 1.5rem !important;
+}
+
+.me-5 {
+  margin-right: 2.5rem !important;
+}
+
+.me-6 {
+  margin-right: 2.813rem !important;
+}
+
+.me-7 {
+  margin-right: 3.125rem !important;
+}
+
+.me-auto {
+  margin-right: auto !important;
+}
+
+.mb-0 {
+  margin-bottom: 0 !important;
+}
+
+.mb-1 {
+  margin-bottom: 0.25rem !important;
+}
+
+.mb-2 {
+  margin-bottom: 0.5rem !important;
+}
+
+.mb-3 {
+  margin-bottom: 1rem !important;
+}
+
+.mb-4 {
+  margin-bottom: 1.5rem !important;
+}
+
+.mb-5 {
+  margin-bottom: 2.5rem !important;
+}
+
+.mb-6 {
+  margin-bottom: 2.813rem !important;
+}
+
+.mb-7 {
+  margin-bottom: 3.125rem !important;
+}
+
+.mb-auto {
+  margin-bottom: auto !important;
+}
+
+.ms-0 {
+  margin-left: 0 !important;
+}
+
+.ms-1 {
+  margin-left: 0.25rem !important;
+}
+
+.ms-2 {
+  margin-left: 0.5rem !important;
+}
+
+.ms-3 {
+  margin-left: 1rem !important;
+}
+
+.ms-4 {
+  margin-left: 1.5rem !important;
+}
+
+.ms-5 {
+  margin-left: 2.5rem !important;
+}
+
+.ms-6 {
+  margin-left: 2.813rem !important;
+}
+
+.ms-7 {
+  margin-left: 3.125rem !important;
+}
+
+.ms-auto {
+  margin-left: auto !important;
+}
+
+.m-n1 {
+  margin: -0.25rem !important;
+}
+
+.m-n2 {
+  margin: -0.5rem !important;
+}
+
+.m-n3 {
+  margin: -1rem !important;
+}
+
+.m-n4 {
+  margin: -1.5rem !important;
+}
+
+.m-n5 {
+  margin: -2.5rem !important;
+}
+
+.m-n6 {
+  margin: -2.813rem !important;
+}
+
+.m-n7 {
+  margin: -3.125rem !important;
+}
+
+.mx-n1 {
+  margin-right: -0.25rem !important;
+  margin-left: -0.25rem !important;
+}
+
+.mx-n2 {
+  margin-right: -0.5rem !important;
+  margin-left: -0.5rem !important;
+}
+
+.mx-n3 {
+  margin-right: -1rem !important;
+  margin-left: -1rem !important;
+}
+
+.mx-n4 {
+  margin-right: -1.5rem !important;
+  margin-left: -1.5rem !important;
+}
+
+.mx-n5 {
+  margin-right: -2.5rem !important;
+  margin-left: -2.5rem !important;
+}
+
+.mx-n6 {
+  margin-right: -2.813rem !important;
+  margin-left: -2.813rem !important;
+}
+
+.mx-n7 {
+  margin-right: -3.125rem !important;
+  margin-left: -3.125rem !important;
+}
+
+.my-n1 {
+  margin-top: -0.25rem !important;
+  margin-bottom: -0.25rem !important;
+}
+
+.my-n2 {
+  margin-top: -0.5rem !important;
+  margin-bottom: -0.5rem !important;
+}
+
+.my-n3 {
+  margin-top: -1rem !important;
+  margin-bottom: -1rem !important;
+}
+
+.my-n4 {
+  margin-top: -1.5rem !important;
+  margin-bottom: -1.5rem !important;
+}
+
+.my-n5 {
+  margin-top: -2.5rem !important;
+  margin-bottom: -2.5rem !important;
+}
+
+.my-n6 {
+  margin-top: -2.813rem !important;
+  margin-bottom: -2.813rem !important;
+}
+
+.my-n7 {
+  margin-top: -3.125rem !important;
+  margin-bottom: -3.125rem !important;
+}
+
+.mt-n1 {
+  margin-top: -0.25rem !important;
+}
+
+.mt-n2 {
+  margin-top: -0.5rem !important;
+}
+
+.mt-n3 {
+  margin-top: -1rem !important;
+}
+
+.mt-n4 {
+  margin-top: -1.5rem !important;
+}
+
+.mt-n5 {
+  margin-top: -2.5rem !important;
+}
+
+.mt-n6 {
+  margin-top: -2.813rem !important;
+}
+
+.mt-n7 {
+  margin-top: -3.125rem !important;
+}
+
+.me-n1 {
+  margin-right: -0.25rem !important;
+}
+
+.me-n2 {
+  margin-right: -0.5rem !important;
+}
+
+.me-n3 {
+  margin-right: -1rem !important;
+}
+
+.me-n4 {
+  margin-right: -1.5rem !important;
+}
+
+.me-n5 {
+  margin-right: -2.5rem !important;
+}
+
+.me-n6 {
+  margin-right: -2.813rem !important;
+}
+
+.me-n7 {
+  margin-right: -3.125rem !important;
+}
+
+.mb-n1 {
+  margin-bottom: -0.25rem !important;
+}
+
+.mb-n2 {
+  margin-bottom: -0.5rem !important;
+}
+
+.mb-n3 {
+  margin-bottom: -1rem !important;
+}
+
+.mb-n4 {
+  margin-bottom: -1.5rem !important;
+}
+
+.mb-n5 {
+  margin-bottom: -2.5rem !important;
+}
+
+.mb-n6 {
+  margin-bottom: -2.813rem !important;
+}
+
+.mb-n7 {
+  margin-bottom: -3.125rem !important;
+}
+
+.ms-n1 {
+  margin-left: -0.25rem !important;
+}
+
+.ms-n2 {
+  margin-left: -0.5rem !important;
+}
+
+.ms-n3 {
+  margin-left: -1rem !important;
+}
+
+.ms-n4 {
+  margin-left: -1.5rem !important;
+}
+
+.ms-n5 {
+  margin-left: -2.5rem !important;
+}
+
+.ms-n6 {
+  margin-left: -2.813rem !important;
+}
+
+.ms-n7 {
+  margin-left: -3.125rem !important;
+}
+
+.p-0 {
+  padding: 0 !important;
+}
+
+.p-1 {
+  padding: 0.25rem !important;
+}
+
+.p-2 {
+  padding: 0.5rem !important;
+}
+
+.p-3 {
+  padding: 1rem !important;
+}
+
+.p-4 {
+  padding: 1.5rem !important;
+}
+
+.p-5 {
+  padding: 2.5rem !important;
+}
+
+.p-6 {
+  padding: 2.813rem !important;
+}
+
+.p-7 {
+  padding: 3.125rem !important;
+}
+
+.px-0 {
+  padding-right: 0 !important;
+  padding-left: 0 !important;
+}
+
+.px-1 {
+  padding-right: 0.25rem !important;
+  padding-left: 0.25rem !important;
+}
+
+.px-2 {
+  padding-right: 0.5rem !important;
+  padding-left: 0.5rem !important;
+}
+
+.px-3 {
+  padding-right: 1rem !important;
+  padding-left: 1rem !important;
+}
+
+.px-4 {
+  padding-right: 1.5rem !important;
+  padding-left: 1.5rem !important;
+}
+
+.px-5 {
+  padding-right: 2.5rem !important;
+  padding-left: 2.5rem !important;
+}
+
+.px-6 {
+  padding-right: 2.813rem !important;
+  padding-left: 2.813rem !important;
+}
+
+.px-7 {
+  padding-right: 3.125rem !important;
+  padding-left: 3.125rem !important;
+}
+
+.py-0 {
+  padding-top: 0 !important;
+  padding-bottom: 0 !important;
+}
+
+.py-1 {
+  padding-top: 0.25rem !important;
+  padding-bottom: 0.25rem !important;
+}
+
+.py-2 {
+  padding-top: 0.5rem !important;
+  padding-bottom: 0.5rem !important;
+}
+
+.py-3 {
+  padding-top: 1rem !important;
+  padding-bottom: 1rem !important;
+}
+
+.py-4 {
+  padding-top: 1.5rem !important;
+  padding-bottom: 1.5rem !important;
+}
+
+.py-5 {
+  padding-top: 2.5rem !important;
+  padding-bottom: 2.5rem !important;
+}
+
+.py-6 {
+  padding-top: 2.813rem !important;
+  padding-bottom: 2.813rem !important;
+}
+
+.py-7 {
+  padding-top: 3.125rem !important;
+  padding-bottom: 3.125rem !important;
+}
+
+.pt-0 {
+  padding-top: 0 !important;
+}
+
+.pt-1 {
+  padding-top: 0.25rem !important;
+}
+
+.pt-2 {
+  padding-top: 0.5rem !important;
+}
+
+.pt-3 {
+  padding-top: 1rem !important;
+}
+
+.pt-4 {
+  padding-top: 1.5rem !important;
+}
+
+.pt-5 {
+  padding-top: 2.5rem !important;
+}
+
+.pt-6 {
+  padding-top: 2.813rem !important;
+}
+
+.pt-7 {
+  padding-top: 3.125rem !important;
+}
+
+.pe-0 {
+  padding-right: 0 !important;
+}
+
+.pe-1 {
+  padding-right: 0.25rem !important;
+}
+
+.pe-2 {
+  padding-right: 0.5rem !important;
+}
+
+.pe-3 {
+  padding-right: 1rem !important;
+}
+
+.pe-4 {
+  padding-right: 1.5rem !important;
+}
+
+.pe-5 {
+  padding-right: 2.5rem !important;
+}
+
+.pe-6 {
+  padding-right: 2.813rem !important;
+}
+
+.pe-7 {
+  padding-right: 3.125rem !important;
+}
+
+.pb-0 {
+  padding-bottom: 0 !important;
+}
+
+.pb-1 {
+  padding-bottom: 0.25rem !important;
+}
+
+.pb-2 {
+  padding-bottom: 0.5rem !important;
+}
+
+.pb-3 {
+  padding-bottom: 1rem !important;
+}
+
+.pb-4 {
+  padding-bottom: 1.5rem !important;
+}
+
+.pb-5 {
+  padding-bottom: 2.5rem !important;
+}
+
+.pb-6 {
+  padding-bottom: 2.813rem !important;
+}
+
+.pb-7 {
+  padding-bottom: 3.125rem !important;
+}
+
+.ps-0 {
+  padding-left: 0 !important;
+}
+
+.ps-1 {
+  padding-left: 0.25rem !important;
+}
+
+.ps-2 {
+  padding-left: 0.5rem !important;
+}
+
+.ps-3 {
+  padding-left: 1rem !important;
+}
+
+.ps-4 {
+  padding-left: 1.5rem !important;
+}
+
+.ps-5 {
+  padding-left: 2.5rem !important;
+}
+
+.ps-6 {
+  padding-left: 2.813rem !important;
+}
+
+.ps-7 {
+  padding-left: 3.125rem !important;
+}
+
+.gap-0 {
+  gap: 0 !important;
+}
+
+.gap-1 {
+  gap: 0.25rem !important;
+}
+
+.gap-2 {
+  gap: 0.5rem !important;
+}
+
+.gap-3 {
+  gap: 1rem !important;
+}
+
+.gap-4 {
+  gap: 1.5rem !important;
+}
+
+.gap-5 {
+  gap: 2.5rem !important;
+}
+
+.gap-6 {
+  gap: 2.813rem !important;
+}
+
+.gap-7 {
+  gap: 3.125rem !important;
+}
+
+.row-gap-0 {
+  row-gap: 0 !important;
+}
+
+.row-gap-1 {
+  row-gap: 0.25rem !important;
+}
+
+.row-gap-2 {
+  row-gap: 0.5rem !important;
+}
+
+.row-gap-3 {
+  row-gap: 1rem !important;
+}
+
+.row-gap-4 {
+  row-gap: 1.5rem !important;
+}
+
+.row-gap-5 {
+  row-gap: 2.5rem !important;
+}
+
+.row-gap-6 {
+  row-gap: 2.813rem !important;
+}
+
+.row-gap-7 {
+  row-gap: 3.125rem !important;
+}
+
+.column-gap-0 {
+  column-gap: 0 !important;
+}
+
+.column-gap-1 {
+  column-gap: 0.25rem !important;
+}
+
+.column-gap-2 {
+  column-gap: 0.5rem !important;
+}
+
+.column-gap-3 {
+  column-gap: 1rem !important;
+}
+
+.column-gap-4 {
+  column-gap: 1.5rem !important;
+}
+
+.column-gap-5 {
+  column-gap: 2.5rem !important;
+}
+
+.column-gap-6 {
+  column-gap: 2.813rem !important;
+}
+
+.column-gap-7 {
+  column-gap: 3.125rem !important;
+}
+
+.font-monospace {
+  font-family: var(--bs-font-monospace) !important;
+}
+
+.fs-1 {
+  font-size: calc(1.34375rem + 1.125vw) !important;
+}
+
+.fs-2 {
+  font-size: calc(1.3rem + 0.6vw) !important;
+}
+
+.fs-3 {
+  font-size: calc(1.278125rem + 0.3375vw) !important;
+}
+
+.fs-4 {
+  font-size: calc(1.25625rem + 0.075vw) !important;
+}
+
+.fs-5 {
+  font-size: 1.09375rem !important;
+}
+
+.fs-6 {
+  font-size: 13px !important;
+}
+
+.fst-italic {
+  font-style: italic !important;
+}
+
+.fst-normal {
+  font-style: normal !important;
+}
+
+.fw-lighter {
+  font-weight: lighter !important;
+}
+
+.fw-light {
+  font-weight: 300 !important;
+}
+
+.fw-normal {
+  font-weight: 400 !important;
+}
+
+.fw-medium {
+  font-weight: 500 !important;
+}
+
+.fw-semibold {
+  font-weight: 600 !important;
+}
+
+.fw-bold {
+  font-weight: 700 !important;
+}
+
+.fw-bolder {
+  font-weight: bolder !important;
+}
+
+.lh-1 {
+  line-height: 1 !important;
+}
+
+.lh-sm {
+  line-height: 1.25 !important;
+}
+
+.lh-base {
+  line-height: 1.6 !important;
+}
+
+.lh-lg {
+  line-height: 2 !important;
+}
+
+.text-start {
+  text-align: left !important;
+}
+
+.text-end {
+  text-align: right !important;
+}
+
+.text-center {
+  text-align: center !important;
+}
+
+.text-decoration-none {
+  text-decoration: none !important;
+}
+
+.text-decoration-underline {
+  text-decoration: underline !important;
+}
+
+.text-decoration-line-through {
+  text-decoration: line-through !important;
+}
+
+.text-lowercase {
+  text-transform: lowercase !important;
+}
+
+.text-uppercase {
+  text-transform: uppercase !important;
+}
+
+.text-capitalize {
+  text-transform: capitalize !important;
+}
+
+.text-wrap {
+  white-space: normal !important;
+}
+
+.text-nowrap {
+  white-space: nowrap !important;
+}
+
+/* rtl:begin:remove */
+.text-break {
+  word-wrap: break-word !important;
+  word-break: break-word !important;
+}
+
+/* rtl:end:remove */
+.text-primary {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-secondary {
+  --bs-text-opacity: 1;
+  color: var(--bs-secondary-rgb)!important;
+}
+
+.text-success {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-info {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-warning {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-danger {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-light {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-dark {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-white {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-gray {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-gray-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-black {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-body {
+  --bs-text-opacity: 1;
+  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
+}
+
+.text-muted {
+  --bs-text-opacity: 1;
+  color: var(--bs-secondary-color) !important;
+}
+
+.text-black-50 {
+  --bs-text-opacity: 1;
+  color: rgba(0, 0, 0, 0.5) !important;
+}
+
+.text-white-50 {
+  --bs-text-opacity: 1;
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+
+.text-body-secondary {
+  --bs-text-opacity: 1;
+  color: var(--bs-secondary-color) !important;
+}
+
+.text-body-tertiary {
+  --bs-text-opacity: 1;
+  color: var(--bs-tertiary-color) !important;
+}
+
+.text-body-emphasis {
+  --bs-text-opacity: 1;
+  color: var(--bs-emphasis-color) !important;
+}
+
+.text-reset {
+  --bs-text-opacity: 1;
+  color: inherit !important;
+}
+
+.text-opacity-25 {
+  --bs-text-opacity: 0.25;
+}
+
+.text-opacity-50 {
+  --bs-text-opacity: 0.5;
+}
+
+.text-opacity-75 {
+  --bs-text-opacity: 0.75;
+}
+
+.text-opacity-100 {
+  --bs-text-opacity: 1;
+}
+
+.text-primary-emphasis {
+  color: var(--bs-secondary-text-emphasis) !important;
+}
+
+.text-secondary-emphasis {
+  color: var(--bs-secondary-text-emphasis) !important;
+}
+
+.text-success-emphasis {
+  color: var(--bs-success-text-emphasis) !important;
+}
+
+.text-info-emphasis {
+  color: var(--bs-info-text-emphasis) !important;
+}
+
+.text-warning-emphasis {
+  color: var(--bs-warning-text-emphasis) !important;
+}
+
+.text-danger-emphasis {
+  color: var(--bs-danger-text-emphasis) !important;
+}
+
+.text-light-emphasis {
+  color: var(--bs-light-text-emphasis) !important;
+}
+
+.text-dark-emphasis {
+  color: var(--bs-dark-text-emphasis) !important;
+}
+
+.link-opacity-10 {
+  --bs-link-opacity: 0.1;
+}
+
+.link-opacity-10-hover:hover {
+  --bs-link-opacity: 0.1;
+}
+
+.link-opacity-25 {
+  --bs-link-opacity: 0.25;
+}
+
+.link-opacity-25-hover:hover {
+  --bs-link-opacity: 0.25;
+}
+
+.link-opacity-50 {
+  --bs-link-opacity: 0.5;
+}
+
+.link-opacity-50-hover:hover {
+  --bs-link-opacity: 0.5;
+}
+
+.link-opacity-75 {
+  --bs-link-opacity: 0.75;
+}
+
+.link-opacity-75-hover:hover {
+  --bs-link-opacity: 0.75;
+}
+
+.link-opacity-100 {
+  --bs-link-opacity: 1;
+}
+
+.link-opacity-100-hover:hover {
+  --bs-link-opacity: 1;
+}
+
+.link-offset-1 {
+  text-underline-offset: 0.125em !important;
+}
+
+.link-offset-1-hover:hover {
+  text-underline-offset: 0.125em !important;
+}
+
+.link-offset-2 {
+  text-underline-offset: 0.25em !important;
+}
+
+.link-offset-2-hover:hover {
+  text-underline-offset: 0.25em !important;
+}
+
+.link-offset-3 {
+  text-underline-offset: 0.375em !important;
+}
+
+.link-offset-3-hover:hover {
+  text-underline-offset: 0.375em !important;
+}
+
+.link-underline-primary {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-secondary {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-success {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-info {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-warning {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-danger {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-light {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-dark {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-white {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-white-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline-gray {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-gray-rgb), var(--bs-link-underline-opacity)) !important;
+}
+
+.link-underline {
+  --bs-link-underline-opacity: 1;
+  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
+}
+
+.link-underline-opacity-0 {
+  --bs-link-underline-opacity: 0;
+}
+
+.link-underline-opacity-0-hover:hover {
+  --bs-link-underline-opacity: 0;
+}
+
+.link-underline-opacity-10 {
+  --bs-link-underline-opacity: 0.1;
+}
+
+.link-underline-opacity-10-hover:hover {
+  --bs-link-underline-opacity: 0.1;
+}
+
+.link-underline-opacity-25 {
+  --bs-link-underline-opacity: 0.25;
+}
+
+.link-underline-opacity-25-hover:hover {
+  --bs-link-underline-opacity: 0.25;
+}
+
+.link-underline-opacity-50 {
+  --bs-link-underline-opacity: 0.5;
+}
+
+.link-underline-opacity-50-hover:hover {
+  --bs-link-underline-opacity: 0.5;
+}
+
+.link-underline-opacity-75 {
+  --bs-link-underline-opacity: 0.75;
+}
+
+.link-underline-opacity-75-hover:hover {
+  --bs-link-underline-opacity: 0.75;
+}
+
+.link-underline-opacity-100 {
+  --bs-link-underline-opacity: 1;
+}
+
+.link-underline-opacity-100-hover:hover {
+  --bs-link-underline-opacity: 1;
+}
+
+.bg-primary {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-secondary {
+  --bs-bg-opacity: 1;
+     background-color: var(--bs-secondary)!important;
+}
+
+.bg-success {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-info {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-warning {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-danger {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-light {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-dark {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-white {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-gray {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-gray-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-black {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-body {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-transparent {
+  --bs-bg-opacity: 1;
+  background-color: transparent !important;
+}
+
+.bg-body-secondary {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-body-tertiary {
+  --bs-bg-opacity: 1;
+  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
+}
+
+.bg-opacity-10 {
+  --bs-bg-opacity: 0.1;
+}
+
+.bg-opacity-25 {
+  --bs-bg-opacity: 0.25;
+}
+
+.bg-opacity-50 {
+  --bs-bg-opacity: 0.5;
+}
+
+.bg-opacity-75 {
+  --bs-bg-opacity: 0.75;
+}
+
+.bg-opacity-100 {
+  --bs-bg-opacity: 1;
+}
+
+.bg-primary-subtle {
+  background-color: var(--bs-secondary-bg-subtle) !important;
+}
+
+.bg-secondary-subtle {
+  background-color: var(--bs-secondary-bg-subtle) !important;
+}
+
+.bg-success-subtle {
+  background-color: var(--bs-success-bg-subtle) !important;
+}
+
+.bg-info-subtle {
+  background-color: var(--bs-info-bg-subtle) !important;
+}
+
+.bg-warning-subtle {
+  background-color: var(--bs-warning-bg-subtle) !important;
+}
+
+.bg-danger-subtle {
+  background-color: var(--bs-danger-bg-subtle) !important;
+}
+
+.bg-light-subtle {
+  background-color: var(--bs-light-bg-subtle) !important;
+}
+
+.bg-dark-subtle {
+  background-color: var(--bs-dark-bg-subtle) !important;
+}
+
+.bg-gradient {
+  background-image: var(--bs-gradient) !important;
+}
+
+.user-select-all {
+  user-select: all !important;
+}
+
+.user-select-auto {
+  user-select: auto !important;
+}
+
+.user-select-none {
+  user-select: none !important;
+}
+
+.pe-none {
+  pointer-events: none !important;
+}
+
+.pe-auto {
+  pointer-events: auto !important;
+}
+
+.rounded {
+  border-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-0 {
+  border-radius: 0 !important;
+}
+
+.rounded-1 {
+  border-radius: var(--bs-border-radius-sm) !important;
+}
+
+.rounded-2 {
+  border-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-3 {
+  border-radius: var(--bs-border-radius-lg) !important;
+}
+
+.rounded-4 {
+  border-radius: var(--bs-border-radius-xl) !important;
+}
+
+.rounded-5 {
+  border-radius: var(--bs-border-radius-xxl) !important;
+}
+
+.rounded-circle {
+  border-radius: 50% !important;
+}
+
+.rounded-pill {
+  border-radius: var(--bs-border-radius-pill) !important;
+}
+
+.rounded-top {
+  border-top-left-radius: var(--bs-border-radius) !important;
+  border-top-right-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-top-0 {
+  border-top-left-radius: 0 !important;
+  border-top-right-radius: 0 !important;
+}
+
+.rounded-top-1 {
+  border-top-left-radius: var(--bs-border-radius-sm) !important;
+  border-top-right-radius: var(--bs-border-radius-sm) !important;
+}
+
+.rounded-top-2 {
+  border-top-left-radius: var(--bs-border-radius) !important;
+  border-top-right-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-top-3 {
+  border-top-left-radius: var(--bs-border-radius-lg) !important;
+  border-top-right-radius: var(--bs-border-radius-lg) !important;
+}
+
+.rounded-top-4 {
+  border-top-left-radius: var(--bs-border-radius-xl) !important;
+  border-top-right-radius: var(--bs-border-radius-xl) !important;
+}
+
+.rounded-top-5 {
+  border-top-left-radius: var(--bs-border-radius-xxl) !important;
+  border-top-right-radius: var(--bs-border-radius-xxl) !important;
+}
+
+.rounded-top-circle {
+  border-top-left-radius: 50% !important;
+  border-top-right-radius: 50% !important;
+}
+
+.rounded-top-pill {
+  border-top-left-radius: var(--bs-border-radius-pill) !important;
+  border-top-right-radius: var(--bs-border-radius-pill) !important;
+}
+
+.rounded-end {
+  border-top-right-radius: var(--bs-border-radius) !important;
+  border-bottom-right-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-end-0 {
+  border-top-right-radius: 0 !important;
+  border-bottom-right-radius: 0 !important;
+}
+
+.rounded-end-1 {
+  border-top-right-radius: var(--bs-border-radius-sm) !important;
+  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
+}
+
+.rounded-end-2 {
+  border-top-right-radius: var(--bs-border-radius) !important;
+  border-bottom-right-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-end-3 {
+  border-top-right-radius: var(--bs-border-radius-lg) !important;
+  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
+}
+
+.rounded-end-4 {
+  border-top-right-radius: var(--bs-border-radius-xl) !important;
+  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
+}
+
+.rounded-end-5 {
+  border-top-right-radius: var(--bs-border-radius-xxl) !important;
+  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
+}
+
+.rounded-end-circle {
+  border-top-right-radius: 50% !important;
+  border-bottom-right-radius: 50% !important;
+}
+
+.rounded-end-pill {
+  border-top-right-radius: var(--bs-border-radius-pill) !important;
+  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
+}
+
+.rounded-bottom {
+  border-bottom-right-radius: var(--bs-border-radius) !important;
+  border-bottom-left-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-bottom-0 {
+  border-bottom-right-radius: 0 !important;
+  border-bottom-left-radius: 0 !important;
+}
+
+.rounded-bottom-1 {
+  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
+  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
+}
+
+.rounded-bottom-2 {
+  border-bottom-right-radius: var(--bs-border-radius) !important;
+  border-bottom-left-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-bottom-3 {
+  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
+  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
+}
+
+.rounded-bottom-4 {
+  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
+  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
+}
+
+.rounded-bottom-5 {
+  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
+  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
+}
+
+.rounded-bottom-circle {
+  border-bottom-right-radius: 50% !important;
+  border-bottom-left-radius: 50% !important;
+}
+
+.rounded-bottom-pill {
+  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
+  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
+}
+
+.rounded-start {
+  border-bottom-left-radius: var(--bs-border-radius) !important;
+  border-top-left-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-start-0 {
+  border-bottom-left-radius: 0 !important;
+  border-top-left-radius: 0 !important;
+}
+
+.rounded-start-1 {
+  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
+  border-top-left-radius: var(--bs-border-radius-sm) !important;
+}
+
+.rounded-start-2 {
+  border-bottom-left-radius: var(--bs-border-radius) !important;
+  border-top-left-radius: var(--bs-border-radius) !important;
+}
+
+.rounded-start-3 {
+  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
+  border-top-left-radius: var(--bs-border-radius-lg) !important;
+}
+
+.rounded-start-4 {
+  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
+  border-top-left-radius: var(--bs-border-radius-xl) !important;
+}
+
+.rounded-start-5 {
+  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
+  border-top-left-radius: var(--bs-border-radius-xxl) !important;
+}
+
+.rounded-start-circle {
+  border-bottom-left-radius: 50% !important;
+  border-top-left-radius: 50% !important;
+}
+
+.rounded-start-pill {
+  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
+  border-top-left-radius: var(--bs-border-radius-pill) !important;
+}
+
+.visible {
+  visibility: visible !important;
+}
+
+.invisible {
+  visibility: hidden !important;
+}
+
+.z-n1 {
+  z-index: -1 !important;
+}
+
+.z-0 {
+  z-index: 0 !important;
+}
+
+.z-1 {
+  z-index: 1 !important;
+}
+
+.z-2 {
+  z-index: 2 !important;
+}
+
+.z-3 {
+  z-index: 3 !important;
+}
+
+@media (min-width: 576px) {
+  .float-sm-start {
+    float: left !important;
+  }
+  .float-sm-end {
+    float: right !important;
+  }
+  .float-sm-none {
+    float: none !important;
+  }
+  .object-fit-sm-contain {
+    object-fit: contain !important;
+  }
+  .object-fit-sm-cover {
+    object-fit: cover !important;
+  }
+  .object-fit-sm-fill {
+    object-fit: fill !important;
+  }
+  .object-fit-sm-scale {
+    object-fit: scale-down !important;
+  }
+  .object-fit-sm-none {
+    object-fit: none !important;
+  }
+  .d-sm-inline {
+    display: inline !important;
+  }
+  .d-sm-inline-block {
+    display: inline-block !important;
+  }
+  .d-sm-block {
+    display: block !important;
+  }
+  .d-sm-grid {
+    display: grid !important;
+  }
+  .d-sm-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-sm-table {
+    display: table !important;
+  }
+  .d-sm-table-row {
+    display: table-row !important;
+  }
+  .d-sm-table-cell {
+    display: table-cell !important;
+  }
+  .d-sm-flex {
+    display: flex !important;
+  }
+  .d-sm-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-sm-none {
+    display: none !important;
+  }
+  .flex-sm-fill {
+    flex: 1 1 auto !important;
+  }
+  .flex-sm-row {
+    flex-direction: row !important;
+  }
+  .flex-sm-column {
+    flex-direction: column !important;
+  }
+  .flex-sm-row-reverse {
+    flex-direction: row-reverse !important;
+  }
+  .flex-sm-column-reverse {
+    flex-direction: column-reverse !important;
+  }
+  .flex-sm-grow-0 {
+    flex-grow: 0 !important;
+  }
+  .flex-sm-grow-1 {
+    flex-grow: 1 !important;
+  }
+  .flex-sm-shrink-0 {
+    flex-shrink: 0 !important;
+  }
+  .flex-sm-shrink-1 {
+    flex-shrink: 1 !important;
+  }
+  .flex-sm-wrap {
+    flex-wrap: wrap !important;
+  }
+  .flex-sm-nowrap {
+    flex-wrap: nowrap !important;
+  }
+  .flex-sm-wrap-reverse {
+    flex-wrap: wrap-reverse !important;
+  }
+  .justify-content-sm-start {
+    justify-content: flex-start !important;
+  }
+  .justify-content-sm-end {
+    justify-content: flex-end !important;
+  }
+  .justify-content-sm-center {
+    justify-content: center !important;
+  }
+  .justify-content-sm-between {
+    justify-content: space-between !important;
+  }
+  .justify-content-sm-around {
+    justify-content: space-around !important;
+  }
+  .justify-content-sm-evenly {
+    justify-content: space-evenly !important;
+  }
+  .align-items-sm-start {
+    align-items: flex-start !important;
+  }
+  .align-items-sm-end {
+    align-items: flex-end !important;
+  }
+  .align-items-sm-center {
+    align-items: center !important;
+  }
+  .align-items-sm-baseline {
+    align-items: baseline !important;
+  }
+  .align-items-sm-stretch {
+    align-items: stretch !important;
+  }
+  .align-content-sm-start {
+    align-content: flex-start !important;
+  }
+  .align-content-sm-end {
+    align-content: flex-end !important;
+  }
+  .align-content-sm-center {
+    align-content: center !important;
+  }
+  .align-content-sm-between {
+    align-content: space-between !important;
+  }
+  .align-content-sm-around {
+    align-content: space-around !important;
+  }
+  .align-content-sm-stretch {
+    align-content: stretch !important;
+  }
+  .align-self-sm-auto {
+    align-self: auto !important;
+  }
+  .align-self-sm-start {
+    align-self: flex-start !important;
+  }
+  .align-self-sm-end {
+    align-self: flex-end !important;
+  }
+  .align-self-sm-center {
+    align-self: center !important;
+  }
+  .align-self-sm-baseline {
+    align-self: baseline !important;
+  }
+  .align-self-sm-stretch {
+    align-self: stretch !important;
+  }
+  .order-sm-first {
+    order: -1 !important;
+  }
+  .order-sm-0 {
+    order: 0 !important;
+  }
+  .order-sm-1 {
+    order: 1 !important;
+  }
+  .order-sm-2 {
+    order: 2 !important;
+  }
+  .order-sm-3 {
+    order: 3 !important;
+  }
+  .order-sm-4 {
+    order: 4 !important;
+  }
+  .order-sm-5 {
+    order: 5 !important;
+  }
+  .order-sm-last {
+    order: 6 !important;
+  }
+  .m-sm-0 {
+    margin: 0 !important;
+  }
+  .m-sm-1 {
+    margin: 0.25rem !important;
+  }
+  .m-sm-2 {
+    margin: 0.5rem !important;
+  }
+  .m-sm-3 {
+    margin: 1rem !important;
+  }
+  .m-sm-4 {
+    margin: 1.5rem !important;
+  }
+  .m-sm-5 {
+    margin: 2.5rem !important;
+  }
+  .m-sm-6 {
+    margin: 2.813rem !important;
+  }
+  .m-sm-7 {
+    margin: 3.125rem !important;
+  }
+  .m-sm-auto {
+    margin: auto !important;
+  }
+  .mx-sm-0 {
+    margin-right: 0 !important;
+    margin-left: 0 !important;
+  }
+  .mx-sm-1 {
+    margin-right: 0.25rem !important;
+    margin-left: 0.25rem !important;
+  }
+  .mx-sm-2 {
+    margin-right: 0.5rem !important;
+    margin-left: 0.5rem !important;
+  }
+  .mx-sm-3 {
+    margin-right: 1rem !important;
+    margin-left: 1rem !important;
+  }
+  .mx-sm-4 {
+    margin-right: 1.5rem !important;
+    margin-left: 1.5rem !important;
+  }
+  .mx-sm-5 {
+    margin-right: 2.5rem !important;
+    margin-left: 2.5rem !important;
+  }
+  .mx-sm-6 {
+    margin-right: 2.813rem !important;
+    margin-left: 2.813rem !important;
+  }
+  .mx-sm-7 {
+    margin-right: 3.125rem !important;
+    margin-left: 3.125rem !important;
+  }
+  .mx-sm-auto {
+    margin-right: auto !important;
+    margin-left: auto !important;
+  }
+  .my-sm-0 {
+    margin-top: 0 !important;
+    margin-bottom: 0 !important;
+  }
+  .my-sm-1 {
+    margin-top: 0.25rem !important;
+    margin-bottom: 0.25rem !important;
+  }
+  .my-sm-2 {
+    margin-top: 0.5rem !important;
+    margin-bottom: 0.5rem !important;
+  }
+  .my-sm-3 {
+    margin-top: 1rem !important;
+    margin-bottom: 1rem !important;
+  }
+  .my-sm-4 {
+    margin-top: 1.5rem !important;
+    margin-bottom: 1.5rem !important;
+  }
+  .my-sm-5 {
+    margin-top: 2.5rem !important;
+    margin-bottom: 2.5rem !important;
+  }
+  .my-sm-6 {
+    margin-top: 2.813rem !important;
+    margin-bottom: 2.813rem !important;
+  }
+  .my-sm-7 {
+    margin-top: 3.125rem !important;
+    margin-bottom: 3.125rem !important;
+  }
+  .my-sm-auto {
+    margin-top: auto !important;
+    margin-bottom: auto !important;
+  }
+  .mt-sm-0 {
+    margin-top: 0 !important;
+  }
+  .mt-sm-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mt-sm-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mt-sm-3 {
+    margin-top: 1rem !important;
+  }
+  .mt-sm-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mt-sm-5 {
+    margin-top: 2.5rem !important;
+  }
+  .mt-sm-6 {
+    margin-top: 2.813rem !important;
+  }
+  .mt-sm-7 {
+    margin-top: 3.125rem !important;
+  }
+  .mt-sm-auto {
+    margin-top: auto !important;
+  }
+  .me-sm-0 {
+    margin-right: 0 !important;
+  }
+  .me-sm-1 {
+    margin-right: 0.25rem !important;
+  }
+  .me-sm-2 {
+    margin-right: 0.5rem !important;
+  }
+  .me-sm-3 {
+    margin-right: 1rem !important;
+  }
+  .me-sm-4 {
+    margin-right: 1.5rem !important;
+  }
+  .me-sm-5 {
+    margin-right: 2.5rem !important;
+  }
+  .me-sm-6 {
+    margin-right: 2.813rem !important;
+  }
+  .me-sm-7 {
+    margin-right: 3.125rem !important;
+  }
+  .me-sm-auto {
+    margin-right: auto !important;
+  }
+  .mb-sm-0 {
+    margin-bottom: 0 !important;
+  }
+  .mb-sm-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .mb-sm-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .mb-sm-3 {
+    margin-bottom: 1rem !important;
+  }
+  .mb-sm-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .mb-sm-5 {
+    margin-bottom: 2.5rem !important;
+  }
+  .mb-sm-6 {
+    margin-bottom: 2.813rem !important;
+  }
+  .mb-sm-7 {
+    margin-bottom: 3.125rem !important;
+  }
+  .mb-sm-auto {
+    margin-bottom: auto !important;
+  }
+  .ms-sm-0 {
+    margin-left: 0 !important;
+  }
+  .ms-sm-1 {
+    margin-left: 0.25rem !important;
+  }
+  .ms-sm-2 {
+    margin-left: 0.5rem !important;
+  }
+  .ms-sm-3 {
+    margin-left: 1rem !important;
+  }
+  .ms-sm-4 {
+    margin-left: 1.5rem !important;
+  }
+  .ms-sm-5 {
+    margin-left: 2.5rem !important;
+  }
+  .ms-sm-6 {
+    margin-left: 2.813rem !important;
+  }
+  .ms-sm-7 {
+    margin-left: 3.125rem !important;
+  }
+  .ms-sm-auto {
+    margin-left: auto !important;
+  }
+  .m-sm-n1 {
+    margin: -0.25rem !important;
+  }
+  .m-sm-n2 {
+    margin: -0.5rem !important;
+  }
+  .m-sm-n3 {
+    margin: -1rem !important;
+  }
+  .m-sm-n4 {
+    margin: -1.5rem !important;
+  }
+  .m-sm-n5 {
+    margin: -2.5rem !important;
+  }
+  .m-sm-n6 {
+    margin: -2.813rem !important;
+  }
+  .m-sm-n7 {
+    margin: -3.125rem !important;
+  }
+  .mx-sm-n1 {
+    margin-right: -0.25rem !important;
+    margin-left: -0.25rem !important;
+  }
+  .mx-sm-n2 {
+    margin-right: -0.5rem !important;
+    margin-left: -0.5rem !important;
+  }
+  .mx-sm-n3 {
+    margin-right: -1rem !important;
+    margin-left: -1rem !important;
+  }
+  .mx-sm-n4 {
+    margin-right: -1.5rem !important;
+    margin-left: -1.5rem !important;
+  }
+  .mx-sm-n5 {
+    margin-right: -2.5rem !important;
+    margin-left: -2.5rem !important;
+  }
+  .mx-sm-n6 {
+    margin-right: -2.813rem !important;
+    margin-left: -2.813rem !important;
+  }
+  .mx-sm-n7 {
+    margin-right: -3.125rem !important;
+    margin-left: -3.125rem !important;
+  }
+  .my-sm-n1 {
+    margin-top: -0.25rem !important;
+    margin-bottom: -0.25rem !important;
+  }
+  .my-sm-n2 {
+    margin-top: -0.5rem !important;
+    margin-bottom: -0.5rem !important;
+  }
+  .my-sm-n3 {
+    margin-top: -1rem !important;
+    margin-bottom: -1rem !important;
+  }
+  .my-sm-n4 {
+    margin-top: -1.5rem !important;
+    margin-bottom: -1.5rem !important;
+  }
+  .my-sm-n5 {
+    margin-top: -2.5rem !important;
+    margin-bottom: -2.5rem !important;
+  }
+  .my-sm-n6 {
+    margin-top: -2.813rem !important;
+    margin-bottom: -2.813rem !important;
+  }
+  .my-sm-n7 {
+    margin-top: -3.125rem !important;
+    margin-bottom: -3.125rem !important;
+  }
+  .mt-sm-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mt-sm-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mt-sm-n3 {
+    margin-top: -1rem !important;
+  }
+  .mt-sm-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mt-sm-n5 {
+    margin-top: -2.5rem !important;
+  }
+  .mt-sm-n6 {
+    margin-top: -2.813rem !important;
+  }
+  .mt-sm-n7 {
+    margin-top: -3.125rem !important;
+  }
+  .me-sm-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .me-sm-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .me-sm-n3 {
+    margin-right: -1rem !important;
+  }
+  .me-sm-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .me-sm-n5 {
+    margin-right: -2.5rem !important;
+  }
+  .me-sm-n6 {
+    margin-right: -2.813rem !important;
+  }
+  .me-sm-n7 {
+    margin-right: -3.125rem !important;
+  }
+  .mb-sm-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .mb-sm-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .mb-sm-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .mb-sm-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .mb-sm-n5 {
+    margin-bottom: -2.5rem !important;
+  }
+  .mb-sm-n6 {
+    margin-bottom: -2.813rem !important;
+  }
+  .mb-sm-n7 {
+    margin-bottom: -3.125rem !important;
+  }
+  .ms-sm-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .ms-sm-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .ms-sm-n3 {
+    margin-left: -1rem !important;
+  }
+  .ms-sm-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .ms-sm-n5 {
+    margin-left: -2.5rem !important;
+  }
+  .ms-sm-n6 {
+    margin-left: -2.813rem !important;
+  }
+  .ms-sm-n7 {
+    margin-left: -3.125rem !important;
+  }
+  .p-sm-0 {
+    padding: 0 !important;
+  }
+  .p-sm-1 {
+    padding: 0.25rem !important;
+  }
+  .p-sm-2 {
+    padding: 0.5rem !important;
+  }
+  .p-sm-3 {
+    padding: 1rem !important;
+  }
+  .p-sm-4 {
+    padding: 1.5rem !important;
+  }
+  .p-sm-5 {
+    padding: 2.5rem !important;
+  }
+  .p-sm-6 {
+    padding: 2.813rem !important;
+  }
+  .p-sm-7 {
+    padding: 3.125rem !important;
+  }
+  .px-sm-0 {
+    padding-right: 0 !important;
+    padding-left: 0 !important;
+  }
+  .px-sm-1 {
+    padding-right: 0.25rem !important;
+    padding-left: 0.25rem !important;
+  }
+  .px-sm-2 {
+    padding-right: 0.5rem !important;
+    padding-left: 0.5rem !important;
+  }
+  .px-sm-3 {
+    padding-right: 1rem !important;
+    padding-left: 1rem !important;
+  }
+  .px-sm-4 {
+    padding-right: 1.5rem !important;
+    padding-left: 1.5rem !important;
+  }
+  .px-sm-5 {
+    padding-right: 2.5rem !important;
+    padding-left: 2.5rem !important;
+  }
+  .px-sm-6 {
+    padding-right: 2.813rem !important;
+    padding-left: 2.813rem !important;
+  }
+  .px-sm-7 {
+    padding-right: 3.125rem !important;
+    padding-left: 3.125rem !important;
+  }
+  .py-sm-0 {
+    padding-top: 0 !important;
+    padding-bottom: 0 !important;
+  }
+  .py-sm-1 {
+    padding-top: 0.25rem !important;
+    padding-bottom: 0.25rem !important;
+  }
+  .py-sm-2 {
+    padding-top: 0.5rem !important;
+    padding-bottom: 0.5rem !important;
+  }
+  .py-sm-3 {
+    padding-top: 1rem !important;
+    padding-bottom: 1rem !important;
+  }
+  .py-sm-4 {
+    padding-top: 1.5rem !important;
+    padding-bottom: 1.5rem !important;
+  }
+  .py-sm-5 {
+    padding-top: 2.5rem !important;
+    padding-bottom: 2.5rem !important;
+  }
+  .py-sm-6 {
+    padding-top: 2.813rem !important;
+    padding-bottom: 2.813rem !important;
+  }
+  .py-sm-7 {
+    padding-top: 3.125rem !important;
+    padding-bottom: 3.125rem !important;
+  }
+  .pt-sm-0 {
+    padding-top: 0 !important;
+  }
+  .pt-sm-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pt-sm-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pt-sm-3 {
+    padding-top: 1rem !important;
+  }
+  .pt-sm-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pt-sm-5 {
+    padding-top: 2.5rem !important;
+  }
+  .pt-sm-6 {
+    padding-top: 2.813rem !important;
+  }
+  .pt-sm-7 {
+    padding-top: 3.125rem !important;
+  }
+  .pe-sm-0 {
+    padding-right: 0 !important;
+  }
+  .pe-sm-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pe-sm-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pe-sm-3 {
+    padding-right: 1rem !important;
+  }
+  .pe-sm-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pe-sm-5 {
+    padding-right: 2.5rem !important;
+  }
+  .pe-sm-6 {
+    padding-right: 2.813rem !important;
+  }
+  .pe-sm-7 {
+    padding-right: 3.125rem !important;
+  }
+  .pb-sm-0 {
+    padding-bottom: 0 !important;
+  }
+  .pb-sm-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pb-sm-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pb-sm-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pb-sm-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pb-sm-5 {
+    padding-bottom: 2.5rem !important;
+  }
+  .pb-sm-6 {
+    padding-bottom: 2.813rem !important;
+  }
+  .pb-sm-7 {
+    padding-bottom: 3.125rem !important;
+  }
+  .ps-sm-0 {
+    padding-left: 0 !important;
+  }
+  .ps-sm-1 {
+    padding-left: 0.25rem !important;
+  }
+  .ps-sm-2 {
+    padding-left: 0.5rem !important;
+  }
+  .ps-sm-3 {
+    padding-left: 1rem !important;
+  }
+  .ps-sm-4 {
+    padding-left: 1.5rem !important;
+  }
+  .ps-sm-5 {
+    padding-left: 2.5rem !important;
+  }
+  .ps-sm-6 {
+    padding-left: 2.813rem !important;
+  }
+  .ps-sm-7 {
+    padding-left: 3.125rem !important;
+  }
+  .gap-sm-0 {
+    gap: 0 !important;
+  }
+  .gap-sm-1 {
+    gap: 0.25rem !important;
+  }
+  .gap-sm-2 {
+    gap: 0.5rem !important;
+  }
+  .gap-sm-3 {
+    gap: 1rem !important;
+  }
+  .gap-sm-4 {
+    gap: 1.5rem !important;
+  }
+  .gap-sm-5 {
+    gap: 2.5rem !important;
+  }
+  .gap-sm-6 {
+    gap: 2.813rem !important;
+  }
+  .gap-sm-7 {
+    gap: 3.125rem !important;
+  }
+  .row-gap-sm-0 {
+    row-gap: 0 !important;
+  }
+  .row-gap-sm-1 {
+    row-gap: 0.25rem !important;
+  }
+  .row-gap-sm-2 {
+    row-gap: 0.5rem !important;
+  }
+  .row-gap-sm-3 {
+    row-gap: 1rem !important;
+  }
+  .row-gap-sm-4 {
+    row-gap: 1.5rem !important;
+  }
+  .row-gap-sm-5 {
+    row-gap: 2.5rem !important;
+  }
+  .row-gap-sm-6 {
+    row-gap: 2.813rem !important;
+  }
+  .row-gap-sm-7 {
+    row-gap: 3.125rem !important;
+  }
+  .column-gap-sm-0 {
+    column-gap: 0 !important;
+  }
+  .column-gap-sm-1 {
+    column-gap: 0.25rem !important;
+  }
+  .column-gap-sm-2 {
+    column-gap: 0.5rem !important;
+  }
+  .column-gap-sm-3 {
+    column-gap: 1rem !important;
+  }
+  .column-gap-sm-4 {
+    column-gap: 1.5rem !important;
+  }
+  .column-gap-sm-5 {
+    column-gap: 2.5rem !important;
+  }
+  .column-gap-sm-6 {
+    column-gap: 2.813rem !important;
+  }
+  .column-gap-sm-7 {
+    column-gap: 3.125rem !important;
+  }
+  .text-sm-start {
+    text-align: left !important;
+  }
+  .text-sm-end {
+    text-align: right !important;
+  }
+  .text-sm-center {
+    text-align: center !important;
+  }
+}
+@media (min-width: 768px) {
+  .float-md-start {
+    float: left !important;
+  }
+  .float-md-end {
+    float: right !important;
+  }
+  .float-md-none {
+    float: none !important;
+  }
+  .object-fit-md-contain {
+    object-fit: contain !important;
+  }
+  .object-fit-md-cover {
+    object-fit: cover !important;
+  }
+  .object-fit-md-fill {
+    object-fit: fill !important;
+  }
+  .object-fit-md-scale {
+    object-fit: scale-down !important;
+  }
+  .object-fit-md-none {
+    object-fit: none !important;
+  }
+  .d-md-inline {
+    display: inline !important;
+  }
+  .d-md-inline-block {
+    display: inline-block !important;
+  }
+  .d-md-block {
+    display: block !important;
+  }
+  .d-md-grid {
+    display: grid !important;
+  }
+  .d-md-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-md-table {
+    display: table !important;
+  }
+  .d-md-table-row {
+    display: table-row !important;
+  }
+  .d-md-table-cell {
+    display: table-cell !important;
+  }
+  .d-md-flex {
+    display: flex !important;
+  }
+  .d-md-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-md-none {
+    display: none !important;
+  }
+  .flex-md-fill {
+    flex: 1 1 auto !important;
+  }
+  .flex-md-row {
+    flex-direction: row !important;
+  }
+  .flex-md-column {
+    flex-direction: column !important;
+  }
+  .flex-md-row-reverse {
+    flex-direction: row-reverse !important;
+  }
+  .flex-md-column-reverse {
+    flex-direction: column-reverse !important;
+  }
+  .flex-md-grow-0 {
+    flex-grow: 0 !important;
+  }
+  .flex-md-grow-1 {
+    flex-grow: 1 !important;
+  }
+  .flex-md-shrink-0 {
+    flex-shrink: 0 !important;
+  }
+  .flex-md-shrink-1 {
+    flex-shrink: 1 !important;
+  }
+  .flex-md-wrap {
+    flex-wrap: wrap !important;
+  }
+  .flex-md-nowrap {
+    flex-wrap: nowrap !important;
+  }
+  .flex-md-wrap-reverse {
+    flex-wrap: wrap-reverse !important;
+  }
+  .justify-content-md-start {
+    justify-content: flex-start !important;
+  }
+  .justify-content-md-end {
+    justify-content: flex-end !important;
+  }
+  .justify-content-md-center {
+    justify-content: center !important;
+  }
+  .justify-content-md-between {
+    justify-content: space-between !important;
+  }
+  .justify-content-md-around {
+    justify-content: space-around !important;
+  }
+  .justify-content-md-evenly {
+    justify-content: space-evenly !important;
+  }
+  .align-items-md-start {
+    align-items: flex-start !important;
+  }
+  .align-items-md-end {
+    align-items: flex-end !important;
+  }
+  .align-items-md-center {
+    align-items: center !important;
+  }
+  .align-items-md-baseline {
+    align-items: baseline !important;
+  }
+  .align-items-md-stretch {
+    align-items: stretch !important;
+  }
+  .align-content-md-start {
+    align-content: flex-start !important;
+  }
+  .align-content-md-end {
+    align-content: flex-end !important;
+  }
+  .align-content-md-center {
+    align-content: center !important;
+  }
+  .align-content-md-between {
+    align-content: space-between !important;
+  }
+  .align-content-md-around {
+    align-content: space-around !important;
+  }
+  .align-content-md-stretch {
+    align-content: stretch !important;
+  }
+  .align-self-md-auto {
+    align-self: auto !important;
+  }
+  .align-self-md-start {
+    align-self: flex-start !important;
+  }
+  .align-self-md-end {
+    align-self: flex-end !important;
+  }
+  .align-self-md-center {
+    align-self: center !important;
+  }
+  .align-self-md-baseline {
+    align-self: baseline !important;
+  }
+  .align-self-md-stretch {
+    align-self: stretch !important;
+  }
+  .order-md-first {
+    order: -1 !important;
+  }
+  .order-md-0 {
+    order: 0 !important;
+  }
+  .order-md-1 {
+    order: 1 !important;
+  }
+  .order-md-2 {
+    order: 2 !important;
+  }
+  .order-md-3 {
+    order: 3 !important;
+  }
+  .order-md-4 {
+    order: 4 !important;
+  }
+  .order-md-5 {
+    order: 5 !important;
+  }
+  .order-md-last {
+    order: 6 !important;
+  }
+  .m-md-0 {
+    margin: 0 !important;
+  }
+  .m-md-1 {
+    margin: 0.25rem !important;
+  }
+  .m-md-2 {
+    margin: 0.5rem !important;
+  }
+  .m-md-3 {
+    margin: 1rem !important;
+  }
+  .m-md-4 {
+    margin: 1.5rem !important;
+  }
+  .m-md-5 {
+    margin: 2.5rem !important;
+  }
+  .m-md-6 {
+    margin: 2.813rem !important;
+  }
+  .m-md-7 {
+    margin: 3.125rem !important;
+  }
+  .m-md-auto {
+    margin: auto !important;
+  }
+  .mx-md-0 {
+    margin-right: 0 !important;
+    margin-left: 0 !important;
+  }
+  .mx-md-1 {
+    margin-right: 0.25rem !important;
+    margin-left: 0.25rem !important;
+  }
+  .mx-md-2 {
+    margin-right: 0.5rem !important;
+    margin-left: 0.5rem !important;
+  }
+  .mx-md-3 {
+    margin-right: 1rem !important;
+    margin-left: 1rem !important;
+  }
+  .mx-md-4 {
+    margin-right: 1.5rem !important;
+    margin-left: 1.5rem !important;
+  }
+  .mx-md-5 {
+    margin-right: 2.5rem !important;
+    margin-left: 2.5rem !important;
+  }
+  .mx-md-6 {
+    margin-right: 2.813rem !important;
+    margin-left: 2.813rem !important;
+  }
+  .mx-md-7 {
+    margin-right: 3.125rem !important;
+    margin-left: 3.125rem !important;
+  }
+  .mx-md-auto {
+    margin-right: auto !important;
+    margin-left: auto !important;
+  }
+  .my-md-0 {
+    margin-top: 0 !important;
+    margin-bottom: 0 !important;
+  }
+  .my-md-1 {
+    margin-top: 0.25rem !important;
+    margin-bottom: 0.25rem !important;
+  }
+  .my-md-2 {
+    margin-top: 0.5rem !important;
+    margin-bottom: 0.5rem !important;
+  }
+  .my-md-3 {
+    margin-top: 1rem !important;
+    margin-bottom: 1rem !important;
+  }
+  .my-md-4 {
+    margin-top: 1.5rem !important;
+    margin-bottom: 1.5rem !important;
+  }
+  .my-md-5 {
+    margin-top: 2.5rem !important;
+    margin-bottom: 2.5rem !important;
+  }
+  .my-md-6 {
+    margin-top: 2.813rem !important;
+    margin-bottom: 2.813rem !important;
+  }
+  .my-md-7 {
+    margin-top: 3.125rem !important;
+    margin-bottom: 3.125rem !important;
+  }
+  .my-md-auto {
+    margin-top: auto !important;
+    margin-bottom: auto !important;
+  }
+  .mt-md-0 {
+    margin-top: 0 !important;
+  }
+  .mt-md-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mt-md-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mt-md-3 {
+    margin-top: 1rem !important;
+  }
+  .mt-md-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mt-md-5 {
+    margin-top: 2.5rem !important;
+  }
+  .mt-md-6 {
+    margin-top: 2.813rem !important;
+  }
+  .mt-md-7 {
+    margin-top: 3.125rem !important;
+  }
+  .mt-md-auto {
+    margin-top: auto !important;
+  }
+  .me-md-0 {
+    margin-right: 0 !important;
+  }
+  .me-md-1 {
+    margin-right: 0.25rem !important;
+  }
+  .me-md-2 {
+    margin-right: 0.5rem !important;
+  }
+  .me-md-3 {
+    margin-right: 1rem !important;
+  }
+  .me-md-4 {
+    margin-right: 1.5rem !important;
+  }
+  .me-md-5 {
+    margin-right: 2.5rem !important;
+  }
+  .me-md-6 {
+    margin-right: 2.813rem !important;
+  }
+  .me-md-7 {
+    margin-right: 3.125rem !important;
+  }
+  .me-md-auto {
+    margin-right: auto !important;
+  }
+  .mb-md-0 {
+    margin-bottom: 0 !important;
+  }
+  .mb-md-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .mb-md-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .mb-md-3 {
+    margin-bottom: 1rem !important;
+  }
+  .mb-md-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .mb-md-5 {
+    margin-bottom: 2.5rem !important;
+  }
+  .mb-md-6 {
+    margin-bottom: 2.813rem !important;
+  }
+  .mb-md-7 {
+    margin-bottom: 3.125rem !important;
+  }
+  .mb-md-auto {
+    margin-bottom: auto !important;
+  }
+  .ms-md-0 {
+    margin-left: 0 !important;
+  }
+  .ms-md-1 {
+    margin-left: 0.25rem !important;
+  }
+  .ms-md-2 {
+    margin-left: 0.5rem !important;
+  }
+  .ms-md-3 {
+    margin-left: 1rem !important;
+  }
+  .ms-md-4 {
+    margin-left: 1.5rem !important;
+  }
+  .ms-md-5 {
+    margin-left: 2.5rem !important;
+  }
+  .ms-md-6 {
+    margin-left: 2.813rem !important;
+  }
+  .ms-md-7 {
+    margin-left: 3.125rem !important;
+  }
+  .ms-md-auto {
+    margin-left: auto !important;
+  }
+  .m-md-n1 {
+    margin: -0.25rem !important;
+  }
+  .m-md-n2 {
+    margin: -0.5rem !important;
+  }
+  .m-md-n3 {
+    margin: -1rem !important;
+  }
+  .m-md-n4 {
+    margin: -1.5rem !important;
+  }
+  .m-md-n5 {
+    margin: -2.5rem !important;
+  }
+  .m-md-n6 {
+    margin: -2.813rem !important;
+  }
+  .m-md-n7 {
+    margin: -3.125rem !important;
+  }
+  .mx-md-n1 {
+    margin-right: -0.25rem !important;
+    margin-left: -0.25rem !important;
+  }
+  .mx-md-n2 {
+    margin-right: -0.5rem !important;
+    margin-left: -0.5rem !important;
+  }
+  .mx-md-n3 {
+    margin-right: -1rem !important;
+    margin-left: -1rem !important;
+  }
+  .mx-md-n4 {
+    margin-right: -1.5rem !important;
+    margin-left: -1.5rem !important;
+  }
+  .mx-md-n5 {
+    margin-right: -2.5rem !important;
+    margin-left: -2.5rem !important;
+  }
+  .mx-md-n6 {
+    margin-right: -2.813rem !important;
+    margin-left: -2.813rem !important;
+  }
+  .mx-md-n7 {
+    margin-right: -3.125rem !important;
+    margin-left: -3.125rem !important;
+  }
+  .my-md-n1 {
+    margin-top: -0.25rem !important;
+    margin-bottom: -0.25rem !important;
+  }
+  .my-md-n2 {
+    margin-top: -0.5rem !important;
+    margin-bottom: -0.5rem !important;
+  }
+  .my-md-n3 {
+    margin-top: -1rem !important;
+    margin-bottom: -1rem !important;
+  }
+  .my-md-n4 {
+    margin-top: -1.5rem !important;
+    margin-bottom: -1.5rem !important;
+  }
+  .my-md-n5 {
+    margin-top: -2.5rem !important;
+    margin-bottom: -2.5rem !important;
+  }
+  .my-md-n6 {
+    margin-top: -2.813rem !important;
+    margin-bottom: -2.813rem !important;
+  }
+  .my-md-n7 {
+    margin-top: -3.125rem !important;
+    margin-bottom: -3.125rem !important;
+  }
+  .mt-md-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mt-md-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mt-md-n3 {
+    margin-top: -1rem !important;
+  }
+  .mt-md-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mt-md-n5 {
+    margin-top: -2.5rem !important;
+  }
+  .mt-md-n6 {
+    margin-top: -2.813rem !important;
+  }
+  .mt-md-n7 {
+    margin-top: -3.125rem !important;
+  }
+  .me-md-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .me-md-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .me-md-n3 {
+    margin-right: -1rem !important;
+  }
+  .me-md-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .me-md-n5 {
+    margin-right: -2.5rem !important;
+  }
+  .me-md-n6 {
+    margin-right: -2.813rem !important;
+  }
+  .me-md-n7 {
+    margin-right: -3.125rem !important;
+  }
+  .mb-md-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .mb-md-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .mb-md-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .mb-md-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .mb-md-n5 {
+    margin-bottom: -2.5rem !important;
+  }
+  .mb-md-n6 {
+    margin-bottom: -2.813rem !important;
+  }
+  .mb-md-n7 {
+    margin-bottom: -3.125rem !important;
+  }
+  .ms-md-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .ms-md-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .ms-md-n3 {
+    margin-left: -1rem !important;
+  }
+  .ms-md-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .ms-md-n5 {
+    margin-left: -2.5rem !important;
+  }
+  .ms-md-n6 {
+    margin-left: -2.813rem !important;
+  }
+  .ms-md-n7 {
+    margin-left: -3.125rem !important;
+  }
+  .p-md-0 {
+    padding: 0 !important;
+  }
+  .p-md-1 {
+    padding: 0.25rem !important;
+  }
+  .p-md-2 {
+    padding: 0.5rem !important;
+  }
+  .p-md-3 {
+    padding: 1rem !important;
+  }
+  .p-md-4 {
+    padding: 1.5rem !important;
+  }
+  .p-md-5 {
+    padding: 2.5rem !important;
+  }
+  .p-md-6 {
+    padding: 2.813rem !important;
+  }
+  .p-md-7 {
+    padding: 3.125rem !important;
+  }
+  .px-md-0 {
+    padding-right: 0 !important;
+    padding-left: 0 !important;
+  }
+  .px-md-1 {
+    padding-right: 0.25rem !important;
+    padding-left: 0.25rem !important;
+  }
+  .px-md-2 {
+    padding-right: 0.5rem !important;
+    padding-left: 0.5rem !important;
+  }
+  .px-md-3 {
+    padding-right: 1rem !important;
+    padding-left: 1rem !important;
+  }
+  .px-md-4 {
+    padding-right: 1.5rem !important;
+    padding-left: 1.5rem !important;
+  }
+  .px-md-5 {
+    padding-right: 2.5rem !important;
+    padding-left: 2.5rem !important;
+  }
+  .px-md-6 {
+    padding-right: 2.813rem !important;
+    padding-left: 2.813rem !important;
+  }
+  .px-md-7 {
+    padding-right: 3.125rem !important;
+    padding-left: 3.125rem !important;
+  }
+  .py-md-0 {
+    padding-top: 0 !important;
+    padding-bottom: 0 !important;
+  }
+  .py-md-1 {
+    padding-top: 0.25rem !important;
+    padding-bottom: 0.25rem !important;
+  }
+  .py-md-2 {
+    padding-top: 0.5rem !important;
+    padding-bottom: 0.5rem !important;
+  }
+  .py-md-3 {
+    padding-top: 1rem !important;
+    padding-bottom: 1rem !important;
+  }
+  .py-md-4 {
+    padding-top: 1.5rem !important;
+    padding-bottom: 1.5rem !important;
+  }
+  .py-md-5 {
+    padding-top: 2.5rem !important;
+    padding-bottom: 2.5rem !important;
+  }
+  .py-md-6 {
+    padding-top: 2.813rem !important;
+    padding-bottom: 2.813rem !important;
+  }
+  .py-md-7 {
+    padding-top: 3.125rem !important;
+    padding-bottom: 3.125rem !important;
+  }
+  .pt-md-0 {
+    padding-top: 0 !important;
+  }
+  .pt-md-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pt-md-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pt-md-3 {
+    padding-top: 1rem !important;
+  }
+  .pt-md-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pt-md-5 {
+    padding-top: 2.5rem !important;
+  }
+  .pt-md-6 {
+    padding-top: 2.813rem !important;
+  }
+  .pt-md-7 {
+    padding-top: 3.125rem !important;
+  }
+  .pe-md-0 {
+    padding-right: 0 !important;
+  }
+  .pe-md-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pe-md-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pe-md-3 {
+    padding-right: 1rem !important;
+  }
+  .pe-md-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pe-md-5 {
+    padding-right: 2.5rem !important;
+  }
+  .pe-md-6 {
+    padding-right: 2.813rem !important;
+  }
+  .pe-md-7 {
+    padding-right: 3.125rem !important;
+  }
+  .pb-md-0 {
+    padding-bottom: 0 !important;
+  }
+  .pb-md-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pb-md-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pb-md-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pb-md-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pb-md-5 {
+    padding-bottom: 2.5rem !important;
+  }
+  .pb-md-6 {
+    padding-bottom: 2.813rem !important;
+  }
+  .pb-md-7 {
+    padding-bottom: 3.125rem !important;
+  }
+  .ps-md-0 {
+    padding-left: 0 !important;
+  }
+  .ps-md-1 {
+    padding-left: 0.25rem !important;
+  }
+  .ps-md-2 {
+    padding-left: 0.5rem !important;
+  }
+  .ps-md-3 {
+    padding-left: 1rem !important;
+  }
+  .ps-md-4 {
+    padding-left: 1.5rem !important;
+  }
+  .ps-md-5 {
+    padding-left: 2.5rem !important;
+  }
+  .ps-md-6 {
+    padding-left: 2.813rem !important;
+  }
+  .ps-md-7 {
+    padding-left: 3.125rem !important;
+  }
+  .gap-md-0 {
+    gap: 0 !important;
+  }
+  .gap-md-1 {
+    gap: 0.25rem !important;
+  }
+  .gap-md-2 {
+    gap: 0.5rem !important;
+  }
+  .gap-md-3 {
+    gap: 1rem !important;
+  }
+  .gap-md-4 {
+    gap: 1.5rem !important;
+  }
+  .gap-md-5 {
+    gap: 2.5rem !important;
+  }
+  .gap-md-6 {
+    gap: 2.813rem !important;
+  }
+  .gap-md-7 {
+    gap: 3.125rem !important;
+  }
+  .row-gap-md-0 {
+    row-gap: 0 !important;
+  }
+  .row-gap-md-1 {
+    row-gap: 0.25rem !important;
+  }
+  .row-gap-md-2 {
+    row-gap: 0.5rem !important;
+  }
+  .row-gap-md-3 {
+    row-gap: 1rem !important;
+  }
+  .row-gap-md-4 {
+    row-gap: 1.5rem !important;
+  }
+  .row-gap-md-5 {
+    row-gap: 2.5rem !important;
+  }
+  .row-gap-md-6 {
+    row-gap: 2.813rem !important;
+  }
+  .row-gap-md-7 {
+    row-gap: 3.125rem !important;
+  }
+  .column-gap-md-0 {
+    column-gap: 0 !important;
+  }
+  .column-gap-md-1 {
+    column-gap: 0.25rem !important;
+  }
+  .column-gap-md-2 {
+    column-gap: 0.5rem !important;
+  }
+  .column-gap-md-3 {
+    column-gap: 1rem !important;
+  }
+  .column-gap-md-4 {
+    column-gap: 1.5rem !important;
+  }
+  .column-gap-md-5 {
+    column-gap: 2.5rem !important;
+  }
+  .column-gap-md-6 {
+    column-gap: 2.813rem !important;
+  }
+  .column-gap-md-7 {
+    column-gap: 3.125rem !important;
+  }
+  .text-md-start {
+    text-align: left !important;
+  }
+  .text-md-end {
+    text-align: right !important;
+  }
+  .text-md-center {
+    text-align: center !important;
+  }
+}
+@media (min-width: 992px) {
+  .float-lg-start {
+    float: left !important;
+  }
+  .float-lg-end {
+    float: right !important;
+  }
+  .float-lg-none {
+    float: none !important;
+  }
+  .object-fit-lg-contain {
+    object-fit: contain !important;
+  }
+  .object-fit-lg-cover {
+    object-fit: cover !important;
+  }
+  .object-fit-lg-fill {
+    object-fit: fill !important;
+  }
+  .object-fit-lg-scale {
+    object-fit: scale-down !important;
+  }
+  .object-fit-lg-none {
+    object-fit: none !important;
+  }
+  .d-lg-inline {
+    display: inline !important;
+  }
+  .d-lg-inline-block {
+    display: inline-block !important;
+  }
+  .d-lg-block {
+    display: block !important;
+  }
+  .d-lg-grid {
+    display: grid !important;
+  }
+  .d-lg-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-lg-table {
+    display: table !important;
+  }
+  .d-lg-table-row {
+    display: table-row !important;
+  }
+  .d-lg-table-cell {
+    display: table-cell !important;
+  }
+  .d-lg-flex {
+    display: flex !important;
+  }
+  .d-lg-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-lg-none {
+    display: none !important;
+  }
+  .flex-lg-fill {
+    flex: 1 1 auto !important;
+  }
+  .flex-lg-row {
+    flex-direction: row !important;
+  }
+  .flex-lg-column {
+    flex-direction: column !important;
+  }
+  .flex-lg-row-reverse {
+    flex-direction: row-reverse !important;
+  }
+  .flex-lg-column-reverse {
+    flex-direction: column-reverse !important;
+  }
+  .flex-lg-grow-0 {
+    flex-grow: 0 !important;
+  }
+  .flex-lg-grow-1 {
+    flex-grow: 1 !important;
+  }
+  .flex-lg-shrink-0 {
+    flex-shrink: 0 !important;
+  }
+  .flex-lg-shrink-1 {
+    flex-shrink: 1 !important;
+  }
+  .flex-lg-wrap {
+    flex-wrap: wrap !important;
+  }
+  .flex-lg-nowrap {
+    flex-wrap: nowrap !important;
+  }
+  .flex-lg-wrap-reverse {
+    flex-wrap: wrap-reverse !important;
+  }
+  .justify-content-lg-start {
+    justify-content: flex-start !important;
+  }
+  .justify-content-lg-end {
+    justify-content: flex-end !important;
+  }
+  .justify-content-lg-center {
+    justify-content: center !important;
+  }
+  .justify-content-lg-between {
+    justify-content: space-between !important;
+  }
+  .justify-content-lg-around {
+    justify-content: space-around !important;
+  }
+  .justify-content-lg-evenly {
+    justify-content: space-evenly !important;
+  }
+  .align-items-lg-start {
+    align-items: flex-start !important;
+  }
+  .align-items-lg-end {
+    align-items: flex-end !important;
+  }
+  .align-items-lg-center {
+    align-items: center !important;
+  }
+  .align-items-lg-baseline {
+    align-items: baseline !important;
+  }
+  .align-items-lg-stretch {
+    align-items: stretch !important;
+  }
+  .align-content-lg-start {
+    align-content: flex-start !important;
+  }
+  .align-content-lg-end {
+    align-content: flex-end !important;
+  }
+  .align-content-lg-center {
+    align-content: center !important;
+  }
+  .align-content-lg-between {
+    align-content: space-between !important;
+  }
+  .align-content-lg-around {
+    align-content: space-around !important;
+  }
+  .align-content-lg-stretch {
+    align-content: stretch !important;
+  }
+  .align-self-lg-auto {
+    align-self: auto !important;
+  }
+  .align-self-lg-start {
+    align-self: flex-start !important;
+  }
+  .align-self-lg-end {
+    align-self: flex-end !important;
+  }
+  .align-self-lg-center {
+    align-self: center !important;
+  }
+  .align-self-lg-baseline {
+    align-self: baseline !important;
+  }
+  .align-self-lg-stretch {
+    align-self: stretch !important;
+  }
+  .order-lg-first {
+    order: -1 !important;
+  }
+  .order-lg-0 {
+    order: 0 !important;
+  }
+  .order-lg-1 {
+    order: 1 !important;
+  }
+  .order-lg-2 {
+    order: 2 !important;
+  }
+  .order-lg-3 {
+    order: 3 !important;
+  }
+  .order-lg-4 {
+    order: 4 !important;
+  }
+  .order-lg-5 {
+    order: 5 !important;
+  }
+  .order-lg-last {
+    order: 6 !important;
+  }
+  .m-lg-0 {
+    margin: 0 !important;
+  }
+  .m-lg-1 {
+    margin: 0.25rem !important;
+  }
+  .m-lg-2 {
+    margin: 0.5rem !important;
+  }
+  .m-lg-3 {
+    margin: 1rem !important;
+  }
+  .m-lg-4 {
+    margin: 1.5rem !important;
+  }
+  .m-lg-5 {
+    margin: 2.5rem !important;
+  }
+  .m-lg-6 {
+    margin: 2.813rem !important;
+  }
+  .m-lg-7 {
+    margin: 3.125rem !important;
+  }
+  .m-lg-auto {
+    margin: auto !important;
+  }
+  .mx-lg-0 {
+    margin-right: 0 !important;
+    margin-left: 0 !important;
+  }
+  .mx-lg-1 {
+    margin-right: 0.25rem !important;
+    margin-left: 0.25rem !important;
+  }
+  .mx-lg-2 {
+    margin-right: 0.5rem !important;
+    margin-left: 0.5rem !important;
+  }
+  .mx-lg-3 {
+    margin-right: 1rem !important;
+    margin-left: 1rem !important;
+  }
+  .mx-lg-4 {
+    margin-right: 1.5rem !important;
+    margin-left: 1.5rem !important;
+  }
+  .mx-lg-5 {
+    margin-right: 2.5rem !important;
+    margin-left: 2.5rem !important;
+  }
+  .mx-lg-6 {
+    margin-right: 2.813rem !important;
+    margin-left: 2.813rem !important;
+  }
+  .mx-lg-7 {
+    margin-right: 3.125rem !important;
+    margin-left: 3.125rem !important;
+  }
+  .mx-lg-auto {
+    margin-right: auto !important;
+    margin-left: auto !important;
+  }
+  .my-lg-0 {
+    margin-top: 0 !important;
+    margin-bottom: 0 !important;
+  }
+  .my-lg-1 {
+    margin-top: 0.25rem !important;
+    margin-bottom: 0.25rem !important;
+  }
+  .my-lg-2 {
+    margin-top: 0.5rem !important;
+    margin-bottom: 0.5rem !important;
+  }
+  .my-lg-3 {
+    margin-top: 1rem !important;
+    margin-bottom: 1rem !important;
+  }
+  .my-lg-4 {
+    margin-top: 1.5rem !important;
+    margin-bottom: 1.5rem !important;
+  }
+  .my-lg-5 {
+    margin-top: 2.5rem !important;
+    margin-bottom: 2.5rem !important;
+  }
+  .my-lg-6 {
+    margin-top: 2.813rem !important;
+    margin-bottom: 2.813rem !important;
+  }
+  .my-lg-7 {
+    margin-top: 3.125rem !important;
+    margin-bottom: 3.125rem !important;
+  }
+  .my-lg-auto {
+    margin-top: auto !important;
+    margin-bottom: auto !important;
+  }
+  .mt-lg-0 {
+    margin-top: 0 !important;
+  }
+  .mt-lg-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mt-lg-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mt-lg-3 {
+    margin-top: 1rem !important;
+  }
+  .mt-lg-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mt-lg-5 {
+    margin-top: 2.5rem !important;
+  }
+  .mt-lg-6 {
+    margin-top: 2.813rem !important;
+  }
+  .mt-lg-7 {
+    margin-top: 3.125rem !important;
+  }
+  .mt-lg-auto {
+    margin-top: auto !important;
+  }
+  .me-lg-0 {
+    margin-right: 0 !important;
+  }
+  .me-lg-1 {
+    margin-right: 0.25rem !important;
+  }
+  .me-lg-2 {
+    margin-right: 0.5rem !important;
+  }
+  .me-lg-3 {
+    margin-right: 1rem !important;
+  }
+  .me-lg-4 {
+    margin-right: 1.5rem !important;
+  }
+  .me-lg-5 {
+    margin-right: 2.5rem !important;
+  }
+  .me-lg-6 {
+    margin-right: 2.813rem !important;
+  }
+  .me-lg-7 {
+    margin-right: 3.125rem !important;
+  }
+  .me-lg-auto {
+    margin-right: auto !important;
+  }
+  .mb-lg-0 {
+    margin-bottom: 0 !important;
+  }
+  .mb-lg-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .mb-lg-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .mb-lg-3 {
+    margin-bottom: 1rem !important;
+  }
+  .mb-lg-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .mb-lg-5 {
+    margin-bottom: 2.5rem !important;
+  }
+  .mb-lg-6 {
+    margin-bottom: 2.813rem !important;
+  }
+  .mb-lg-7 {
+    margin-bottom: 3.125rem !important;
+  }
+  .mb-lg-auto {
+    margin-bottom: auto !important;
+  }
+  .ms-lg-0 {
+    margin-left: 0 !important;
+  }
+  .ms-lg-1 {
+    margin-left: 0.25rem !important;
+  }
+  .ms-lg-2 {
+    margin-left: 0.5rem !important;
+  }
+  .ms-lg-3 {
+    margin-left: 1rem !important;
+  }
+  .ms-lg-4 {
+    margin-left: 1.5rem !important;
+  }
+  .ms-lg-5 {
+    margin-left: 2.5rem !important;
+  }
+  .ms-lg-6 {
+    margin-left: 2.813rem !important;
+  }
+  .ms-lg-7 {
+    margin-left: 3.125rem !important;
+  }
+  .ms-lg-auto {
+    margin-left: auto !important;
+  }
+  .m-lg-n1 {
+    margin: -0.25rem !important;
+  }
+  .m-lg-n2 {
+    margin: -0.5rem !important;
+  }
+  .m-lg-n3 {
+    margin: -1rem !important;
+  }
+  .m-lg-n4 {
+    margin: -1.5rem !important;
+  }
+  .m-lg-n5 {
+    margin: -2.5rem !important;
+  }
+  .m-lg-n6 {
+    margin: -2.813rem !important;
+  }
+  .m-lg-n7 {
+    margin: -3.125rem !important;
+  }
+  .mx-lg-n1 {
+    margin-right: -0.25rem !important;
+    margin-left: -0.25rem !important;
+  }
+  .mx-lg-n2 {
+    margin-right: -0.5rem !important;
+    margin-left: -0.5rem !important;
+  }
+  .mx-lg-n3 {
+    margin-right: -1rem !important;
+    margin-left: -1rem !important;
+  }
+  .mx-lg-n4 {
+    margin-right: -1.5rem !important;
+    margin-left: -1.5rem !important;
+  }
+  .mx-lg-n5 {
+    margin-right: -2.5rem !important;
+    margin-left: -2.5rem !important;
+  }
+  .mx-lg-n6 {
+    margin-right: -2.813rem !important;
+    margin-left: -2.813rem !important;
+  }
+  .mx-lg-n7 {
+    margin-right: -3.125rem !important;
+    margin-left: -3.125rem !important;
+  }
+  .my-lg-n1 {
+    margin-top: -0.25rem !important;
+    margin-bottom: -0.25rem !important;
+  }
+  .my-lg-n2 {
+    margin-top: -0.5rem !important;
+    margin-bottom: -0.5rem !important;
+  }
+  .my-lg-n3 {
+    margin-top: -1rem !important;
+    margin-bottom: -1rem !important;
+  }
+  .my-lg-n4 {
+    margin-top: -1.5rem !important;
+    margin-bottom: -1.5rem !important;
+  }
+  .my-lg-n5 {
+    margin-top: -2.5rem !important;
+    margin-bottom: -2.5rem !important;
+  }
+  .my-lg-n6 {
+    margin-top: -2.813rem !important;
+    margin-bottom: -2.813rem !important;
+  }
+  .my-lg-n7 {
+    margin-top: -3.125rem !important;
+    margin-bottom: -3.125rem !important;
+  }
+  .mt-lg-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mt-lg-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mt-lg-n3 {
+    margin-top: -1rem !important;
+  }
+  .mt-lg-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mt-lg-n5 {
+    margin-top: -2.5rem !important;
+  }
+  .mt-lg-n6 {
+    margin-top: -2.813rem !important;
+  }
+  .mt-lg-n7 {
+    margin-top: -3.125rem !important;
+  }
+  .me-lg-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .me-lg-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .me-lg-n3 {
+    margin-right: -1rem !important;
+  }
+  .me-lg-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .me-lg-n5 {
+    margin-right: -2.5rem !important;
+  }
+  .me-lg-n6 {
+    margin-right: -2.813rem !important;
+  }
+  .me-lg-n7 {
+    margin-right: -3.125rem !important;
+  }
+  .mb-lg-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .mb-lg-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .mb-lg-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .mb-lg-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .mb-lg-n5 {
+    margin-bottom: -2.5rem !important;
+  }
+  .mb-lg-n6 {
+    margin-bottom: -2.813rem !important;
+  }
+  .mb-lg-n7 {
+    margin-bottom: -3.125rem !important;
+  }
+  .ms-lg-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .ms-lg-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .ms-lg-n3 {
+    margin-left: -1rem !important;
+  }
+  .ms-lg-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .ms-lg-n5 {
+    margin-left: -2.5rem !important;
+  }
+  .ms-lg-n6 {
+    margin-left: -2.813rem !important;
+  }
+  .ms-lg-n7 {
+    margin-left: -3.125rem !important;
+  }
+  .p-lg-0 {
+    padding: 0 !important;
+  }
+  .p-lg-1 {
+    padding: 0.25rem !important;
+  }
+  .p-lg-2 {
+    padding: 0.5rem !important;
+  }
+  .p-lg-3 {
+    padding: 1rem !important;
+  }
+  .p-lg-4 {
+    padding: 1.5rem !important;
+  }
+  .p-lg-5 {
+    padding: 2.5rem !important;
+  }
+  .p-lg-6 {
+    padding: 2.813rem !important;
+  }
+  .p-lg-7 {
+    padding: 3.125rem !important;
+  }
+  .px-lg-0 {
+    padding-right: 0 !important;
+    padding-left: 0 !important;
+  }
+  .px-lg-1 {
+    padding-right: 0.25rem !important;
+    padding-left: 0.25rem !important;
+  }
+  .px-lg-2 {
+    padding-right: 0.5rem !important;
+    padding-left: 0.5rem !important;
+  }
+  .px-lg-3 {
+    padding-right: 1rem !important;
+    padding-left: 1rem !important;
+  }
+  .px-lg-4 {
+    padding-right: 1.5rem !important;
+    padding-left: 1.5rem !important;
+  }
+  .px-lg-5 {
+    padding-right: 2.5rem !important;
+    padding-left: 2.5rem !important;
+  }
+  .px-lg-6 {
+    padding-right: 2.813rem !important;
+    padding-left: 2.813rem !important;
+  }
+  .px-lg-7 {
+    padding-right: 3.125rem !important;
+    padding-left: 3.125rem !important;
+  }
+  .py-lg-0 {
+    padding-top: 0 !important;
+    padding-bottom: 0 !important;
+  }
+  .py-lg-1 {
+    padding-top: 0.25rem !important;
+    padding-bottom: 0.25rem !important;
+  }
+  .py-lg-2 {
+    padding-top: 0.5rem !important;
+    padding-bottom: 0.5rem !important;
+  }
+  .py-lg-3 {
+    padding-top: 1rem !important;
+    padding-bottom: 1rem !important;
+  }
+  .py-lg-4 {
+    padding-top: 1.5rem !important;
+    padding-bottom: 1.5rem !important;
+  }
+  .py-lg-5 {
+    padding-top: 2.5rem !important;
+    padding-bottom: 2.5rem !important;
+  }
+  .py-lg-6 {
+    padding-top: 2.813rem !important;
+    padding-bottom: 2.813rem !important;
+  }
+  .py-lg-7 {
+    padding-top: 3.125rem !important;
+    padding-bottom: 3.125rem !important;
+  }
+  .pt-lg-0 {
+    padding-top: 0 !important;
+  }
+  .pt-lg-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pt-lg-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pt-lg-3 {
+    padding-top: 1rem !important;
+  }
+  .pt-lg-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pt-lg-5 {
+    padding-top: 2.5rem !important;
+  }
+  .pt-lg-6 {
+    padding-top: 2.813rem !important;
+  }
+  .pt-lg-7 {
+    padding-top: 3.125rem !important;
+  }
+  .pe-lg-0 {
+    padding-right: 0 !important;
+  }
+  .pe-lg-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pe-lg-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pe-lg-3 {
+    padding-right: 1rem !important;
+  }
+  .pe-lg-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pe-lg-5 {
+    padding-right: 2.5rem !important;
+  }
+  .pe-lg-6 {
+    padding-right: 2.813rem !important;
+  }
+  .pe-lg-7 {
+    padding-right: 3.125rem !important;
+  }
+  .pb-lg-0 {
+    padding-bottom: 0 !important;
+  }
+  .pb-lg-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pb-lg-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pb-lg-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pb-lg-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pb-lg-5 {
+    padding-bottom: 2.5rem !important;
+  }
+  .pb-lg-6 {
+    padding-bottom: 2.813rem !important;
+  }
+  .pb-lg-7 {
+    padding-bottom: 3.125rem !important;
+  }
+  .ps-lg-0 {
+    padding-left: 0 !important;
+  }
+  .ps-lg-1 {
+    padding-left: 0.25rem !important;
+  }
+  .ps-lg-2 {
+    padding-left: 0.5rem !important;
+  }
+  .ps-lg-3 {
+    padding-left: 1rem !important;
+  }
+  .ps-lg-4 {
+    padding-left: 1.5rem !important;
+  }
+  .ps-lg-5 {
+    padding-left: 2.5rem !important;
+  }
+  .ps-lg-6 {
+    padding-left: 2.813rem !important;
+  }
+  .ps-lg-7 {
+    padding-left: 3.125rem !important;
+  }
+  .gap-lg-0 {
+    gap: 0 !important;
+  }
+  .gap-lg-1 {
+    gap: 0.25rem !important;
+  }
+  .gap-lg-2 {
+    gap: 0.5rem !important;
+  }
+  .gap-lg-3 {
+    gap: 1rem !important;
+  }
+  .gap-lg-4 {
+    gap: 1.5rem !important;
+  }
+  .gap-lg-5 {
+    gap: 2.5rem !important;
+  }
+  .gap-lg-6 {
+    gap: 2.813rem !important;
+  }
+  .gap-lg-7 {
+    gap: 3.125rem !important;
+  }
+  .row-gap-lg-0 {
+    row-gap: 0 !important;
+  }
+  .row-gap-lg-1 {
+    row-gap: 0.25rem !important;
+  }
+  .row-gap-lg-2 {
+    row-gap: 0.5rem !important;
+  }
+  .row-gap-lg-3 {
+    row-gap: 1rem !important;
+  }
+  .row-gap-lg-4 {
+    row-gap: 1.5rem !important;
+  }
+  .row-gap-lg-5 {
+    row-gap: 2.5rem !important;
+  }
+  .row-gap-lg-6 {
+    row-gap: 2.813rem !important;
+  }
+  .row-gap-lg-7 {
+    row-gap: 3.125rem !important;
+  }
+  .column-gap-lg-0 {
+    column-gap: 0 !important;
+  }
+  .column-gap-lg-1 {
+    column-gap: 0.25rem !important;
+  }
+  .column-gap-lg-2 {
+    column-gap: 0.5rem !important;
+  }
+  .column-gap-lg-3 {
+    column-gap: 1rem !important;
+  }
+  .column-gap-lg-4 {
+    column-gap: 1.5rem !important;
+  }
+  .column-gap-lg-5 {
+    column-gap: 2.5rem !important;
+  }
+  .column-gap-lg-6 {
+    column-gap: 2.813rem !important;
+  }
+  .column-gap-lg-7 {
+    column-gap: 3.125rem !important;
+  }
+  .text-lg-start {
+    text-align: left !important;
+  }
+  .text-lg-end {
+    text-align: right !important;
+  }
+  .text-lg-center {
+    text-align: center !important;
+  }
+}
+@media (min-width: 1200px) {
+  .float-xl-start {
+    float: left !important;
+  }
+  .float-xl-end {
+    float: right !important;
+  }
+  .float-xl-none {
+    float: none !important;
+  }
+  .object-fit-xl-contain {
+    object-fit: contain !important;
+  }
+  .object-fit-xl-cover {
+    object-fit: cover !important;
+  }
+  .object-fit-xl-fill {
+    object-fit: fill !important;
+  }
+  .object-fit-xl-scale {
+    object-fit: scale-down !important;
+  }
+  .object-fit-xl-none {
+    object-fit: none !important;
+  }
+  .d-xl-inline {
+    display: inline !important;
+  }
+  .d-xl-inline-block {
+    display: inline-block !important;
+  }
+  .d-xl-block {
+    display: block !important;
+  }
+  .d-xl-grid {
+    display: grid !important;
+  }
+  .d-xl-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-xl-table {
+    display: table !important;
+  }
+  .d-xl-table-row {
+    display: table-row !important;
+  }
+  .d-xl-table-cell {
+    display: table-cell !important;
+  }
+  .d-xl-flex {
+    display: flex !important;
+  }
+  .d-xl-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-xl-none {
+    display: none !important;
+  }
+  .flex-xl-fill {
+    flex: 1 1 auto !important;
+  }
+  .flex-xl-row {
+    flex-direction: row !important;
+  }
+  .flex-xl-column {
+    flex-direction: column !important;
+  }
+  .flex-xl-row-reverse {
+    flex-direction: row-reverse !important;
+  }
+  .flex-xl-column-reverse {
+    flex-direction: column-reverse !important;
+  }
+  .flex-xl-grow-0 {
+    flex-grow: 0 !important;
+  }
+  .flex-xl-grow-1 {
+    flex-grow: 1 !important;
+  }
+  .flex-xl-shrink-0 {
+    flex-shrink: 0 !important;
+  }
+  .flex-xl-shrink-1 {
+    flex-shrink: 1 !important;
+  }
+  .flex-xl-wrap {
+    flex-wrap: wrap !important;
+  }
+  .flex-xl-nowrap {
+    flex-wrap: nowrap !important;
+  }
+  .flex-xl-wrap-reverse {
+    flex-wrap: wrap-reverse !important;
+  }
+  .justify-content-xl-start {
+    justify-content: flex-start !important;
+  }
+  .justify-content-xl-end {
+    justify-content: flex-end !important;
+  }
+  .justify-content-xl-center {
+    justify-content: center !important;
+  }
+  .justify-content-xl-between {
+    justify-content: space-between !important;
+  }
+  .justify-content-xl-around {
+    justify-content: space-around !important;
+  }
+  .justify-content-xl-evenly {
+    justify-content: space-evenly !important;
+  }
+  .align-items-xl-start {
+    align-items: flex-start !important;
+  }
+  .align-items-xl-end {
+    align-items: flex-end !important;
+  }
+  .align-items-xl-center {
+    align-items: center !important;
+  }
+  .align-items-xl-baseline {
+    align-items: baseline !important;
+  }
+  .align-items-xl-stretch {
+    align-items: stretch !important;
+  }
+  .align-content-xl-start {
+    align-content: flex-start !important;
+  }
+  .align-content-xl-end {
+    align-content: flex-end !important;
+  }
+  .align-content-xl-center {
+    align-content: center !important;
+  }
+  .align-content-xl-between {
+    align-content: space-between !important;
+  }
+  .align-content-xl-around {
+    align-content: space-around !important;
+  }
+  .align-content-xl-stretch {
+    align-content: stretch !important;
+  }
+  .align-self-xl-auto {
+    align-self: auto !important;
+  }
+  .align-self-xl-start {
+    align-self: flex-start !important;
+  }
+  .align-self-xl-end {
+    align-self: flex-end !important;
+  }
+  .align-self-xl-center {
+    align-self: center !important;
+  }
+  .align-self-xl-baseline {
+    align-self: baseline !important;
+  }
+  .align-self-xl-stretch {
+    align-self: stretch !important;
+  }
+  .order-xl-first {
+    order: -1 !important;
+  }
+  .order-xl-0 {
+    order: 0 !important;
+  }
+  .order-xl-1 {
+    order: 1 !important;
+  }
+  .order-xl-2 {
+    order: 2 !important;
+  }
+  .order-xl-3 {
+    order: 3 !important;
+  }
+  .order-xl-4 {
+    order: 4 !important;
+  }
+  .order-xl-5 {
+    order: 5 !important;
+  }
+  .order-xl-last {
+    order: 6 !important;
+  }
+  .m-xl-0 {
+    margin: 0 !important;
+  }
+  .m-xl-1 {
+    margin: 0.25rem !important;
+  }
+  .m-xl-2 {
+    margin: 0.5rem !important;
+  }
+  .m-xl-3 {
+    margin: 1rem !important;
+  }
+  .m-xl-4 {
+    margin: 1.5rem !important;
+  }
+  .m-xl-5 {
+    margin: 2.5rem !important;
+  }
+  .m-xl-6 {
+    margin: 2.813rem !important;
+  }
+  .m-xl-7 {
+    margin: 3.125rem !important;
+  }
+  .m-xl-auto {
+    margin: auto !important;
+  }
+  .mx-xl-0 {
+    margin-right: 0 !important;
+    margin-left: 0 !important;
+  }
+  .mx-xl-1 {
+    margin-right: 0.25rem !important;
+    margin-left: 0.25rem !important;
+  }
+  .mx-xl-2 {
+    margin-right: 0.5rem !important;
+    margin-left: 0.5rem !important;
+  }
+  .mx-xl-3 {
+    margin-right: 1rem !important;
+    margin-left: 1rem !important;
+  }
+  .mx-xl-4 {
+    margin-right: 1.5rem !important;
+    margin-left: 1.5rem !important;
+  }
+  .mx-xl-5 {
+    margin-right: 2.5rem !important;
+    margin-left: 2.5rem !important;
+  }
+  .mx-xl-6 {
+    margin-right: 2.813rem !important;
+    margin-left: 2.813rem !important;
+  }
+  .mx-xl-7 {
+    margin-right: 3.125rem !important;
+    margin-left: 3.125rem !important;
+  }
+  .mx-xl-auto {
+    margin-right: auto !important;
+    margin-left: auto !important;
+  }
+  .my-xl-0 {
+    margin-top: 0 !important;
+    margin-bottom: 0 !important;
+  }
+  .my-xl-1 {
+    margin-top: 0.25rem !important;
+    margin-bottom: 0.25rem !important;
+  }
+  .my-xl-2 {
+    margin-top: 0.5rem !important;
+    margin-bottom: 0.5rem !important;
+  }
+  .my-xl-3 {
+    margin-top: 1rem !important;
+    margin-bottom: 1rem !important;
+  }
+  .my-xl-4 {
+    margin-top: 1.5rem !important;
+    margin-bottom: 1.5rem !important;
+  }
+  .my-xl-5 {
+    margin-top: 2.5rem !important;
+    margin-bottom: 2.5rem !important;
+  }
+  .my-xl-6 {
+    margin-top: 2.813rem !important;
+    margin-bottom: 2.813rem !important;
+  }
+  .my-xl-7 {
+    margin-top: 3.125rem !important;
+    margin-bottom: 3.125rem !important;
+  }
+  .my-xl-auto {
+    margin-top: auto !important;
+    margin-bottom: auto !important;
+  }
+  .mt-xl-0 {
+    margin-top: 0 !important;
+  }
+  .mt-xl-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mt-xl-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mt-xl-3 {
+    margin-top: 1rem !important;
+  }
+  .mt-xl-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mt-xl-5 {
+    margin-top: 2.5rem !important;
+  }
+  .mt-xl-6 {
+    margin-top: 2.813rem !important;
+  }
+  .mt-xl-7 {
+    margin-top: 3.125rem !important;
+  }
+  .mt-xl-auto {
+    margin-top: auto !important;
+  }
+  .me-xl-0 {
+    margin-right: 0 !important;
+  }
+  .me-xl-1 {
+    margin-right: 0.25rem !important;
+  }
+  .me-xl-2 {
+    margin-right: 0.5rem !important;
+  }
+  .me-xl-3 {
+    margin-right: 1rem !important;
+  }
+  .me-xl-4 {
+    margin-right: 1.5rem !important;
+  }
+  .me-xl-5 {
+    margin-right: 2.5rem !important;
+  }
+  .me-xl-6 {
+    margin-right: 2.813rem !important;
+  }
+  .me-xl-7 {
+    margin-right: 3.125rem !important;
+  }
+  .me-xl-auto {
+    margin-right: auto !important;
+  }
+  .mb-xl-0 {
+    margin-bottom: 0 !important;
+  }
+  .mb-xl-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .mb-xl-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .mb-xl-3 {
+    margin-bottom: 1rem !important;
+  }
+  .mb-xl-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .mb-xl-5 {
+    margin-bottom: 2.5rem !important;
+  }
+  .mb-xl-6 {
+    margin-bottom: 2.813rem !important;
+  }
+  .mb-xl-7 {
+    margin-bottom: 3.125rem !important;
+  }
+  .mb-xl-auto {
+    margin-bottom: auto !important;
+  }
+  .ms-xl-0 {
+    margin-left: 0 !important;
+  }
+  .ms-xl-1 {
+    margin-left: 0.25rem !important;
+  }
+  .ms-xl-2 {
+    margin-left: 0.5rem !important;
+  }
+  .ms-xl-3 {
+    margin-left: 1rem !important;
+  }
+  .ms-xl-4 {
+    margin-left: 1.5rem !important;
+  }
+  .ms-xl-5 {
+    margin-left: 2.5rem !important;
+  }
+  .ms-xl-6 {
+    margin-left: 2.813rem !important;
+  }
+  .ms-xl-7 {
+    margin-left: 3.125rem !important;
+  }
+  .ms-xl-auto {
+    margin-left: auto !important;
+  }
+  .m-xl-n1 {
+    margin: -0.25rem !important;
+  }
+  .m-xl-n2 {
+    margin: -0.5rem !important;
+  }
+  .m-xl-n3 {
+    margin: -1rem !important;
+  }
+  .m-xl-n4 {
+    margin: -1.5rem !important;
+  }
+  .m-xl-n5 {
+    margin: -2.5rem !important;
+  }
+  .m-xl-n6 {
+    margin: -2.813rem !important;
+  }
+  .m-xl-n7 {
+    margin: -3.125rem !important;
+  }
+  .mx-xl-n1 {
+    margin-right: -0.25rem !important;
+    margin-left: -0.25rem !important;
+  }
+  .mx-xl-n2 {
+    margin-right: -0.5rem !important;
+    margin-left: -0.5rem !important;
+  }
+  .mx-xl-n3 {
+    margin-right: -1rem !important;
+    margin-left: -1rem !important;
+  }
+  .mx-xl-n4 {
+    margin-right: -1.5rem !important;
+    margin-left: -1.5rem !important;
+  }
+  .mx-xl-n5 {
+    margin-right: -2.5rem !important;
+    margin-left: -2.5rem !important;
+  }
+  .mx-xl-n6 {
+    margin-right: -2.813rem !important;
+    margin-left: -2.813rem !important;
+  }
+  .mx-xl-n7 {
+    margin-right: -3.125rem !important;
+    margin-left: -3.125rem !important;
+  }
+  .my-xl-n1 {
+    margin-top: -0.25rem !important;
+    margin-bottom: -0.25rem !important;
+  }
+  .my-xl-n2 {
+    margin-top: -0.5rem !important;
+    margin-bottom: -0.5rem !important;
+  }
+  .my-xl-n3 {
+    margin-top: -1rem !important;
+    margin-bottom: -1rem !important;
+  }
+  .my-xl-n4 {
+    margin-top: -1.5rem !important;
+    margin-bottom: -1.5rem !important;
+  }
+  .my-xl-n5 {
+    margin-top: -2.5rem !important;
+    margin-bottom: -2.5rem !important;
+  }
+  .my-xl-n6 {
+    margin-top: -2.813rem !important;
+    margin-bottom: -2.813rem !important;
+  }
+  .my-xl-n7 {
+    margin-top: -3.125rem !important;
+    margin-bottom: -3.125rem !important;
+  }
+  .mt-xl-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mt-xl-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mt-xl-n3 {
+    margin-top: -1rem !important;
+  }
+  .mt-xl-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mt-xl-n5 {
+    margin-top: -2.5rem !important;
+  }
+  .mt-xl-n6 {
+    margin-top: -2.813rem !important;
+  }
+  .mt-xl-n7 {
+    margin-top: -3.125rem !important;
+  }
+  .me-xl-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .me-xl-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .me-xl-n3 {
+    margin-right: -1rem !important;
+  }
+  .me-xl-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .me-xl-n5 {
+    margin-right: -2.5rem !important;
+  }
+  .me-xl-n6 {
+    margin-right: -2.813rem !important;
+  }
+  .me-xl-n7 {
+    margin-right: -3.125rem !important;
+  }
+  .mb-xl-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .mb-xl-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .mb-xl-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .mb-xl-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .mb-xl-n5 {
+    margin-bottom: -2.5rem !important;
+  }
+  .mb-xl-n6 {
+    margin-bottom: -2.813rem !important;
+  }
+  .mb-xl-n7 {
+    margin-bottom: -3.125rem !important;
+  }
+  .ms-xl-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .ms-xl-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .ms-xl-n3 {
+    margin-left: -1rem !important;
+  }
+  .ms-xl-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .ms-xl-n5 {
+    margin-left: -2.5rem !important;
+  }
+  .ms-xl-n6 {
+    margin-left: -2.813rem !important;
+  }
+  .ms-xl-n7 {
+    margin-left: -3.125rem !important;
+  }
+  .p-xl-0 {
+    padding: 0 !important;
+  }
+  .p-xl-1 {
+    padding: 0.25rem !important;
+  }
+  .p-xl-2 {
+    padding: 0.5rem !important;
+  }
+  .p-xl-3 {
+    padding: 1rem !important;
+  }
+  .p-xl-4 {
+    padding: 1.5rem !important;
+  }
+  .p-xl-5 {
+    padding: 2.5rem !important;
+  }
+  .p-xl-6 {
+    padding: 2.813rem !important;
+  }
+  .p-xl-7 {
+    padding: 3.125rem !important;
+  }
+  .px-xl-0 {
+    padding-right: 0 !important;
+    padding-left: 0 !important;
+  }
+  .px-xl-1 {
+    padding-right: 0.25rem !important;
+    padding-left: 0.25rem !important;
+  }
+  .px-xl-2 {
+    padding-right: 0.5rem !important;
+    padding-left: 0.5rem !important;
+  }
+  .px-xl-3 {
+    padding-right: 1rem !important;
+    padding-left: 1rem !important;
+  }
+  .px-xl-4 {
+    padding-right: 1.5rem !important;
+    padding-left: 1.5rem !important;
+  }
+  .px-xl-5 {
+    padding-right: 2.5rem !important;
+    padding-left: 2.5rem !important;
+  }
+  .px-xl-6 {
+    padding-right: 2.813rem !important;
+    padding-left: 2.813rem !important;
+  }
+  .px-xl-7 {
+    padding-right: 3.125rem !important;
+    padding-left: 3.125rem !important;
+  }
+  .py-xl-0 {
+    padding-top: 0 !important;
+    padding-bottom: 0 !important;
+  }
+  .py-xl-1 {
+    padding-top: 0.25rem !important;
+    padding-bottom: 0.25rem !important;
+  }
+  .py-xl-2 {
+    padding-top: 0.5rem !important;
+    padding-bottom: 0.5rem !important;
+  }
+  .py-xl-3 {
+    padding-top: 1rem !important;
+    padding-bottom: 1rem !important;
+  }
+  .py-xl-4 {
+    padding-top: 1.5rem !important;
+    padding-bottom: 1.5rem !important;
+  }
+  .py-xl-5 {
+    padding-top: 2.5rem !important;
+    padding-bottom: 2.5rem !important;
+  }
+  .py-xl-6 {
+    padding-top: 2.813rem !important;
+    padding-bottom: 2.813rem !important;
+  }
+  .py-xl-7 {
+    padding-top: 3.125rem !important;
+    padding-bottom: 3.125rem !important;
+  }
+  .pt-xl-0 {
+    padding-top: 0 !important;
+  }
+  .pt-xl-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pt-xl-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pt-xl-3 {
+    padding-top: 1rem !important;
+  }
+  .pt-xl-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pt-xl-5 {
+    padding-top: 2.5rem !important;
+  }
+  .pt-xl-6 {
+    padding-top: 2.813rem !important;
+  }
+  .pt-xl-7 {
+    padding-top: 3.125rem !important;
+  }
+  .pe-xl-0 {
+    padding-right: 0 !important;
+  }
+  .pe-xl-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pe-xl-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pe-xl-3 {
+    padding-right: 1rem !important;
+  }
+  .pe-xl-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pe-xl-5 {
+    padding-right: 2.5rem !important;
+  }
+  .pe-xl-6 {
+    padding-right: 2.813rem !important;
+  }
+  .pe-xl-7 {
+    padding-right: 3.125rem !important;
+  }
+  .pb-xl-0 {
+    padding-bottom: 0 !important;
+  }
+  .pb-xl-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pb-xl-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pb-xl-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pb-xl-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pb-xl-5 {
+    padding-bottom: 2.5rem !important;
+  }
+  .pb-xl-6 {
+    padding-bottom: 2.813rem !important;
+  }
+  .pb-xl-7 {
+    padding-bottom: 3.125rem !important;
+  }
+  .ps-xl-0 {
+    padding-left: 0 !important;
+  }
+  .ps-xl-1 {
+    padding-left: 0.25rem !important;
+  }
+  .ps-xl-2 {
+    padding-left: 0.5rem !important;
+  }
+  .ps-xl-3 {
+    padding-left: 1rem !important;
+  }
+  .ps-xl-4 {
+    padding-left: 1.5rem !important;
+  }
+  .ps-xl-5 {
+    padding-left: 2.5rem !important;
+  }
+  .ps-xl-6 {
+    padding-left: 2.813rem !important;
+  }
+  .ps-xl-7 {
+    padding-left: 3.125rem !important;
+  }
+  .gap-xl-0 {
+    gap: 0 !important;
+  }
+  .gap-xl-1 {
+    gap: 0.25rem !important;
+  }
+  .gap-xl-2 {
+    gap: 0.5rem !important;
+  }
+  .gap-xl-3 {
+    gap: 1rem !important;
+  }
+  .gap-xl-4 {
+    gap: 1.5rem !important;
+  }
+  .gap-xl-5 {
+    gap: 2.5rem !important;
+  }
+  .gap-xl-6 {
+    gap: 2.813rem !important;
+  }
+  .gap-xl-7 {
+    gap: 3.125rem !important;
+  }
+  .row-gap-xl-0 {
+    row-gap: 0 !important;
+  }
+  .row-gap-xl-1 {
+    row-gap: 0.25rem !important;
+  }
+  .row-gap-xl-2 {
+    row-gap: 0.5rem !important;
+  }
+  .row-gap-xl-3 {
+    row-gap: 1rem !important;
+  }
+  .row-gap-xl-4 {
+    row-gap: 1.5rem !important;
+  }
+  .row-gap-xl-5 {
+    row-gap: 2.5rem !important;
+  }
+  .row-gap-xl-6 {
+    row-gap: 2.813rem !important;
+  }
+  .row-gap-xl-7 {
+    row-gap: 3.125rem !important;
+  }
+  .column-gap-xl-0 {
+    column-gap: 0 !important;
+  }
+  .column-gap-xl-1 {
+    column-gap: 0.25rem !important;
+  }
+  .column-gap-xl-2 {
+    column-gap: 0.5rem !important;
+  }
+  .column-gap-xl-3 {
+    column-gap: 1rem !important;
+  }
+  .column-gap-xl-4 {
+    column-gap: 1.5rem !important;
+  }
+  .column-gap-xl-5 {
+    column-gap: 2.5rem !important;
+  }
+  .column-gap-xl-6 {
+    column-gap: 2.813rem !important;
+  }
+  .column-gap-xl-7 {
+    column-gap: 3.125rem !important;
+  }
+  .text-xl-start {
+    text-align: left !important;
+  }
+  .text-xl-end {
+    text-align: right !important;
+  }
+  .text-xl-center {
+    text-align: center !important;
+  }
+}
+@media (min-width: 1400px) {
+  .float-xxl-start {
+    float: left !important;
+  }
+  .float-xxl-end {
+    float: right !important;
+  }
+  .float-xxl-none {
+    float: none !important;
+  }
+  .object-fit-xxl-contain {
+    object-fit: contain !important;
+  }
+  .object-fit-xxl-cover {
+    object-fit: cover !important;
+  }
+  .object-fit-xxl-fill {
+    object-fit: fill !important;
+  }
+  .object-fit-xxl-scale {
+    object-fit: scale-down !important;
+  }
+  .object-fit-xxl-none {
+    object-fit: none !important;
+  }
+  .d-xxl-inline {
+    display: inline !important;
+  }
+  .d-xxl-inline-block {
+    display: inline-block !important;
+  }
+  .d-xxl-block {
+    display: block !important;
+  }
+  .d-xxl-grid {
+    display: grid !important;
+  }
+  .d-xxl-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-xxl-table {
+    display: table !important;
+  }
+  .d-xxl-table-row {
+    display: table-row !important;
+  }
+  .d-xxl-table-cell {
+    display: table-cell !important;
+  }
+  .d-xxl-flex {
+    display: flex !important;
+  }
+  .d-xxl-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-xxl-none {
+    display: none !important;
+  }
+  .flex-xxl-fill {
+    flex: 1 1 auto !important;
+  }
+  .flex-xxl-row {
+    flex-direction: row !important;
+  }
+  .flex-xxl-column {
+    flex-direction: column !important;
+  }
+  .flex-xxl-row-reverse {
+    flex-direction: row-reverse !important;
+  }
+  .flex-xxl-column-reverse {
+    flex-direction: column-reverse !important;
+  }
+  .flex-xxl-grow-0 {
+    flex-grow: 0 !important;
+  }
+  .flex-xxl-grow-1 {
+    flex-grow: 1 !important;
+  }
+  .flex-xxl-shrink-0 {
+    flex-shrink: 0 !important;
+  }
+  .flex-xxl-shrink-1 {
+    flex-shrink: 1 !important;
+  }
+  .flex-xxl-wrap {
+    flex-wrap: wrap !important;
+  }
+  .flex-xxl-nowrap {
+    flex-wrap: nowrap !important;
+  }
+  .flex-xxl-wrap-reverse {
+    flex-wrap: wrap-reverse !important;
+  }
+  .justify-content-xxl-start {
+    justify-content: flex-start !important;
+  }
+  .justify-content-xxl-end {
+    justify-content: flex-end !important;
+  }
+  .justify-content-xxl-center {
+    justify-content: center !important;
+  }
+  .justify-content-xxl-between {
+    justify-content: space-between !important;
+  }
+  .justify-content-xxl-around {
+    justify-content: space-around !important;
+  }
+  .justify-content-xxl-evenly {
+    justify-content: space-evenly !important;
+  }
+  .align-items-xxl-start {
+    align-items: flex-start !important;
+  }
+  .align-items-xxl-end {
+    align-items: flex-end !important;
+  }
+  .align-items-xxl-center {
+    align-items: center !important;
+  }
+  .align-items-xxl-baseline {
+    align-items: baseline !important;
+  }
+  .align-items-xxl-stretch {
+    align-items: stretch !important;
+  }
+  .align-content-xxl-start {
+    align-content: flex-start !important;
+  }
+  .align-content-xxl-end {
+    align-content: flex-end !important;
+  }
+  .align-content-xxl-center {
+    align-content: center !important;
+  }
+  .align-content-xxl-between {
+    align-content: space-between !important;
+  }
+  .align-content-xxl-around {
+    align-content: space-around !important;
+  }
+  .align-content-xxl-stretch {
+    align-content: stretch !important;
+  }
+  .align-self-xxl-auto {
+    align-self: auto !important;
+  }
+  .align-self-xxl-start {
+    align-self: flex-start !important;
+  }
+  .align-self-xxl-end {
+    align-self: flex-end !important;
+  }
+  .align-self-xxl-center {
+    align-self: center !important;
+  }
+  .align-self-xxl-baseline {
+    align-self: baseline !important;
+  }
+  .align-self-xxl-stretch {
+    align-self: stretch !important;
+  }
+  .order-xxl-first {
+    order: -1 !important;
+  }
+  .order-xxl-0 {
+    order: 0 !important;
+  }
+  .order-xxl-1 {
+    order: 1 !important;
+  }
+  .order-xxl-2 {
+    order: 2 !important;
+  }
+  .order-xxl-3 {
+    order: 3 !important;
+  }
+  .order-xxl-4 {
+    order: 4 !important;
+  }
+  .order-xxl-5 {
+    order: 5 !important;
+  }
+  .order-xxl-last {
+    order: 6 !important;
+  }
+  .m-xxl-0 {
+    margin: 0 !important;
+  }
+  .m-xxl-1 {
+    margin: 0.25rem !important;
+  }
+  .m-xxl-2 {
+    margin: 0.5rem !important;
+  }
+  .m-xxl-3 {
+    margin: 1rem !important;
+  }
+  .m-xxl-4 {
+    margin: 1.5rem !important;
+  }
+  .m-xxl-5 {
+    margin: 2.5rem !important;
+  }
+  .m-xxl-6 {
+    margin: 2.813rem !important;
+  }
+  .m-xxl-7 {
+    margin: 3.125rem !important;
+  }
+  .m-xxl-auto {
+    margin: auto !important;
+  }
+  .mx-xxl-0 {
+    margin-right: 0 !important;
+    margin-left: 0 !important;
+  }
+  .mx-xxl-1 {
+    margin-right: 0.25rem !important;
+    margin-left: 0.25rem !important;
+  }
+  .mx-xxl-2 {
+    margin-right: 0.5rem !important;
+    margin-left: 0.5rem !important;
+  }
+  .mx-xxl-3 {
+    margin-right: 1rem !important;
+    margin-left: 1rem !important;
+  }
+  .mx-xxl-4 {
+    margin-right: 1.5rem !important;
+    margin-left: 1.5rem !important;
+  }
+  .mx-xxl-5 {
+    margin-right: 2.5rem !important;
+    margin-left: 2.5rem !important;
+  }
+  .mx-xxl-6 {
+    margin-right: 2.813rem !important;
+    margin-left: 2.813rem !important;
+  }
+  .mx-xxl-7 {
+    margin-right: 3.125rem !important;
+    margin-left: 3.125rem !important;
+  }
+  .mx-xxl-auto {
+    margin-right: auto !important;
+    margin-left: auto !important;
+  }
+  .my-xxl-0 {
+    margin-top: 0 !important;
+    margin-bottom: 0 !important;
+  }
+  .my-xxl-1 {
+    margin-top: 0.25rem !important;
+    margin-bottom: 0.25rem !important;
+  }
+  .my-xxl-2 {
+    margin-top: 0.5rem !important;
+    margin-bottom: 0.5rem !important;
+  }
+  .my-xxl-3 {
+    margin-top: 1rem !important;
+    margin-bottom: 1rem !important;
+  }
+  .my-xxl-4 {
+    margin-top: 1.5rem !important;
+    margin-bottom: 1.5rem !important;
+  }
+  .my-xxl-5 {
+    margin-top: 2.5rem !important;
+    margin-bottom: 2.5rem !important;
+  }
+  .my-xxl-6 {
+    margin-top: 2.813rem !important;
+    margin-bottom: 2.813rem !important;
+  }
+  .my-xxl-7 {
+    margin-top: 3.125rem !important;
+    margin-bottom: 3.125rem !important;
+  }
+  .my-xxl-auto {
+    margin-top: auto !important;
+    margin-bottom: auto !important;
+  }
+  .mt-xxl-0 {
+    margin-top: 0 !important;
+  }
+  .mt-xxl-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mt-xxl-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mt-xxl-3 {
+    margin-top: 1rem !important;
+  }
+  .mt-xxl-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mt-xxl-5 {
+    margin-top: 2.5rem !important;
+  }
+  .mt-xxl-6 {
+    margin-top: 2.813rem !important;
+  }
+  .mt-xxl-7 {
+    margin-top: 3.125rem !important;
+  }
+  .mt-xxl-auto {
+    margin-top: auto !important;
+  }
+  .me-xxl-0 {
+    margin-right: 0 !important;
+  }
+  .me-xxl-1 {
+    margin-right: 0.25rem !important;
+  }
+  .me-xxl-2 {
+    margin-right: 0.5rem !important;
+  }
+  .me-xxl-3 {
+    margin-right: 1rem !important;
+  }
+  .me-xxl-4 {
+    margin-right: 1.5rem !important;
+  }
+  .me-xxl-5 {
+    margin-right: 2.5rem !important;
+  }
+  .me-xxl-6 {
+    margin-right: 2.813rem !important;
+  }
+  .me-xxl-7 {
+    margin-right: 3.125rem !important;
+  }
+  .me-xxl-auto {
+    margin-right: auto !important;
+  }
+  .mb-xxl-0 {
+    margin-bottom: 0 !important;
+  }
+  .mb-xxl-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .mb-xxl-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .mb-xxl-3 {
+    margin-bottom: 1rem !important;
+  }
+  .mb-xxl-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .mb-xxl-5 {
+    margin-bottom: 2.5rem !important;
+  }
+  .mb-xxl-6 {
+    margin-bottom: 2.813rem !important;
+  }
+  .mb-xxl-7 {
+    margin-bottom: 3.125rem !important;
+  }
+  .mb-xxl-auto {
+    margin-bottom: auto !important;
+  }
+  .ms-xxl-0 {
+    margin-left: 0 !important;
+  }
+  .ms-xxl-1 {
+    margin-left: 0.25rem !important;
+  }
+  .ms-xxl-2 {
+    margin-left: 0.5rem !important;
+  }
+  .ms-xxl-3 {
+    margin-left: 1rem !important;
+  }
+  .ms-xxl-4 {
+    margin-left: 1.5rem !important;
+  }
+  .ms-xxl-5 {
+    margin-left: 2.5rem !important;
+  }
+  .ms-xxl-6 {
+    margin-left: 2.813rem !important;
+  }
+  .ms-xxl-7 {
+    margin-left: 3.125rem !important;
+  }
+  .ms-xxl-auto {
+    margin-left: auto !important;
+  }
+  .m-xxl-n1 {
+    margin: -0.25rem !important;
+  }
+  .m-xxl-n2 {
+    margin: -0.5rem !important;
+  }
+  .m-xxl-n3 {
+    margin: -1rem !important;
+  }
+  .m-xxl-n4 {
+    margin: -1.5rem !important;
+  }
+  .m-xxl-n5 {
+    margin: -2.5rem !important;
+  }
+  .m-xxl-n6 {
+    margin: -2.813rem !important;
+  }
+  .m-xxl-n7 {
+    margin: -3.125rem !important;
+  }
+  .mx-xxl-n1 {
+    margin-right: -0.25rem !important;
+    margin-left: -0.25rem !important;
+  }
+  .mx-xxl-n2 {
+    margin-right: -0.5rem !important;
+    margin-left: -0.5rem !important;
+  }
+  .mx-xxl-n3 {
+    margin-right: -1rem !important;
+    margin-left: -1rem !important;
+  }
+  .mx-xxl-n4 {
+    margin-right: -1.5rem !important;
+    margin-left: -1.5rem !important;
+  }
+  .mx-xxl-n5 {
+    margin-right: -2.5rem !important;
+    margin-left: -2.5rem !important;
+  }
+  .mx-xxl-n6 {
+    margin-right: -2.813rem !important;
+    margin-left: -2.813rem !important;
+  }
+  .mx-xxl-n7 {
+    margin-right: -3.125rem !important;
+    margin-left: -3.125rem !important;
+  }
+  .my-xxl-n1 {
+    margin-top: -0.25rem !important;
+    margin-bottom: -0.25rem !important;
+  }
+  .my-xxl-n2 {
+    margin-top: -0.5rem !important;
+    margin-bottom: -0.5rem !important;
+  }
+  .my-xxl-n3 {
+    margin-top: -1rem !important;
+    margin-bottom: -1rem !important;
+  }
+  .my-xxl-n4 {
+    margin-top: -1.5rem !important;
+    margin-bottom: -1.5rem !important;
+  }
+  .my-xxl-n5 {
+    margin-top: -2.5rem !important;
+    margin-bottom: -2.5rem !important;
+  }
+  .my-xxl-n6 {
+    margin-top: -2.813rem !important;
+    margin-bottom: -2.813rem !important;
+  }
+  .my-xxl-n7 {
+    margin-top: -3.125rem !important;
+    margin-bottom: -3.125rem !important;
+  }
+  .mt-xxl-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mt-xxl-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mt-xxl-n3 {
+    margin-top: -1rem !important;
+  }
+  .mt-xxl-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mt-xxl-n5 {
+    margin-top: -2.5rem !important;
+  }
+  .mt-xxl-n6 {
+    margin-top: -2.813rem !important;
+  }
+  .mt-xxl-n7 {
+    margin-top: -3.125rem !important;
+  }
+  .me-xxl-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .me-xxl-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .me-xxl-n3 {
+    margin-right: -1rem !important;
+  }
+  .me-xxl-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .me-xxl-n5 {
+    margin-right: -2.5rem !important;
+  }
+  .me-xxl-n6 {
+    margin-right: -2.813rem !important;
+  }
+  .me-xxl-n7 {
+    margin-right: -3.125rem !important;
+  }
+  .mb-xxl-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .mb-xxl-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .mb-xxl-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .mb-xxl-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .mb-xxl-n5 {
+    margin-bottom: -2.5rem !important;
+  }
+  .mb-xxl-n6 {
+    margin-bottom: -2.813rem !important;
+  }
+  .mb-xxl-n7 {
+    margin-bottom: -3.125rem !important;
+  }
+  .ms-xxl-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .ms-xxl-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .ms-xxl-n3 {
+    margin-left: -1rem !important;
+  }
+  .ms-xxl-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .ms-xxl-n5 {
+    margin-left: -2.5rem !important;
+  }
+  .ms-xxl-n6 {
+    margin-left: -2.813rem !important;
+  }
+  .ms-xxl-n7 {
+    margin-left: -3.125rem !important;
+  }
+  .p-xxl-0 {
+    padding: 0 !important;
+  }
+  .p-xxl-1 {
+    padding: 0.25rem !important;
+  }
+  .p-xxl-2 {
+    padding: 0.5rem !important;
+  }
+  .p-xxl-3 {
+    padding: 1rem !important;
+  }
+  .p-xxl-4 {
+    padding: 1.5rem !important;
+  }
+  .p-xxl-5 {
+    padding: 2.5rem !important;
+  }
+  .p-xxl-6 {
+    padding: 2.813rem !important;
+  }
+  .p-xxl-7 {
+    padding: 3.125rem !important;
+  }
+  .px-xxl-0 {
+    padding-right: 0 !important;
+    padding-left: 0 !important;
+  }
+  .px-xxl-1 {
+    padding-right: 0.25rem !important;
+    padding-left: 0.25rem !important;
+  }
+  .px-xxl-2 {
+    padding-right: 0.5rem !important;
+    padding-left: 0.5rem !important;
+  }
+  .px-xxl-3 {
+    padding-right: 1rem !important;
+    padding-left: 1rem !important;
+  }
+  .px-xxl-4 {
+    padding-right: 1.5rem !important;
+    padding-left: 1.5rem !important;
+  }
+  .px-xxl-5 {
+    padding-right: 2.5rem !important;
+    padding-left: 2.5rem !important;
+  }
+  .px-xxl-6 {
+    padding-right: 2.813rem !important;
+    padding-left: 2.813rem !important;
+  }
+  .px-xxl-7 {
+    padding-right: 3.125rem !important;
+    padding-left: 3.125rem !important;
+  }
+  .py-xxl-0 {
+    padding-top: 0 !important;
+    padding-bottom: 0 !important;
+  }
+  .py-xxl-1 {
+    padding-top: 0.25rem !important;
+    padding-bottom: 0.25rem !important;
+  }
+  .py-xxl-2 {
+    padding-top: 0.5rem !important;
+    padding-bottom: 0.5rem !important;
+  }
+  .py-xxl-3 {
+    padding-top: 1rem !important;
+    padding-bottom: 1rem !important;
+  }
+  .py-xxl-4 {
+    padding-top: 1.5rem !important;
+    padding-bottom: 1.5rem !important;
+  }
+  .py-xxl-5 {
+    padding-top: 2.5rem !important;
+    padding-bottom: 2.5rem !important;
+  }
+  .py-xxl-6 {
+    padding-top: 2.813rem !important;
+    padding-bottom: 2.813rem !important;
+  }
+  .py-xxl-7 {
+    padding-top: 3.125rem !important;
+    padding-bottom: 3.125rem !important;
+  }
+  .pt-xxl-0 {
+    padding-top: 0 !important;
+  }
+  .pt-xxl-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pt-xxl-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pt-xxl-3 {
+    padding-top: 1rem !important;
+  }
+  .pt-xxl-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pt-xxl-5 {
+    padding-top: 2.5rem !important;
+  }
+  .pt-xxl-6 {
+    padding-top: 2.813rem !important;
+  }
+  .pt-xxl-7 {
+    padding-top: 3.125rem !important;
+  }
+  .pe-xxl-0 {
+    padding-right: 0 !important;
+  }
+  .pe-xxl-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pe-xxl-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pe-xxl-3 {
+    padding-right: 1rem !important;
+  }
+  .pe-xxl-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pe-xxl-5 {
+    padding-right: 2.5rem !important;
+  }
+  .pe-xxl-6 {
+    padding-right: 2.813rem !important;
+  }
+  .pe-xxl-7 {
+    padding-right: 3.125rem !important;
+  }
+  .pb-xxl-0 {
+    padding-bottom: 0 !important;
+  }
+  .pb-xxl-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pb-xxl-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pb-xxl-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pb-xxl-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pb-xxl-5 {
+    padding-bottom: 2.5rem !important;
+  }
+  .pb-xxl-6 {
+    padding-bottom: 2.813rem !important;
+  }
+  .pb-xxl-7 {
+    padding-bottom: 3.125rem !important;
+  }
+  .ps-xxl-0 {
+    padding-left: 0 !important;
+  }
+  .ps-xxl-1 {
+    padding-left: 0.25rem !important;
+  }
+  .ps-xxl-2 {
+    padding-left: 0.5rem !important;
+  }
+  .ps-xxl-3 {
+    padding-left: 1rem !important;
+  }
+  .ps-xxl-4 {
+    padding-left: 1.5rem !important;
+  }
+  .ps-xxl-5 {
+    padding-left: 2.5rem !important;
+  }
+  .ps-xxl-6 {
+    padding-left: 2.813rem !important;
+  }
+  .ps-xxl-7 {
+    padding-left: 3.125rem !important;
+  }
+  .gap-xxl-0 {
+    gap: 0 !important;
+  }
+  .gap-xxl-1 {
+    gap: 0.25rem !important;
+  }
+  .gap-xxl-2 {
+    gap: 0.5rem !important;
+  }
+  .gap-xxl-3 {
+    gap: 1rem !important;
+  }
+  .gap-xxl-4 {
+    gap: 1.5rem !important;
+  }
+  .gap-xxl-5 {
+    gap: 2.5rem !important;
+  }
+  .gap-xxl-6 {
+    gap: 2.813rem !important;
+  }
+  .gap-xxl-7 {
+    gap: 3.125rem !important;
+  }
+  .row-gap-xxl-0 {
+    row-gap: 0 !important;
+  }
+  .row-gap-xxl-1 {
+    row-gap: 0.25rem !important;
+  }
+  .row-gap-xxl-2 {
+    row-gap: 0.5rem !important;
+  }
+  .row-gap-xxl-3 {
+    row-gap: 1rem !important;
+  }
+  .row-gap-xxl-4 {
+    row-gap: 1.5rem !important;
+  }
+  .row-gap-xxl-5 {
+    row-gap: 2.5rem !important;
+  }
+  .row-gap-xxl-6 {
+    row-gap: 2.813rem !important;
+  }
+  .row-gap-xxl-7 {
+    row-gap: 3.125rem !important;
+  }
+  .column-gap-xxl-0 {
+    column-gap: 0 !important;
+  }
+  .column-gap-xxl-1 {
+    column-gap: 0.25rem !important;
+  }
+  .column-gap-xxl-2 {
+    column-gap: 0.5rem !important;
+  }
+  .column-gap-xxl-3 {
+    column-gap: 1rem !important;
+  }
+  .column-gap-xxl-4 {
+    column-gap: 1.5rem !important;
+  }
+  .column-gap-xxl-5 {
+    column-gap: 2.5rem !important;
+  }
+  .column-gap-xxl-6 {
+    column-gap: 2.813rem !important;
+  }
+  .column-gap-xxl-7 {
+    column-gap: 3.125rem !important;
+  }
+  .text-xxl-start {
+    text-align: left !important;
+  }
+  .text-xxl-end {
+    text-align: right !important;
+  }
+  .text-xxl-center {
+    text-align: center !important;
+  }
+}
+@media (min-width: 1200px) {
+  .fs-1 {
+    font-size: 2.1875rem !important;
+  }
+  .fs-2 {
+    font-size: 1.75rem !important;
+  }
+  .fs-3 {
+    font-size: 1.53125rem !important;
+  }
+  .fs-4 {
+    font-size: 1.3125rem !important;
+  }
+}
+@media print {
+  .d-print-inline {
+    display: inline !important;
+  }
+  .d-print-inline-block {
+    display: inline-block !important;
+  }
+  .d-print-block {
+    display: block !important;
+  }
+  .d-print-grid {
+    display: grid !important;
+  }
+  .d-print-inline-grid {
+    display: inline-grid !important;
+  }
+  .d-print-table {
+    display: table !important;
+  }
+  .d-print-table-row {
+    display: table-row !important;
+  }
+  .d-print-table-cell {
+    display: table-cell !important;
+  }
+  .d-print-flex {
+    display: flex !important;
+  }
+  .d-print-inline-flex {
+    display: inline-flex !important;
+  }
+  .d-print-none {
+    display: none !important;
+  }
+}
+[data-color-theme=blue] {
+  --bs-link-color: #316AFF;
+  --bs-link-color-rgb: 49, 106, 255;
+  --bs-link-hover-color: #2a5ad9;
+  --bs-link-hover-color-rgb: 42, 90, 217;
+  --bs-secondary: #ef4223;
+  --bs-light: #ECF2FD;
+  --bs-primary-rgb: 253, 106, 3;
+  --bs-secondary-rgb: #ef4223;
+  --bs-light-rgb: 236, 242, 253;
+  --bs-secondary-text-emphasis: #142a66;
+
+  --bs-light-text-emphasis: #5e6165;
+  --bs-secondary-bg-subtle: #eaf0ff;
+  --bs-secondary-bg-subtle: #fff2e7;
+  --bs-light-bg-subtle: #f9fbfe;
+  --bs-secondary-border-subtle: #d6e1ff;
+  --bs-secondary-border-subtle: #fff2e7;
+  --bs-light-border-subtle: #f9fbfe;
+  --bs-btn-primary-hover: #2c5fe6;
+  --bs-btn-primary-border-hover: #2b5de0;
+  --bs-btn-primary-active: #2b5de0;
+  --bs-btn-secondary-hover: #e6740e;
+  --bs-btn-secondary-border-hover: #e0720e;
+  --bs-btn-secondary-active: #e0720e;
+}
+
+[data-bs-theme=dark][data-color-theme=blue] {
+  --bs-secondary-bg-subtle: #050b1a;
+  --bs-secondary-bg-subtle: #1a0d02;
+  --bs-light-bg-subtle: #47494c;
+  --bs-secondary-border-subtle: #0a1533;
+  --bs-secondary-border-subtle: #1a0d02;
+  --bs-light-border-subtle: #47494c;
+}
+
+[data-color-theme=orange] {
+  --bs-link-color: #FD6A03;
+  --bs-link-color-rgb: 253, 106, 3;
+  --bs-link-hover-color: #d75a03;
+  --bs-link-hover-color-rgb: 215, 90, 3;
+	--bs-primary-rgb: 253, 106, 3;
+  --bs-secondary: #FD6A03;
+  --bs-secondary: #5A44BD;
+  --bs-light: #F8F8F8;
+  --bs-secondary-rgb: 253, 106, 3;
+  --bs-secondary-rgb: 90, 68, 189;
+  --bs-light-rgb: 248, 248, 248;
+  --bs-secondary-text-emphasis: #652a01;
+  --bs-secondary-text-emphasis: #241b4c;
+  --bs-light-text-emphasis: #636363;
+  --bs-secondary-bg-subtle: #fff0e6;
+  --bs-secondary-bg-subtle: #efecf8;
+  --bs-light-bg-subtle: #fdfdfd;
+  --bs-secondary-border-subtle: #ffe1cd;
+  --bs-secondary-border-subtle: #efecf8;
+  --bs-light-border-subtle: #fdfdfd;
+  --bs-btn-primary-hover: #e45f03;
+  --bs-btn-primary-border-hover: #df5d03;
+  --bs-btn-primary-active: #df5d03;
+  --bs-btn-secondary-hover: #513daa;
+  --bs-btn-secondary-border-hover: #4f3ca6;
+  --bs-btn-secondary-active: #4f3ca6;
+}
+
+[data-bs-theme=dark][data-color-theme=orange] {
+  --bs-secondary-bg-subtle: #190b00;
+  --bs-secondary-bg-subtle: #090713;
+  --bs-light-bg-subtle: #4a4a4a;
+  --bs-secondary-border-subtle: #331501;
+  --bs-secondary-border-subtle: #090713;
+  --bs-light-border-subtle: #4a4a4a;
+}
+
+[data-color-theme=pink] {
+  --bs-link-color: #F1416C;
+  --bs-link-color-rgb: 241, 65, 108;
+  --bs-link-hover-color: #cd375c;
+  --bs-link-hover-color-rgb: 205, 55, 92;
+  --bs-secondary: #F1416C;
+  --bs-secondary: #9B59B6;
+  --bs-light: #F8F8F8;
+  --bs-secondary-rgb: 241, 65, 108;
+  --bs-secondary-rgb: 155, 89, 182;
+  --bs-light-rgb: 248, 248, 248;
+  --bs-secondary-text-emphasis: #601a2b;
+  --bs-secondary-text-emphasis: #3e2449;
+  --bs-light-text-emphasis: #636363;
+  --bs-secondary-bg-subtle: #feecf0;
+  --bs-secondary-bg-subtle: #f5eef8;
+  --bs-light-bg-subtle: #fdfdfd;
+  --bs-secondary-border-subtle: #fcd9e2;
+  --bs-secondary-border-subtle: #f5eef8;
+  --bs-light-border-subtle: #fdfdfd;
+  --bs-btn-primary-hover: #d93b61;
+  --bs-btn-primary-border-hover: #d4395f;
+  --bs-btn-primary-active: #d4395f;
+  --bs-btn-secondary-hover: #8c50a4;
+  --bs-btn-secondary-border-hover: #884ea0;
+  --bs-btn-secondary-active: #884ea0;
+}
+
+[data-bs-theme=dark][data-color-theme=pink] {
+  --bs-secondary-bg-subtle: #18070b;
+  --bs-secondary-bg-subtle: #100912;
+  --bs-light-bg-subtle: #4a4a4a;
+  --bs-secondary-border-subtle: #300d16;
+  --bs-secondary-border-subtle: #100912;
+  --bs-light-border-subtle: #4a4a4a;
+}
+
+[data-color-theme=purple] {
+  --bs-link-color: #7239EA;
+  --bs-link-color-rgb: 114, 57, 234;
+  --bs-link-hover-color: #6130c7;
+  --bs-link-hover-color-rgb: 97, 48, 199;
+  --bs-secondary: #7239EA;
+  --bs-secondary: #FF7F50;
+  --bs-light: #F8F8F8;
+  --bs-secondary-rgb: 114, 57, 234;
+  --bs-secondary-rgb: 255, 127, 80;
+  --bs-light-rgb: 248, 248, 248;
+  --bs-secondary-text-emphasis: #2e175e;
+  --bs-secondary-text-emphasis: #663320;
+  --bs-light-text-emphasis: #636363;
+  --bs-secondary-bg-subtle: #f1ebfd;
+  --bs-secondary-bg-subtle: #fff2ee;
+  --bs-light-bg-subtle: #fdfdfd;
+  --bs-secondary-border-subtle: #e3d7fb;
+  --bs-secondary-border-subtle: #fff2ee;
+  --bs-light-border-subtle: #fdfdfd;
+  --bs-btn-primary-hover: #6733d3;
+  --bs-btn-primary-border-hover: #6432ce;
+  --bs-btn-primary-active: #6432ce;
+  --bs-btn-secondary-hover: #e67248;
+  --bs-btn-secondary-border-hover: #e07046;
+  --bs-btn-secondary-active: #e07046;
+}
+
+[data-bs-theme=dark][data-color-theme=purple] {
+  --bs-secondary-bg-subtle: #0b0617;
+  --bs-secondary-bg-subtle: #1a0d08;
+  --bs-light-bg-subtle: #4a4a4a;
+  --bs-secondary-border-subtle: #170b2f;
+  --bs-secondary-border-subtle: #1a0d08;
+  --bs-light-border-subtle: #4a4a4a;
+}
+
+
+i[class*=fi] {
+  display: inline-flex;
+  vertical-align: -1px;
+    margin-right: 5px;
+}
+
+code {
+  background-color: rgba(214, 51, 132, 0.1);
+  border-radius: 4px;
+  padding: 2px;
+}
+
+.border-dashed {
+  --bs-border-style: dashed;
+}
+
+::selection {
+  background-color: var(--bs-secondary);
+  color: #fff;
+}
+
+a:not(.alert-link):not(.btn-link) {
+  text-decoration: none;
+}
+
+.bg-opacity-05 {
+  --bs-bg-opacity: 0.05;
+}
+
+.text-opacity-10 {
+  --bs-text-opacity: 0.10;
+}
+
+b,
+strong {
+  font-weight: 700;
+}
+
+.del {
+  text-decoration: line-through;
+}
+
+.gradient-layer {
+  position: relative;
+}
+.gradient-layer::after {
+  content: "";
+  position: absolute;
+  bottom: 0;
+  left: 0;
+  background: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 0) 0%, var(--bs-body-bg) 63.79%);
+  opacity: 0.8;
+  height: 75px;
+  width: 100%;
+  pointer-events: none;
+}
+
+@media (max-width: 575.98px) {
+  .row:not(.g-0):not(.gy-0) {
+    --bs-gutter-x: 1rem;
+  }
+}
+
+.checkable-item.is-checked {
+  background-color: rgba(var(--bs-light-rgb), 0.5);
+}
+
+.search-item {
+  color: var(--bs-body-color);
+  display: flex;
+  align-items: center;
+  font-size: 15px;
+  gap: 10px;
+  padding: 9px 18px;
+  line-height: 1.2;
+  transition: all 0.35s;
+  border-radius: var(--bs-border-radius);
+}
+.search-item:hover {
+  background-color: var(--bs-light);
+  color: var(--bs-secondary);
+}
+
+.search-list {
+  margin: 0 -10px 15px;
+}
+
+:root {
+  --app-sidebar-width: 250px;
+  --app-header-height: 70px;
+  --app-sidebar-end: 80px;
+}
+
+@media (max-width: 1480px) {
+  :root {
+    --app-sidebar-end: 0;
+  }
+}
+.app-menubar {
+  width: var(--app-sidebar-width);
+  border-right: 1px solid var(--bs-border-color);
+  position: fixed;
+  top: 0;
+  z-index: 9;
+  background-color: var(--app-sidebar-bg);
+  transition-duration: 0.3s;
+  transition-property: width, left;
+  height: 100vh;
+}
+.app-menubar .navbar-nav li.menu-item {
+  width: 100%;
+}
+@media (max-width: 1199.98px) {
+  .app-menubar {
+    left: -260px;
+  }
+  .app-menubar.open {
+    left: 0;
+  }
+}
+.app-menubar .app-footer {
+  padding: 12px 15px;
+}
+
+.app-navbar-brand .navbar-brand-mini {
+  transition-duration: 0.3s;
+  transition-property: display;
+}
+
+.btn-app-nav {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 8px;
+  gap: 10px;
+}
+
+[data-app-sidebar=mini] {
+  --app-sidebar-width: 80px;
+}
+[data-app-sidebar=mini] .app-menubar .app-navbar-brand .navbar-brand-mini {
+  display: none;
+}
+[data-app-sidebar=mini] .app-menubar .menu-label,
+[data-app-sidebar=mini] .app-menubar .badge {
+  display: none;
+}
+[data-app-sidebar=mini] .app-menubar .app-navbar .menubar > li.menu-item .menu-inner {
+  display: none !important;
+}
+[data-app-sidebar=mini] .app-menubar .app-navbar .menu-arrow > .menu-link::after {
+  display: none;
+}
+[data-app-sidebar=mini] .app-menubar .app-navbar .menu-item .menu-link > i {
+  margin-right: 0;
+}
+[data-app-sidebar=mini] .app-menubar .menu-heading::before {
+  content: "\f425";
+  font-family: uicons-solid-rounded;
+  font-size: 11px;
+  color: var(--bs-secondary);
+  text-align: center;
+  display: block;
+}
+[data-app-sidebar=mini] .app-menubar .btn-app-nav .nav-text {
+  display: none;
+}
+
+.app-wrapper {
+  margin-left: var(--app-sidebar-width);
+  min-height: calc(100vh - var(--app-header-height) - var(--footer-height, 50px));
+  margin-top: var(--app-header-height);
+  transition-duration: 0.3s;
+  transition-property: margin-left;
+  padding-top: 30px;
+  padding-bottom: 20px;
+  padding-left: 15px;
+  padding-right: 15px;
+}
+@media (max-width: 1199.98px) {
+  .app-wrapper {
+    margin-left: 0;
+  }
+}
+@media (max-width: 575.98px) {
+  .app-wrapper {
+    padding-left: 0;
+    padding-right: 0;
+  }
+}
+
+.app-navbar-brand {
+  width: var(--app-sidebar-width);
+  min-width: var(--app-sidebar-width);
+  height: var(--app-header-height);
+  border-right: 1px solid var(--bs-border-color);
+  display: flex;
+  align-items: center;
+  gap: 15px;
+  padding: 15px 25px;
+  transition-duration: 0.3s;
+  transition-property: width;
+  border-bottom: 1px solid var(--bs-border-color);
+  background-color: var(--app-sidebar-bg);
+}
+
+.app-header {
+  position: fixed;
+  background-color: var(--app-header-bg);
+  z-index: 9;
+  height: var(--app-header-height);
+  top: 0;
+  border-bottom: 1px solid var(--bs-border-color);
+  width: 100%;
+ 
+  display: flex;
+  align-items: center;
+  transition-duration: 0.3s;
+  transition-property: padding;
+  padding-left: var(--app-sidebar-width);
+}
+@media (max-width: 1199.98px) {
+  .app-header {
+    padding-left: 0;
+  }
+}
+
+.app-navbar {
+  padding: 15px;
+  height: calc(100% - (var(--app-header-height) + 114px));
+  width: var(--app-sidebar-width);
+}
+.app-navbar .menu-arrow > .menu-link {
+  position: relative;
+}
+.app-navbar .menu-arrow > .menu-link::after {
+  content: "\f155";
+  font-family: uicons-regular-straight;
+  position: absolute;
+  right: 12px;
+  top: 50%;
+  transform: translateY(-50%);
+  height: 15px;
+  width: 15px;
+  display: flex;
+  align-items: center;
+  color: var(--bs-body-color);
+  transition: 0.2s all linear;
+}
+.app-navbar .menu-arrow > .menu-link.open::after {
+  transform: translateY(-50%) rotate(90deg);
+  color: #fff;
+}
+.app-navbar .menu-arrow > .menu-link.active::after, .app-navbar .menu-arrow > .menu-link:hover::after {
+  color: #fff;
+}
+.app-navbar .menu-inner .menu-item > .menu-link {
+  padding: 7px 14px;
+}
+.app-navbar .menu-inner .menu-item > .menu-link::after {
+  color: var(--bs-body-color);
+}
+.app-navbar .menu-inner .menu-item > .menu-link.open {
+  color: var(--bs-secondary);
+}
+.app-navbar .menu-inner .menu-item > .menu-link.open::after {
+  color: var(--bs-secondary);
+}
+.app-navbar .menu-inner .menu-item > .menu-link.active, .app-navbar .menu-inner .menu-item > .menu-link:hover {
+  color: var(--bs-secondary);
+}
+.app-navbar .menu-inner .menu-item > .menu-link.active::after, .app-navbar .menu-inner .menu-item > .menu-link:hover::after {
+  color: var(--bs-secondary);
+}
+.app-navbar .menu-item .menu-link {
+  border-radius: 8px;
+  font-size: 14px;
+  padding: 10px 15px;
+  color: var(--bs-heading-color);
+  transition: 0.2s all linear;
+}
+.app-navbar .menu-item .menu-link > i {
+  display: inline-flex;
+  font-size: 18px;
+  vertical-align: text-top;
+  line-height: 1;
+  margin-right: 8px;
+  color: var(--bs-body-color);
+}
+.app-navbar .menubar {
+  padding-left: 0;
+}
+.app-navbar .menubar .menu-heading {
+  color: var(--bs-secondary);
+  font-size: 12px;
+  font-weight: 500;
+  text-transform: uppercase;
+  padding: 20px 15px 12px;
+  margin-bottom: 0;
+}
+.app-navbar .menubar ul {
+  padding: 0;
+  margin: 0;
+}
+.app-navbar .menubar > li {
+  margin-bottom: 5px;
+}
+.app-navbar .menubar li {
+  display: block;
+}
+.app-navbar .menubar .menu-link {
+  display: block;
+}
+.app-navbar .menubar .menu-inner {
+  display: none;
+}
+.app-navbar .menubar .menu-item.open .menu-inner {
+  display: block;
+}
+.app-navbar .menubar > li.menu-item > .menu-link:hover, .app-navbar .menubar > li.menu-item > .menu-link.active, .app-navbar .menubar > li.menu-item > .menu-link.open {
+  color: #fff;
+  background-color: var(--bs-heading-color);
+  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
+}
+.app-navbar .menubar > li.menu-item > .menu-link:hover > i, .app-navbar .menubar > li.menu-item > .menu-link.active > i, .app-navbar .menubar > li.menu-item > .menu-link.open > i {
+  color: #fff;
+}
+.app-navbar .menubar > li.menu-item .menu-inner {
+  margin-left: 28px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+}
+.app-navbar .menubar > li.menu-item .menu-inner .menu-item {
+  width: 100%;
+}
+.app-navbar .menubar > li.menu-item .menu-inner .menu-link.active {
+  color: var(--bs-secondary);
+}
+.app-navbar .menubar > li.menu-item .menu-inner .menu-inner {
+  margin-left: 20px;
+}
+
+.app-header-inner {
+  width: 100%;
+  display: flex;
+  justify-content: space-between;
+  padding-right: 25px;
+}
+@media (max-width: 1199.98px) {
+  .app-header-inner {
+    padding-right: 15px;
+  }
+}
+
+.app-header-start {
+  display: flex;
+  align-items: center;
+  margin-right: auto;
+  gap: 30px;
+  align-items: center;
+  height: var(--app-header-height);
+}
+
+.app-header-end {
+  display: flex;
+  align-items: center;
+  margin-left: auto;
+  height: var(--app-header-height);
+}
+
+.app-toggler {
+  border: 0;
+  padding: 0;
+  background-color: transparent;
+  height: 30px;
+  width: 30px;
+  margin: 20px 15px;
+  display: inline-block;
+}
+.app-toggler span {
+  width: 18px;
+  height: 2px;
+  display: block;
+  background-color: var(--bs-body-color);
+  border-radius: 12px;
+  margin: 4px auto;
+  transition: 0.1s all linear;
+}
+.app-toggler.active span {
+  margin: -2px auto;
+}
+.app-toggler.active span:nth-child(1) {
+  transform: rotate(45deg);
+}
+.app-toggler.active span:nth-child(2) {
+  display: none;
+}
+.app-toggler.active span:nth-child(3) {
+  transform: rotate(-45deg);
+}
+@media (max-width: 1199.98px) {
+  .app-toggler::after {
+    content: "";
+    position: fixed;
+    height: 100%;
+    width: 100%;
+    top: 0;
+    left: 0;
+    z-index: 99999;
+    background-color: var(--custom-modal-backdrop-bg);
+    opacity: 0.6;
+    display: none;
+  }
+  .app-toggler.active::after {
+    display: block;
+  }
+}
+
+.app-sidebar-end {
+  width: var(--app-sidebar-end);
+  border-left: 1px solid var(--bs-border-color);
+  position: fixed;
+  right: 0;
+  top: var(--app-header-height);
+  height: calc(100vh - var(--app-header-height));
+  background-color: var(--app-sidebar-bg);
+  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.02);
+}
+.app-sidebar-end .sidebar-list {
+  padding: 10px;
+  margin: 0;
+}
+.app-sidebar-end .sidebar-list li {
+  display: block;
+  padding: 10px 0;
+  text-align: center;
+  font-size: 13px;
+  color: var(--bs-headings-color);
+  font-weight: 500;
+}
+.app-sidebar-end .sidebar-list li:not(:last-child) {
+  border-bottom: 1px solid var(--bs-border-color);
+}
+@media (max-width: 1480px) {
+  .app-sidebar-end {
+    display: none;
+  }
+}
+
+:has(.app-sidebar-end) .app-wrapper {
+  margin-right: var(--app-sidebar-end);
+}
+:has(.app-sidebar-end) .footer-wrapper {
+  margin-right: var(--app-sidebar-end);
+}
+
+.app-header-transparent {
+  --app-header-bg: var(--custom-body-bg);
+  box-shadow: none;
+}
+
+:root {
+  --app-menubar-tabs: 270px;
+  --app-sidebar-panel: 410px;
+}
+
+@media (max-width: 1480px) {
+  :root {
+    --app-sidebar-panel: 0;
+  }
+}
+@media (max-width: 1399px) {
+  :root {
+    --app-sidebar-panel: 0;
+  }
+}
+.app-sidebar-panel {
+  width: var(--app-sidebar-panel);
+  border-left: 1px solid var(--bs-border-color);
+  position: fixed;
+  right: 0;
+  top: 0;
+  height: 100vh;
+  background-color: var(--app-sidebar-bg);
+  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.02);
+  z-index: 9;
+  padding: 45px 35px 35px;
+  transition-duration: 0.3s;
+  transition-property: right;
+}
+.app-sidebar-panel .sidebar-close {
+  position: absolute;
+  top: 0;
+  left: 0;
+  display: none;
+}
+@media (max-width: 1480px) {
+  .app-sidebar-panel {
+    padding: 30px 20px 20px;
+    right: -365px;
+    width: 360px;
+  }
+  .app-sidebar-panel .sidebar-close {
+    display: inline-block;
+  }
+  .app-sidebar-panel.show {
+    right: 0;
+  }
+}
+
+.sidebar-panel-toggler {
+  display: none !important;
+}
+@media (max-width: 1480px) {
+  .sidebar-panel-toggler {
+    display: inline-block !important;
+  }
+}
+
+:has(.app-sidebar-panel) .app-wrapper {
+  margin-right: var(--app-sidebar-panel);
+}
+:has(.app-sidebar-panel) .footer-wrapper {
+  margin-right: var(--app-sidebar-panel);
+}
+:has(.app-sidebar-panel) .app-header {
+  margin-right: var(--app-sidebar-panel);
+  width: -webkit-fill-available;
+}
+
+.app-menubar-tabs {
+  width: var(--app-menubar-tabs);
+  position: fixed;
+  top: 0;
+  z-index: 9;
+  transition-duration: 0.3s;
+  transition-property: width, left;
+  height: 100vh;
+}
+.app-menubar-tabs .app-navbar-brand {
+  width: 70px;
+  min-width: 70px;
+  padding: 15px 18px;
+}
+.app-menubar-tabs .app-tab-content {
+  position: fixed;
+  left: 70px;
+  top: 0;
+  width: 200px;
+  height: calc(100vh - (var(--footer-height) + 1px));
+  overflow: hidden;
+  transition-duration: 0.3s;
+  transition-property: left;
+  background-color: var(--custom-body-bg);
+}
+.app-menubar-tabs .app-tab-content .app-navbar {
+  width: 100%;
+  height: calc(100vh - var(--footer-height) - 70px);
+}
+.app-menubar-tabs .app-tab-content .tab-content {
+  height: 100%;
+}
+.app-menubar-tabs .side-menubar {
+  padding: 0;
+  margin: 0;
+}
+.app-menubar-tabs .side-menubar > li {
+  display: block;
+}
+.app-menubar-tabs .side-menubar .menu-heading {
+  color: var(--bs-secondary);
+  font-size: 12px;
+  font-weight: 600;
+  text-transform: uppercase;
+  padding: 12px 0 8px 0;
+  margin-bottom: 0;
+}
+.app-menubar-tabs .side-menubar .menu-item .menu-link {
+  font-size: 14px;
+  padding: 8px 0;
+  color: var(--bs-heading-color);
+  display: block;
+}
+.app-menubar-tabs .side-menubar .menu-item .menu-link > i {
+  display: inline-flex;
+  font-size: 18px;
+  vertical-align: text-top;
+  line-height: 1;
+  margin-right: 8px;
+  color: var(--bs-body-color);
+}
+.app-menubar-tabs .side-menubar .menu-divider {
+  border-bottom: 1px solid var(--bs-border-color);
+  margin: 10px 0;
+}
+.app-menubar-tabs .app-navbar {
+  padding: 20px;
+}
+.app-menubar-tabs .app-side-brands {
+  width: 100%;
+  height: var(--app-header-height);
+  display: flex;
+  align-items: center;
+  gap: 15px;
+  padding: 15px 20px;
+  transition-duration: 0.3s;
+  transition-property: width;
+  border-bottom: 1px solid var(--bs-border-color);
+}
+@media (max-width: 1199.98px) {
+  .app-menubar-tabs {
+    left: calc(-1 * var(--app-menubar-tabs));
+  }
+  .app-menubar-tabs .app-tab-content {
+    left: -200px;
+    height: 100vh;
+  }
+  .app-menubar-tabs .app-tab-content .app-navbar {
+    height: calc(100vh - var(--footer-height));
+  }
+  .app-menubar-tabs.open {
+    left: 0;
+  }
+  .app-menubar-tabs.open .app-tab-content {
+    left: 70px;
+  }
+}
+
+:has(.app-menubar-tabs) .app-wrapper {
+  margin-left: var(--app-menubar-tabs);
+}
+:has(.app-menubar-tabs) .app-header {
+  padding-left: var(--app-menubar-tabs);
+}
+:has(.app-menubar-tabs) .footer-wrapper {
+  margin-left: 70px;
+  position: relative;
+}
+@media (max-width: 1199.98px) {
+  :has(.app-menubar-tabs) .app-wrapper {
+    margin-left: 0;
+  }
+  :has(.app-menubar-tabs) .app-header {
+    padding-left: 0;
+  }
+  :has(.app-menubar-tabs) .footer-wrapper {
+    margin-left: 0;
+  }
+}
+
+.app-navbar-tabs {
+  padding: 15px;
+  height: calc(100% - var(--app-header-height));
+  width: 70px;
+  border-right: 1px solid var(--bs-border-color);
+  z-index: 9;
+  background-color: var(--app-sidebar-bg);
+  transition-duration: 0.3s;
+  transition-property: width, left;
+  box-shadow: 0px 30px 30px 10px rgba(0, 0, 0, 0.02);
+}
+@media (max-width: 1199.98px) {
+  .app-navbar-tabs {
+    height: 100%;
+  }
+}
+.app-navbar-tabs .nav-item {
+  margin-top: 2px;
+  margin-bottom: 2px;
+}
+.app-navbar-tabs .nav-item .menu-link {
+  border-radius: 8px;
+  font-size: 14px;
+  padding: 9px 11px;
+  color: var(--bs-heading-color);
+  transition: 0.2s all linear;
+  display: block;
+}
+.app-navbar-tabs .nav-item .menu-link > i {
+  display: inline-flex;
+  font-size: 18px;
+  vertical-align: text-top;
+  line-height: 1;
+  color: var(--bs-body-color);
+}
+.app-navbar-tabs .nav-item .menu-link.active, .app-navbar-tabs .nav-item .menu-link:hover, .app-navbar-tabs .nav-item .menu-link:focus {
+  color: #fff;
+  background-color: var(--bs-secondary);
+}
+.app-navbar-tabs .nav-item .menu-link.active i, .app-navbar-tabs .nav-item .menu-link:hover i, .app-navbar-tabs .nav-item .menu-link:focus i {
+  color: #fff;
+}
+
+.footer-wrapper {
+  padding: 14px 20px;
+  margin-left: var(--app-sidebar-width);
+  border-top: 1px solid var(--bs-border-color);
+  transition-duration: 0.3s;
+  transition-property: margin-left;
+}
+@media (max-width: 1199.98px) {
+  .footer-wrapper {
+    margin-left: 0;
+  }
+}
+@media (max-width: 575.98px) {
+  .footer-wrapper {
+    padding: 14px 15px;
+  }
+}
+
+.app-page-title {
+  font-size: 24px;
+  font-weight: 700;
+  margin-bottom: 5px;
+}
+
+.app-page-head {
+  margin-bottom: 30px;
+}
+.app-page-head .breadcrumb {
+  font-size: 12px;
+  font-weight: 500;
+}
+
+.auth-cover-wrapper {
+  padding: 30px;
+}
+.auth-cover-wrapper .auth-cover {
+  background-color: var(--bs-light);
+  border-radius: 40px;
+  height: calc(100vh - 60px);
+  width: 100%;
+  text-align: center;
+  min-height: 720px;
+  background-size: cover;
+  background-position: center;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 50px;
+  overflow: hidden;
+}
+.auth-cover-wrapper .auth-cover .cover-img {
+  animation: coverAnimation 4s infinite;
+}
+.auth-cover-wrapper .auth-content {
+  max-width: 550px;
+  margin-left: auto;
+  margin-right: auto;
+}
+.auth-cover-wrapper .auth-content p {
+  font-size: 18px;
+  line-height: 1.4;
+  font-weight: 400;
+  color: var(--bs-dark);
+  opacity: 0.5;
+}
+.auth-cover-wrapper .auth-inner {
+  max-height: calc(100vh - 100px);
+}
+@media (max-width: 991.98px) {
+  .auth-cover-wrapper .auth-inner {
+    max-height: 100%;
+  }
+}
+@media (max-width: 1399.98px) {
+  .auth-cover-wrapper .auth-content p {
+    font-size: 16px;
+  }
+}
+@media (max-width: 1199.98px) {
+  .auth-cover-wrapper {
+    padding: 15px;
+  }
+  .auth-cover-wrapper .auth-cover {
+    height: calc(100vh - 30px);
+  }
+}
+@media (max-width: 575.98px) {
+  .auth-cover-wrapper {
+    padding: 10px;
+  }
+  .auth-cover-wrapper .auth-cover {
+    height: 100%;
+    border-radius: 20px;
+    padding: 20px;
+    min-height: auto;
+  }
+  .auth-cover-wrapper .auth-content p {
+    font-size: 14px;
+  }
+}
+
+@keyframes coverAnimation {
+  0% {
+    transform: translateY(0);
+  }
+  10% {
+    transform: translateY(-10px);
+  }
+  20% {
+    transform: translateY(0);
+  }
+  30% {
+    transform: translateY(-10px);
+  }
+  40% {
+    transform: translateY(0);
+  }
+  100% {
+    transform: translateY(0);
+  }
+}
+.auth-frame-wrapper {
+  height: 100vh;
+}
+.auth-frame-wrapper .auth-frame {
+  min-height: 600px;
+  height: 100%;
+  background-size: cover;
+  background-position: center;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 50px;
+}
+.auth-frame-wrapper .auth-frame .img-fluid {
+  border-radius: 10px;
+  box-shadow: var(--bs-box-shadow-sm);
+}
+.auth-frame-wrapper .auth-imgs {
+  max-width: 600px;
+  margin-top: 80px;
+  margin-left: 30px;
+  margin-right: 30px;
+  margin-bottom: 30px;
+}
+.auth-frame-wrapper .auth-imgs .position1 {
+  top: -30px;
+  right: -30px;
+  animation: frameAnimate1 20s infinite;
+}
+.auth-frame-wrapper .auth-imgs .position2 {
+  left: -30px;
+  bottom: -30px;
+  animation: frameAnimate2 25s infinite;
+}
+.auth-frame-wrapper .auth-content {
+  max-width: 550px;
+  margin-left: auto;
+  margin-right: auto;
+}
+.auth-frame-wrapper .auth-content p {
+  font-size: 18px;
+}
+.auth-frame-wrapper .auth-inner {
+  max-height: calc(100vh - 100px);
+}
+@media (max-width: 991.98px) {
+  .auth-frame-wrapper .auth-inner {
+    max-height: 100%;
+  }
+}
+@media (max-width: 1399.98px) {
+  .auth-frame-wrapper .auth-content p {
+    font-size: 16px;
+  }
+  .auth-frame-wrapper .auth-imgs .position1 {
+    width: 120px;
+  }
+  .auth-frame-wrapper .auth-imgs .position2 {
+    width: 150px;
+  }
+}
+@media (max-width: 575.98px) {
+  .auth-frame-wrapper .auth-content p {
+    font-size: 14px;
+  }
+  .auth-frame-wrapper .auth-frame {
+    min-height: auto;
+    padding: 30px 20px;
+  }
+  .auth-frame-wrapper .auth-frame .img-fluid {
+    border-radius: 6px;
+  }
+  .auth-frame-wrapper .auth-imgs {
+    margin-top: 50px;
+  }
+  .auth-frame-wrapper .auth-imgs .position1 {
+    width: 70px;
+  }
+  .auth-frame-wrapper .auth-imgs .position2 {
+    width: 120px;
+  }
+}
+
+@keyframes frameAnimate1 {
+  0% {
+    transform: translateY(0);
+  }
+  10% {
+    transform: translateY(-10px);
+  }
+  20% {
+    transform: translateY(0);
+  }
+  30% {
+    transform: translateY(-10px);
+  }
+  40% {
+    transform: translateY(0);
+  }
+  100% {
+    transform: translateY(0);
+  }
+}
+@keyframes frameAnimate2 {
+  0% {
+    transform: translateX(0);
+  }
+  10% {
+    transform: translateX(-10px);
+  }
+  20% {
+    transform: translateX(0);
+  }
+  30% {
+    transform: translateX(-10px);
+  }
+  40% {
+    transform: translateX(0);
+  }
+  100% {
+    transform: translateX(0);
+  }
+}
+.auth-card {
+  max-height: calc(100vh - 100px);
+}
+@media (max-width: 991.98px) {
+  .auth-card {
+    max-height: 100%;
+  }
+}
+
+.shadow-sharp-warning {
+  box-shadow: 0 0 0 5px rgba(var(--bs-warning-rgb), 0.15);
+}
+
+.shadow-sharp-danger {
+  box-shadow: 0 0 0 5px rgba(var(--bs-danger-rgb), 0.15);
+}
+
+.shadow-sharp-info {
+  box-shadow: 0 0 0 5px rgba(var(--bs-info-rgb), 0.15);
+}
+
+.shadow-sharp-secondary {
+  box-shadow: 0 0 0 5px rgba(var(--bs-secondary-rgb), 0.15);
+}
+
+.shadow-sharp-gray {
+  box-shadow: 0 0 0 5px rgba(var(--bs-gray-rgb), 0.15);
+}
+
+.shadow-sharp-primary {
+  box-shadow: 0 0 0 5px rgba(var(--bs-secondary-rgb), 0.15);
+}
+
+.shadow-sharp-dark {
+  box-shadow: 0 0 0 5px rgba(var(--bs-dark-rgb), 0.15);
+}
+
+.shadow-sharp-success {
+  box-shadow: 0 0 0 5px rgba(var(--bs-success-rgb), 0.15);
+}
+
+.card-action {
+  transition: all 0.25s;
+}
+.card-action .action-visible {
+  transition: all 0.25s;
+  opacity: 0;
+  visibility: hidden;
+}
+.card-action:hover .action-visible {
+  opacity: 1;
+  visibility: visible;
+}
+
+.action-elevate:hover {
+  transform: translateY(-4px);
+}
+
+.action-border-primary.action-active,
+.action-border-primary:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-secondary-rgb), 0.2), 0 0 0 1px var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+
+.action-border-secondary.action-active,
+.action-border-secondary:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-secondary-rgb), 0.2), 0 0 0 1px var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+
+.action-border-success.action-active,
+.action-border-success:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-success-rgb), 0.2), 0 0 0 1px var(--bs-success);
+  border-color: var(--bs-success);
+}
+
+.action-border-info.action-active,
+.action-border-info:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-info-rgb), 0.2), 0 0 0 1px var(--bs-info);
+  border-color: var(--bs-info);
+}
+
+.action-border-danger.action-active,
+.action-border-danger:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-danger-rgb), 0.2), 0 0 0 1px var(--bs-danger);
+  border-color: var(--bs-danger);
+}
+
+.action-border-warning.action-active,
+.action-border-warning:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-warning-rgb), 0.2), 0 0 0 1px var(--bs-warning);
+  border-color: var(--bs-warning);
+}
+
+.action-border-dark.action-active,
+.action-border-dark:hover {
+  box-shadow: 0 0.1rem 0.3rem 0 rgba(var(--bs-dark-rgb), 0.2), 0 0 0 1px var(--bs-dark);
+  border-color: var(--bs-dark);
+}
+
+.text-xl {
+  font-size: 24px;
+}
+
+.text-lg {
+  font-size: 20px;
+}
+
+.text-md {
+  font-size: 18px;
+}
+
+.text-sm {
+  font-size: 15px;
+}
+
+.text-xs {
+  font-size: 14px;
+}
+
+.text-1xs {
+  font-size: 13px;
+}
+
+.text-2xs {
+  font-size: 12px;
+}
+
+.text-3xs {
+  font-size: 10px;
+}
+
+.text-4xs {
+  font-size: 8px;
+}
+
+.w-50px {
+  width: 50px !important;
+}
+
+.minw-50px {
+  min-width: 50px !important;
+}
+
+.maxw-50px {
+  max-width: 50px !important;
+}
+
+.w-75px {
+  width: 75px !important;
+}
+
+.minw-75px {
+  min-width: 75px !important;
+}
+
+.maxw-75px {
+  max-width: 75px !important;
+}
+
+.w-100px {
+  width: 100px !important;
+}
+
+.minw-100px {
+  min-width: 100px !important;
+}
+
+.maxw-100px {
+  max-width: 100px !important;
+}
+
+.w-125px {
+  width: 125px !important;
+}
+
+.minw-125px {
+  min-width: 125px !important;
+}
+
+.maxw-125px {
+  max-width: 125px !important;
+}
+
+.w-150px {
+  width: 150px !important;
+}
+
+.minw-150px {
+  min-width: 150px !important;
+}
+
+.maxw-150px {
+  max-width: 150px !important;
+}
+
+.w-175px {
+  width: 175px !important;
+}
+
+.minw-175px {
+  min-width: 175px !important;
+}
+
+.maxw-175px {
+  max-width: 175px !important;
+}
+
+.w-200px {
+  width: 200px !important;
+}
+
+.minw-200px {
+  min-width: 200px !important;
+}
+
+.maxw-200px {
+  max-width: 200px !important;
+}
+
+.w-225px {
+  width: 225px !important;
+}
+
+.minw-225px {
+  min-width: 225px !important;
+}
+
+.maxw-225px {
+  max-width: 225px !important;
+}
+
+.w-250px {
+  width: 250px !important;
+}
+
+.minw-250px {
+  min-width: 250px !important;
+}
+
+.maxw-250px {
+  max-width: 250px !important;
+}
+
+.w-275px {
+  width: 275px !important;
+}
+
+.minw-275px {
+  min-width: 275px !important;
+}
+
+.maxw-275px {
+  max-width: 275px !important;
+}
+
+.w-300px {
+  width: 300px !important;
+}
+
+.minw-300px {
+  min-width: 300px !important;
+}
+
+.maxw-300px {
+  max-width: 300px !important;
+}
+
+.w-325px {
+  width: 325px !important;
+}
+
+.minw-325px {
+  min-width: 325px !important;
+}
+
+.maxw-325px {
+  max-width: 325px !important;
+}
+
+.w-350px {
+  width: 350px !important;
+}
+
+.minw-350px {
+  min-width: 350px !important;
+}
+
+.maxw-350px {
+  max-width: 350px !important;
+}
+
+.w-375px {
+  width: 375px !important;
+}
+
+.minw-375px {
+  min-width: 375px !important;
+}
+
+.maxw-375px {
+  max-width: 375px !important;
+}
+
+.w-400px {
+  width: 400px !important;
+}
+
+.minw-400px {
+  min-width: 400px !important;
+}
+
+.maxw-400px {
+  max-width: 400px !important;
+}
+
+.w-425px {
+  width: 425px !important;
+}
+
+.minw-425px {
+  min-width: 425px !important;
+}
+
+.maxw-425px {
+  max-width: 425px !important;
+}
+
+.w-450px {
+  width: 450px !important;
+}
+
+.minw-450px {
+  min-width: 450px !important;
+}
+
+.maxw-450px {
+  max-width: 450px !important;
+}
+
+.w-475px {
+  width: 475px !important;
+}
+
+.minw-475px {
+  min-width: 475px !important;
+}
+
+.maxw-475px {
+  max-width: 475px !important;
+}
+
+.w-500px {
+  width: 500px !important;
+}
+
+.minw-500px {
+  min-width: 500px !important;
+}
+
+.maxw-500px {
+  max-width: 500px !important;
+}
+
+.w-525px {
+  width: 525px !important;
+}
+
+.minw-525px {
+  min-width: 525px !important;
+}
+
+.maxw-525px {
+  max-width: 525px !important;
+}
+
+.w-550px {
+  width: 550px !important;
+}
+
+.minw-550px {
+  min-width: 550px !important;
+}
+
+.maxw-550px {
+  max-width: 550px !important;
+}
+
+.w-575px {
+  width: 575px !important;
+}
+
+.minw-575px {
+  min-width: 575px !important;
+}
+
+.maxw-575px {
+  max-width: 575px !important;
+}
+
+.w-600px {
+  width: 600px !important;
+}
+
+.minw-600px {
+  min-width: 600px !important;
+}
+
+.maxw-600px {
+  max-width: 600px !important;
+}
+
+@media (min-width: 576px) {
+  .w-sm-50px {
+    width: 50px !important;
+  }
+  .minw-sm-50px {
+    min-width: 50px !important;
+  }
+  .maxw-sm-50px {
+    max-width: 50px !important;
+  }
+  .w-sm-75px {
+    width: 75px !important;
+  }
+  .minw-sm-75px {
+    min-width: 75px !important;
+  }
+  .maxw-sm-75px {
+    max-width: 75px !important;
+  }
+  .w-sm-100px {
+    width: 100px !important;
+  }
+  .minw-sm-100px {
+    min-width: 100px !important;
+  }
+  .maxw-sm-100px {
+    max-width: 100px !important;
+  }
+  .w-sm-125px {
+    width: 125px !important;
+  }
+  .minw-sm-125px {
+    min-width: 125px !important;
+  }
+  .maxw-sm-125px {
+    max-width: 125px !important;
+  }
+  .w-sm-150px {
+    width: 150px !important;
+  }
+  .minw-sm-150px {
+    min-width: 150px !important;
+  }
+  .maxw-sm-150px {
+    max-width: 150px !important;
+  }
+  .w-sm-175px {
+    width: 175px !important;
+  }
+  .minw-sm-175px {
+    min-width: 175px !important;
+  }
+  .maxw-sm-175px {
+    max-width: 175px !important;
+  }
+  .w-sm-200px {
+    width: 200px !important;
+  }
+  .minw-sm-200px {
+    min-width: 200px !important;
+  }
+  .maxw-sm-200px {
+    max-width: 200px !important;
+  }
+  .w-sm-225px {
+    width: 225px !important;
+  }
+  .minw-sm-225px {
+    min-width: 225px !important;
+  }
+  .maxw-sm-225px {
+    max-width: 225px !important;
+  }
+  .w-sm-250px {
+    width: 250px !important;
+  }
+  .minw-sm-250px {
+    min-width: 250px !important;
+  }
+  .maxw-sm-250px {
+    max-width: 250px !important;
+  }
+  .w-sm-275px {
+    width: 275px !important;
+  }
+  .minw-sm-275px {
+    min-width: 275px !important;
+  }
+  .maxw-sm-275px {
+    max-width: 275px !important;
+  }
+  .w-sm-300px {
+    width: 300px !important;
+  }
+  .minw-sm-300px {
+    min-width: 300px !important;
+  }
+  .maxw-sm-300px {
+    max-width: 300px !important;
+  }
+  .w-sm-325px {
+    width: 325px !important;
+  }
+  .minw-sm-325px {
+    min-width: 325px !important;
+  }
+  .maxw-sm-325px {
+    max-width: 325px !important;
+  }
+  .w-sm-350px {
+    width: 350px !important;
+  }
+  .minw-sm-350px {
+    min-width: 350px !important;
+  }
+  .maxw-sm-350px {
+    max-width: 350px !important;
+  }
+  .w-sm-375px {
+    width: 375px !important;
+  }
+  .minw-sm-375px {
+    min-width: 375px !important;
+  }
+  .maxw-sm-375px {
+    max-width: 375px !important;
+  }
+  .w-sm-400px {
+    width: 400px !important;
+  }
+  .minw-sm-400px {
+    min-width: 400px !important;
+  }
+  .maxw-sm-400px {
+    max-width: 400px !important;
+  }
+  .w-sm-425px {
+    width: 425px !important;
+  }
+  .minw-sm-425px {
+    min-width: 425px !important;
+  }
+  .maxw-sm-425px {
+    max-width: 425px !important;
+  }
+  .w-sm-450px {
+    width: 450px !important;
+  }
+  .minw-sm-450px {
+    min-width: 450px !important;
+  }
+  .maxw-sm-450px {
+    max-width: 450px !important;
+  }
+  .w-sm-475px {
+    width: 475px !important;
+  }
+  .minw-sm-475px {
+    min-width: 475px !important;
+  }
+  .maxw-sm-475px {
+    max-width: 475px !important;
+  }
+  .w-sm-500px {
+    width: 500px !important;
+  }
+  .minw-sm-500px {
+    min-width: 500px !important;
+  }
+  .maxw-sm-500px {
+    max-width: 500px !important;
+  }
+  .w-sm-525px {
+    width: 525px !important;
+  }
+  .minw-sm-525px {
+    min-width: 525px !important;
+  }
+  .maxw-sm-525px {
+    max-width: 525px !important;
+  }
+  .w-sm-550px {
+    width: 550px !important;
+  }
+  .minw-sm-550px {
+    min-width: 550px !important;
+  }
+  .maxw-sm-550px {
+    max-width: 550px !important;
+  }
+  .w-sm-575px {
+    width: 575px !important;
+  }
+  .minw-sm-575px {
+    min-width: 575px !important;
+  }
+  .maxw-sm-575px {
+    max-width: 575px !important;
+  }
+  .w-sm-600px {
+    width: 600px !important;
+  }
+  .minw-sm-600px {
+    min-width: 600px !important;
+  }
+  .maxw-sm-600px {
+    max-width: 600px !important;
+  }
+}
+@media (min-width: 768px) {
+  .w-md-50px {
+    width: 50px !important;
+  }
+  .minw-md-50px {
+    min-width: 50px !important;
+  }
+  .maxw-md-50px {
+    max-width: 50px !important;
+  }
+  .w-md-75px {
+    width: 75px !important;
+  }
+  .minw-md-75px {
+    min-width: 75px !important;
+  }
+  .maxw-md-75px {
+    max-width: 75px !important;
+  }
+  .w-md-100px {
+    width: 100px !important;
+  }
+  .minw-md-100px {
+    min-width: 100px !important;
+  }
+  .maxw-md-100px {
+    max-width: 100px !important;
+  }
+  .w-md-125px {
+    width: 125px !important;
+  }
+  .minw-md-125px {
+    min-width: 125px !important;
+  }
+  .maxw-md-125px {
+    max-width: 125px !important;
+  }
+  .w-md-150px {
+    width: 150px !important;
+  }
+  .minw-md-150px {
+    min-width: 150px !important;
+  }
+  .maxw-md-150px {
+    max-width: 150px !important;
+  }
+  .w-md-175px {
+    width: 175px !important;
+  }
+  .minw-md-175px {
+    min-width: 175px !important;
+  }
+  .maxw-md-175px {
+    max-width: 175px !important;
+  }
+  .w-md-200px {
+    width: 200px !important;
+  }
+  .minw-md-200px {
+    min-width: 200px !important;
+  }
+  .maxw-md-200px {
+    max-width: 200px !important;
+  }
+  .w-md-225px {
+    width: 225px !important;
+  }
+  .minw-md-225px {
+    min-width: 225px !important;
+  }
+  .maxw-md-225px {
+    max-width: 225px !important;
+  }
+  .w-md-250px {
+    width: 250px !important;
+  }
+  .minw-md-250px {
+    min-width: 250px !important;
+  }
+  .maxw-md-250px {
+    max-width: 250px !important;
+  }
+  .w-md-275px {
+    width: 275px !important;
+  }
+  .minw-md-275px {
+    min-width: 275px !important;
+  }
+  .maxw-md-275px {
+    max-width: 275px !important;
+  }
+  .w-md-300px {
+    width: 300px !important;
+  }
+  .minw-md-300px {
+    min-width: 300px !important;
+  }
+  .maxw-md-300px {
+    max-width: 300px !important;
+  }
+  .w-md-325px {
+    width: 325px !important;
+  }
+  .minw-md-325px {
+    min-width: 325px !important;
+  }
+  .maxw-md-325px {
+    max-width: 325px !important;
+  }
+  .w-md-350px {
+    width: 350px !important;
+  }
+  .minw-md-350px {
+    min-width: 350px !important;
+  }
+  .maxw-md-350px {
+    max-width: 350px !important;
+  }
+  .w-md-375px {
+    width: 375px !important;
+  }
+  .minw-md-375px {
+    min-width: 375px !important;
+  }
+  .maxw-md-375px {
+    max-width: 375px !important;
+  }
+  .w-md-400px {
+    width: 400px !important;
+  }
+  .minw-md-400px {
+    min-width: 400px !important;
+  }
+  .maxw-md-400px {
+    max-width: 400px !important;
+  }
+  .w-md-425px {
+    width: 425px !important;
+  }
+  .minw-md-425px {
+    min-width: 425px !important;
+  }
+  .maxw-md-425px {
+    max-width: 425px !important;
+  }
+  .w-md-450px {
+    width: 450px !important;
+  }
+  .minw-md-450px {
+    min-width: 450px !important;
+  }
+  .maxw-md-450px {
+    max-width: 450px !important;
+  }
+  .w-md-475px {
+    width: 475px !important;
+  }
+  .minw-md-475px {
+    min-width: 475px !important;
+  }
+  .maxw-md-475px {
+    max-width: 475px !important;
+  }
+  .w-md-500px {
+    width: 500px !important;
+  }
+  .minw-md-500px {
+    min-width: 500px !important;
+  }
+  .maxw-md-500px {
+    max-width: 500px !important;
+  }
+  .w-md-525px {
+    width: 525px !important;
+  }
+  .minw-md-525px {
+    min-width: 525px !important;
+  }
+  .maxw-md-525px {
+    max-width: 525px !important;
+  }
+  .w-md-550px {
+    width: 550px !important;
+  }
+  .minw-md-550px {
+    min-width: 550px !important;
+  }
+  .maxw-md-550px {
+    max-width: 550px !important;
+  }
+  .w-md-575px {
+    width: 575px !important;
+  }
+  .minw-md-575px {
+    min-width: 575px !important;
+  }
+  .maxw-md-575px {
+    max-width: 575px !important;
+  }
+  .w-md-600px {
+    width: 600px !important;
+  }
+  .minw-md-600px {
+    min-width: 600px !important;
+  }
+  .maxw-md-600px {
+    max-width: 600px !important;
+  }
+}
+@media (min-width: 992px) {
+  .w-lg-50px {
+    width: 50px !important;
+  }
+  .minw-lg-50px {
+    min-width: 50px !important;
+  }
+  .maxw-lg-50px {
+    max-width: 50px !important;
+  }
+  .w-lg-75px {
+    width: 75px !important;
+  }
+  .minw-lg-75px {
+    min-width: 75px !important;
+  }
+  .maxw-lg-75px {
+    max-width: 75px !important;
+  }
+  .w-lg-100px {
+    width: 100px !important;
+  }
+  .minw-lg-100px {
+    min-width: 100px !important;
+  }
+  .maxw-lg-100px {
+    max-width: 100px !important;
+  }
+  .w-lg-125px {
+    width: 125px !important;
+  }
+  .minw-lg-125px {
+    min-width: 125px !important;
+  }
+  .maxw-lg-125px {
+    max-width: 125px !important;
+  }
+  .w-lg-150px {
+    width: 150px !important;
+  }
+  .minw-lg-150px {
+    min-width: 150px !important;
+  }
+  .maxw-lg-150px {
+    max-width: 150px !important;
+  }
+  .w-lg-175px {
+    width: 175px !important;
+  }
+  .minw-lg-175px {
+    min-width: 175px !important;
+  }
+  .maxw-lg-175px {
+    max-width: 175px !important;
+  }
+  .w-lg-200px {
+    width: 200px !important;
+  }
+  .minw-lg-200px {
+    min-width: 200px !important;
+  }
+  .maxw-lg-200px {
+    max-width: 200px !important;
+  }
+  .w-lg-225px {
+    width: 225px !important;
+  }
+  .minw-lg-225px {
+    min-width: 225px !important;
+  }
+  .maxw-lg-225px {
+    max-width: 225px !important;
+  }
+  .w-lg-250px {
+    width: 250px !important;
+  }
+  .minw-lg-250px {
+    min-width: 250px !important;
+  }
+  .maxw-lg-250px {
+    max-width: 250px !important;
+  }
+  .w-lg-275px {
+    width: 275px !important;
+  }
+  .minw-lg-275px {
+    min-width: 275px !important;
+  }
+  .maxw-lg-275px {
+    max-width: 275px !important;
+  }
+  .w-lg-300px {
+    width: 300px !important;
+  }
+  .minw-lg-300px {
+    min-width: 300px !important;
+  }
+  .maxw-lg-300px {
+    max-width: 300px !important;
+  }
+  .w-lg-325px {
+    width: 325px !important;
+  }
+  .minw-lg-325px {
+    min-width: 325px !important;
+  }
+  .maxw-lg-325px {
+    max-width: 325px !important;
+  }
+  .w-lg-350px {
+    width: 350px !important;
+  }
+  .minw-lg-350px {
+    min-width: 350px !important;
+  }
+  .maxw-lg-350px {
+    max-width: 350px !important;
+  }
+  .w-lg-375px {
+    width: 375px !important;
+  }
+  .minw-lg-375px {
+    min-width: 375px !important;
+  }
+  .maxw-lg-375px {
+    max-width: 375px !important;
+  }
+  .w-lg-400px {
+    width: 400px !important;
+  }
+  .minw-lg-400px {
+    min-width: 400px !important;
+  }
+  .maxw-lg-400px {
+    max-width: 400px !important;
+  }
+  .w-lg-425px {
+    width: 425px !important;
+  }
+  .minw-lg-425px {
+    min-width: 425px !important;
+  }
+  .maxw-lg-425px {
+    max-width: 425px !important;
+  }
+  .w-lg-450px {
+    width: 450px !important;
+  }
+  .minw-lg-450px {
+    min-width: 450px !important;
+  }
+  .maxw-lg-450px {
+    max-width: 450px !important;
+  }
+  .w-lg-475px {
+    width: 475px !important;
+  }
+  .minw-lg-475px {
+    min-width: 475px !important;
+  }
+  .maxw-lg-475px {
+    max-width: 475px !important;
+  }
+  .w-lg-500px {
+    width: 500px !important;
+  }
+  .minw-lg-500px {
+    min-width: 500px !important;
+  }
+  .maxw-lg-500px {
+    max-width: 500px !important;
+  }
+  .w-lg-525px {
+    width: 525px !important;
+  }
+  .minw-lg-525px {
+    min-width: 525px !important;
+  }
+  .maxw-lg-525px {
+    max-width: 525px !important;
+  }
+  .w-lg-550px {
+    width: 550px !important;
+  }
+  .minw-lg-550px {
+    min-width: 550px !important;
+  }
+  .maxw-lg-550px {
+    max-width: 550px !important;
+  }
+  .w-lg-575px {
+    width: 575px !important;
+  }
+  .minw-lg-575px {
+    min-width: 575px !important;
+  }
+  .maxw-lg-575px {
+    max-width: 575px !important;
+  }
+  .w-lg-600px {
+    width: 600px !important;
+  }
+  .minw-lg-600px {
+    min-width: 600px !important;
+  }
+  .maxw-lg-600px {
+    max-width: 600px !important;
+  }
+}
+@media (min-width: 1200px) {
+  .w-xl-50px {
+    width: 50px !important;
+  }
+  .minw-xl-50px {
+    min-width: 50px !important;
+  }
+  .maxw-xl-50px {
+    max-width: 50px !important;
+  }
+  .w-xl-75px {
+    width: 75px !important;
+  }
+  .minw-xl-75px {
+    min-width: 75px !important;
+  }
+  .maxw-xl-75px {
+    max-width: 75px !important;
+  }
+  .w-xl-100px {
+    width: 100px !important;
+  }
+  .minw-xl-100px {
+    min-width: 100px !important;
+  }
+  .maxw-xl-100px {
+    max-width: 100px !important;
+  }
+  .w-xl-125px {
+    width: 125px !important;
+  }
+  .minw-xl-125px {
+    min-width: 125px !important;
+  }
+  .maxw-xl-125px {
+    max-width: 125px !important;
+  }
+  .w-xl-150px {
+    width: 150px !important;
+  }
+  .minw-xl-150px {
+    min-width: 150px !important;
+  }
+  .maxw-xl-150px {
+    max-width: 150px !important;
+  }
+  .w-xl-175px {
+    width: 175px !important;
+  }
+  .minw-xl-175px {
+    min-width: 175px !important;
+  }
+  .maxw-xl-175px {
+    max-width: 175px !important;
+  }
+  .w-xl-200px {
+    width: 200px !important;
+  }
+  .minw-xl-200px {
+    min-width: 200px !important;
+  }
+  .maxw-xl-200px {
+    max-width: 200px !important;
+  }
+  .w-xl-225px {
+    width: 225px !important;
+  }
+  .minw-xl-225px {
+    min-width: 225px !important;
+  }
+  .maxw-xl-225px {
+    max-width: 225px !important;
+  }
+  .w-xl-250px {
+    width: 250px !important;
+  }
+  .minw-xl-250px {
+    min-width: 250px !important;
+  }
+  .maxw-xl-250px {
+    max-width: 250px !important;
+  }
+  .w-xl-275px {
+    width: 275px !important;
+  }
+  .minw-xl-275px {
+    min-width: 275px !important;
+  }
+  .maxw-xl-275px {
+    max-width: 275px !important;
+  }
+  .w-xl-300px {
+    width: 300px !important;
+  }
+  .minw-xl-300px {
+    min-width: 300px !important;
+  }
+  .maxw-xl-300px {
+    max-width: 300px !important;
+  }
+  .w-xl-325px {
+    width: 325px !important;
+  }
+  .minw-xl-325px {
+    min-width: 325px !important;
+  }
+  .maxw-xl-325px {
+    max-width: 325px !important;
+  }
+  .w-xl-350px {
+    width: 350px !important;
+  }
+  .minw-xl-350px {
+    min-width: 350px !important;
+  }
+  .maxw-xl-350px {
+    max-width: 350px !important;
+  }
+  .w-xl-375px {
+    width: 375px !important;
+  }
+  .minw-xl-375px {
+    min-width: 375px !important;
+  }
+  .maxw-xl-375px {
+    max-width: 375px !important;
+  }
+  .w-xl-400px {
+    width: 400px !important;
+  }
+  .minw-xl-400px {
+    min-width: 400px !important;
+  }
+  .maxw-xl-400px {
+    max-width: 400px !important;
+  }
+  .w-xl-425px {
+    width: 425px !important;
+  }
+  .minw-xl-425px {
+    min-width: 425px !important;
+  }
+  .maxw-xl-425px {
+    max-width: 425px !important;
+  }
+  .w-xl-450px {
+    width: 450px !important;
+  }
+  .minw-xl-450px {
+    min-width: 450px !important;
+  }
+  .maxw-xl-450px {
+    max-width: 450px !important;
+  }
+  .w-xl-475px {
+    width: 475px !important;
+  }
+  .minw-xl-475px {
+    min-width: 475px !important;
+  }
+  .maxw-xl-475px {
+    max-width: 475px !important;
+  }
+  .w-xl-500px {
+    width: 500px !important;
+  }
+  .minw-xl-500px {
+    min-width: 500px !important;
+  }
+  .maxw-xl-500px {
+    max-width: 500px !important;
+  }
+  .w-xl-525px {
+    width: 525px !important;
+  }
+  .minw-xl-525px {
+    min-width: 525px !important;
+  }
+  .maxw-xl-525px {
+    max-width: 525px !important;
+  }
+  .w-xl-550px {
+    width: 550px !important;
+  }
+  .minw-xl-550px {
+    min-width: 550px !important;
+  }
+  .maxw-xl-550px {
+    max-width: 550px !important;
+  }
+  .w-xl-575px {
+    width: 575px !important;
+  }
+  .minw-xl-575px {
+    min-width: 575px !important;
+  }
+  .maxw-xl-575px {
+    max-width: 575px !important;
+  }
+  .w-xl-600px {
+    width: 600px !important;
+  }
+  .minw-xl-600px {
+    min-width: 600px !important;
+  }
+  .maxw-xl-600px {
+    max-width: 600px !important;
+  }
+}
+@media (min-width: 1400px) {
+  .w-xxl-50px {
+    width: 50px !important;
+  }
+  .minw-xxl-50px {
+    min-width: 50px !important;
+  }
+  .maxw-xxl-50px {
+    max-width: 50px !important;
+  }
+  .w-xxl-75px {
+    width: 75px !important;
+  }
+  .minw-xxl-75px {
+    min-width: 75px !important;
+  }
+  .maxw-xxl-75px {
+    max-width: 75px !important;
+  }
+  .w-xxl-100px {
+    width: 100px !important;
+  }
+  .minw-xxl-100px {
+    min-width: 100px !important;
+  }
+  .maxw-xxl-100px {
+    max-width: 100px !important;
+  }
+  .w-xxl-125px {
+    width: 125px !important;
+  }
+  .minw-xxl-125px {
+    min-width: 125px !important;
+  }
+  .maxw-xxl-125px {
+    max-width: 125px !important;
+  }
+  .w-xxl-150px {
+    width: 150px !important;
+  }
+  .minw-xxl-150px {
+    min-width: 150px !important;
+  }
+  .maxw-xxl-150px {
+    max-width: 150px !important;
+  }
+  .w-xxl-175px {
+    width: 175px !important;
+  }
+  .minw-xxl-175px {
+    min-width: 175px !important;
+  }
+  .maxw-xxl-175px {
+    max-width: 175px !important;
+  }
+  .w-xxl-200px {
+    width: 200px !important;
+  }
+  .minw-xxl-200px {
+    min-width: 200px !important;
+  }
+  .maxw-xxl-200px {
+    max-width: 200px !important;
+  }
+  .w-xxl-225px {
+    width: 225px !important;
+  }
+  .minw-xxl-225px {
+    min-width: 225px !important;
+  }
+  .maxw-xxl-225px {
+    max-width: 225px !important;
+  }
+  .w-xxl-250px {
+    width: 250px !important;
+  }
+  .minw-xxl-250px {
+    min-width: 250px !important;
+  }
+  .maxw-xxl-250px {
+    max-width: 250px !important;
+  }
+  .w-xxl-275px {
+    width: 275px !important;
+  }
+  .minw-xxl-275px {
+    min-width: 275px !important;
+  }
+  .maxw-xxl-275px {
+    max-width: 275px !important;
+  }
+  .w-xxl-300px {
+    width: 300px !important;
+  }
+  .minw-xxl-300px {
+    min-width: 300px !important;
+  }
+  .maxw-xxl-300px {
+    max-width: 300px !important;
+  }
+  .w-xxl-325px {
+    width: 325px !important;
+  }
+  .minw-xxl-325px {
+    min-width: 325px !important;
+  }
+  .maxw-xxl-325px {
+    max-width: 325px !important;
+  }
+  .w-xxl-350px {
+    width: 350px !important;
+  }
+  .minw-xxl-350px {
+    min-width: 350px !important;
+  }
+  .maxw-xxl-350px {
+    max-width: 350px !important;
+  }
+  .w-xxl-375px {
+    width: 375px !important;
+  }
+  .minw-xxl-375px {
+    min-width: 375px !important;
+  }
+  .maxw-xxl-375px {
+    max-width: 375px !important;
+  }
+  .w-xxl-400px {
+    width: 400px !important;
+  }
+  .minw-xxl-400px {
+    min-width: 400px !important;
+  }
+  .maxw-xxl-400px {
+    max-width: 400px !important;
+  }
+  .w-xxl-425px {
+    width: 425px !important;
+  }
+  .minw-xxl-425px {
+    min-width: 425px !important;
+  }
+  .maxw-xxl-425px {
+    max-width: 425px !important;
+  }
+  .w-xxl-450px {
+    width: 450px !important;
+  }
+  .minw-xxl-450px {
+    min-width: 450px !important;
+  }
+  .maxw-xxl-450px {
+    max-width: 450px !important;
+  }
+  .w-xxl-475px {
+    width: 475px !important;
+  }
+  .minw-xxl-475px {
+    min-width: 475px !important;
+  }
+  .maxw-xxl-475px {
+    max-width: 475px !important;
+  }
+  .w-xxl-500px {
+    width: 500px !important;
+  }
+  .minw-xxl-500px {
+    min-width: 500px !important;
+  }
+  .maxw-xxl-500px {
+    max-width: 500px !important;
+  }
+  .w-xxl-525px {
+    width: 525px !important;
+  }
+  .minw-xxl-525px {
+    min-width: 525px !important;
+  }
+  .maxw-xxl-525px {
+    max-width: 525px !important;
+  }
+  .w-xxl-550px {
+    width: 550px !important;
+  }
+  .minw-xxl-550px {
+    min-width: 550px !important;
+  }
+  .maxw-xxl-550px {
+    max-width: 550px !important;
+  }
+  .w-xxl-575px {
+    width: 575px !important;
+  }
+  .minw-xxl-575px {
+    min-width: 575px !important;
+  }
+  .maxw-xxl-575px {
+    max-width: 575px !important;
+  }
+  .w-xxl-600px {
+    width: 600px !important;
+  }
+  .minw-xxl-600px {
+    min-width: 600px !important;
+  }
+  .maxw-xxl-600px {
+    max-width: 600px !important;
+  }
+}
+.list-inline-disc li {
+  position: relative;
+}
+.list-inline-disc li:not(:first-child)::before {
+  content: "•";
+  color: var(--bs-body-color);
+  transform: translateY(-1px);
+  display: inline-flex;
+  margin-right: 7px;
+  margin-left: 7px;
+  line-height: 6px;
+}
+
+.cursor-pointer {
+  cursor: pointer;
+}
+
+.cursor-move {
+  cursor: move;
+}
+
+.cursor-grab {
+  cursor: grab;
+}
+
+.cursor-grabbing {
+  cursor: grabbing;
+}
+
+.cursor-crosshair {
+  cursor: crosshair;
+}
+
+.cursor-text {
+  cursor: text;
+}
+
+.cursor-wait {
+  cursor: wait;
+}
+
+.cursor-help {
+  cursor: help;
+}
+
+.cursor-not-allowed {
+  cursor: not-allowed;
+}
+
+.cursor-progress {
+  cursor: progress;
+}
+
+.cursor-cell {
+  cursor: cell;
+}
+
+.cursor-context-menu {
+  cursor: context-menu;
+}
+
+.cursor-alias {
+  cursor: alias;
+}
+
+.cursor-copy {
+  cursor: copy;
+}
+
+.cursor-no-drop {
+  cursor: no-drop;
+}
+
+.cursor-none {
+  cursor: none;
+}
+
+.cursor-zoom-in {
+  cursor: zoom-in;
+}
+
+.cursor-zoom-out {
+  cursor: zoom-out;
+}
+
+.cursor-col-resize {
+  cursor: col-resize;
+}
+
+.cursor-row-resize {
+  cursor: row-resize;
+}
+
+.cursor-n-resize {
+  cursor: n-resize;
+}
+
+.cursor-e-resize {
+  cursor: e-resize;
+}
+
+.cursor-s-resize {
+  cursor: s-resize;
+}
+
+.cursor-w-resize {
+  cursor: w-resize;
+}
+
+.cursor-ne-resize {
+  cursor: ne-resize;
+}
+
+.cursor-nw-resize {
+  cursor: nw-resize;
+}
+
+.cursor-se-resize {
+  cursor: se-resize;
+}
+
+.cursor-sw-resize {
+  cursor: sw-resize;
+}
+
+.scale-1x {
+  transform: scale(1.1);
+}
+
+.scale-2x {
+  transform: scale(1.2);
+}
+
+.scale-3x {
+  transform: scale(1.3);
+}
+
+.scale-4x {
+  transform: scale(1.4);
+}
+
+.scale-5x {
+  transform: scale(1.5);
+}
+
+html[data-bs-theme=light] {
+  --bs-gray-bg-subtle: #f8f9fa;
+}
+
+html[data-bs-theme=dark] {
+  --custom-modal-backdrop-bg: #303a54;
+  --bs-light: #1a1c31;
+  --bs-dark: #b9c2da;
+  --bs-light-rgb: 26, 28, 49;
+  --bs-dark-rgb: 185, 194, 218;
+  --bs-gray-bg-subtle: #393c56;
+}
+html[data-bs-theme=dark] .text-light,
+html[data-bs-theme=dark] .text-bg-light {
+  color: #fff !important;
+}
+
+[data-bs-theme=light] .visible-dark {
+  display: none;
+}
+
+[data-bs-theme=dark] .visible-light {
+  display: none;
+}
+
+.theme-btn {
+  width: 150px;
+  height: 40px;
+  background-color: var(--bs-light);
+  border-radius: 50px;
+  display: inline-flex;
+  font-size: 20px;
+  align-items: center;
+  gap: 10px;
+  justify-content: center;
+}
+.theme-btn .icon-dark {
+  color: var(--bs-body-color);
+  transition: all 0.2s;
+}
+.theme-btn .theme-toggle {
+  width: 40px;
+  height: 20px;
+  border-radius: 50px;
+  background-color: rgba(var(--bs-secondary-rgb), 0.2);
+  position: relative;
+}
+.theme-btn .theme-toggle::after {
+  content: "";
+  height: 20px;
+  width: 20px;
+  border-radius: 50%;
+  background-color: var(--bs-secondary);
+  border: 2px solid #fff;
+  display: inline-block;
+  position: absolute;
+  left: 0;
+  transition: all 0.2s;
+}
+.theme-btn.active .theme-toggle::after {
+  left: 20px;
+}
+.theme-btn.active .icon-light {
+  color: var(--bs-body-color);
+}
+.theme-btn.active .icon-dark {
+  color: var(--bs-secondary);
+}
+@media (max-width: 575.98px) {
+  .theme-btn {
+    width: 100px;
+    height: 36px;
+    font-size: 15px;
+    gap: 7px;
+  }
+  .theme-btn .theme-toggle {
+    width: 30px;
+    height: 16px;
+  }
+  .theme-btn .theme-toggle::after {
+    height: 16px;
+    width: 16px;
+  }
+  .theme-btn.active .theme-toggle::after {
+    left: 15px;
+  }
+}
+
+[data-simplebar-scroll=primary] .simplebar-scrollbar:before {
+  background-color: var(--bs-secondary);
+}
+
+[data-simplebar-scroll=secondary] .simplebar-scrollbar:before {
+  background-color: var(--bs-secondary);
+}
+
+[data-simplebar-scroll=danger] .simplebar-scrollbar:before {
+  background-color: var(--bs-danger);
+}
+
+[data-simplebar-scroll=info] .simplebar-scrollbar:before {
+  background-color: var(--bs-info);
+}
+
+[data-simplebar-scroll=warning] .simplebar-scrollbar:before {
+  background-color: var(--bs-warning);
+}
+
+[data-simplebar-scroll=dark] .simplebar-scrollbar:before {
+  background-color: var(--bs-dark);
+}
+
+[data-simplebar-scroll=success] .simplebar-scrollbar:before {
+  background-color: var(--bs-success);
+}
+
+.simplebar-track.simplebar-vertical {
+  width: 8px;
+}
+
+.simplebar-scrollbar:before {
+  background-color: #d5d5d5;
+}
+
+.jvm-tooltip {
+  font-size: 12px;
+  padding: 3px 8px;
+  border-radius: var(--bs-border-radius-sm);
+  font-family: var(--bs-body-font-family);
+}
+
+.jsvectormap {
+  min-height: 350px;
+}
+@media (max-width: 575.98px) {
+  .jsvectormap {
+    min-height: 200px;
+  }
+}
+
+.leaflet-popup-content {
+  margin: 8px 15px 8px 15px;
+  font-size: 12px;
+}
+
+.leaflet-popup-content-wrapper,
+.leaflet-popup-tip {
+  background: white;
+  color: #000;
+  box-shadow: var(--bs-box-shadow);
+  border-radius: var(--bs-border-radius-sm);
+}
+
+.leaflet-container {
+  z-index: 1;
+}
+.leaflet-container a.leaflet-popup-close-button {
+  width: 15px;
+  height: 15px;
+  font-size: 16px;
+  font-family: var(--bs-body-font-family);
+  font-family: inline-block;
+}
+
+.leaflet-control-container .info {
+  padding: 6px 8px;
+  font-size: 12px;
+  font-family: var(--bs-body-font-family);
+  background: var(--bs-body-bg);
+  box-shadow: var(--bs-box-shadow);
+  border-radius: var(--bs-border-radius-sm);
+}
+.leaflet-control-container .legend {
+  text-align: left;
+  line-height: 18px;
+  color: var(--bs-body-color);
+}
+.leaflet-control-container .legend i {
+  width: 18px;
+  height: 18px;
+  float: left;
+  margin-right: 8px;
+  opacity: 0.7;
+}
+
+.accordion-button {
+  font-weight: 500;
+}
+
+.ld-accordion-one {
+  --bs-accordion-btn-icon-width: 18px;
+}
+.ld-accordion-one .accordion-item {
+  border-top: 0;
+  border-left: 0;
+  border-right: 0;
+}
+.ld-accordion-one .accordion-item:last-child {
+  border-bottom: 0;
+}
+.ld-accordion-one .accordion-button {
+  padding: 20px 0;
+  font-size: 20px;
+  font-weight: 500;
+  background-color: var(--bs-body-bg);
+  color: var(--bs-dark);
+}
+.ld-accordion-one .accordion-button:not(.collapsed)::after {
+  color: var(--bs-secondary);
+}
+.ld-accordion-one .accordion-body {
+  padding: 20px 0;
+  font-size: 18px;
+  font-weight: 500;
+  color: var(--bs-gray);
+  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
+}
+@media (max-width: 767.98px) {
+  .ld-accordion-one .accordion-button {
+    padding: 18px 0;
+    font-size: 18px;
+  }
+  .ld-accordion-one .accordion-body {
+    font-size: 16px;
+  }
+}
+@media (max-width: 575.98px) {
+  .ld-accordion-one .accordion-button {
+    padding: 15px 0;
+    font-size: 16px;
+  }
+  .ld-accordion-one .accordion-body {
+    font-size: 15px;
+    padding: 15px 0;
+  }
+}
+
+.accordion-custom-button .accordion-item {
+  border: 0;
+  margin-bottom: 10px;
+  background-color: transparent;
+}
+.accordion-custom-button .accordion-button {
+  background-color: var(--bs-body-bg);
+  color: var(--bs-dark);
+  box-shadow: 0px 2px 1px rgba(41, 17, 0, 0.05), 0px 10px 20px rgba(41, 17, 0, 0.04);
+  border-radius: var(--bs-border-radius) !important;
+}
+.accordion-custom-button .accordion-button:not(.collapsed) {
+  background-color: var(--bs-secondary);
+  color: #fff;
+}
+.accordion-custom-button .accordion-button:not(.collapsed)::after {
+  color: #fff;
+}
+.accordion-custom-button .accordion-button:not(.collapsed)::after {
+  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-width='1.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>");
+}
+.accordion-custom-button.accordion-primary .accordion-button:not(.collapsed) {
+  background-color: var(--bs-secondary);
+}
+.accordion-custom-button.accordion-secondary .accordion-button:not(.collapsed) {
+  background-color: var(--bs-secondary);
+}
+.accordion-custom-button.accordion-success .accordion-button:not(.collapsed) {
+  background-color: var(--bs-success);
+}
+.accordion-custom-button.accordion-warning .accordion-button:not(.collapsed) {
+  background-color: var(--bs-warning);
+}
+.accordion-custom-button.accordion-danger .accordion-button:not(.collapsed) {
+  background-color: var(--bs-danger);
+}
+.accordion-custom-button.accordion-info .accordion-button:not(.collapsed) {
+  background-color: var(--bs-info);
+}
+.accordion-custom-button.accordion-dark .accordion-button:not(.collapsed) {
+  background-color: var(--bs-dark);
+}
+
+.avatar {
+  height: 50px;
+  width: 50px;
+  min-width: 50px;
+  border-radius: var(--bs-border-radius);
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  font-size: 20px;
+}
+.avatar img {
+  width: 100%;
+  height: 100%;
+  object-fit: cover;
+  border-radius: inherit;
+}
+.avatar.avatar-xxs {
+  height: 30px;
+  width: 30px;
+  min-width: 30px;
+  font-size: 16px;
+}
+.avatar.avatar-xs {
+  height: 35px;
+  width: 35px;
+  min-width: 35px;
+  font-size: 18px;
+}
+.avatar.avatar-sm {
+  height: 40px;
+  width: 40px;
+  min-width: 40px;
+  font-size: 20px;
+}
+.avatar.avatar-lg {
+  height: 60px;
+  width: 60px;
+  min-width: 60px;
+  font-size: 30px;
+}
+.avatar.avatar-xl {
+  height: 80px;
+  width: 80px;
+  min-width: 80px;
+  font-size: 35px;
+}
+.avatar.avatar-xxl {
+  height: 100px;
+  width: 100px;
+  min-width: 100px;
+  font-size: 45px;
+}
+
+.avatar-group {
+  display: flex;
+}
+.avatar-group .avatar:not(:first-child) {
+  margin-left: -10px;
+}
+
+[class*=avatar-status] {
+  position: relative;
+}
+[class*=avatar-status]::after {
+  content: "";
+  height: 12px;
+  width: 12px;
+  background-color: inherit;
+  border-radius: 50%;
+  border: 2px solid var(--bs-body-bg);
+  position: absolute;
+  bottom: 0px;
+  right: 1px;
+}
+[class*=avatar-status].avatar-xxs::after {
+  height: 10px;
+  width: 10px;
+  right: -3px;
+}
+[class*=avatar-status].avatar-xs::after {
+  height: 10px;
+  width: 10px;
+  right: -1px;
+}
+[class*=avatar-status].avatar-sm::after {
+  height: 10px;
+  width: 10px;
+  right: 0px;
+}
+[class*=avatar-status].avatar-lg::after {
+  right: 4px;
+}
+[class*=avatar-status].avatar-xl::after {
+  right: 11px;
+}
+[class*=avatar-status].avatar-xxl::after {
+  bottom: 8px;
+  right: 8px;
+}
+
+.avatar-status-primary::after {
+  background-color: var(--bs-secondary);
+}
+
+.avatar-status-secondary::after {
+  background-color: var(--bs-secondary);
+}
+
+.avatar-status-danger::after {
+  background-color: var(--bs-danger);
+}
+
+.avatar-status-warning::after {
+  background-color: var(--bs-warning);
+}
+
+.avatar-status-info::after {
+  background-color: var(--bs-info);
+}
+
+.avatar-status-dark::after {
+  background-color: var(--bs-dark);
+}
+
+.avatar-status-success::after {
+  background-color: var(--bs-success);
+}
+
+.btn-primary {
+  --bs-btn-bg: var(--bs-secondary);
+  --bs-btn-border-color: var(--bs-secondary);
+  --bs-btn-hover-bg: var(--bs-secondary);
+  --bs-btn-hover-border-color: var(--bs-btn-secondary-border-hover);
+  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
+  --bs-btn-active-bg: var(--bs-btn-primary-active);
+  --bs-btn-active-border-color: var(--bs-btn-primary-active);
+  --bs-btn-disabled-bg: var(--bs-secondary);
+  --bs-btn-disabled-border-color: var(--bs-secondary);
+}
+
+.btn-outline-primary {
+  --bs-btn-color: var(--bs-secondary);
+  --bs-btn-border-color: var(--bs-secondary);
+  --bs-btn-hover-bg: var(--bs-secondary);
+  --bs-btn-hover-border-color: var(--bs-secondary);
+  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
+  --bs-btn-active-bg: var(--bs-secondary);
+  --bs-btn-active-border-color: var(--bs-secondary);
+  --bs-btn-disabled-color: var(--bs-secondary);
+  --bs-btn-disabled-border-color: var(--bs-secondary);
+}
+
+.btn-secondary {
+  --bs-btn-bg: var(--bs-secondary);
+  --bs-btn-border-color: var(--bs-secondary);
+  --bs-btn-hover-bg: var(--bs-btn-secondary-hover);
+  --bs-btn-hover-border-color: var(--bs-btn-secondary-border-hover);
+  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
+  --bs-btn-active-bg: var(--bs-btn-secondary-active);
+  --bs-btn-active-border-color: var(--bs-btn-secondary-active);
+  --bs-btn-disabled-bg: var(--bs-secondary);
+  --bs-btn-disabled-border-color: var(--bs-secondary);
+}
+
+.btn-outline-secondary {
+  --bs-btn-color: var(--bs-secondary);
+  --bs-btn-border-color: var(--bs-secondary);
+  --bs-btn-hover-bg: var(--bs-secondary);
+  --bs-btn-hover-border-color: var(--bs-secondary);
+  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
+  --bs-btn-active-bg: var(--bs-secondary);
+  --bs-btn-active-border-color: var(--bs-secondary);
+  --bs-btn-disabled-color: var(--bs-secondary);
+  --bs-btn-disabled-border-color: var(--bs-secondary);
+}
+
+.btn-sm, .btn-group-sm > .btn {
+  --bs-btn-line-height: 1.448;
+}
+
+.btn-lg, .btn-group-lg > .btn {
+  --bs-btn-line-height: 1.467;
+}
+
+.btn-xl {
+  --bs-btn-line-height: 1.8;
+  font-size: 18px;
+  padding: 12px 24px;
+}
+
+.btn[class*=btn-subtle-]:hover, .btn[class*=btn-subtle-]:active, .btn[class*=btn-subtle-]:focus {
+  color: #fff;
+}
+
+.btn-light {
+  --bs-btn-hover-color: var(--bs-btn-color);
+}
+
+.btn-outline-light {
+  --bs-btn-color: var(--bs-heading-color);
+}
+
+.btn-shadow {
+  box-shadow: 0 2px 4px 0 rgba(225, 229, 237, 0.2);
+}
+[data-bs-theme=dark] .btn-shadow {
+  box-shadow: 0 2px 4px 0 rgba(36, 37, 60, 0.1);
+}
+
+.btn-white {
+  --bs-btn-color: var(--bs-heading-color);
+  --bs-btn-bg: var(--bs-body-bg);
+  --bs-btn-border-color: var(--bs-border-color);
+  --bs-btn-hover-color: var(--bs-heading-color);
+  --bs-btn-hover-bg: var(--bs-body-bg);
+  --bs-btn-hover-border-color: var(--bs-border-color);
+  --bs-btn-active-color: var(--bs-heading-color);
+  --bs-btn-active-bg: var(--bs-body-bg);
+  --bs-btn-active-border-color: var(--bs-border-color);
+  --bs-btn-disabled-color: var(--bs-heading-color);
+  --bs-btn-disabled-bg: var(--bs-body-bg);
+  --bs-btn-disabled-border-color: var(--bs-body-bg);
+}
+
+.btn-outline-light {
+  --bs-btn-color: var(--bs-heading-color);
+  --bs-btn-border-color: var(--bs-border-color);
+  --bs-btn-hover-color: var(--bs-heading-color);
+  --bs-btn-hover-bg: var(--bs-light);
+  --bs-btn-hover-border-color: var(--bs-light);
+  --bs-btn-focus-shadow-rgb: 236, 242, 253;
+  --bs-btn-active-color: var(--bs-heading-color);
+  --bs-btn-active-bg: var(--bs-light);
+  --bs-btn-active-border-color: var(--bs-border-color);
+  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  --bs-btn-disabled-color: var(--bs-light);
+  --bs-btn-disabled-bg: transparent;
+  --bs-btn-disabled-border-color: var(--bs-border-color);
+}
+
+.btn.btn-subtle-primary {
+  background-color: var(--bs-secondary-bg-subtle);
+  border-color: var(--bs-secondary-bg-subtle);
+  color: var(--bs-secondary);
+}
+.btn.btn-subtle-primary:hover, .btn.btn-subtle-primary:active, .btn.btn-subtle-primary:focus {
+  border-color: var(--bs-secondary);
+  background-color: var(--bs-secondary);
+}
+
+.btn.btn-action-primary {
+  color: var(--bs-secondary);
+}
+.btn.btn-action-primary:hover, .btn.btn-action-primary:active, .btn.btn-action-primary:focus {
+  background-color: var(--bs-secondary-bg-subtle);
+  border-color: var(--bs-secondary-bg-subtle);
+  color: var(--bs-secondary);
+}
+
+.btn.btn-subtle-secondary {
+  background-color: var(--bs-secondary-bg-subtle);
+  border-color: var(--bs-secondary-bg-subtle);
+  color: var(--bs-secondary);
+}
+.btn.btn-subtle-secondary:hover, .btn.btn-subtle-secondary:active, .btn.btn-subtle-secondary:focus {
+  border-color: var(--bs-secondary);
+  background-color: var(--bs-secondary);
+}
+
+.btn.btn-action-secondary {
+  color: var(--bs-secondary);
+}
+.btn.btn-action-secondary:hover, .btn.btn-action-secondary:active, .btn.btn-action-secondary:focus {
+  background-color: var(--bs-secondary-bg-subtle);
+  border-color: var(--bs-secondary-bg-subtle);
+  color: var(--bs-secondary);
+}
+
+.btn.btn-subtle-success {
+  background-color: var(--bs-success-bg-subtle);
+  border-color: var(--bs-success-bg-subtle);
+  color: var(--bs-success);
+}
+.btn.btn-subtle-success:hover, .btn.btn-subtle-success:active, .btn.btn-subtle-success:focus {
+  border-color: var(--bs-success);
+  background-color: var(--bs-success);
+}
+
+.btn.btn-action-success {
+  color: var(--bs-success);
+}
+.btn.btn-action-success:hover, .btn.btn-action-success:active, .btn.btn-action-success:focus {
+  background-color: var(--bs-success-bg-subtle);
+  border-color: var(--bs-success-bg-subtle);
+  color: var(--bs-success);
+}
+
+.btn.btn-subtle-info {
+  background-color: var(--bs-info-bg-subtle);
+  border-color: var(--bs-info-bg-subtle);
+  color: var(--bs-info);
+}
+.btn.btn-subtle-info:hover, .btn.btn-subtle-info:active, .btn.btn-subtle-info:focus {
+  border-color: var(--bs-info);
+  background-color: var(--bs-info);
+}
+
+.btn.btn-action-info {
+  color: var(--bs-info);
+}
+.btn.btn-action-info:hover, .btn.btn-action-info:active, .btn.btn-action-info:focus {
+  background-color: var(--bs-info-bg-subtle);
+  border-color: var(--bs-info-bg-subtle);
+  color: var(--bs-info);
+}
+
+.btn.btn-subtle-warning {
+  background-color: var(--bs-warning-bg-subtle);
+  border-color: var(--bs-warning-bg-subtle);
+  color: var(--bs-warning);
+}
+.btn.btn-subtle-warning:hover, .btn.btn-subtle-warning:active, .btn.btn-subtle-warning:focus {
+  border-color: var(--bs-warning);
+  background-color: var(--bs-warning);
+}
+
+.btn.btn-action-warning {
+  color: var(--bs-warning);
+}
+.btn.btn-action-warning:hover, .btn.btn-action-warning:active, .btn.btn-action-warning:focus {
+  background-color: var(--bs-warning-bg-subtle);
+  border-color: var(--bs-warning-bg-subtle);
+  color: var(--bs-warning);
+}
+
+.btn.btn-subtle-danger {
+  background-color: var(--bs-danger-bg-subtle);
+  border-color: var(--bs-danger-bg-subtle);
+  color: var(--bs-danger);
+}
+.btn.btn-subtle-danger:hover, .btn.btn-subtle-danger:active, .btn.btn-subtle-danger:focus {
+  border-color: var(--bs-danger);
+  background-color: var(--bs-danger);
+}
+
+.btn.btn-action-danger {
+  color: var(--bs-danger);
+}
+.btn.btn-action-danger:hover, .btn.btn-action-danger:active, .btn.btn-action-danger:focus {
+  background-color: var(--bs-danger-bg-subtle);
+  border-color: var(--bs-danger-bg-subtle);
+  color: var(--bs-danger);
+}
+
+.btn.btn-subtle-light {
+  background-color: var(--bs-light-bg-subtle);
+  border-color: var(--bs-light-bg-subtle);
+  color: var(--bs-light);
+}
+.btn.btn-subtle-light:hover, .btn.btn-subtle-light:active, .btn.btn-subtle-light:focus {
+  border-color: var(--bs-light);
+  background-color: var(--bs-light);
+}
+
+.btn.btn-action-light {
+  color: var(--bs-light);
+}
+.btn.btn-action-light:hover, .btn.btn-action-light:active, .btn.btn-action-light:focus {
+  background-color: var(--bs-light-bg-subtle);
+  border-color: var(--bs-light-bg-subtle);
+  color: var(--bs-light);
+}
+
+.btn.btn-subtle-dark {
+  background-color: var(--bs-dark-bg-subtle);
+  border-color: var(--bs-dark-bg-subtle);
+  color: var(--bs-dark);
+}
+.btn.btn-subtle-dark:hover, .btn.btn-subtle-dark:active, .btn.btn-subtle-dark:focus {
+  border-color: var(--bs-dark);
+  background-color: var(--bs-dark);
+}
+
+.btn.btn-action-dark {
+  color: var(--bs-dark);
+}
+.btn.btn-action-dark:hover, .btn.btn-action-dark:active, .btn.btn-action-dark:focus {
+  background-color: var(--bs-dark-bg-subtle);
+  border-color: var(--bs-dark-bg-subtle);
+  color: var(--bs-dark);
+}
+
+.btn.btn-subtle-white {
+  background-color: var(--bs-white-bg-subtle);
+  border-color: var(--bs-white-bg-subtle);
+  color: var(--bs-white);
+}
+.btn.btn-subtle-white:hover, .btn.btn-subtle-white:active, .btn.btn-subtle-white:focus {
+  border-color: var(--bs-white);
+  background-color: var(--bs-white);
+}
+
+.btn.btn-action-white {
+  color: var(--bs-white);
+}
+.btn.btn-action-white:hover, .btn.btn-action-white:active, .btn.btn-action-white:focus {
+  background-color: var(--bs-white-bg-subtle);
+  border-color: var(--bs-white-bg-subtle);
+  color: var(--bs-white);
+}
+
+.btn.btn-subtle-gray {
+  background-color: var(--bs-gray-bg-subtle);
+  border-color: var(--bs-gray-bg-subtle);
+  color: var(--bs-gray);
+}
+.btn.btn-subtle-gray:hover, .btn.btn-subtle-gray:active, .btn.btn-subtle-gray:focus {
+  border-color: var(--bs-gray);
+  background-color: var(--bs-gray);
+}
+
+.btn.btn-action-gray {
+  color: var(--bs-gray);
+}
+.btn.btn-action-gray:hover, .btn.btn-action-gray:active, .btn.btn-action-gray:focus {
+  background-color: var(--bs-gray-bg-subtle);
+  border-color: var(--bs-gray-bg-subtle);
+  color: var(--bs-gray);
+}
+
+.btn.btn-subtle-light {
+  color: var(--bs-dark);
+}
+
+.btn:not(.dropdown-toggle) {
+  transform: scale(1.002);
+  transition: all 0.125s ease-in-out;
+}
+
+.btn[class*=btn-]:active:not(.dropdown-toggle),
+.btn[class*=btn-].active:not(.dropdown-toggle) {
+  transform: scale(0.982);
+  transition: all 0.125s ease-in-out;
+}
+
+.btn-icon {
+  display: inline-flex;
+  font-size: 16px;
+  block-size: 40px;
+  inline-size: 40px;
+  min-inline-size: 40px;
+  padding: 0;
+  align-items: center;
+  justify-content: center;
+}
+
+.btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
+  font-size: 14px;
+  block-size: 32px;
+  inline-size: 32px;
+  min-inline-size: 32px;
+}
+
+.btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
+  font-size: 18px;
+  block-size: 48px;
+  inline-size: 48px;
+  min-inline-size: 48px;
+}
+
+.btn-icon.btn-xl {
+  font-size: 24px;
+  block-size: 60px;
+  inline-size: 60px;
+  min-inline-size: 60px;
+}
+
+.btn.border-dashed {
+  border-style: dashed !important;
+}
+
+.btn.btn-facebook {
+  --facebook-btn-bg: #1877F2;
+  --facebook-btn-bg-hover: #166bda;
+  --facebook-btn-color: #fff;
+  --facebook-btn-color-hover: #fff;
+  background-color: var(--facebook-btn-bg);
+  color: var(--facebook-btn-color);
+}
+.btn.btn-facebook:hover, .btn.btn-facebook:active, .btn.btn-facebook:focus {
+  background-color: var(--facebook-btn-bg-hover);
+  color: var(--facebook-btn-color-hover);
+}
+
+.btn.btn-subtle-facebook {
+  --facebook-btn-bg: rgba(24, 119, 242, 0.2);
+  --facebook-btn-bg-hover: #1877F2;
+  --facebook-btn-color: #1877F2;
+  --facebook-btn-color-hover: #fff;
+  --facebook-btn-border-color: rgba(24, 119, 242, 0.1);
+  --facebook-btn-border-color-hover: #1877F2;
+  background-color: var(--facebook-btn-bg);
+  color: var(--facebook-btn-color);
+  border-color: var(--facebook-btn-border-color);
+}
+.btn.btn-subtle-facebook:hover, .btn.btn-subtle-facebook:active, .btn.btn-subtle-facebook:focus {
+  background-color: var(--facebook-btn-bg-hover);
+  color: var(--facebook-btn-color-hover);
+  border-color: var(--facebook-btn-border-color-hover);
+}
+
+.btn.btn-outline-facebook {
+  --facebook-btn-bg: rgba(24, 119, 242, 0.9);
+  --facebook-btn-bg-hover: #1877F2;
+  --facebook-btn-color: #1877F2;
+  --facebook-btn-color-hover: #fff;
+  --facebook-btn-border-color: #1877F2;
+  --facebook-btn-border-color-hover: #1877F2;
+  border: 1px solid var(--facebook-btn-border-color);
+  color: var(--facebook-btn-color);
+}
+.btn.btn-outline-facebook:hover, .btn.btn-outline-facebook:active, .btn.btn-outline-facebook:focus {
+  background-color: var(--facebook-btn-bg-hover);
+  color: var(--facebook-btn-color-hover);
+  border-color: var(--facebook-btn-border-color-hover);
+}
+
+.btn.btn-action-facebook {
+  --facebook-btn-bg: rgba(24, 119, 242, 0.2);
+  --facebook-btn-bg-hover: #1877F2;
+  --facebook-btn-color: #1877F2;
+  --facebook-btn-color-hover: #fff;
+  --facebook-btn-border-color: #1877F2;
+  --facebook-btn-border-color-hover: rgba(24, 119, 242, 0.1);
+  color: var(--facebook-btn-color);
+}
+.btn.btn-action-facebook:hover, .btn.btn-action-facebook:active, .btn.btn-action-facebook:focus {
+  background-color: var(--facebook-btn-bg);
+  color: var(--facebook-btn-color);
+  border-color: var(--facebook-btn-border-color-hover);
+}
+
+.btn.btn-twitter {
+  --twitter-btn-bg: #000000;
+  --twitter-btn-bg-hover: black;
+  --twitter-btn-color: #fff;
+  --twitter-btn-color-hover: #fff;
+  background-color: var(--twitter-btn-bg);
+  color: var(--twitter-btn-color);
+}
+.btn.btn-twitter:hover, .btn.btn-twitter:active, .btn.btn-twitter:focus {
+  background-color: var(--twitter-btn-bg-hover);
+  color: var(--twitter-btn-color-hover);
+}
+
+.btn.btn-subtle-twitter {
+  --twitter-btn-bg: rgba(0, 0, 0, 0.2);
+  --twitter-btn-bg-hover: #000000;
+  --twitter-btn-color: #000000;
+  --twitter-btn-color-hover: #fff;
+  --twitter-btn-border-color: rgba(0, 0, 0, 0.1);
+  --twitter-btn-border-color-hover: #000000;
+  background-color: var(--twitter-btn-bg);
+  color: var(--twitter-btn-color);
+  border-color: var(--twitter-btn-border-color);
+}
+.btn.btn-subtle-twitter:hover, .btn.btn-subtle-twitter:active, .btn.btn-subtle-twitter:focus {
+  background-color: var(--twitter-btn-bg-hover);
+  color: var(--twitter-btn-color-hover);
+  border-color: var(--twitter-btn-border-color-hover);
+}
+
+.btn.btn-outline-twitter {
+  --twitter-btn-bg: rgba(0, 0, 0, 0.9);
+  --twitter-btn-bg-hover: #000000;
+  --twitter-btn-color: #000000;
+  --twitter-btn-color-hover: #fff;
+  --twitter-btn-border-color: #000000;
+  --twitter-btn-border-color-hover: #000000;
+  border: 1px solid var(--twitter-btn-border-color);
+  color: var(--twitter-btn-color);
+}
+.btn.btn-outline-twitter:hover, .btn.btn-outline-twitter:active, .btn.btn-outline-twitter:focus {
+  background-color: var(--twitter-btn-bg-hover);
+  color: var(--twitter-btn-color-hover);
+  border-color: var(--twitter-btn-border-color-hover);
+}
+
+.btn.btn-action-twitter {
+  --twitter-btn-bg: rgba(0, 0, 0, 0.2);
+  --twitter-btn-bg-hover: #000000;
+  --twitter-btn-color: #000000;
+  --twitter-btn-color-hover: #fff;
+  --twitter-btn-border-color: #000000;
+  --twitter-btn-border-color-hover: rgba(0, 0, 0, 0.1);
+  color: var(--twitter-btn-color);
+}
+.btn.btn-action-twitter:hover, .btn.btn-action-twitter:active, .btn.btn-action-twitter:focus {
+  background-color: var(--twitter-btn-bg);
+  color: var(--twitter-btn-color);
+  border-color: var(--twitter-btn-border-color-hover);
+}
+
+.btn.btn-instagram {
+  --instagram-btn-bg: #ee7253;
+  --instagram-btn-bg-hover: #d6674b;
+  --instagram-btn-color: #fff;
+  --instagram-btn-color-hover: #fff;
+  background-color: var(--instagram-btn-bg);
+  color: var(--instagram-btn-color);
+}
+.btn.btn-instagram:hover, .btn.btn-instagram:active, .btn.btn-instagram:focus {
+  background-color: var(--instagram-btn-bg-hover);
+  color: var(--instagram-btn-color-hover);
+}
+
+.btn.btn-subtle-instagram {
+  --instagram-btn-bg: rgba(238, 114, 83, 0.2);
+  --instagram-btn-bg-hover: #ee7253;
+  --instagram-btn-color: #ee7253;
+  --instagram-btn-color-hover: #fff;
+  --instagram-btn-border-color: rgba(238, 114, 83, 0.1);
+  --instagram-btn-border-color-hover: #ee7253;
+  background-color: var(--instagram-btn-bg);
+  color: var(--instagram-btn-color);
+  border-color: var(--instagram-btn-border-color);
+}
+.btn.btn-subtle-instagram:hover, .btn.btn-subtle-instagram:active, .btn.btn-subtle-instagram:focus {
+  background-color: var(--instagram-btn-bg-hover);
+  color: var(--instagram-btn-color-hover);
+  border-color: var(--instagram-btn-border-color-hover);
+}
+
+.btn.btn-outline-instagram {
+  --instagram-btn-bg: rgba(238, 114, 83, 0.9);
+  --instagram-btn-bg-hover: #ee7253;
+  --instagram-btn-color: #ee7253;
+  --instagram-btn-color-hover: #fff;
+  --instagram-btn-border-color: #ee7253;
+  --instagram-btn-border-color-hover: #ee7253;
+  border: 1px solid var(--instagram-btn-border-color);
+  color: var(--instagram-btn-color);
+}
+.btn.btn-outline-instagram:hover, .btn.btn-outline-instagram:active, .btn.btn-outline-instagram:focus {
+  background-color: var(--instagram-btn-bg-hover);
+  color: var(--instagram-btn-color-hover);
+  border-color: var(--instagram-btn-border-color-hover);
+}
+
+.btn.btn-action-instagram {
+  --instagram-btn-bg: rgba(238, 114, 83, 0.2);
+  --instagram-btn-bg-hover: #ee7253;
+  --instagram-btn-color: #ee7253;
+  --instagram-btn-color-hover: #fff;
+  --instagram-btn-border-color: #ee7253;
+  --instagram-btn-border-color-hover: rgba(238, 114, 83, 0.1);
+  color: var(--instagram-btn-color);
+}
+.btn.btn-action-instagram:hover, .btn.btn-action-instagram:active, .btn.btn-action-instagram:focus {
+  background-color: var(--instagram-btn-bg);
+  color: var(--instagram-btn-color);
+  border-color: var(--instagram-btn-border-color-hover);
+}
+
+.btn.btn-github {
+  --github-btn-bg: #22252c;
+  --github-btn-bg-hover: #1f2128;
+  --github-btn-color: #fff;
+  --github-btn-color-hover: #fff;
+  background-color: var(--github-btn-bg);
+  color: var(--github-btn-color);
+}
+.btn.btn-github:hover, .btn.btn-github:active, .btn.btn-github:focus {
+  background-color: var(--github-btn-bg-hover);
+  color: var(--github-btn-color-hover);
+}
+
+.btn.btn-subtle-github {
+  --github-btn-bg: rgba(34, 37, 44, 0.2);
+  --github-btn-bg-hover: #22252c;
+  --github-btn-color: #22252c;
+  --github-btn-color-hover: #fff;
+  --github-btn-border-color: rgba(34, 37, 44, 0.1);
+  --github-btn-border-color-hover: #22252c;
+  background-color: var(--github-btn-bg);
+  color: var(--github-btn-color);
+  border-color: var(--github-btn-border-color);
+}
+.btn.btn-subtle-github:hover, .btn.btn-subtle-github:active, .btn.btn-subtle-github:focus {
+  background-color: var(--github-btn-bg-hover);
+  color: var(--github-btn-color-hover);
+  border-color: var(--github-btn-border-color-hover);
+}
+
+.btn.btn-outline-github {
+  --github-btn-bg: rgba(34, 37, 44, 0.9);
+  --github-btn-bg-hover: #22252c;
+  --github-btn-color: #22252c;
+  --github-btn-color-hover: #fff;
+  --github-btn-border-color: #22252c;
+  --github-btn-border-color-hover: #22252c;
+  border: 1px solid var(--github-btn-border-color);
+  color: var(--github-btn-color);
+}
+.btn.btn-outline-github:hover, .btn.btn-outline-github:active, .btn.btn-outline-github:focus {
+  background-color: var(--github-btn-bg-hover);
+  color: var(--github-btn-color-hover);
+  border-color: var(--github-btn-border-color-hover);
+}
+
+.btn.btn-action-github {
+  --github-btn-bg: rgba(34, 37, 44, 0.2);
+  --github-btn-bg-hover: #22252c;
+  --github-btn-color: #22252c;
+  --github-btn-color-hover: #fff;
+  --github-btn-border-color: #22252c;
+  --github-btn-border-color-hover: rgba(34, 37, 44, 0.1);
+  color: var(--github-btn-color);
+}
+.btn.btn-action-github:hover, .btn.btn-action-github:active, .btn.btn-action-github:focus {
+  background-color: var(--github-btn-bg);
+  color: var(--github-btn-color);
+  border-color: var(--github-btn-border-color-hover);
+}
+
+.btn.btn-youtube {
+  --youtube-btn-bg: #FF0000;
+  --youtube-btn-bg-hover: #e60000;
+  --youtube-btn-color: #fff;
+  --youtube-btn-color-hover: #fff;
+  background-color: var(--youtube-btn-bg);
+  color: var(--youtube-btn-color);
+}
+.btn.btn-youtube:hover, .btn.btn-youtube:active, .btn.btn-youtube:focus {
+  background-color: var(--youtube-btn-bg-hover);
+  color: var(--youtube-btn-color-hover);
+}
+
+.btn.btn-subtle-youtube {
+  --youtube-btn-bg: rgba(255, 0, 0, 0.2);
+  --youtube-btn-bg-hover: #FF0000;
+  --youtube-btn-color: #FF0000;
+  --youtube-btn-color-hover: #fff;
+  --youtube-btn-border-color: rgba(255, 0, 0, 0.1);
+  --youtube-btn-border-color-hover: #FF0000;
+  background-color: var(--youtube-btn-bg);
+  color: var(--youtube-btn-color);
+  border-color: var(--youtube-btn-border-color);
+}
+.btn.btn-subtle-youtube:hover, .btn.btn-subtle-youtube:active, .btn.btn-subtle-youtube:focus {
+  background-color: var(--youtube-btn-bg-hover);
+  color: var(--youtube-btn-color-hover);
+  border-color: var(--youtube-btn-border-color-hover);
+}
+
+.btn.btn-outline-youtube {
+  --youtube-btn-bg: rgba(255, 0, 0, 0.9);
+  --youtube-btn-bg-hover: #FF0000;
+  --youtube-btn-color: #FF0000;
+  --youtube-btn-color-hover: #fff;
+  --youtube-btn-border-color: #FF0000;
+  --youtube-btn-border-color-hover: #FF0000;
+  border: 1px solid var(--youtube-btn-border-color);
+  color: var(--youtube-btn-color);
+}
+.btn.btn-outline-youtube:hover, .btn.btn-outline-youtube:active, .btn.btn-outline-youtube:focus {
+  background-color: var(--youtube-btn-bg-hover);
+  color: var(--youtube-btn-color-hover);
+  border-color: var(--youtube-btn-border-color-hover);
+}
+
+.btn.btn-action-youtube {
+  --youtube-btn-bg: rgba(255, 0, 0, 0.2);
+  --youtube-btn-bg-hover: #FF0000;
+  --youtube-btn-color: #FF0000;
+  --youtube-btn-color-hover: #fff;
+  --youtube-btn-border-color: #FF0000;
+  --youtube-btn-border-color-hover: rgba(255, 0, 0, 0.1);
+  color: var(--youtube-btn-color);
+}
+.btn.btn-action-youtube:hover, .btn.btn-action-youtube:active, .btn.btn-action-youtube:focus {
+  background-color: var(--youtube-btn-bg);
+  color: var(--youtube-btn-color);
+  border-color: var(--youtube-btn-border-color-hover);
+}
+
+.btn.btn-linkedin {
+  --linkedin-btn-bg: #0A66C2;
+  --linkedin-btn-bg-hover: #095caf;
+  --linkedin-btn-color: #fff;
+  --linkedin-btn-color-hover: #fff;
+  background-color: var(--linkedin-btn-bg);
+  color: var(--linkedin-btn-color);
+}
+.btn.btn-linkedin:hover, .btn.btn-linkedin:active, .btn.btn-linkedin:focus {
+  background-color: var(--linkedin-btn-bg-hover);
+  color: var(--linkedin-btn-color-hover);
+}
+
+.btn.btn-subtle-linkedin {
+  --linkedin-btn-bg: rgba(10, 102, 194, 0.2);
+  --linkedin-btn-bg-hover: #0A66C2;
+  --linkedin-btn-color: #0A66C2;
+  --linkedin-btn-color-hover: #fff;
+  --linkedin-btn-border-color: rgba(10, 102, 194, 0.1);
+  --linkedin-btn-border-color-hover: #0A66C2;
+  background-color: var(--linkedin-btn-bg);
+  color: var(--linkedin-btn-color);
+  border-color: var(--linkedin-btn-border-color);
+}
+.btn.btn-subtle-linkedin:hover, .btn.btn-subtle-linkedin:active, .btn.btn-subtle-linkedin:focus {
+  background-color: var(--linkedin-btn-bg-hover);
+  color: var(--linkedin-btn-color-hover);
+  border-color: var(--linkedin-btn-border-color-hover);
+}
+
+.btn.btn-outline-linkedin {
+  --linkedin-btn-bg: rgba(10, 102, 194, 0.9);
+  --linkedin-btn-bg-hover: #0A66C2;
+  --linkedin-btn-color: #0A66C2;
+  --linkedin-btn-color-hover: #fff;
+  --linkedin-btn-border-color: #0A66C2;
+  --linkedin-btn-border-color-hover: #0A66C2;
+  border: 1px solid var(--linkedin-btn-border-color);
+  color: var(--linkedin-btn-color);
+}
+.btn.btn-outline-linkedin:hover, .btn.btn-outline-linkedin:active, .btn.btn-outline-linkedin:focus {
+  background-color: var(--linkedin-btn-bg-hover);
+  color: var(--linkedin-btn-color-hover);
+  border-color: var(--linkedin-btn-border-color-hover);
+}
+
+.btn.btn-action-linkedin {
+  --linkedin-btn-bg: rgba(10, 102, 194, 0.2);
+  --linkedin-btn-bg-hover: #0A66C2;
+  --linkedin-btn-color: #0A66C2;
+  --linkedin-btn-color-hover: #fff;
+  --linkedin-btn-border-color: #0A66C2;
+  --linkedin-btn-border-color-hover: rgba(10, 102, 194, 0.1);
+  color: var(--linkedin-btn-color);
+}
+.btn.btn-action-linkedin:hover, .btn.btn-action-linkedin:active, .btn.btn-action-linkedin:focus {
+  background-color: var(--linkedin-btn-bg);
+  color: var(--linkedin-btn-color);
+  border-color: var(--linkedin-btn-border-color-hover);
+}
+
+.btn.btn-whatsapp {
+  --whatsapp-btn-bg: #25D366;
+  --whatsapp-btn-bg-hover: #21be5c;
+  --whatsapp-btn-color: #fff;
+  --whatsapp-btn-color-hover: #fff;
+  background-color: var(--whatsapp-btn-bg);
+  color: var(--whatsapp-btn-color);
+}
+.btn.btn-whatsapp:hover, .btn.btn-whatsapp:active, .btn.btn-whatsapp:focus {
+  background-color: var(--whatsapp-btn-bg-hover);
+  color: var(--whatsapp-btn-color-hover);
+}
+
+.btn.btn-subtle-whatsapp {
+  --whatsapp-btn-bg: rgba(37, 211, 102, 0.2);
+  --whatsapp-btn-bg-hover: #25D366;
+  --whatsapp-btn-color: #25D366;
+  --whatsapp-btn-color-hover: #fff;
+  --whatsapp-btn-border-color: rgba(37, 211, 102, 0.1);
+  --whatsapp-btn-border-color-hover: #25D366;
+  background-color: var(--whatsapp-btn-bg);
+  color: var(--whatsapp-btn-color);
+  border-color: var(--whatsapp-btn-border-color);
+}
+.btn.btn-subtle-whatsapp:hover, .btn.btn-subtle-whatsapp:active, .btn.btn-subtle-whatsapp:focus {
+  background-color: var(--whatsapp-btn-bg-hover);
+  color: var(--whatsapp-btn-color-hover);
+  border-color: var(--whatsapp-btn-border-color-hover);
+}
+
+.btn.btn-outline-whatsapp {
+  --whatsapp-btn-bg: rgba(37, 211, 102, 0.9);
+  --whatsapp-btn-bg-hover: #25D366;
+  --whatsapp-btn-color: #25D366;
+  --whatsapp-btn-color-hover: #fff;
+  --whatsapp-btn-border-color: #25D366;
+  --whatsapp-btn-border-color-hover: #25D366;
+  border: 1px solid var(--whatsapp-btn-border-color);
+  color: var(--whatsapp-btn-color);
+}
+.btn.btn-outline-whatsapp:hover, .btn.btn-outline-whatsapp:active, .btn.btn-outline-whatsapp:focus {
+  background-color: var(--whatsapp-btn-bg-hover);
+  color: var(--whatsapp-btn-color-hover);
+  border-color: var(--whatsapp-btn-border-color-hover);
+}
+
+.btn.btn-action-whatsapp {
+  --whatsapp-btn-bg: rgba(37, 211, 102, 0.2);
+  --whatsapp-btn-bg-hover: #25D366;
+  --whatsapp-btn-color: #25D366;
+  --whatsapp-btn-color-hover: #fff;
+  --whatsapp-btn-border-color: #25D366;
+  --whatsapp-btn-border-color-hover: rgba(37, 211, 102, 0.1);
+  color: var(--whatsapp-btn-color);
+}
+.btn.btn-action-whatsapp:hover, .btn.btn-action-whatsapp:active, .btn.btn-action-whatsapp:focus {
+  background-color: var(--whatsapp-btn-bg);
+  color: var(--whatsapp-btn-color);
+  border-color: var(--whatsapp-btn-border-color-hover);
+}
+
+.btn.btn-pinterest {
+  --pinterest-btn-bg: #BD081C;
+  --pinterest-btn-bg-hover: #aa0719;
+  --pinterest-btn-color: #fff;
+  --pinterest-btn-color-hover: #fff;
+  background-color: var(--pinterest-btn-bg);
+  color: var(--pinterest-btn-color);
+}
+.btn.btn-pinterest:hover, .btn.btn-pinterest:active, .btn.btn-pinterest:focus {
+  background-color: var(--pinterest-btn-bg-hover);
+  color: var(--pinterest-btn-color-hover);
+}
+
+.btn.btn-subtle-pinterest {
+  --pinterest-btn-bg: rgba(189, 8, 28, 0.2);
+  --pinterest-btn-bg-hover: #BD081C;
+  --pinterest-btn-color: #BD081C;
+  --pinterest-btn-color-hover: #fff;
+  --pinterest-btn-border-color: rgba(189, 8, 28, 0.1);
+  --pinterest-btn-border-color-hover: #BD081C;
+  background-color: var(--pinterest-btn-bg);
+  color: var(--pinterest-btn-color);
+  border-color: var(--pinterest-btn-border-color);
+}
+.btn.btn-subtle-pinterest:hover, .btn.btn-subtle-pinterest:active, .btn.btn-subtle-pinterest:focus {
+  background-color: var(--pinterest-btn-bg-hover);
+  color: var(--pinterest-btn-color-hover);
+  border-color: var(--pinterest-btn-border-color-hover);
+}
+
+.btn.btn-outline-pinterest {
+  --pinterest-btn-bg: rgba(189, 8, 28, 0.9);
+  --pinterest-btn-bg-hover: #BD081C;
+  --pinterest-btn-color: #BD081C;
+  --pinterest-btn-color-hover: #fff;
+  --pinterest-btn-border-color: #BD081C;
+  --pinterest-btn-border-color-hover: #BD081C;
+  border: 1px solid var(--pinterest-btn-border-color);
+  color: var(--pinterest-btn-color);
+}
+.btn.btn-outline-pinterest:hover, .btn.btn-outline-pinterest:active, .btn.btn-outline-pinterest:focus {
+  background-color: var(--pinterest-btn-bg-hover);
+  color: var(--pinterest-btn-color-hover);
+  border-color: var(--pinterest-btn-border-color-hover);
+}
+
+.btn.btn-action-pinterest {
+  --pinterest-btn-bg: rgba(189, 8, 28, 0.2);
+  --pinterest-btn-bg-hover: #BD081C;
+  --pinterest-btn-color: #BD081C;
+  --pinterest-btn-color-hover: #fff;
+  --pinterest-btn-border-color: #BD081C;
+  --pinterest-btn-border-color-hover: rgba(189, 8, 28, 0.1);
+  color: var(--pinterest-btn-color);
+}
+.btn.btn-action-pinterest:hover, .btn.btn-action-pinterest:active, .btn.btn-action-pinterest:focus {
+  background-color: var(--pinterest-btn-bg);
+  color: var(--pinterest-btn-color);
+  border-color: var(--pinterest-btn-border-color-hover);
+}
+
+.btn.btn-snapchat {
+  --snapchat-btn-bg: #f7f400;
+  --snapchat-btn-bg-hover: #dedc00;
+  --snapchat-btn-color: #fff;
+  --snapchat-btn-color-hover: #fff;
+  background-color: var(--snapchat-btn-bg);
+  color: var(--snapchat-btn-color);
+}
+.btn.btn-snapchat:hover, .btn.btn-snapchat:active, .btn.btn-snapchat:focus {
+  background-color: var(--snapchat-btn-bg-hover);
+  color: var(--snapchat-btn-color-hover);
+}
+
+.btn.btn-subtle-snapchat {
+  --snapchat-btn-bg: rgba(247, 244, 0, 0.2);
+  --snapchat-btn-bg-hover: #f7f400;
+  --snapchat-btn-color: #f7f400;
+  --snapchat-btn-color-hover: #fff;
+  --snapchat-btn-border-color: rgba(247, 244, 0, 0.1);
+  --snapchat-btn-border-color-hover: #f7f400;
+  background-color: var(--snapchat-btn-bg);
+  color: var(--snapchat-btn-color);
+  border-color: var(--snapchat-btn-border-color);
+}
+.btn.btn-subtle-snapchat:hover, .btn.btn-subtle-snapchat:active, .btn.btn-subtle-snapchat:focus {
+  background-color: var(--snapchat-btn-bg-hover);
+  color: var(--snapchat-btn-color-hover);
+  border-color: var(--snapchat-btn-border-color-hover);
+}
+
+.btn.btn-outline-snapchat {
+  --snapchat-btn-bg: rgba(247, 244, 0, 0.9);
+  --snapchat-btn-bg-hover: #f7f400;
+  --snapchat-btn-color: #f7f400;
+  --snapchat-btn-color-hover: #fff;
+  --snapchat-btn-border-color: #f7f400;
+  --snapchat-btn-border-color-hover: #f7f400;
+  border: 1px solid var(--snapchat-btn-border-color);
+  color: var(--snapchat-btn-color);
+}
+.btn.btn-outline-snapchat:hover, .btn.btn-outline-snapchat:active, .btn.btn-outline-snapchat:focus {
+  background-color: var(--snapchat-btn-bg-hover);
+  color: var(--snapchat-btn-color-hover);
+  border-color: var(--snapchat-btn-border-color-hover);
+}
+
+.btn.btn-action-snapchat {
+  --snapchat-btn-bg: rgba(247, 244, 0, 0.2);
+  --snapchat-btn-bg-hover: #f7f400;
+  --snapchat-btn-color: #f7f400;
+  --snapchat-btn-color-hover: #fff;
+  --snapchat-btn-border-color: #f7f400;
+  --snapchat-btn-border-color-hover: rgba(247, 244, 0, 0.1);
+  color: var(--snapchat-btn-color);
+}
+.btn.btn-action-snapchat:hover, .btn.btn-action-snapchat:active, .btn.btn-action-snapchat:focus {
+  background-color: var(--snapchat-btn-bg);
+  color: var(--snapchat-btn-color);
+  border-color: var(--snapchat-btn-border-color-hover);
+}
+
+.btn.btn-telegram {
+  --telegram-btn-bg: #0088CC;
+  --telegram-btn-bg-hover: #007ab8;
+  --telegram-btn-color: #fff;
+  --telegram-btn-color-hover: #fff;
+  background-color: var(--telegram-btn-bg);
+  color: var(--telegram-btn-color);
+}
+.btn.btn-telegram:hover, .btn.btn-telegram:active, .btn.btn-telegram:focus {
+  background-color: var(--telegram-btn-bg-hover);
+  color: var(--telegram-btn-color-hover);
+}
+
+.btn.btn-subtle-telegram {
+  --telegram-btn-bg: rgba(0, 136, 204, 0.2);
+  --telegram-btn-bg-hover: #0088CC;
+  --telegram-btn-color: #0088CC;
+  --telegram-btn-color-hover: #fff;
+  --telegram-btn-border-color: rgba(0, 136, 204, 0.1);
+  --telegram-btn-border-color-hover: #0088CC;
+  background-color: var(--telegram-btn-bg);
+  color: var(--telegram-btn-color);
+  border-color: var(--telegram-btn-border-color);
+}
+.btn.btn-subtle-telegram:hover, .btn.btn-subtle-telegram:active, .btn.btn-subtle-telegram:focus {
+  background-color: var(--telegram-btn-bg-hover);
+  color: var(--telegram-btn-color-hover);
+  border-color: var(--telegram-btn-border-color-hover);
+}
+
+.btn.btn-outline-telegram {
+  --telegram-btn-bg: rgba(0, 136, 204, 0.9);
+  --telegram-btn-bg-hover: #0088CC;
+  --telegram-btn-color: #0088CC;
+  --telegram-btn-color-hover: #fff;
+  --telegram-btn-border-color: #0088CC;
+  --telegram-btn-border-color-hover: #0088CC;
+  border: 1px solid var(--telegram-btn-border-color);
+  color: var(--telegram-btn-color);
+}
+.btn.btn-outline-telegram:hover, .btn.btn-outline-telegram:active, .btn.btn-outline-telegram:focus {
+  background-color: var(--telegram-btn-bg-hover);
+  color: var(--telegram-btn-color-hover);
+  border-color: var(--telegram-btn-border-color-hover);
+}
+
+.btn.btn-action-telegram {
+  --telegram-btn-bg: rgba(0, 136, 204, 0.2);
+  --telegram-btn-bg-hover: #0088CC;
+  --telegram-btn-color: #0088CC;
+  --telegram-btn-color-hover: #fff;
+  --telegram-btn-border-color: #0088CC;
+  --telegram-btn-border-color-hover: rgba(0, 136, 204, 0.1);
+  color: var(--telegram-btn-color);
+}
+.btn.btn-action-telegram:hover, .btn.btn-action-telegram:active, .btn.btn-action-telegram:focus {
+  background-color: var(--telegram-btn-bg);
+  color: var(--telegram-btn-color);
+  border-color: var(--telegram-btn-border-color-hover);
+}
+
+.btn.btn-tiktok {
+  --tiktok-btn-bg: #010101;
+  --tiktok-btn-bg-hover: #010101;
+  --tiktok-btn-color: #fff;
+  --tiktok-btn-color-hover: #fff;
+  background-color: var(--tiktok-btn-bg);
+  color: var(--tiktok-btn-color);
+}
+.btn.btn-tiktok:hover, .btn.btn-tiktok:active, .btn.btn-tiktok:focus {
+  background-color: var(--tiktok-btn-bg-hover);
+  color: var(--tiktok-btn-color-hover);
+}
+
+.btn.btn-subtle-tiktok {
+  --tiktok-btn-bg: rgba(1, 1, 1, 0.2);
+  --tiktok-btn-bg-hover: #010101;
+  --tiktok-btn-color: #010101;
+  --tiktok-btn-color-hover: #fff;
+  --tiktok-btn-border-color: rgba(1, 1, 1, 0.1);
+  --tiktok-btn-border-color-hover: #010101;
+  background-color: var(--tiktok-btn-bg);
+  color: var(--tiktok-btn-color);
+  border-color: var(--tiktok-btn-border-color);
+}
+.btn.btn-subtle-tiktok:hover, .btn.btn-subtle-tiktok:active, .btn.btn-subtle-tiktok:focus {
+  background-color: var(--tiktok-btn-bg-hover);
+  color: var(--tiktok-btn-color-hover);
+  border-color: var(--tiktok-btn-border-color-hover);
+}
+
+.btn.btn-outline-tiktok {
+  --tiktok-btn-bg: rgba(1, 1, 1, 0.9);
+  --tiktok-btn-bg-hover: #010101;
+  --tiktok-btn-color: #010101;
+  --tiktok-btn-color-hover: #fff;
+  --tiktok-btn-border-color: #010101;
+  --tiktok-btn-border-color-hover: #010101;
+  border: 1px solid var(--tiktok-btn-border-color);
+  color: var(--tiktok-btn-color);
+}
+.btn.btn-outline-tiktok:hover, .btn.btn-outline-tiktok:active, .btn.btn-outline-tiktok:focus {
+  background-color: var(--tiktok-btn-bg-hover);
+  color: var(--tiktok-btn-color-hover);
+  border-color: var(--tiktok-btn-border-color-hover);
+}
+
+.btn.btn-action-tiktok {
+  --tiktok-btn-bg: rgba(1, 1, 1, 0.2);
+  --tiktok-btn-bg-hover: #010101;
+  --tiktok-btn-color: #010101;
+  --tiktok-btn-color-hover: #fff;
+  --tiktok-btn-border-color: #010101;
+  --tiktok-btn-border-color-hover: rgba(1, 1, 1, 0.1);
+  color: var(--tiktok-btn-color);
+}
+.btn.btn-action-tiktok:hover, .btn.btn-action-tiktok:active, .btn.btn-action-tiktok:focus {
+  background-color: var(--tiktok-btn-bg);
+  color: var(--tiktok-btn-color);
+  border-color: var(--tiktok-btn-border-color-hover);
+}
+
+.btn.btn-reddit {
+  --reddit-btn-bg: #FF4500;
+  --reddit-btn-bg-hover: #e63e00;
+  --reddit-btn-color: #fff;
+  --reddit-btn-color-hover: #fff;
+  background-color: var(--reddit-btn-bg);
+  color: var(--reddit-btn-color);
+}
+.btn.btn-reddit:hover, .btn.btn-reddit:active, .btn.btn-reddit:focus {
+  background-color: var(--reddit-btn-bg-hover);
+  color: var(--reddit-btn-color-hover);
+}
+
+.btn.btn-subtle-reddit {
+  --reddit-btn-bg: rgba(255, 69, 0, 0.2);
+  --reddit-btn-bg-hover: #FF4500;
+  --reddit-btn-color: #FF4500;
+  --reddit-btn-color-hover: #fff;
+  --reddit-btn-border-color: rgba(255, 69, 0, 0.1);
+  --reddit-btn-border-color-hover: #FF4500;
+  background-color: var(--reddit-btn-bg);
+  color: var(--reddit-btn-color);
+  border-color: var(--reddit-btn-border-color);
+}
+.btn.btn-subtle-reddit:hover, .btn.btn-subtle-reddit:active, .btn.btn-subtle-reddit:focus {
+  background-color: var(--reddit-btn-bg-hover);
+  color: var(--reddit-btn-color-hover);
+  border-color: var(--reddit-btn-border-color-hover);
+}
+
+.btn.btn-outline-reddit {
+  --reddit-btn-bg: rgba(255, 69, 0, 0.9);
+  --reddit-btn-bg-hover: #FF4500;
+  --reddit-btn-color: #FF4500;
+  --reddit-btn-color-hover: #fff;
+  --reddit-btn-border-color: #FF4500;
+  --reddit-btn-border-color-hover: #FF4500;
+  border: 1px solid var(--reddit-btn-border-color);
+  color: var(--reddit-btn-color);
+}
+.btn.btn-outline-reddit:hover, .btn.btn-outline-reddit:active, .btn.btn-outline-reddit:focus {
+  background-color: var(--reddit-btn-bg-hover);
+  color: var(--reddit-btn-color-hover);
+  border-color: var(--reddit-btn-border-color-hover);
+}
+
+.btn.btn-action-reddit {
+  --reddit-btn-bg: rgba(255, 69, 0, 0.2);
+  --reddit-btn-bg-hover: #FF4500;
+  --reddit-btn-color: #FF4500;
+  --reddit-btn-color-hover: #fff;
+  --reddit-btn-border-color: #FF4500;
+  --reddit-btn-border-color-hover: rgba(255, 69, 0, 0.1);
+  color: var(--reddit-btn-color);
+}
+.btn.btn-action-reddit:hover, .btn.btn-action-reddit:active, .btn.btn-action-reddit:focus {
+  background-color: var(--reddit-btn-bg);
+  color: var(--reddit-btn-color);
+  border-color: var(--reddit-btn-border-color-hover);
+}
+
+.btn.btn-snapchat {
+  --snapchat-btn-color: #000;
+  --snapchat-btn-color-hover: #000;
+}
+
+.btn.btn-subtle-snapchat {
+  --snapchat-btn-color: #000;
+  --snapchat-btn-color-hover: #000;
+}
+
+.btn.btn-outline-snapchat {
+  --snapchat-btn-color-hover: #000000;
+}
+
+.btn.btn-action-snapchat {
+  --snapchat-btn-color: #000000;
+  --snapchat-btn-color-hover: #000000;
+}
+
+.card {
+  margin-bottom: var(--bs-gutter-x);
+ 
+}
+
+.card-header .card-text {
+  font-size: 13px;
+  font-weight: 400;
+}
+
+.card-title {
+  color: var(--bs-heading-color);
+  margin-bottom: 0.25rem;
+  font-size: 16px;
+}
+
+.card-group {
+  height: calc(100% - var(--bs-gutter-x));
+  margin-bottom: var(--bs-gutter-x);
+}
+.card-group .card {
+  --bs-card-height: none;
+}
+
+.modal-content {
+  box-shadow: var(--bs-box-shadow-lg);
+}
+
+@keyframes modalIn {
+  0% {
+    opacity: 0;
+    transform: translateY(-35px) scale(0.95);
+  }
+  50% {
+    transform: translateY(0) scale(0.95);
+    opacity: 1;
+  }
+  100% {
+    transform: translateY(0) scale(1);
+    opacity: 1;
+  }
+}
+.badge {
+  line-height: 1.5;
+  block-size: 26px;
+  min-inline-size: 26px;
+  padding: 5px 10px;
+}
+
+.badge-sm {
+  font-size: 11px;
+  line-height: 1.31;
+  padding: 3px 8px;
+  block-size: 20px;
+  min-inline-size: 20px;
+  font-weight: 700;
+}
+.badge-sm.rounded-pill {
+  padding: 3px;
+}
+
+.badge-lg {
+  font-size: 13px;
+  line-height: 1.231;
+  block-size: 32px;
+  min-inline-size: 32px;
+  padding: 8px 12px;
+}
+
+.alert i {
+  vertical-align: -3px;
+  font-size: 16px;
+}
+
+.progress-sm {
+  height: 6px;
+}
+
+.progress-lg {
+  height: 16px;
+}
+
+.progress .progress-bar {
+  border-radius: inherit;
+}
+
+.pagination .page-link {
+  display: inline-flex;
+  justify-content: center;
+  align-items: center;
+  min-block-size: 35px;
+  min-inline-size: 35px;
+  line-height: 1.2;
+  font-weight: 500;
+}
+.pagination .page-link i {
+  font-size: 12px;
+}
+
+.pagination-lg .page-link {
+  min-block-size: 42px;
+  min-inline-size: 42px;
+  font-size: 15px;
+}
+.pagination-lg .page-link i {
+  font-size: 14px;
+}
+
+.pagination-sm .page-link {
+  min-block-size: 28px;
+  min-inline-size: 28px;
+  font-size: 12px;
+}
+.pagination-sm .page-link i {
+  font-size: 10px;
+}
+
+.pagination-rounded .page-link {
+  border-radius: 50%;
+}
+
+.pagination-primary {
+  --bs-pagination-active-bg: var(--bs-secondary);
+  --bs-pagination-color: var(--bs-secondary);
+  --bs-pagination-active-border-color: var(--bs-secondary);
+  --bs-pagination-hover-bg: var(--bs-secondary);
+  --bs-pagination-border-color: var(--bs-secondary-bg-subtle);
+  --bs-pagination-bg: var(--bs-secondary-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-secondary);
+}
+
+.pagination-secondary {
+  --bs-pagination-active-bg: var(--bs-secondary);
+  --bs-pagination-color: var(--bs-secondary);
+  --bs-pagination-active-border-color: var(--bs-secondary);
+  --bs-pagination-hover-bg: var(--bs-secondary);
+  --bs-pagination-border-color: var(--bs-secondary-bg-subtle);
+  --bs-pagination-bg: var(--bs-secondary-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-secondary);
+}
+
+.pagination-danger {
+  --bs-pagination-active-bg: var(--bs-danger);
+  --bs-pagination-color: var(--bs-danger);
+  --bs-pagination-active-border-color: var(--bs-danger);
+  --bs-pagination-hover-bg: var(--bs-danger);
+  --bs-pagination-border-color: var(--bs-danger-bg-subtle);
+  --bs-pagination-bg: var(--bs-danger-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-danger);
+}
+
+.pagination-success {
+  --bs-pagination-active-bg: var(--bs-success);
+  --bs-pagination-color: var(--bs-success);
+  --bs-pagination-active-border-color: var(--bs-success);
+  --bs-pagination-hover-bg: var(--bs-success);
+  --bs-pagination-border-color: var(--bs-success-bg-subtle);
+  --bs-pagination-bg: var(--bs-success-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-success);
+}
+
+.pagination-info {
+  --bs-pagination-active-bg: var(--bs-info);
+  --bs-pagination-color: var(--bs-info);
+  --bs-pagination-active-border-color: var(--bs-info);
+  --bs-pagination-hover-bg: var(--bs-info);
+  --bs-pagination-border-color: var(--bs-info-bg-subtle);
+  --bs-pagination-bg: var(--bs-info-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-info);
+}
+
+.pagination-warning {
+  --bs-pagination-active-bg: var(--bs-warning);
+  --bs-pagination-color: var(--bs-warning);
+  --bs-pagination-active-border-color: var(--bs-warning);
+  --bs-pagination-hover-bg: var(--bs-warning);
+  --bs-pagination-border-color: var(--bs-warning-bg-subtle);
+  --bs-pagination-bg: var(--bs-warning-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-warning);
+}
+
+.pagination-dark {
+  --bs-pagination-active-bg: var(--bs-dark);
+  --bs-pagination-color: var(--bs-dark);
+  --bs-pagination-active-border-color: var(--bs-dark);
+  --bs-pagination-hover-bg: var(--bs-dark);
+  --bs-pagination-border-color: var(--bs-dark-bg-subtle);
+  --bs-pagination-bg: var(--bs-dark-bg-subtle);
+  --bs-pagination-focus-bg: var(--bs-dark);
+}
+
+.pagination-outline-primary {
+  --bs-pagination-active-bg: var(--bs-secondary);
+  --bs-pagination-color: var(--bs-secondary);
+  --bs-pagination-active-border-color: var(--bs-secondary);
+  --bs-pagination-hover-bg: var(--bs-secondary);
+  --bs-pagination-border-color: rgba(var(--bs-secondary-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-secondary);
+}
+
+.pagination-outline-secondary {
+  --bs-pagination-active-bg: var(--bs-secondary);
+  --bs-pagination-color: var(--bs-secondary);
+  --bs-pagination-active-border-color: var(--bs-secondary);
+  --bs-pagination-hover-bg: var(--bs-secondary);
+  --bs-pagination-border-color: rgba(var(--bs-secondary-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-secondary);
+}
+
+.pagination-outline-danger {
+  --bs-pagination-active-bg: var(--bs-danger);
+  --bs-pagination-color: var(--bs-danger);
+  --bs-pagination-active-border-color: var(--bs-danger);
+  --bs-pagination-hover-bg: var(--bs-danger);
+  --bs-pagination-border-color: rgba(var(--bs-danger-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-danger);
+}
+
+.pagination-outline-success {
+  --bs-pagination-active-bg: var(--bs-success);
+  --bs-pagination-color: var(--bs-success);
+  --bs-pagination-active-border-color: var(--bs-success);
+  --bs-pagination-hover-bg: var(--bs-success);
+  --bs-pagination-border-color: rgba(var(--bs-success-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-success);
+}
+
+.pagination-outline-info {
+  --bs-pagination-active-bg: var(--bs-info);
+  --bs-pagination-color: var(--bs-info);
+  --bs-pagination-active-border-color: var(--bs-info);
+  --bs-pagination-hover-bg: var(--bs-info);
+  --bs-pagination-border-color: rgba(var(--bs-info-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-info);
+}
+
+.pagination-outline-warning {
+  --bs-pagination-active-bg: var(--bs-warning);
+  --bs-pagination-color: var(--bs-warning);
+  --bs-pagination-active-border-color: var(--bs-warning);
+  --bs-pagination-hover-bg: var(--bs-warning);
+  --bs-pagination-border-color: rgba(var(--bs-warning-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-warning);
+}
+
+.pagination-outline-dark {
+  --bs-pagination-active-bg: var(--bs-dark);
+  --bs-pagination-color: var(--bs-dark);
+  --bs-pagination-active-border-color: var(--bs-dark);
+  --bs-pagination-hover-bg: var(--bs-dark);
+  --bs-pagination-border-color: rgba(var(--bs-dark-rgb), 0.2);
+  --bs-pagination-focus-bg: var(--bs-dark);
+}
+
+.list-group-outer {
+  margin-left: -10px;
+  margin-right: -10px;
+}
+
+.list-group-unlined {
+  --bs-list-group-border-width: 0 !important;
+}
+.list-group-unlined .list-group-item {
+  border-width: 0 !important;
+}
+
+.list-group-space-sm .list-group-item:not(:last-child) {
+  margin-bottom: 5px;
+}
+.list-group-space .list-group-item:not(:last-child) {
+  margin-bottom: 10px;
+}
+.list-group-space-lg .list-group-item:not(:last-child) {
+  margin-bottom: 15px;
+}
+
+.list-group-hover .list-group-item {
+  transition: background-color, 0.3s, ease;
+}
+@media (prefers-reduced-motion: reduce) {
+  .list-group-hover .list-group-item {
+    transition: none;
+  }
+}
+.list-group-hover .list-group-item:hover {
+  background-color: rgba(var(--bs-secondary-rgb), 0.05);
+  border-color: rgba(var(--bs-secondary-rgb), 0.05);
+}
+
+.list-group-smooth {
+  --bs-list-group-item-padding-x: 10px;
+  --bs-list-group-item-padding-y: 10px;
+  --bs-list-group-border-width: 1px;
+}
+.list-group-smooth .list-group-item {
+  border-width: 1px;
+  border-radius: var(--bs-border-radius-lg);
+}
+
+.list-group-item-action.active {
+  --bs-heading-color: #fff;
+}
+
+th {
+  font-weight: 500;
+}
+
+.table-row-rounded tr th:first-child,
+.table-row-rounded tr td:first-child {
+  border-top-left-radius: var(--bs-border-radius-lg);
+  border-bottom-left-radius: var(--bs-border-radius-lg);
+}
+.table-row-rounded tr th:last-child,
+.table-row-rounded tr td:last-child {
+  border-top-right-radius: var(--bs-border-radius-lg);
+  border-bottom-right-radius: var(--bs-border-radius-lg);
+}
+
+.table-sm {
+  font-size: 13px;
+}
+.table-sm thead th {
+  padding-top: 10px;
+  padding-bottom: 10px;
+}
+.table-sm thead th:first-child {
+  padding-left: 15px;
+}
+.table-sm thead th:last-child {
+  padding-right: 15px;
+}
+.table-sm tbody td:first-child {
+  padding-left: 15px;
+}
+.table-sm tbody td:last-child {
+  padding-right: 15px;
+}
+
+.table-border-bottom-0 tbody tr:last-child td {
+  border-bottom: 0;
+}
+
+html[data-bs-theme=dark] .table-light {
+  --bs-table-color: #ffffff;
+  --bs-table-bg: #1a1c31;
+  --bs-table-border-color: var(--bs-border-color);
+}
+
+.table-light {
+  --bs-table-bg: var(--bs-light);
+}
+
+.table-primary {
+  --bs-table-bg: var(--bs-light-bg-subtle);
+}
+
+.offcanvas {
+  box-shadow: var(--bs-offcanvas-box-shadow);
+}
+
+.tooltip-primary {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-secondary);
+}
+
+.tooltip-secondary {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-secondary);
+}
+
+.tooltip-success {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-success);
+}
+
+.tooltip-info {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-info);
+}
+
+.tooltip-dark {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-dark);
+}
+
+.tooltip-warning {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-warning);
+}
+
+.tooltip-danger {
+  --bs-tooltip-color: #fff;
+  --bs-tooltip-bg: var(--bs-danger);
+}
+
+table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order {
+  width: 13px;
+  height: 13px;
+  display: flex;
+  align-items: center;
+}
+table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order::before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order::after {
+  font-family: uicons-regular-rounded;
+  opacity: 1;
+  color: var(--bs-body-color);
+  font-size: 10px;
+  position: static;
+  font-weight: 500;
+  display: inline-flex;
+  margin: -2px;
+  line-height: 10px;
+}
+table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::after {
+  opacity: 0.5;
+}
+table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::before {
+  opacity: 0.5;
+}
+table.dataTable thead > tr > th.dt-orderable-asc .dt-column-order::before {
+  content: "\f1b9" !important;
+}
+table.dataTable thead > tr > th.dt-orderable-asc .dt-column-order::after {
+  content: "\f18f" !important;
+}
+table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover {
+  outline: 0;
+}
+
+table.dataTable thead > tr > th div.dt-column-header,
+table.dataTable thead > tr > th div.dt-column-footer,
+table.dataTable thead > tr > td div.dt-column-header,
+table.dataTable thead > tr > td div.dt-column-footer,
+table.dataTable tfoot > tr > th div.dt-column-header,
+table.dataTable tfoot > tr > th div.dt-column-footer,
+table.dataTable tfoot > tr > td div.dt-column-header,
+table.dataTable tfoot > tr > td div.dt-column-footer {
+  justify-content: normal;
+  align-items: center;
+  gap: 7px;
+}
+
+table.dataTable thead > tr > th div.dt-column-header span.dt-column-title,
+table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title,
+table.dataTable thead > tr > td div.dt-column-header span.dt-column-title,
+table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title,
+table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title,
+table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title,
+table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title,
+table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title {
+  flex-grow: initial;
+}
+
+.dt-search {
+  position: relative;
+}
+.dt-search i {
+  position: absolute;
+  left: 10px;
+  top: 50%;
+  transform: translateY(-50%);
+}
+.dt-search i + input {
+  padding-left: 30px;
+}
+
+.dt-scroll-body {
+  scrollbar-width: thin;
+  scrollbar-color: #EAEAEA transparent;
+}
+.dt-scroll-body::-webkit-scrollbar {
+  width: 4px;
+  height: 4px;
+}
+.dt-scroll-body::-webkit-scrollbar-track {
+  background: transparent;
+  border-radius: 10px;
+}
+.dt-scroll-body::-webkit-scrollbar-thumb {
+  background: #EAEAEA;
+  border-radius: 10px;
+  transition: background 0.3s;
+}
+
+thead.table-primary th,
+thead.table-secondary th,
+thead.table-dark th,
+thead.table-light th,
+thead.table-success th,
+thead.table-info th,
+thead.table-danger th,
+thead.table-warning th {
+  border-bottom: 0;
+}
+
+.dt-layout-table + div {
+  padding-left: 20px;
+  padding-right: 20px;
+}
+
+.dt-container th.text-end .dt-column-header {
+  justify-content: flex-end;
+}
+
+table.dataTable th.dt-type-numeric div.dt-column-header {
+  flex-direction: row;
+}
+
+table.dataTable th.dt-type-numeric,
+table.dataTable th.dt-type-date,
+table.dataTable td.dt-type-numeric,
+table.dataTable td.dt-type-date {
+  text-align: left;
+}
+
+.dt-orderable-none .dt-column-order {
+  display: none;
+}
+
+table.dataTable tbody td.dt-control:before {
+  border-left: 10px solid var(--bs-heading-color);
+}
+
+table.dataTable tbody tr.dt-hasChild td.dt-control:before {
+  border-top: 10px solid var(--bs-heading-color);
+}
+
+.dt-container .dt-layout-full {
+  overflow-x: auto;
+  -webkit-overflow-scrolling: touch;
+}
+
+.dropdown-menu {
+  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
+}
+
+.dropdown-item {
+  border-radius: 0.375rem;
+}
+
+.dropdown-menu-right {
+  --bs-position: end;
+}
+
+.dropdown.bootstrap-select {
+  width: auto !important;
+}
+.dropdown.bootstrap-select .dropdown-toggle {
+  outline: 0 !important;
+}
+
+.dropdown-toggle.btn-sm + .dropdown-menu, .btn-group-sm > .dropdown-toggle.btn + .dropdown-menu {
+  --bs-dropdown-item-padding-x: 12px;
+  --bs-dropdown-item-padding-y: 6px;
+  --bs-dropdown-font-size: 13px;
+  --bs-dropdown-min-width: 8rem;
+}
+
+.dropdown-toggle::after,
+.dropstart .dropdown-toggle::before,
+.dropend .dropdown-toggle::after,
+.dropup .dropdown-toggle::after {
+  font-family: uicons-regular-straight;
+  font-size: 15px;
+  width: 15px;
+  height: 15px;
+  display: inline-flex;
+  align-items: center;
+  color: inherit;
+  transition: 0.2s all linear;
+  border: 0;
+  vertical-align: middle;
+}
+
+.dropdown-toggle::after {
+  content: "\f153";
+  margin-left: 2px;
+  margin-right: -2px;
+}
+.dropdown-toggle.dropdown-toggle-split::after {
+  margin-left: -2px;
+}
+
+.dropstart .dropdown-toggle::before {
+  content: "\f154";
+  margin-right: 1px;
+}
+
+.dropend .dropdown-toggle::after {
+  content: "\f155";
+  margin-left: 1px;
+}
+
+.dropup .dropdown-toggle::after {
+  content: "\f156";
+  margin-left: 1px;
+}
+
+.dropdown-toggle-split {
+  border-left: 1px solid rgba(255, 255, 255, 0.15);
+}
+
+.btn-icon.dropdown-toggle::before, .btn-icon.dropdown-toggle::after {
+  content: none;
+}
+
+.popover {
+  box-shadow: var(--bs-box-shadow-lg);
+}
+
+.popover-primary,
+.popover-secondary,
+.popover-success,
+.popover-danger,
+.popover-dark,
+.popover-info,
+.popover-warning {
+  --bs-popover-body-color: #fff;
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: rgba(255, 255, 255, 0.1);
+}
+
+.popover-primary {
+  --bs-popover-bg: var(--bs-secondary);
+}
+
+.popover-secondary {
+  --bs-popover-bg: var(--bs-secondary);
+}
+
+.popover-success {
+  --bs-popover-bg: var(--bs-success);
+}
+
+.popover-danger {
+  --bs-popover-bg: var(--bs-danger);
+}
+
+.popover-dark {
+  --bs-popover-bg: var(--bs-dark);
+}
+
+.popover-info {
+  --bs-popover-bg: var(--bs-info);
+}
+
+.popover-warning {
+  --bs-popover-bg: var(--bs-warning);
+}
+
+.popover-header-primary {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-secondary);
+}
+
+.popover-header-secondary {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-secondary);
+}
+
+.popover-header-success {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-success);
+}
+
+.popover-header-danger {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-danger);
+}
+
+.popover-header-dark {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-dark);
+}
+
+.popover-header-info {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-info);
+}
+
+.popover-header-warning {
+  --bs-popover-header-color: #fff;
+  --bs-popover-header-bg: var(--bs-warning);
+}
+
+.navbar.bg-dark,
+.navbar.bg-primary,
+.navbar.bg-secondary,
+.navbar.bg-info,
+.navbar.bg-warning,
+.navbar.bg-success,
+.navbar.bg-danger {
+  --bs-navbar-active-color: #fff;
+  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.5);
+  --bs-navbar-color: rgba(255, 255, 255, 0.8);
+  --bs-navbar-hover-color: #fff;
+  --bs-navbar-brand-color: #fff;
+  --bs-navbar-brand-hover-color: #fff;
+  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.2);
+  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
+}
+
+.tab-content .tab-pane.show {
+  transform: unset !important;
+  transition: all ease-out 0.2s;
+}
+.tab-content .tab-pane.tab-fade-up {
+  transform: translateY(-10px);
+}
+.tab-content .tab-pane.tab-fade-up.show {
+  transform: translateY(0);
+}
+.tab-content .tab-pane.tab-fade-down {
+  transform: translateY(10px);
+}
+.tab-content .tab-pane.tab-fade-down.show {
+  transform: translateY(0);
+}
+.tab-content .tab-pane.tab-fade-start {
+  transform: translateX(-10px);
+}
+.tab-content .tab-pane.tab-fade-end.show {
+  transform: translateX(0);
+}
+.tab-content .tab-pane.tab-fade-end {
+  transform: translateX(10px);
+}
+.tab-content .tab-pane.tab-fade-up.show {
+  transform: translateX(0);
+}
+
+.nav-underline .nav-link.active,
+.nav-underline .show > .nav-link {
+  font-weight: 500;
+}
+
+.nav-underline.card-header-tabs {
+  margin-top: calc(-1 * var(--bs-card-cap-padding-y));
+  margin-left: 0;
+  margin-right: 0;
+}
+.nav-underline.card-header-tabs .nav-link.active {
+  border-bottom-color: var(--bs-nav-underline-link-active-color);
+}
+.nav-underline.card-header-tabs .nav-link {
+  --bs-nav-link-padding-y: 14px;
+}
+
+.card-header-pills {
+  margin-right: 0;
+  margin-left: 0;
+  margin-top: calc(-0.5 * var(--bs-card-cap-padding-y));
+  margin-bottom: calc(-0.5 * var(--bs-card-cap-padding-y));
+}
+
+.sortable-handle {
+  cursor: grab;
+}
+
+.blockquote,
+blockquote.blockquote {
+  --blockquote-spacing: 30px;
+  position: relative;
+  background-color: rgba(var(--bs-secondary-rgb), 0.08);
+  padding: var(--blockquote-spacing) calc(var(--blockquote-spacing) + 50px) var(--blockquote-spacing) calc(var(--blockquote-spacing) + 70px);
+  font-size: 16px;
+  color: var(--bs-heading-color);
+  font-weight: 600;
+}
+.blockquote::before,
+blockquote.blockquote::before {
+  content: "";
+  height: 40px;
+  width: 40px;
+  display: inline-block;
+  background-color: var(--bs-secondary);
+  -webkit-mask: url("data:image/svg+xml,<svg width='40' height='30' viewBox='0 0 40 30' xmlns='http://www.w3.org/2000/svg'><path d='M0 0V30L15 15V0H0Z'/><path d='M25 0V30L40 15V0H25Z'/></svg>") no-repeat center/contain;
+  mask: url("data:image/svg+xml,<svg width='40' height='30' viewBox='0 0 40 30' xmlns='http://www.w3.org/2000/svg'><path d='M0 0V30L15 15V0H0Z'/><path d='M25 0V30L40 15V0H25Z'/></svg>") no-repeat center/contain;
+  position: absolute;
+  left: var(--blockquote-spacing);
+  top: var(--blockquote-spacing);
+}
+.blockquote::after,
+blockquote.blockquote::after {
+  content: "";
+  position: absolute;
+  right: 0;
+  top: 0;
+  border-top: 20px solid var(--bs-body-bg);
+  border-right: 20px solid var(--bs-body-bg);
+  border-bottom: 20px solid rgba(var(--bs-secondary-rgb), 0.15);
+  border-left: 20px solid rgba(var(--bs-secondary-rgb), 0.15);
+}
+.blockquote p,
+blockquote.blockquote p {
+  margin-bottom: 15px;
+  font-size: inherit;
+  font-weight: inherit;
+}
+.blockquote cite,
+blockquote.blockquote cite {
+  color: var(--bs-body-color);
+  font-size: 12px;
+  text-transform: uppercase;
+  font-style: normal;
+  font-weight: 600;
+  display: block;
+}
+.blockquote cite::before,
+blockquote.blockquote cite::before {
+  content: "-";
+  margin-right: 2px;
+}
+@media (max-width: 991.98px) {
+  .blockquote,
+  blockquote.blockquote {
+    --blockquote-spacing: 25px;
+    padding: var(--blockquote-spacing) calc(var(--blockquote-spacing) + 55px);
+  }
+  .blockquote::before,
+  blockquote.blockquote::before {
+    height: 32px;
+    width: 32px;
+  }
+}
+@media (max-width: 767.98px) {
+  .blockquote,
+  blockquote.blockquote {
+    font-size: 16px;
+  }
+}
+@media (max-width: 575.98px) {
+  .blockquote,
+  blockquote.blockquote {
+    --blockquote-spacing: 20px;
+    font-size: 14px;
+    padding-right: 35px;
+    padding-left: 60px;
+  }
+  .blockquote::after,
+  blockquote.blockquote::after {
+    border-top: 15px solid var(--bs-body-bg);
+    border-right: 15px solid var(--bs-body-bg);
+    border-bottom: 15px solid rgba(var(--bs-secondary-rgb), 0.15);
+    border-left: 15px solid rgba(var(--bs-secondary-rgb), 0.15);
+  }
+  .blockquote::before,
+  blockquote.blockquote::before {
+    height: 25px;
+    width: 25px;
+  }
+  .blockquote p,
+  blockquote.blockquote p {
+    margin-bottom: 10px;
+  }
+}
+
+:root {
+  --swiper-navigation-size: 30px;
+  --swiper-theme-color: var(--bs-secondary);
+}
+
+.swiper .pagination-wrapper {
+  padding: 20px 10px 15px;
+  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
+  border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
+  position: absolute;
+  bottom: 0;
+  width: 100%;
+  z-index: 2;
+}
+.swiper .pagination-wrapper .swiper-pagination-bullet {
+  background: var(--swiper-pagination-bullet-inactive-color, #fff);
+}
+.swiper .pagination-wrapper .swiper-pagination {
+  position: static;
+  transform: unset;
+  text-align: center;
+  margin: auto;
+}
+.swiper .pagination-wrapper .swiper-pagination-fraction {
+  color: #fff;
+}
+
+:root, [data-bs-theme=light], [data-bs-theme=dark] {
+  --fc-small-font-size: .85em;
+  --fc-page-bg-color: #fff;
+  --fc-neutral-bg-color: hsla(0, 0%, 82%, .3);
+  --fc-neutral-text-color: grey;
+  --fc-border-color: var(--bs-border-color);
+  --fc-button-text-color: var(--bs-secondary);
+  --fc-button-bg-color: var(--bs-secondary-bg-subtle);
+  --fc-button-border-color: rgba(var(--bs-secondary-rgb), 0.1);
+  --fc-button-hover-bg-color: var(--bs-secondary);
+  --fc-button-hover-border-color: var(--bs-secondary);
+  --fc-button-active-bg-color: var(--bs-secondary);
+  --fc-button-active-border-color: var(--bs-secondary);
+  --fc-event-bg-color: #3788d8;
+  --fc-event-border-color: #3788d8;
+  --fc-event-text-color: #fff;
+  --fc-event-selected-overlay-color: rgba(0, 0, 0, .25);
+  --fc-more-link-bg-color: #d0d0d0;
+  --fc-more-link-text-color: inherit;
+  --fc-event-resizer-thickness: 8px;
+  --fc-event-resizer-dot-total-width: 8px;
+  --fc-event-resizer-dot-border-width: 1px;
+  --fc-non-business-color: hsla(0, 0%, 84%, .3);
+  --fc-bg-event-color: #8fdf82;
+  --fc-bg-event-opacity: 0.3;
+  --fc-highlight-color: rgba(188, 232, 241, .3);
+  --fc-today-bg-color: var(--bs-light);
+  --fc-now-indicator-color: red;
+}
+
+.fc .fc-col-header-cell-cushion {
+  color: var(--bs-heading-color);
+  font-weight: 600;
+  padding: 8px 10px;
+}
+.fc .fc-daygrid-day-number {
+  color: var(--bs-body-color);
+}
+.fc .fc-day-other .fc-daygrid-day-top {
+  opacity: 0.5;
+}
+.fc .fc-button {
+  text-transform: capitalize;
+  font-weight: 500;
+  transition: all 0.25s;
+  box-shadow: none !important;
+  padding: 0.35rem 0.7rem;
+  border-radius: 6px;
+  min-block-size: 35px;
+  min-inline-size: 35px;
+}
+.fc .fc-button.fc-button-active, .fc .fc-button:active, .fc .fc-button:focus, .fc .fc-button:hover {
+  --fc-button-text-color: #fff;
+}
+.fc .fc-button.fc-prev-button, .fc .fc-button.fc-next-button {
+  padding: 0;
+  display: inline-flex;
+  align-items: center;
+  justify-content: center;
+  line-height: 1;
+}
+.fc .fc-button.fc-prev-button.fc-button-active, .fc .fc-button.fc-prev-button:active, .fc .fc-button.fc-prev-button:focus, .fc .fc-button.fc-prev-button:hover, .fc .fc-button.fc-next-button.fc-button-active, .fc .fc-button.fc-next-button:active, .fc .fc-button.fc-next-button:focus, .fc .fc-button.fc-next-button:hover {
+  --fc-button-text-color: #fff;
+  --fc-button-bg-color: var(--bs-secondary);
+}
+.fc .fc-button.fc-button-primary:disabled:hover {
+  --fc-button-text-color: var(--bs-secondary) ;
+}
+@media (max-width: 767.98px) {
+  .fc .fc-button {
+    padding: 5px 10px;
+    min-block-size: 30px;
+    min-inline-size: 30px;
+    font-size: 12px;
+  }
+  .fc .fc-toolbar-title {
+    font-size: 16px;
+  }
+}
+@media (max-width: 575.98px) {
+  .fc .fc-toolbar-chunk:nth-child(2) {
+    order: 1;
+    width: 100%;
+    text-align: center;
+    border-top: 1px solid var(--bs-border-color);
+    margin-top: 15px;
+    padding-top: 10px;
+  }
+  .fc .fc-header-toolbar {
+    flex-wrap: wrap;
+  }
+}
+
+.was-validated .form-control:invalid, .form-control.is-invalid,
+.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
+.was-validated .form-select:invalid,
+.form-select.is-invalid {
+  box-shadow: 0 0 0 1px var(--bs-danger);
+}
+
+.was-validated .form-control:valid, .form-control.is-valid,
+.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
+.was-validated .form-select:valid,
+.form-select.is-valid {
+  box-shadow: 0 0 0 1px var(--bs-success);
+}
+
+.form-range:disabled::-webkit-slider-runnable-track {
+  background-color: rgba(var(--bs-body-color-rgb), 0.25);
+}
+
+.check-primary:checked {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+.check-primary:focus {
+  border-color: var(--bs-secondary);
+}
+
+.switch-primary:checked {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+.switch-primary:focus {
+  border-color: var(--bs-secondary);
+}
+
+.check-secondary:checked {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+.check-secondary:focus {
+  border-color: var(--bs-secondary);
+}
+
+.switch-secondary:checked {
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+.switch-secondary:focus {
+  border-color: var(--bs-secondary);
+}
+
+.check-success:checked {
+  background-color: var(--bs-success);
+  border-color: var(--bs-success);
+}
+.check-success:focus {
+  border-color: var(--bs-success);
+}
+
+.switch-success:checked {
+  background-color: var(--bs-success);
+  border-color: var(--bs-success);
+}
+.switch-success:focus {
+  border-color: var(--bs-success);
+}
+
+.check-info:checked {
+  background-color: var(--bs-info);
+  border-color: var(--bs-info);
+}
+.check-info:focus {
+  border-color: var(--bs-info);
+}
+
+.switch-info:checked {
+  background-color: var(--bs-info);
+  border-color: var(--bs-info);
+}
+.switch-info:focus {
+  border-color: var(--bs-info);
+}
+
+.check-warning:checked {
+  background-color: var(--bs-warning);
+  border-color: var(--bs-warning);
+}
+.check-warning:focus {
+  border-color: var(--bs-warning);
+}
+
+.switch-warning:checked {
+  background-color: var(--bs-warning);
+  border-color: var(--bs-warning);
+}
+.switch-warning:focus {
+  border-color: var(--bs-warning);
+}
+
+.check-danger:checked {
+  background-color: var(--bs-danger);
+  border-color: var(--bs-danger);
+}
+.check-danger:focus {
+  border-color: var(--bs-danger);
+}
+
+.switch-danger:checked {
+  background-color: var(--bs-danger);
+  border-color: var(--bs-danger);
+}
+.switch-danger:focus {
+  border-color: var(--bs-danger);
+}
+
+.check-light:checked {
+  background-color: var(--bs-light);
+  border-color: var(--bs-light);
+}
+.check-light:focus {
+  border-color: var(--bs-light);
+}
+
+.switch-light:checked {
+  background-color: var(--bs-light);
+  border-color: var(--bs-light);
+}
+.switch-light:focus {
+  border-color: var(--bs-light);
+}
+
+.check-dark:checked {
+  background-color: var(--bs-dark);
+  border-color: var(--bs-dark);
+}
+.check-dark:focus {
+  border-color: var(--bs-dark);
+}
+
+.switch-dark:checked {
+  background-color: var(--bs-dark);
+  border-color: var(--bs-dark);
+}
+.switch-dark:focus {
+  border-color: var(--bs-dark);
+}
+
+.check-white:checked {
+  background-color: var(--bs-white);
+  border-color: var(--bs-white);
+}
+.check-white:focus {
+  border-color: var(--bs-white);
+}
+
+.switch-white:checked {
+  background-color: var(--bs-white);
+  border-color: var(--bs-white);
+}
+.switch-white:focus {
+  border-color: var(--bs-white);
+}
+
+.check-gray:checked {
+  background-color: var(--bs-gray);
+  border-color: var(--bs-gray);
+}
+.check-gray:focus {
+  border-color: var(--bs-gray);
+}
+
+.switch-gray:checked {
+  background-color: var(--bs-gray);
+  border-color: var(--bs-gray);
+}
+.switch-gray:focus {
+  border-color: var(--bs-gray);
+}
+
+.flatpickr-calendar.inline .flatpickr-month {
+  margin-top: 10px;
+}
+
+.flatpickr-calendar {
+  font-size: 13px;
+  background: var(--bs-body-bg);
+  -webkit-box-shadow: 1px 0 0 var(--bs-border-color), -1px 0 0 var(--bs-border-color), 0 1px 0 var(--bs-border-color), 0 -1px 0 var(--bs-border-color), 0 3px 13px rgba(0, 0, 0, 0.08);
+  box-shadow: 1px 0 0 var(--bs-border-color), -1px 0 0 var(--bs-border-color), 0 1px 0 var(--bs-border-color), 0 -1px 0 var(--bs-border-color), 0 3px 13px rgba(0, 0, 0, 0.08);
+}
+
+span.flatpickr-weekday {
+  color: var(--bs-heading-color);
+}
+
+.flatpickr-calendar .flatpickr-month .flatpickr-monthDropdown-months {
+  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
+  width: 50%;
+  padding: 6px 20px 6px 15px;
+  font-size: 12px;
+  font-weight: 600;
+  line-height: 1.6;
+  color: var(--bs-body-color);
+  appearance: none;
+  background-color: var(--bs-light);
+  background-image: var(--bs-form-select-bg-img);
+  background-repeat: no-repeat;
+  background-position: center right 12px;
+  background-size: 16px 12px;
+  border: 0;
+  border-radius: var(--bs-border-radius);
+}
+.flatpickr-calendar .flatpickr-month .flatpickr-monthDropdown-months:focus {
+  border-color: var(--bs-secondary);
+  outline: 0;
+}
+.flatpickr-calendar .flatpickr-month .flatpickr-monthDropdown-months:disabled {
+  background-color: var(--bs-secondary-bg);
+}
+.flatpickr-calendar .flatpickr-month .flatpickr-monthDropdown-months:-moz-focusring {
+  color: transparent;
+  text-shadow: 0 0 0 var(--bs-body-color);
+}
+
+.flatpickr-calendar .flatpickr-current-month {
+  font-size: 100%;
+  line-height: inherit;
+  width: 100%;
+  position: static;
+  height: auto;
+  display: flex;
+  gap: 5px;
+  padding: 0 30px;
+}
+
+.flatpickr-calendar .flatpickr-month .numInputWrapper {
+  width: 50%;
+  background: transparent;
+}
+.flatpickr-calendar .flatpickr-month .numInputWrapper:hover {
+  background: transparent;
+}
+.flatpickr-calendar .flatpickr-month .numInput {
+  width: 100%;
+  padding: 6px 15px;
+  font-size: 12px;
+  font-weight: 500;
+  line-height: 1.6;
+  color: var(--bs-body-color);
+  background-color: var(--bs-light);
+  background-clip: padding-box;
+  border: 0;
+  border-radius: var(--bs-border-radius);
+}
+
+.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
+  background-color: var(--bs-light);
+}
+
+.flatpickr-day {
+  color: var(--bs-heading-color);
+  font-weight: 600;
+  max-width: 40px;
+  height: 40px;
+  line-height: 40px;
+}
+
+.flatpickr-day.today,
+.flatpickr-day.today:hover,
+.flatpickr-day.today:focus {
+  border-color: var(--bs-secondary);
+  background-color: var(--bs-secondary);
+  color: #fff;
+}
+
+.flatpickr-day.flatpickr-disabled,
+.flatpickr-day.flatpickr-disabled:hover,
+.flatpickr-day.prevMonthDay,
+.flatpickr-day.nextMonthDay,
+.flatpickr-day.notAllowed,
+.flatpickr-day.notAllowed.prevMonthDay,
+.flatpickr-day.notAllowed.nextMonthDay {
+  color: var(--bs-body);
+}
+
+.flatpickr-day.selected,
+.flatpickr-day.startRange,
+.flatpickr-day.endRange,
+.flatpickr-day.selected.inRange,
+.flatpickr-day.startRange.inRange,
+.flatpickr-day.endRange.inRange,
+.flatpickr-day.selected:focus,
+.flatpickr-day.startRange:focus,
+.flatpickr-day.endRange:focus,
+.flatpickr-day.selected:hover,
+.flatpickr-day.startRange:hover,
+.flatpickr-day.endRange:hover,
+.flatpickr-day.selected.prevMonthDay,
+.flatpickr-day.startRange.prevMonthDay,
+.flatpickr-day.endRange.prevMonthDay,
+.flatpickr-day.selected.nextMonthDay,
+.flatpickr-day.startRange.nextMonthDay,
+.flatpickr-day.endRange.nextMonthDay {
+  background: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+
+.flatpickr-day.inRange,
+.flatpickr-day.prevMonthDay.inRange,
+.flatpickr-day.nextMonthDay.inRange,
+.flatpickr-day.today.inRange,
+.flatpickr-day.prevMonthDay.today.inRange,
+.flatpickr-day.nextMonthDay.today.inRange,
+.flatpickr-day:hover,
+.flatpickr-day.prevMonthDay:hover,
+.flatpickr-day.nextMonthDay:hover,
+.flatpickr-day:focus,
+.flatpickr-day.prevMonthDay:focus,
+.flatpickr-day.nextMonthDay:focus {
+  background: var(--bs-light);
+  border-color: var(--bs-light);
+}
+
+.flatpickr-day.nextMonthDay.today,
+.flatpickr-day.nextMonthDay.today:hover {
+  color: #fff;
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+
+.flatpickr-day.nextMonthDay.selected,
+.flatpickr-day.nextMonthDay.selected:hover {
+  color: #fff;
+  background-color: var(--bs-secondary);
+  border-color: var(--bs-secondary);
+}
+
+.flatpickr-months .flatpickr-month {
+  height: auto;
+}
+.flatpickr-months .flatpickr-prev-month,
+.flatpickr-months .flatpickr-next-month {
+  color: var(--bs-heading-color);
+  fill: var(--bs-heading-color);
+  opacity: 0.9;
+}
+
+.flatpickr-calendar .flatpickr-months {
+  margin-bottom: 10px;
+  margin-top: 10px;
+}
+.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
+.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
+  top: 10px;
+  height: auto;
+  padding: 4px;
+  line-height: 1.4;
+}
+
+.flatpickr-day.inRange {
+  -webkit-box-shadow: -5px 0 0 var(--bs-light), 5px 0 0 var(--bs-light);
+  box-shadow: -5px 0 0 var(--bs-light), 5px 0 0 var(--bs-light);
+}
+
+.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
+.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
+.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
+  -webkit-box-shadow: -10px 0 0 var(--bs-secondary);
+  box-shadow: -10px 0 0 var(--bs-secondary);
+}
+
+.flatpickr-inline-custom ~ .flatpickr-calendar {
+  width: 100%;
+  box-shadow: none;
+}
+.flatpickr-inline-custom ~ .flatpickr-calendar .dayContainer {
+  width: 100%;
+  min-width: 100%;
+  max-width: 100%;
+}
+.flatpickr-inline-custom ~ .flatpickr-calendar .flatpickr-days {
+  width: 100%;
+}
+.flatpickr-inline-custom ~ .flatpickr-calendar .flatpickr-months {
+  margin-top: 0;
+}
+.flatpickr-inline-custom ~ .flatpickr-calendar .flatpickr-months .flatpickr-month {
+  margin-top: 0;
+}
+.flatpickr-inline-custom ~ .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
+.flatpickr-inline-custom ~ .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
+  top: 0;
+}
+
+.flatpickr-time .flatpickr-time-separator,
+.flatpickr-time .flatpickr-am-pm {
+  color: var(--bs-body-color);
+}
+.flatpickr-time input {
+  color: var(--bs-body-color);
+}
+.flatpickr-time input:hover,
+.flatpickr-time .flatpickr-am-pm:hover,
+.flatpickr-time input:focus,
+.flatpickr-time .flatpickr-am-pm:focus {
+  background: transparent;
+}
+
+.flatpickr-calendar.hasTime .flatpickr-time {
+  border-color: var(--bs-border-color);
+}
+
+.flatpickr-weekwrapper span.flatpickr-day,
+.flatpickr-weekwrapper span.flatpickr-day:hover {
+  color: var(--bs-body-color);
+}
+.flatpickr-weekwrapper .flatpickr-weeks {
+  -webkit-box-shadow: 1px 0 0 var(--bs-border-color);
+  box-shadow: 1px 0 0 var(--bs-border-color);
+}
+
+.flatpickr-calendar.arrowTop:after {
+  border-bottom-color: var(--bs-body-bg);
+}
+
+.flatpickr-calendar.arrowTop:before {
+  border-bottom-color: var(--bs-border-color);
+}
+
+.flatpickr-calendar.arrowBottom:before {
+  border-top-color: var(--bs-body-bg);
+}
+
+:root,
+[data-bs-theme=dark] {
+  --tagify-dd-color-primary: rgb(var(--bs-secondary-rgb));
+  --tagify-dd-text-color: var(--bs-heading-color);
+  --tagify-dd-bg-color: var(--bs-body-bg);
+  --tagify-dd-item-pad: 10px 10px;
+}
+
+.tagify {
+  --tag-bg: var(--bs-light);
+  --tag-text-color: var(--bs-secondary);
+  --tag-remove-btn-bg--hover: transparent;
+  --tag-pad: 5px 8px;
+  --tag-hover: var(--bs-light);
+  --tag-remove-bg: var(--bs-danger-bg-subtle);
+  --placeholder-color: var(--bs-body-color);
+  --placeholder-color-focus: var(--bs-body-color);
+  font-size: 13px;
+  display: flex;
+  flex-wrap: wrap;
+  padding: 2px;
+}
+
+.tagify__tag__removeBtn {
+  outline: 0;
+  box-shadow: none;
+  border: 0;
+  color: var(--bs-secondary);
+}
+
+.tagify__tag__removeBtn:hover {
+  color: var(--bs-danger);
+}
+
+.tagify__tag__removeBtn::after {
+  content: "\f428";
+  font-family: "uicons-regular-rounded";
+  font-weight: 600;
+  font-size: 12px;
+}
+
+.tagify__tag > div::before {
+  border-radius: 5px;
+}
+
+.tagify__tag__removeBtn:hover + div > span {
+  opacity: 0.7;
+  color: var(--bs-danger);
+}
+
+.tagify__dropdown {
+  border: 1px solid var(--bs-border-color);
+}
+
+.tagify__dropdown__wrapper {
+  border-color: var(--bs-border-color);
+  box-shadow: var(--bs-box-shadow);
+}
+
+.tagify__tag__avatar-wrap {
+  width: 16px;
+  border-radius: 50%;
+  margin-right: 5px;
+  overflow: hidden;
+}
+.tagify__tag__avatar-wrap img {
+  width: 100%;
+  height: 100%;
+  object-fit: cover;
+}
+
+.tagify__dropdown__item__avatar-wrap {
+  width: 40px;
+  border-radius: 50%;
+  margin-right: 10px;
+  height: 40px;
+  overflow: hidden;
+  position: absolute;
+  left: 10px;
+  top: 8px;
+}
+.tagify__dropdown__item__avatar-wrap img {
+  width: 100%;
+  height: 100%;
+  object-fit: cover;
+}
+
+.tagify__dropdown__item {
+  padding-left: 60px;
+}
+.tagify__dropdown__item strong {
+  display: block;
+}
+.tagify__dropdown__item span {
+  font-size: 12px;
+  color: var(--bs-body-color);
+}
+
+.tagify__dropdown__item--active {
+  background: var(--bs-light);
+  color: var(--bs-heading-color);
+}
+
+.tag-color {
+  --tag-text-color: #fff;
+  --tag-bg: inherit;
+}
+.tag-color .tagify__tag__removeBtn {
+  color: #fff;
+}
+.tag-color .tagify__tag__removeBtn:hover {
+  color: var(--bs-danger);
+}
+.tag-color:hover {
+  --tag-text-color: var(--bs-danger);
+}
+.tag-color:hover .tagify__tag__removeBtn {
+  color: var(--bs-danger);
+}
+
+.mail-wrapper {
+  height: calc(100vh - 200px);
+  display: flex;
+  flex-direction: row;
+}
+@media (max-width: 991.98px) {
+  .mail-wrapper {
+    height: 100%;
+  }
+}
+.mail-wrapper .mail-sidebar {
+  width: 220px;
+  min-width: 220px;
+  border-right: 1px solid var(--bs-border-color);
+  height: 100%;
+  transition-duration: 0.3s;
+  transition-property: left;
+}
+@media (max-width: 991.98px) {
+  .mail-wrapper .mail-sidebar {
+    position: fixed;
+    left: -220px;
+    top: 0;
+    height: 100vh;
+    z-index: 999;
+  }
+  .mail-wrapper .mail-sidebar.open {
+    left: 0;
+  }
+}
+.mail-wrapper .mail-nav {
+  height: calc(100vh - 265px);
+}
+.mail-wrapper .mail-nav .mail-nav-item {
+  font-size: 15px;
+  color: var(--bs-heading-color);
+  padding: 8px 15px;
+  border-radius: var(--bs-border-radius);
+  transition-duration: 0.3s;
+  transition-property: box-shadow, background-color;
+  display: flex;
+  align-items: center;
+  margin: 5px 0;
+}
+.mail-wrapper .mail-nav .mail-nav-item i {
+  color: var(--bs-body-color);
+  transition-duration: 0.3s;
+  transition-property: color;
+  font-size: 18px;
+}
+.mail-wrapper .mail-nav .mail-nav-item:hover, .mail-wrapper .mail-nav .mail-nav-item.active {
+  background-color: var(--bs-body-bg);
+  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
+}
+.mail-wrapper .mail-nav .mail-nav-item:hover i, .mail-wrapper .mail-nav .mail-nav-item.active i {
+  color: var(--bs-secondary);
+}
+@media (max-width: 991.98px) {
+  .mail-wrapper .mail-nav {
+    height: calc(100vh - 65px);
+  }
+}
+.mail-wrapper .mail-body {
+  width: 100%;
+  height: 100%;
+}
+.mail-wrapper .mail-header {
+  padding: 12px 20px;
+  border-bottom: 1px solid var(--bs-border-color);
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  height: 65px;
+  flex-wrap: wrap;
+  gap: 10px;
+}
+@media (max-width: 991.98px) {
+  .mail-wrapper .mail-header {
+    height: auto;
+  }
+}
+.mail-wrapper .mail-read-wrapper {
+  height: calc(100vh - 400px);
+}
+@media (max-width: 991.98px) {
+  .mail-wrapper .mail-read-wrapper {
+    height: auto;
+  }
+}
+.mail-wrapper .sidebar-mobile-overlay {
+  position: fixed;
+  left: 0;
+  top: 0;
+  background-color: var(--custom-modal-backdrop-bg);
+  width: 100%;
+  height: 100%;
+  z-index: 999;
+  opacity: 0.6;
+  display: none;
+}
+.mail-wrapper .sidebar-mobile-overlay.show {
+  display: block;
+}
+
+.mail-list {
+  height: calc(100vh - 20rem);
+}
+.mail-list .mail-list-item {
+  border-bottom: 1px solid var(--bs-border-color);
+  padding: 12px 20px;
+  font-size: 14px;
+  font-weight: 400;
+  position: relative;
+  display: flex;
+  align-items: center;
+}
+.mail-list .mail-list-item.mail-unread {
+  background-color: rgba(var(--bs-light-rgb), 0.5);
+}
+.mail-list .mail-list-item .mail-item-content {
+  display: flex;
+  text-overflow: ellipsis;
+  overflow: hidden;
+  white-space: nowrap;
+  width: 85%;
+}
+.mail-list .mail-list-item .mail-item-username {
+  color: var(--bs-heading-color);
+  min-width: 140px;
+  width: 140px;
+  display: inline-block;
+  font-weight: 500;
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+.mail-list .mail-list-item .mail-item-text {
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+.mail-list .mail-list-item .mail-item-bookmark {
+  font-size: 16px;
+  display: inline-block;
+  margin-top: 2px;
+  line-height: 1;
+  cursor: pointer;
+  color: var(--bs-body-color);
+}
+.mail-list .mail-list-item .mail-item-bookmark.active {
+  color: var(--bs-warning);
+}
+.mail-list .mail-list-item .mail-item-subject {
+  color: var(--bs-heading-color);
+  font-weight: 600;
+  width: max-content;
+  margin-right: 5px;
+}
+.mail-list .mail-list-item .mail-item-actions {
+  display: flex;
+  gap: 8px;
+  position: absolute;
+  right: 20px;
+  top: 50%;
+  transform: translateY(-50%);
+  opacity: 0;
+  transition: all 0.3s;
+}
+.mail-list .mail-list-item .mail-item-time {
+  transition: all 0.3s;
+}
+.mail-list .mail-list-item .mail-item-meta {
+  min-width: 100px;
+  text-align: right;
+}
+.mail-list .mail-list-item:hover .mail-item-actions {
+  opacity: 1;
+}
+.mail-list .mail-list-item:hover .mail-item-time {
+  opacity: 0;
+}
+@media (max-width: 991.98px) {
+  .mail-list .mail-list-item {
+    font-size: 13px;
+    padding: 12px 15px;
+  }
+  .mail-list .mail-list-item .mail-item-username {
+    min-width: 100px;
+    width: 100px;
+  }
+  .mail-list .mail-list-item .mail-item-content {
+    width: 100%;
+  }
+  .mail-list .mail-list-item .mail-item-meta {
+    min-width: 85px;
+  }
+}
+@media (max-width: 575.98px) {
+  .mail-list .mail-list-item .mail-item-meta {
+    min-width: 65px;
+  }
+  .mail-list .mail-list-item .mail-item-username {
+    min-width: 80px;
+    width: 80px;
+  }
+}
+
+.mail-textarea {
+  border: 0 !important;
+  resize: none;
+  border-radius: 0;
+  box-shadow: none !important;
+  padding: 25px;
+  color: var(--bs-dark);
+  height: calc(100vh - 32rem);
+}
+.mail-textarea:focus {
+  color: var(--bs-dark);
+}
+
+.chat-wrapper {
+  height: calc(100vh - 200px);
+  display: flex;
+  flex-direction: row;
+  min-height: 500px;
+}
+.chat-wrapper .chat-sidebar {
+  width: 300px;
+  min-width: 300px;
+  border-right: 1px solid var(--bs-border-color);
+  height: 100%;
+  transition-duration: 0.3s;
+  transition-property: left;
+  background-color: var(--bs-body-bg);
+}
+@media (max-width: 991.98px) {
+  .chat-wrapper .chat-sidebar {
+    position: absolute;
+    z-index: 9999;
+    left: -300px;
+  }
+  .chat-wrapper .chat-sidebar.open {
+    left: 0;
+  }
+}
+.chat-wrapper .chat-nav {
+  height: calc(var(--chat-height) - 75px);
+  padding: 4px;
+}
+.chat-wrapper .chat-nav .chat-nav-item {
+  padding: 8px 12px 8px 15px;
+  border-radius: var(--bs-border-radius);
+  margin: 3px 0;
+}
+.chat-wrapper .chat-nav .chat-nav-item:hover, .chat-wrapper .chat-nav .chat-nav-item.active {
+  background-color: var(--bs-light);
+}
+.chat-wrapper .chat-nav-item {
+  display: flex;
+  gap: 10px;
+  align-items: center;
+  transition-duration: 0.3s;
+  transition-property: background-color;
+}
+.chat-wrapper .chat-nav-item .name {
+  font-size: 16px;
+  font-weight: 600;
+  margin-bottom: 0;
+}
+.chat-wrapper .chat-nav-item .text {
+  font-size: 13px;
+  color: var(--bs-body-color);
+}
+.chat-wrapper .chat-nav-item .chat-avatar-info {
+  display: flex;
+  gap: 10px;
+  align-items: center;
+  justify-content: space-between;
+  width: 100%;
+}
+.chat-wrapper .chat-nav-item .time {
+  font-size: 12px;
+  color: var(--bs-body-color);
+  display: block;
+}
+.chat-wrapper .chat-container {
+  width: 100%;
+  height: 100%;
+}
+.chat-wrapper .chat-body {
+  background-color: var(--bs-light);
+  width: 100%;
+  height: calc(var(--chat-height) - 75px);
+}
+.chat-wrapper .chat-header {
+  padding: 10px 20px;
+  border-bottom: 1px solid var(--bs-border-color);
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+}
+@media (max-width: 575.98px) {
+  .chat-wrapper .chat-header {
+    padding: 10px 12px;
+  }
+}
+.chat-wrapper .sidebar-mobile-overlay {
+  position: absolute;
+  left: 0;
+  top: 0;
+  background-color: var(--custom-modal-backdrop-bg);
+  width: 100%;
+  height: 100%;
+  z-index: 999;
+  opacity: 0.6;
+  display: none;
+}
+.chat-wrapper .sidebar-mobile-overlay.show {
+  display: block;
+}
+.chat-wrapper .chat-send-form {
+  padding: 12px;
+  width: 100%;
+  background-color: var(--bs-body-bg);
+  border-top: 1px solid var(--bs-border-color);
+  display: flex;
+  align-items: center;
+}
+
+.chat-conversation {
+  padding: 20px;
+  height: calc(100% - 65px);
+}
+@media (max-width: 575.98px) {
+  .chat-conversation {
+    padding: 10px;
+  }
+}
+.chat-conversation .chat-divider {
+  text-align: center;
+  margin-bottom: 20px;
+  margin-top: 20px;
+}
+.chat-conversation .chat-divider .chat-date {
+  padding: 7px 10px;
+  background: var(--bs-body-bg);
+  border-radius: var(--bs-border-radius);
+  color: var(--bs-dark);
+  font-size: 14px;
+  line-height: 1.2;
+  display: inline-block;
+}
+.chat-conversation .chat-message-text {
+  padding: 12px 15px;
+  background: var(--bs-body-bg);
+  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
+  border-radius: 0 10px 10px 0px;
+  display: inline-block;
+  font-size: 15px;
+  color: var(--bs-dark);
+  line-height: 1.5;
+}
+.chat-conversation .chat-message-text p {
+  margin: 0;
+}
+.chat-conversation .chat-message-text:first-child {
+  border-radius: 10px 10px 10px 0px;
+}
+.chat-conversation .chat-message-text:nth-last-child(2) {
+  border-radius: 0 10px 10px 10px;
+}
+@media (max-width: 575.98px) {
+  .chat-conversation .chat-message-text {
+    font-size: 13px;
+  }
+}
+.chat-conversation .chat-time {
+  font-size: 12px;
+}
+.chat-conversation .chat-message-left,
+.chat-conversation .chat-message-right {
+  display: flex;
+  flex-direction: column;
+  gap: 4px;
+  margin-bottom: 10px;
+  max-width: 600px;
+}
+.chat-conversation .chat-message-left {
+  align-items: start;
+  margin-right: auto;
+}
+.chat-conversation .chat-message-right {
+  align-items: end;
+  margin-left: auto;
+}
+.chat-conversation .chat-message-right .chat-message-text {
+  background-color: var(--bs-secondary);
+  color: #fff;
+  border-radius: 10px 0 0 10px;
+}
+.chat-conversation .chat-message-right .chat-message-text:first-child {
+  border-radius: 10px 10px 0 10px;
+}
+.chat-conversation .chat-message-right .chat-message-text:nth-last-child(2) {
+  border-radius: 10px 0 10px 10px;
+}
+
+.error-wrapper .error-status {
+  font-size: 220px;
+  color: var(--bs-heading-color);
+  font-weight: 900;
+  line-height: 1;
+  margin-bottom: 8px;
+}
+.error-wrapper .error-heading {
+  font-size: 45px;
+  font-weight: 700;
+  margin-bottom: 12px;
+}
+.error-wrapper .error-text {
+  font-size: 18px;
+}
+@media (max-width: 1199.98px) {
+  .error-wrapper .error-status {
+    font-size: 180px;
+  }
+  .error-wrapper .error-heading {
+    font-size: 32px;
+  }
+  .error-wrapper .error-text {
+    font-size: 16px;
+  }
+}
+@media (max-width: 991.98px) {
+  .error-wrapper .error-status {
+    font-size: 150px;
+  }
+  .error-wrapper .error-heading {
+    font-size: 28px;
+  }
+  .error-wrapper .error-text {
+    font-size: 15px;
+  }
+}
+@media (max-width: 575.98px) {
+  .error-wrapper .error-status {
+    font-size: 100px;
+  }
+  .error-wrapper .error-heading {
+    font-size: 20px;
+    margin-bottom: 5px;
+  }
+  .error-wrapper .error-text {
+    font-size: 14px;
+  }
+}
+
+.error-cover-wrapper {
+  padding: 30px;
+}
+.error-cover-wrapper .error-wrapper {
+  padding-top: 50px;
+  padding-bottom: 50px;
+}
+.error-cover-wrapper .error-cover {
+  background-color: var(--bs-light);
+  border-radius: 40px;
+  height: calc(100vh - 60px);
+  width: 100%;
+  text-align: center;
+  min-height: 500px;
+  background-size: cover;
+  background-position: center;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 50px;
+  overflow: hidden;
+}
+.error-cover-wrapper .error-cover .cover-img {
+  display: inline-block;
+  animation: smoothTilt 10s ease-in-out infinite;
+  width: 50%;
+}
+@media (max-width: 991.98px) {
+  .error-cover-wrapper .error-cover {
+    height: auto;
+  }
+}
+@media (max-width: 575.98px) {
+  .error-cover-wrapper {
+    padding: 10px;
+  }
+  .error-cover-wrapper .error-cover {
+    border-radius: 20px;
+    padding: 20px;
+    min-height: 350px;
+  }
+  .error-cover-wrapper .error-wrapper {
+    min-height: 48vh;
+  }
+}
+
+@keyframes smoothTilt {
+  0% {
+    transform: rotate(3deg);
+  }
+  50% {
+    transform: rotate(-3deg);
+  }
+  100% {
+    transform: rotate(3deg);
+  }
+}
+.error-full-wrapper {
+  min-height: 100vh;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  background-color: var(--bs-light);
+  background-position: center;
+  background-size: cover;
+  padding: 50px;
+}
+.error-full-wrapper .error-heading {
+  font-size: 65px;
+  font-weight: 900;
+}
+.error-full-wrapper .error-text {
+  font-size: 20px;
+}
+@media (max-width: 1199.98px) {
+  .error-full-wrapper .error-heading {
+    font-size: 52px;
+  }
+  .error-full-wrapper .error-text {
+    font-size: 18px;
+  }
+}
+@media (max-width: 991.98px) {
+  .error-full-wrapper .error-heading {
+    font-size: 42px;
+  }
+  .error-full-wrapper .error-text {
+    font-size: 16px;
+  }
+}
+@media (max-width: 767.98px) {
+  .error-full-wrapper .img-fluid {
+    max-width: 250px;
+  }
+  .error-full-wrapper .error-heading {
+    font-size: 42px;
+  }
+  .error-full-wrapper .error-text {
+    font-size: 16px;
+  }
+}
+@media (max-width: 575.98px) {
+  .error-full-wrapper {
+    padding: 20px;
+  }
+  .error-full-wrapper .img-fluid {
+    max-width: 180px;
+  }
+  .error-full-wrapper .error-heading {
+    font-size: 32px;
+  }
+}
+
+.maintenance-wrapper .maintenance-status {
+  font-size: 70px;
+  color: var(--bs-heading-color);
+  font-weight: 900;
+  line-height: 1.2;
+  margin-bottom: 15px;
+}
+.maintenance-wrapper .maintenance-heading {
+  font-size: 20px;
+  line-height: 1.5;
+}
+.maintenance-wrapper .maintenance-text {
+  font-size: 18px;
+}
+@media (max-width: 1199.98px) {
+  .maintenance-wrapper .maintenance-status {
+    font-size: 60px;
+  }
+  .maintenance-wrapper .maintenance-heading {
+    font-size: 18px;
+  }
+  .maintenance-wrapper .maintenance-text {
+    font-size: 16px;
+  }
+}
+@media (max-width: 991.98px) {
+  .maintenance-wrapper .maintenance-status {
+    font-size: 50px;
+  }
+  .maintenance-wrapper .maintenance-heading {
+    font-size: 16px;
+  }
+  .maintenance-wrapper .maintenance-text {
+    font-size: 15px;
+  }
+}
+@media (max-width: 575.98px) {
+  .maintenance-wrapper .maintenance-status {
+    font-size: 36px;
+  }
+  .maintenance-wrapper .maintenance-text {
+    font-size: 14px;
+  }
+}
+
+.maintenance-cover-wrapper {
+  padding: 30px;
+}
+.maintenance-cover-wrapper .maintenance-wrapper {
+  padding-top: 50px;
+  padding-bottom: 50px;
+}
+.maintenance-cover-wrapper .maintenance-cover {
+  background-color: #393736;
+  border-radius: 40px;
+  height: calc(100vh - 60px);
+  width: 100%;
+  text-align: center;
+  min-height: 500px;
+  background-size: cover;
+  background-position: center;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 50px;
+  overflow: hidden;
+}
+.maintenance-cover-wrapper .maintenance-cover .cover-img {
+  width: 70%;
+}
+@media (max-width: 991.98px) {
+  .maintenance-cover-wrapper .maintenance-cover {
+    height: auto;
+  }
+}
+@media (max-width: 575.98px) {
+  .maintenance-cover-wrapper {
+    padding: 10px;
+  }
+  .maintenance-cover-wrapper .maintenance-cover {
+    height: 100%;
+    border-radius: 20px;
+    padding: 20px;
+    min-height: 350px;
+  }
+  .maintenance-cover-wrapper .maintenance-wrapper {
+    min-height: 48vh;
+  }
+}
+
+.maintenance-full-wrapper {
+  min-height: 100vh;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  background-color: var(--bs-light);
+  background-position: center;
+  background-size: cover;
+  padding: 50px;
+}
+@media (max-width: 767.98px) {
+  .maintenance-full-wrapper .img-fluid {
+    max-width: 250px;
+  }
+}
+@media (max-width: 575.98px) {
+  .maintenance-full-wrapper {
+    padding: 20px;
+  }
+}
+
+.coming-cover-wrapper {
+  padding: 30px;
+}
+.coming-cover-wrapper .coming-wrapper {
+  padding: 50px;
+  height: 100%;
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+}
+.coming-cover-wrapper .coming-cover {
+  background-color: var(--bs-light);
+  border-radius: 40px;
+  height: calc(100vh - 60px);
+  width: 100%;
+  min-height: 500px;
+  background-size: cover;
+  background-position: center;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 30px;
+  overflow: hidden;
+}
+@media (max-width: 1399.98px) {
+  .coming-cover-wrapper .coming-wrapper {
+    padding: 20px;
+  }
+}
+@media (max-width: 991.98px) {
+  .coming-cover-wrapper .coming-wrapper {
+    padding: 20px 0 50px;
+  }
+  .coming-cover-wrapper .coming-cover {
+    height: auto;
+  }
+}
+@media (max-width: 575.98px) {
+  .coming-cover-wrapper {
+    padding: 10px;
+  }
+  .coming-cover-wrapper .coming-cover {
+    border-radius: 20px;
+    padding: 20px;
+    min-height: 350px;
+  }
+  .coming-cover-wrapper .coming-wrapper {
+    padding: 30px 10px 50px;
+  }
+}
+
+.countdown {
+  display: flex;
+  gap: 40px;
+}
+@media (max-width: 1399.98px) {
+  .countdown {
+    gap: 30px;
+  }
+}
+@media (max-width: 1199.98px) {
+  .countdown {
+    gap: 20px;
+  }
+}
+@media (max-width: 575.98px) {
+  .countdown {
+    gap: 10px;
+  }
+}
+.countdown .count-item {
+  text-align: center;
+}
+.countdown .count-item .time {
+  font-size: 80px;
+  font-weight: 800;
+  color: var(--bs-heading-color);
+  display: block;
+  line-height: 1.2;
+}
+.countdown .count-item .text {
+  background-color: var(--bs-light);
+  color: var(--bs-secondary);
+  display: block;
+  padding: 5px;
+  border-radius: var(--bs-border-radius);
+  font-weight: 500;
+  font-size: 14px;
+  line-height: 1.4;
+  margin-top: 5px;
+}
+@media (max-width: 1399.98px) {
+  .countdown .count-item .time {
+    font-size: 65px;
+  }
+}
+@media (max-width: 1199.98px) {
+  .countdown .count-item .time {
+    font-size: 48px;
+  }
+  .countdown .count-item .text {
+    padding: 5px 10px;
+    font-size: 13px;
+  }
+}
+@media (max-width: 575.98px) {
+  .countdown .count-item .time {
+    font-size: 30px;
+  }
+  .countdown .count-item .text {
+    padding: 4px 8px;
+    font-size: 12px;
+  }
+}
+
+.bar-hover .apexcharts-bar-area:hover {
+  fill: var(--bs-secondary);
+}
+
+.footer {
+    width: 100%;
+    background-color: #ffffff;
+    color: #5a5a5a;
+    text-align: left;
+    padding: 10px;
+    font-size: 13px;
+}
+.ribbon {
+	font-size: 12px;
+	font-weight: bold;
+	color: #fff;
+	position: absolute;
+	top: 0;
+	right: 0;
+	line-height: 1.8;
+	padding-inline: 1lh;
+	padding-bottom: var(--f);
+	border-image: conic-gradient(#0008 0 0) 51%/var(--f);
+	clip-path: polygon(  100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
+ transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
+	transform-origin: 0% 100%;
+	background-color: #ff401c; /* the main color  */
+}

+ 1 - 1
uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue

@@ -441,7 +441,7 @@ export default {
   display: flex;
   /* #endif */
   flex-direction: row;
-  /* border-bottom: 1px solid #f0f0f0; */
+  /* border-bottom: 1px solid var(--bs-border-color); */
 }
 
 .title-area {

+ 1 - 1
uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.css

@@ -49,7 +49,7 @@
   flex-direction: row;
   justify-content: space-between;
   padding: 12px 15px;
-  border-bottom: 1px solid #f0f0f0;
+  border-bottom: 1px solid var(--bs-border-color);
 }
 
 .item-text {

+ 1 - 1
uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue

@@ -274,7 +274,7 @@ $uni-primary: #007aff !default;
 
 .item {
   padding: 12px 15px;
-  /* border-bottom: 1px solid #f0f0f0; */
+  /* border-bottom: 1px solid var(--bs-border-color); */
   /* #ifndef APP-NVUE */
   display: flex;
   /* #endif */

+ 2 - 2
uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue

@@ -630,7 +630,7 @@ $uni-info: #909399 !default;
 	min-height: 35px;
 
 	&--disabled {
-		background-color: #f5f7fa;
+		background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
 		cursor: not-allowed;
 	}
 
@@ -737,7 +737,7 @@ $uni-info: #909399 !default;
 }
 
 .uni-select__selector-item--actived {
-	background-color: #f5f7fa;
+	background-color: rgba(var(--bs-secondary-color-rgb), var(--bs-bg-opacity)) !important;
 }
 
 

+ 2 - 2
uni_modules/uni-table/components/uni-table/uni-table.vue

@@ -332,14 +332,14 @@ $border-color: #ebeef5;
 
 	::v-deep .uni-table-tr:nth-child(n + 2) {
 		&:hover {
-			background-color: #f5f7fa;
+			background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
 		}
 	}
 
 	::v-deep .uni-table-thead {
 		.uni-table-tr {
 
-			// background-color: #f5f7fa;
+			// background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
 			&:hover {
 				background-color: #fafafa;
 			}

+ 1 - 1
uni_modules/x-dropdown/components/x-dropdown/x-dropdown.vue

@@ -172,7 +172,7 @@ export default {
 
                 text {
                     font-size: 28rpx;
-                    color: #000;
+                    color: #fff;
                 }
 
                 &:active {

+ 28 - 23
windows/left-window.vue

@@ -1,12 +1,12 @@
 <template>
-  <view class="cwg-sidebar bg-body" :class="{ 'sidebar-collapsed': isCollapsed }">
+  <view class="cwg-sidebar bg-body " :class="{ 'sidebar-collapsed': isCollapsed }">
     <view class="menu-list">
       <view class="menu" v-for="(item, index) in menus" :key="item.path + index">
         <view class="menu-item" @click="handleClick(index)">
-          <cwg-icon :name="item.icon" :size="20" color="#6c8595" />
+          <cwg-icon :name="item.icon" :size="20" color="#fff" />
           <view class="menu-label" v-t="item.label" />
           <view class="chevron-icon" :class="{ 'expanded': item.isOpenMenu }">
-            <cwg-icon v-if="item.children && item.children.length" name="crm-chevron-down" :size="20" color="#6c8595" />
+            <cwg-icon v-if="item.children && item.children.length" name="crm-chevron-down" :size="20" color="#fff" />
           </view>
         </view>
         <view :ref="(el) => setSubmenuRef(index, el)" class="submenu-box" :a="index" :key1="item.path + index" :b="item"
@@ -19,21 +19,25 @@
       </view>
     </view>
     <view class="menu fixed">
-      <view class="menu-item ib-box" @click="setMode('customer')" v-if="mode !== 'customer'">
-        <cwg-icon name="crm-trade" :size="20" color="#6c8595" />
+      <view class="menu-item btn-danger btn btn-app-nav btn-danger btn-shadow mb-2 w-100 waves-effect ib-box"
+        @click="setMode('customer')" v-if="mode !== 'customer'">
+        <cwg-icon name="crm-trade" :size="20" color="#fff" />
         <view class="menu-label" v-t="'Home.msg.Custom'" />
       </view>
-      <view class="menu-item ib-box" @click="setMode('ib')" v-if="mode !== 'ib' && ibStatus">
-        <cwg-icon name="crm-ib" :size="20" color="#6c8595" />
+      <view class="menu-item btn-danger btn btn-app-nav btn-danger btn-shadow mb-2 w-100 waves-effect ib-box"
+        @click="setMode('ib')" v-if="mode !== 'ib' && ibStatus">
+        <cwg-icon name="crm-ib" :size="20" color="#fff" />
         <view class="menu-label" v-t="'Home.msg.Ib'" />
       </view>
-      <view class="menu-item ib-box" @click="setMode('follow')" v-if="mode !== 'follow'">
-        <cwg-icon name="crm-gd" :size="20" color="#6c8595" />
+      <view class="menu-item btn-danger btn btn-app-nav btn-danger btn-shadow mb-2 w-100 waves-effect ib-box"
+        @click="setMode('follow')" v-if="mode !== 'follow'">
+        <cwg-icon name="crm-gd" :size="20" color="#fff" />
         <view class="menu-label" v-t="'Documentary.title'" />
       </view>
-      <view class="menu-item zy-box" @click="handleFixedMenuClick" :class="{ 'active': isCollapsed }">
-        <cwg-icon name="crm-zy" :size="20" color="#6c8595" />
-      </view>
+      <!-- <view class="menu-item btn-danger btn btn-app-nav btn-danger btn-shadow mb-2 w-100 waves-effect zy-box"
+        @click="handleFixedMenuClick" :class="{ 'active': isCollapsed }">
+        <cwg-icon name="crm-zy" :size="20" color="#fff" />
+      </view> -->
     </view>
   </view>
 </template>
@@ -46,7 +50,9 @@ import { useMenuSplit } from '@/composables/useMenuSplit'
 const { menus, setSubmenuRef, setMode, handleClick, handleSubmenuClick, mode } = useMenuSplit()
 const userStore = useUserStore()
 const { userInfo } = storeToRefs(userStore)
-
+import useGlobalStore from '@/stores/use-global-store'
+const globalStore = useGlobalStore()
+const isDark = computed(() => globalStore.theme === 'dark')
 // 控制侧边栏折叠状态
 const isCollapsed = ref(false)
 
@@ -78,7 +84,7 @@ function handleFixedMenuClick() {
 
 .cwg-sidebar {
   width: 100%;
-  color: #6c8595;
+  color: #fff;
   height: calc(100vh - 56px);
   overflow: hidden;
   display: flex;
@@ -132,15 +138,11 @@ function handleFixedMenuClick() {
     box-sizing: border-box;
     font-size: 14px;
 
+
     .menu-label {
       flex: 1;
     }
 
-    &:hover {
-      background: rgba(108, 133, 149, 0.12) !important;
-      border: 1px solid rgb(145, 163, 176) !important;
-      border-radius: px2rpx(4);
-    }
 
     .expanded .icon {
       transform: rotate(180deg);
@@ -148,15 +150,18 @@ function handleFixedMenuClick() {
   }
 
   .ib-box {
-    background: rgba(140, 69, 246, 0.08) !important;
+    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
+    border-radius: var(--bs-btn-border-radius);
+    background-color: var(--bs-btn-bg);
     border: 1px solid rgba(140, 69, 246, 0.2) !important;
     font-size: px2rpx(18);
     font-weight: 600;
-    color: #141d22;
+    color: #fff;
 
     &:hover {
-      background: rgba(140, 69, 246, 0.08) !important;
-      border: 1px solid rgba(140, 69, 246, 0.2) !important;
+      color: var(--bs-btn-hover-color);
+      background-color: var(--bs-btn-hover-bg);
+      border-color: var(--bs-btn-hover-border-color);
     }
   }
 

+ 62 - 62
windows/top-window.vue

@@ -14,81 +14,81 @@
 </template>
 
 <script setup lang="ts">
-  import { ref, computed,watch } from 'vue'
-  import { storeToRefs } from 'pinia'
-  import useUserStore from '@/stores/use-user-store'
+import { ref, computed, watch } from 'vue'
+import { storeToRefs } from 'pinia'
+import useUserStore from '@/stores/use-user-store'
 
-  const userStore = useUserStore()
-  const { userInfo } = storeToRefs(userStore)
+const userStore = useUserStore()
+const { userInfo } = storeToRefs(userStore)
 
-  const visible = ref(true)
+const visible = ref(true)
 
-  watch(() => userInfo.value, (val) => {
-    visible.value = !!val
-  })
-  const props = defineProps({
-    sidebarVisible: {
-      type: Boolean,
-      default: false,
-    },
-  })
+watch(() => userInfo.value, (val) => {
+  visible.value = !!val
+})
+const props = defineProps({
+  sidebarVisible: {
+    type: Boolean,
+    default: false,
+  },
+})
 
 </script>
 
 <style scoped lang="scss">
-  .cwg-pc-header {
-    display: flex;
-    align-items: center;
-    justify-content: space-between;
-    height: px2rpx(55);
-    border-bottom: 1px solid #f0f0f0;
-    padding: 0 px2rpx(16);
-    position: relative;
-    z-index: 10;
-  }
+.cwg-pc-header {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  height: px2rpx(55);
+  border-bottom: 1px solid var(--bs-border-color);
+  padding: 0 px2rpx(16);
+  position: relative;
+  z-index: 10;
+}
 
-  .left {
-    display: flex;
-    align-items: center;
-  }
+.left {
+  display: flex;
+  align-items: center;
+}
 
 
-  .center {
-    flex: 1;
-  }
+.center {
+  flex: 1;
+}
 
-  .right {
-    display: flex;
-    align-items: center;
-    gap: 0;
-  }
+.right {
+  display: flex;
+  align-items: center;
+  gap: 0;
+}
 
-  .bell .dot {
-    position: absolute;
-    top: 0;
-    right: -2px;
-    width: 7px;
-    height: 7px;
-    background: #27ae60;
-    border-radius: 50%;
-    display: inline-block;
-  }
+.bell .dot {
+  position: absolute;
+  top: 0;
+  right: -2px;
+  width: 7px;
+  height: 7px;
+  background: #27ae60;
+  border-radius: 50%;
+  display: inline-block;
+}
 
-  .left-img {
-    width: px2rpx(120);
-  }
+.left-img {
+  width: px2rpx(120);
+}
 
-  .avatar .img {
-    width: 32px;
-    height: 32px;
-    border-radius: 50%;
-    background: #eee;
-  }
+.avatar .img {
+  width: 32px;
+  height: 32px;
+  border-radius: 50%;
+  background: #eee;
+}
 
-  .logo .img {
-    width: 36px;
-    height: 36px;
-    border-radius: 50%;
-    background: #fff;
-  }
+.logo .img {
+  width: 36px;
+  height: 36px;
+  border-radius: 50%;
+  background: #fff;
+}
 </style>