@dialpad/dialtone 8.12.1 → 8.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -325,7 +325,7 @@ template {
325
325
  --avatar-size-text: var(--dt-font-size-200);
326
326
  --avatar-presence-position-right: var(--dt-space-200-negative);
327
327
  --avatar-presence-position-bottom: var(--dt-space-200-negative);
328
- --avatar-count-color-shadow: var(--theme-sidebar-color-background);
328
+ --avatar-count-color-shadow: var(--dt-theme-sidebar-color-background);
329
329
  position: relative;
330
330
  display: flex;
331
331
  color: var(--avatar-color-text);
@@ -437,7 +437,7 @@ template {
437
437
  }
438
438
  .dt-leftbar-row--selected .d-avatar__count,
439
439
  .dt-leftbar-row__primary:hover .d-avatar__count {
440
- --avatar-count-color-shadow: var(--theme-sidebar-row-color-background-hover);
440
+ --avatar-count-color-shadow: var(--dt-theme-sidebar-row-color-background-hover);
441
441
  }
442
442
  .d-avatar--xs {
443
443
  --avatar-size-shape: calc(var(--dt-size-500) + var(--dt-size-200));
@@ -3764,12 +3764,12 @@ legend .d-label {
3764
3764
  gap: var(--dt-space-400);
3765
3765
  }
3766
3766
  .d-presence {
3767
- --presence-color-border-base: var(--theme-sidebar-color-background);
3767
+ --presence-color-border-base: var(--dt-theme-sidebar-color-background);
3768
3768
  --presence-color-border-offline: var(--dt-color-black-600);
3769
- --presence-color-background-active: var(--theme-presence-color-background-available);
3770
- --presence-color-background-busy: var(--theme-presence-color-background-busy-unavailable);
3771
- --presence-color-background-away: var(--theme-presence-color-background-busy);
3772
- --presence-color-background-offline: var(--theme-sidebar-color-background);
3769
+ --presence-color-background-active: var(--dt-theme-presence-color-background-available);
3770
+ --presence-color-background-busy: var(--dt-theme-presence-color-background-busy-unavailable);
3771
+ --presence-color-background-away: var(--dt-theme-presence-color-background-busy);
3772
+ --presence-color-background-offline: var(--dt-theme-sidebar-color-background);
3773
3773
  --presence-border-size: var(--dt-size-200);
3774
3774
  --presence-size: var(--dt-size-400);
3775
3775
  display: inline-block;
@@ -3780,10 +3780,10 @@ legend .d-label {
3780
3780
  border-radius: var(--dt-size-radius-circle);
3781
3781
  }
3782
3782
  .dt-leftbar-row--selected .d-presence {
3783
- --presence-color-border-base: var(--theme-sidebar-selected-row-color-background);
3783
+ --presence-color-border-base: var(--dt-theme-sidebar-selected-row-color-background);
3784
3784
  }
3785
3785
  .dt-leftbar-row__primary:hover .d-presence {
3786
- --presence-color-border-base: var(--theme-sidebar-row-color-background-hover);
3786
+ --presence-color-border-base: var(--dt-theme-sidebar-row-color-background-hover);
3787
3787
  }
3788
3788
  .d-presence__inner {
3789
3789
  box-sizing: border-box;
@@ -7237,55 +7237,6 @@ body {
7237
7237
  .js-focus-visible :focus:not(.focus-visible) {
7238
7238
  outline: none;
7239
7239
  }
7240
- .d-theme-topbar-fc {
7241
- --fco: 75%;
7242
- color: hsla(var(--theme-topbar-color-hsl) / var(--fco)) !important;
7243
- }
7244
- .d-theme-topbar-fc:hover {
7245
- --fco: 100%;
7246
- }
7247
- .d-theme-topbar-bgc {
7248
- background-color: var(--theme-topbar-color-background) !important;
7249
- }
7250
- .d-theme-sidebar-fc {
7251
- color: var(--theme-sidebar-color) !important;
7252
- }
7253
- .d-theme-sidebar-status-fc {
7254
- color: var(--theme-sidebar-status-color) !important;
7255
- }
7256
- .d-theme-sidebar-icon-fc {
7257
- color: var(--theme-sidebar-icon-color) !important;
7258
- }
7259
- .d-theme-sidebar-bgc {
7260
- background-color: var(--theme-sidebar-color-background) !important;
7261
- }
7262
- .d-theme-sidebar-row-bgc:hover {
7263
- background-color: var(--theme-sidebar-row-color-background-hover) !important;
7264
- }
7265
- .d-theme-sidebar-row-bgc:active {
7266
- background-color: var(--theme-sidebar-row-color-background-active) !important;
7267
- }
7268
- .d-theme-sidebar-row-selected-fc {
7269
- color: var(--theme-sidebar-selected-row-color) !important;
7270
- }
7271
- .d-theme-sidebar-row-selected-bgc {
7272
- background-color: var(--theme-sidebar-selected-row-color-background) !important;
7273
- }
7274
- .d-theme-presence-available {
7275
- background-color: var(--theme-presence-color-background-available) !important;
7276
- }
7277
- .d-theme-presence-busy-unavailable {
7278
- background-color: var(--theme-presence-color-background-busy-unavailable) !important;
7279
- }
7280
- .d-theme-presence-busy {
7281
- background-color: var(--theme-presence-color-background-busy) !important;
7282
- }
7283
- .d-theme-mention {
7284
- background-color: var(--theme-mention-color-background) !important;
7285
- }
7286
- .d-theme-mention-fc {
7287
- color: var(--theme-mention-color-foreground) !important;
7288
- }
7289
7240
  body {
7290
7241
  --bgo: 100%;
7291
7242
  --bco: 100%;
@@ -7352,25 +7303,6 @@ body {
7352
7303
  --base--font-family: var(--dt-font-family-body);
7353
7304
  --base--line-height: var(--dt-font-line-height-300);
7354
7305
  --base--corner-radius: 0.25em;
7355
- --theme-topbar-color: hsl(var(--theme-topbar-color-hsl));
7356
- --theme-topbar-color-hsl: var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l);
7357
- --theme-topbar-color-background: var(--dt-color-surface-secondary);
7358
- --theme-sidebar-color: var(--dt-color-foreground-primary);
7359
- --theme-sidebar-color-hsl: var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l);
7360
- --theme-sidebar-color-background: var(--dt-color-surface-secondary);
7361
- --theme-sidebar-icon-color: var(--dt-color-foreground-secondary);
7362
- --theme-sidebar-status-color: var(--dt-color-foreground-tertiary);
7363
- --theme-sidebar-row-color-background: transparent;
7364
- --theme-sidebar-row-color-background-hover: hsla(var(--dt-color-black-900-hsl) / 0.1);
7365
- --theme-sidebar-row-color-background-active: var(--dt-color-black-300);
7366
- --theme-sidebar-selected-row-color: var(--dt-color-foreground-primary);
7367
- --theme-sidebar-selected-row-color-hsl: var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l);
7368
- --theme-sidebar-selected-row-color-background: var(--dt-color-surface-moderate-opaque);
7369
- --theme-presence-color-background-available: var(--dt-color-green-400);
7370
- --theme-presence-color-background-busy-unavailable: var(--dt-color-red-300);
7371
- --theme-presence-color-background-busy: var(--dt-color-gold-300);
7372
- --theme-mention-color-background: var(--dt-color-purple-400);
7373
- --theme-mention-color-foreground: var(--dt-color-neutral-white);
7374
7306
  }
7375
7307
  /**
7376
7308
  * Do not edit directly
@@ -9066,1463 +8998,2641 @@ body {
9066
8998
  --dt-space-base: 0.8rem;
9067
8999
  }
9068
9000
 
9069
- .d-fc-neutral-white.d-fc-neutral-white, .h\:d-fc-neutral-white.h\:d-fc-neutral-white:hover, .f\:d-fc-neutral-white.f\:d-fc-neutral-white:focus, .f\:d-fc-neutral-white.f\:d-fc-neutral-white:focus-within, .fv\:d-fc-neutral-white.fv\:d-fc-neutral-white:focus-visible {
9001
+ .d-fc---neutral-white.d-fc---neutral-white, .h\:d-fc---neutral-white.h\:d-fc---neutral-white:hover, .f\:d-fc---neutral-white.f\:d-fc---neutral-white:focus, .f\:d-fc---neutral-white.f\:d-fc---neutral-white:focus-within, .fv\:d-fc---neutral-white.fv\:d-fc---neutral-white:focus-visible {
9070
9002
  --fco: 100%;
9071
9003
  color: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--fco)) !important;
9072
9004
  }
9073
9005
 
9074
- .d-fc-neutral-black.d-fc-neutral-black, .h\:d-fc-neutral-black.h\:d-fc-neutral-black:hover, .f\:d-fc-neutral-black.f\:d-fc-neutral-black:focus, .f\:d-fc-neutral-black.f\:d-fc-neutral-black:focus-within, .fv\:d-fc-neutral-black.fv\:d-fc-neutral-black:focus-visible {
9006
+ .d-fc---neutral-black.d-fc---neutral-black, .h\:d-fc---neutral-black.h\:d-fc---neutral-black:hover, .f\:d-fc---neutral-black.f\:d-fc---neutral-black:focus, .f\:d-fc---neutral-black.f\:d-fc---neutral-black:focus-within, .fv\:d-fc---neutral-black.fv\:d-fc---neutral-black:focus-visible {
9075
9007
  --fco: 100%;
9076
9008
  color: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--fco)) !important;
9077
9009
  }
9078
9010
 
9079
- .d-fc-black-100.d-fc-black-100, .h\:d-fc-black-100.h\:d-fc-black-100:hover, .f\:d-fc-black-100.f\:d-fc-black-100:focus, .f\:d-fc-black-100.f\:d-fc-black-100:focus-within, .fv\:d-fc-black-100.fv\:d-fc-black-100:focus-visible {
9011
+ .d-fc---black-100.d-fc---black-100, .h\:d-fc---black-100.h\:d-fc---black-100:hover, .f\:d-fc---black-100.f\:d-fc---black-100:focus, .f\:d-fc---black-100.f\:d-fc---black-100:focus-within, .fv\:d-fc---black-100.fv\:d-fc---black-100:focus-visible {
9080
9012
  --fco: 100%;
9081
9013
  color: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--fco)) !important;
9082
9014
  }
9083
9015
 
9084
- .d-fc-black-200.d-fc-black-200, .h\:d-fc-black-200.h\:d-fc-black-200:hover, .f\:d-fc-black-200.f\:d-fc-black-200:focus, .f\:d-fc-black-200.f\:d-fc-black-200:focus-within, .fv\:d-fc-black-200.fv\:d-fc-black-200:focus-visible {
9016
+ .d-fc---black-200.d-fc---black-200, .h\:d-fc---black-200.h\:d-fc---black-200:hover, .f\:d-fc---black-200.f\:d-fc---black-200:focus, .f\:d-fc---black-200.f\:d-fc---black-200:focus-within, .fv\:d-fc---black-200.fv\:d-fc---black-200:focus-visible {
9085
9017
  --fco: 100%;
9086
9018
  color: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--fco)) !important;
9087
9019
  }
9088
9020
 
9089
- .d-fc-black-300.d-fc-black-300, .h\:d-fc-black-300.h\:d-fc-black-300:hover, .f\:d-fc-black-300.f\:d-fc-black-300:focus, .f\:d-fc-black-300.f\:d-fc-black-300:focus-within, .fv\:d-fc-black-300.fv\:d-fc-black-300:focus-visible {
9021
+ .d-fc---black-300.d-fc---black-300, .h\:d-fc---black-300.h\:d-fc---black-300:hover, .f\:d-fc---black-300.f\:d-fc---black-300:focus, .f\:d-fc---black-300.f\:d-fc---black-300:focus-within, .fv\:d-fc---black-300.fv\:d-fc---black-300:focus-visible {
9090
9022
  --fco: 100%;
9091
9023
  color: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--fco)) !important;
9092
9024
  }
9093
9025
 
9094
- .d-fc-black-400.d-fc-black-400, .h\:d-fc-black-400.h\:d-fc-black-400:hover, .f\:d-fc-black-400.f\:d-fc-black-400:focus, .f\:d-fc-black-400.f\:d-fc-black-400:focus-within, .fv\:d-fc-black-400.fv\:d-fc-black-400:focus-visible {
9026
+ .d-fc---black-400.d-fc---black-400, .h\:d-fc---black-400.h\:d-fc---black-400:hover, .f\:d-fc---black-400.f\:d-fc---black-400:focus, .f\:d-fc---black-400.f\:d-fc---black-400:focus-within, .fv\:d-fc---black-400.fv\:d-fc---black-400:focus-visible {
9095
9027
  --fco: 100%;
9096
9028
  color: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--fco)) !important;
9097
9029
  }
9098
9030
 
9099
- .d-fc-black-500.d-fc-black-500, .h\:d-fc-black-500.h\:d-fc-black-500:hover, .f\:d-fc-black-500.f\:d-fc-black-500:focus, .f\:d-fc-black-500.f\:d-fc-black-500:focus-within, .fv\:d-fc-black-500.fv\:d-fc-black-500:focus-visible {
9031
+ .d-fc---black-500.d-fc---black-500, .h\:d-fc---black-500.h\:d-fc---black-500:hover, .f\:d-fc---black-500.f\:d-fc---black-500:focus, .f\:d-fc---black-500.f\:d-fc---black-500:focus-within, .fv\:d-fc---black-500.fv\:d-fc---black-500:focus-visible {
9100
9032
  --fco: 100%;
9101
9033
  color: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--fco)) !important;
9102
9034
  }
9103
9035
 
9104
- .d-fc-black-600.d-fc-black-600, .h\:d-fc-black-600.h\:d-fc-black-600:hover, .f\:d-fc-black-600.f\:d-fc-black-600:focus, .f\:d-fc-black-600.f\:d-fc-black-600:focus-within, .fv\:d-fc-black-600.fv\:d-fc-black-600:focus-visible {
9036
+ .d-fc---black-600.d-fc---black-600, .h\:d-fc---black-600.h\:d-fc---black-600:hover, .f\:d-fc---black-600.f\:d-fc---black-600:focus, .f\:d-fc---black-600.f\:d-fc---black-600:focus-within, .fv\:d-fc---black-600.fv\:d-fc---black-600:focus-visible {
9105
9037
  --fco: 100%;
9106
9038
  color: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--fco)) !important;
9107
9039
  }
9108
9040
 
9109
- .d-fc-black-700.d-fc-black-700, .h\:d-fc-black-700.h\:d-fc-black-700:hover, .f\:d-fc-black-700.f\:d-fc-black-700:focus, .f\:d-fc-black-700.f\:d-fc-black-700:focus-within, .fv\:d-fc-black-700.fv\:d-fc-black-700:focus-visible {
9041
+ .d-fc---black-700.d-fc---black-700, .h\:d-fc---black-700.h\:d-fc---black-700:hover, .f\:d-fc---black-700.f\:d-fc---black-700:focus, .f\:d-fc---black-700.f\:d-fc---black-700:focus-within, .fv\:d-fc---black-700.fv\:d-fc---black-700:focus-visible {
9110
9042
  --fco: 100%;
9111
9043
  color: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--fco)) !important;
9112
9044
  }
9113
9045
 
9114
- .d-fc-black-800.d-fc-black-800, .h\:d-fc-black-800.h\:d-fc-black-800:hover, .f\:d-fc-black-800.f\:d-fc-black-800:focus, .f\:d-fc-black-800.f\:d-fc-black-800:focus-within, .fv\:d-fc-black-800.fv\:d-fc-black-800:focus-visible {
9046
+ .d-fc---black-800.d-fc---black-800, .h\:d-fc---black-800.h\:d-fc---black-800:hover, .f\:d-fc---black-800.f\:d-fc---black-800:focus, .f\:d-fc---black-800.f\:d-fc---black-800:focus-within, .fv\:d-fc---black-800.fv\:d-fc---black-800:focus-visible {
9115
9047
  --fco: 100%;
9116
9048
  color: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--fco)) !important;
9117
9049
  }
9118
9050
 
9119
- .d-fc-black-900.d-fc-black-900, .h\:d-fc-black-900.h\:d-fc-black-900:hover, .f\:d-fc-black-900.f\:d-fc-black-900:focus, .f\:d-fc-black-900.f\:d-fc-black-900:focus-within, .fv\:d-fc-black-900.fv\:d-fc-black-900:focus-visible {
9051
+ .d-fc---black-900.d-fc---black-900, .h\:d-fc---black-900.h\:d-fc---black-900:hover, .f\:d-fc---black-900.f\:d-fc---black-900:focus, .f\:d-fc---black-900.f\:d-fc---black-900:focus-within, .fv\:d-fc---black-900.fv\:d-fc---black-900:focus-visible {
9120
9052
  --fco: 100%;
9121
9053
  color: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--fco)) !important;
9122
9054
  }
9123
9055
 
9124
- .d-fc-purple-100.d-fc-purple-100, .h\:d-fc-purple-100.h\:d-fc-purple-100:hover, .f\:d-fc-purple-100.f\:d-fc-purple-100:focus, .f\:d-fc-purple-100.f\:d-fc-purple-100:focus-within, .fv\:d-fc-purple-100.fv\:d-fc-purple-100:focus-visible {
9056
+ .d-fc---purple-100.d-fc---purple-100, .h\:d-fc---purple-100.h\:d-fc---purple-100:hover, .f\:d-fc---purple-100.f\:d-fc---purple-100:focus, .f\:d-fc---purple-100.f\:d-fc---purple-100:focus-within, .fv\:d-fc---purple-100.fv\:d-fc---purple-100:focus-visible {
9125
9057
  --fco: 100%;
9126
9058
  color: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--fco)) !important;
9127
9059
  }
9128
9060
 
9129
- .d-fc-purple-200.d-fc-purple-200, .h\:d-fc-purple-200.h\:d-fc-purple-200:hover, .f\:d-fc-purple-200.f\:d-fc-purple-200:focus, .f\:d-fc-purple-200.f\:d-fc-purple-200:focus-within, .fv\:d-fc-purple-200.fv\:d-fc-purple-200:focus-visible {
9061
+ .d-fc---purple-200.d-fc---purple-200, .h\:d-fc---purple-200.h\:d-fc---purple-200:hover, .f\:d-fc---purple-200.f\:d-fc---purple-200:focus, .f\:d-fc---purple-200.f\:d-fc---purple-200:focus-within, .fv\:d-fc---purple-200.fv\:d-fc---purple-200:focus-visible {
9130
9062
  --fco: 100%;
9131
9063
  color: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--fco)) !important;
9132
9064
  }
9133
9065
 
9134
- .d-fc-purple-300.d-fc-purple-300, .h\:d-fc-purple-300.h\:d-fc-purple-300:hover, .f\:d-fc-purple-300.f\:d-fc-purple-300:focus, .f\:d-fc-purple-300.f\:d-fc-purple-300:focus-within, .fv\:d-fc-purple-300.fv\:d-fc-purple-300:focus-visible {
9066
+ .d-fc---purple-300.d-fc---purple-300, .h\:d-fc---purple-300.h\:d-fc---purple-300:hover, .f\:d-fc---purple-300.f\:d-fc---purple-300:focus, .f\:d-fc---purple-300.f\:d-fc---purple-300:focus-within, .fv\:d-fc---purple-300.fv\:d-fc---purple-300:focus-visible {
9135
9067
  --fco: 100%;
9136
9068
  color: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--fco)) !important;
9137
9069
  }
9138
9070
 
9139
- .d-fc-purple-400.d-fc-purple-400, .h\:d-fc-purple-400.h\:d-fc-purple-400:hover, .f\:d-fc-purple-400.f\:d-fc-purple-400:focus, .f\:d-fc-purple-400.f\:d-fc-purple-400:focus-within, .fv\:d-fc-purple-400.fv\:d-fc-purple-400:focus-visible {
9071
+ .d-fc---purple-400.d-fc---purple-400, .h\:d-fc---purple-400.h\:d-fc---purple-400:hover, .f\:d-fc---purple-400.f\:d-fc---purple-400:focus, .f\:d-fc---purple-400.f\:d-fc---purple-400:focus-within, .fv\:d-fc---purple-400.fv\:d-fc---purple-400:focus-visible {
9140
9072
  --fco: 100%;
9141
9073
  color: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--fco)) !important;
9142
9074
  }
9143
9075
 
9144
- .d-fc-purple-500.d-fc-purple-500, .h\:d-fc-purple-500.h\:d-fc-purple-500:hover, .f\:d-fc-purple-500.f\:d-fc-purple-500:focus, .f\:d-fc-purple-500.f\:d-fc-purple-500:focus-within, .fv\:d-fc-purple-500.fv\:d-fc-purple-500:focus-visible {
9076
+ .d-fc---purple-500.d-fc---purple-500, .h\:d-fc---purple-500.h\:d-fc---purple-500:hover, .f\:d-fc---purple-500.f\:d-fc---purple-500:focus, .f\:d-fc---purple-500.f\:d-fc---purple-500:focus-within, .fv\:d-fc---purple-500.fv\:d-fc---purple-500:focus-visible {
9145
9077
  --fco: 100%;
9146
9078
  color: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--fco)) !important;
9147
9079
  }
9148
9080
 
9149
- .d-fc-purple-600.d-fc-purple-600, .h\:d-fc-purple-600.h\:d-fc-purple-600:hover, .f\:d-fc-purple-600.f\:d-fc-purple-600:focus, .f\:d-fc-purple-600.f\:d-fc-purple-600:focus-within, .fv\:d-fc-purple-600.fv\:d-fc-purple-600:focus-visible {
9081
+ .d-fc---purple-600.d-fc---purple-600, .h\:d-fc---purple-600.h\:d-fc---purple-600:hover, .f\:d-fc---purple-600.f\:d-fc---purple-600:focus, .f\:d-fc---purple-600.f\:d-fc---purple-600:focus-within, .fv\:d-fc---purple-600.fv\:d-fc---purple-600:focus-visible {
9150
9082
  --fco: 100%;
9151
9083
  color: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--fco)) !important;
9152
9084
  }
9153
9085
 
9154
- .d-fc-blue-100.d-fc-blue-100, .h\:d-fc-blue-100.h\:d-fc-blue-100:hover, .f\:d-fc-blue-100.f\:d-fc-blue-100:focus, .f\:d-fc-blue-100.f\:d-fc-blue-100:focus-within, .fv\:d-fc-blue-100.fv\:d-fc-blue-100:focus-visible {
9086
+ .d-fc---blue-100.d-fc---blue-100, .h\:d-fc---blue-100.h\:d-fc---blue-100:hover, .f\:d-fc---blue-100.f\:d-fc---blue-100:focus, .f\:d-fc---blue-100.f\:d-fc---blue-100:focus-within, .fv\:d-fc---blue-100.fv\:d-fc---blue-100:focus-visible {
9155
9087
  --fco: 100%;
9156
9088
  color: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--fco)) !important;
9157
9089
  }
9158
9090
 
9159
- .d-fc-blue-200.d-fc-blue-200, .h\:d-fc-blue-200.h\:d-fc-blue-200:hover, .f\:d-fc-blue-200.f\:d-fc-blue-200:focus, .f\:d-fc-blue-200.f\:d-fc-blue-200:focus-within, .fv\:d-fc-blue-200.fv\:d-fc-blue-200:focus-visible {
9091
+ .d-fc---blue-200.d-fc---blue-200, .h\:d-fc---blue-200.h\:d-fc---blue-200:hover, .f\:d-fc---blue-200.f\:d-fc---blue-200:focus, .f\:d-fc---blue-200.f\:d-fc---blue-200:focus-within, .fv\:d-fc---blue-200.fv\:d-fc---blue-200:focus-visible {
9160
9092
  --fco: 100%;
9161
9093
  color: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--fco)) !important;
9162
9094
  }
9163
9095
 
9164
- .d-fc-blue-300.d-fc-blue-300, .h\:d-fc-blue-300.h\:d-fc-blue-300:hover, .f\:d-fc-blue-300.f\:d-fc-blue-300:focus, .f\:d-fc-blue-300.f\:d-fc-blue-300:focus-within, .fv\:d-fc-blue-300.fv\:d-fc-blue-300:focus-visible {
9096
+ .d-fc---blue-300.d-fc---blue-300, .h\:d-fc---blue-300.h\:d-fc---blue-300:hover, .f\:d-fc---blue-300.f\:d-fc---blue-300:focus, .f\:d-fc---blue-300.f\:d-fc---blue-300:focus-within, .fv\:d-fc---blue-300.fv\:d-fc---blue-300:focus-visible {
9165
9097
  --fco: 100%;
9166
9098
  color: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--fco)) !important;
9167
9099
  }
9168
9100
 
9169
- .d-fc-blue-400.d-fc-blue-400, .h\:d-fc-blue-400.h\:d-fc-blue-400:hover, .f\:d-fc-blue-400.f\:d-fc-blue-400:focus, .f\:d-fc-blue-400.f\:d-fc-blue-400:focus-within, .fv\:d-fc-blue-400.fv\:d-fc-blue-400:focus-visible {
9101
+ .d-fc---blue-400.d-fc---blue-400, .h\:d-fc---blue-400.h\:d-fc---blue-400:hover, .f\:d-fc---blue-400.f\:d-fc---blue-400:focus, .f\:d-fc---blue-400.f\:d-fc---blue-400:focus-within, .fv\:d-fc---blue-400.fv\:d-fc---blue-400:focus-visible {
9170
9102
  --fco: 100%;
9171
9103
  color: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--fco)) !important;
9172
9104
  }
9173
9105
 
9174
- .d-fc-blue-500.d-fc-blue-500, .h\:d-fc-blue-500.h\:d-fc-blue-500:hover, .f\:d-fc-blue-500.f\:d-fc-blue-500:focus, .f\:d-fc-blue-500.f\:d-fc-blue-500:focus-within, .fv\:d-fc-blue-500.fv\:d-fc-blue-500:focus-visible {
9106
+ .d-fc---blue-500.d-fc---blue-500, .h\:d-fc---blue-500.h\:d-fc---blue-500:hover, .f\:d-fc---blue-500.f\:d-fc---blue-500:focus, .f\:d-fc---blue-500.f\:d-fc---blue-500:focus-within, .fv\:d-fc---blue-500.fv\:d-fc---blue-500:focus-visible {
9175
9107
  --fco: 100%;
9176
9108
  color: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--fco)) !important;
9177
9109
  }
9178
9110
 
9179
- .d-fc-magenta-100.d-fc-magenta-100, .h\:d-fc-magenta-100.h\:d-fc-magenta-100:hover, .f\:d-fc-magenta-100.f\:d-fc-magenta-100:focus, .f\:d-fc-magenta-100.f\:d-fc-magenta-100:focus-within, .fv\:d-fc-magenta-100.fv\:d-fc-magenta-100:focus-visible {
9111
+ .d-fc---magenta-100.d-fc---magenta-100, .h\:d-fc---magenta-100.h\:d-fc---magenta-100:hover, .f\:d-fc---magenta-100.f\:d-fc---magenta-100:focus, .f\:d-fc---magenta-100.f\:d-fc---magenta-100:focus-within, .fv\:d-fc---magenta-100.fv\:d-fc---magenta-100:focus-visible {
9180
9112
  --fco: 100%;
9181
9113
  color: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--fco)) !important;
9182
9114
  }
9183
9115
 
9184
- .d-fc-magenta-200.d-fc-magenta-200, .h\:d-fc-magenta-200.h\:d-fc-magenta-200:hover, .f\:d-fc-magenta-200.f\:d-fc-magenta-200:focus, .f\:d-fc-magenta-200.f\:d-fc-magenta-200:focus-within, .fv\:d-fc-magenta-200.fv\:d-fc-magenta-200:focus-visible {
9116
+ .d-fc---magenta-200.d-fc---magenta-200, .h\:d-fc---magenta-200.h\:d-fc---magenta-200:hover, .f\:d-fc---magenta-200.f\:d-fc---magenta-200:focus, .f\:d-fc---magenta-200.f\:d-fc---magenta-200:focus-within, .fv\:d-fc---magenta-200.fv\:d-fc---magenta-200:focus-visible {
9185
9117
  --fco: 100%;
9186
9118
  color: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--fco)) !important;
9187
9119
  }
9188
9120
 
9189
- .d-fc-magenta-300.d-fc-magenta-300, .h\:d-fc-magenta-300.h\:d-fc-magenta-300:hover, .f\:d-fc-magenta-300.f\:d-fc-magenta-300:focus, .f\:d-fc-magenta-300.f\:d-fc-magenta-300:focus-within, .fv\:d-fc-magenta-300.fv\:d-fc-magenta-300:focus-visible {
9121
+ .d-fc---magenta-300.d-fc---magenta-300, .h\:d-fc---magenta-300.h\:d-fc---magenta-300:hover, .f\:d-fc---magenta-300.f\:d-fc---magenta-300:focus, .f\:d-fc---magenta-300.f\:d-fc---magenta-300:focus-within, .fv\:d-fc---magenta-300.fv\:d-fc---magenta-300:focus-visible {
9190
9122
  --fco: 100%;
9191
9123
  color: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--fco)) !important;
9192
9124
  }
9193
9125
 
9194
- .d-fc-magenta-400.d-fc-magenta-400, .h\:d-fc-magenta-400.h\:d-fc-magenta-400:hover, .f\:d-fc-magenta-400.f\:d-fc-magenta-400:focus, .f\:d-fc-magenta-400.f\:d-fc-magenta-400:focus-within, .fv\:d-fc-magenta-400.fv\:d-fc-magenta-400:focus-visible {
9126
+ .d-fc---magenta-400.d-fc---magenta-400, .h\:d-fc---magenta-400.h\:d-fc---magenta-400:hover, .f\:d-fc---magenta-400.f\:d-fc---magenta-400:focus, .f\:d-fc---magenta-400.f\:d-fc---magenta-400:focus-within, .fv\:d-fc---magenta-400.fv\:d-fc---magenta-400:focus-visible {
9195
9127
  --fco: 100%;
9196
9128
  color: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--fco)) !important;
9197
9129
  }
9198
9130
 
9199
- .d-fc-magenta-500.d-fc-magenta-500, .h\:d-fc-magenta-500.h\:d-fc-magenta-500:hover, .f\:d-fc-magenta-500.f\:d-fc-magenta-500:focus, .f\:d-fc-magenta-500.f\:d-fc-magenta-500:focus-within, .fv\:d-fc-magenta-500.fv\:d-fc-magenta-500:focus-visible {
9131
+ .d-fc---magenta-500.d-fc---magenta-500, .h\:d-fc---magenta-500.h\:d-fc---magenta-500:hover, .f\:d-fc---magenta-500.f\:d-fc---magenta-500:focus, .f\:d-fc---magenta-500.f\:d-fc---magenta-500:focus-within, .fv\:d-fc---magenta-500.fv\:d-fc---magenta-500:focus-visible {
9200
9132
  --fco: 100%;
9201
9133
  color: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--fco)) !important;
9202
9134
  }
9203
9135
 
9204
- .d-fc-gold-100.d-fc-gold-100, .h\:d-fc-gold-100.h\:d-fc-gold-100:hover, .f\:d-fc-gold-100.f\:d-fc-gold-100:focus, .f\:d-fc-gold-100.f\:d-fc-gold-100:focus-within, .fv\:d-fc-gold-100.fv\:d-fc-gold-100:focus-visible {
9136
+ .d-fc---gold-100.d-fc---gold-100, .h\:d-fc---gold-100.h\:d-fc---gold-100:hover, .f\:d-fc---gold-100.f\:d-fc---gold-100:focus, .f\:d-fc---gold-100.f\:d-fc---gold-100:focus-within, .fv\:d-fc---gold-100.fv\:d-fc---gold-100:focus-visible {
9205
9137
  --fco: 100%;
9206
9138
  color: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--fco)) !important;
9207
9139
  }
9208
9140
 
9209
- .d-fc-gold-200.d-fc-gold-200, .h\:d-fc-gold-200.h\:d-fc-gold-200:hover, .f\:d-fc-gold-200.f\:d-fc-gold-200:focus, .f\:d-fc-gold-200.f\:d-fc-gold-200:focus-within, .fv\:d-fc-gold-200.fv\:d-fc-gold-200:focus-visible {
9141
+ .d-fc---gold-200.d-fc---gold-200, .h\:d-fc---gold-200.h\:d-fc---gold-200:hover, .f\:d-fc---gold-200.f\:d-fc---gold-200:focus, .f\:d-fc---gold-200.f\:d-fc---gold-200:focus-within, .fv\:d-fc---gold-200.fv\:d-fc---gold-200:focus-visible {
9210
9142
  --fco: 100%;
9211
9143
  color: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--fco)) !important;
9212
9144
  }
9213
9145
 
9214
- .d-fc-gold-300.d-fc-gold-300, .h\:d-fc-gold-300.h\:d-fc-gold-300:hover, .f\:d-fc-gold-300.f\:d-fc-gold-300:focus, .f\:d-fc-gold-300.f\:d-fc-gold-300:focus-within, .fv\:d-fc-gold-300.fv\:d-fc-gold-300:focus-visible {
9146
+ .d-fc---gold-300.d-fc---gold-300, .h\:d-fc---gold-300.h\:d-fc---gold-300:hover, .f\:d-fc---gold-300.f\:d-fc---gold-300:focus, .f\:d-fc---gold-300.f\:d-fc---gold-300:focus-within, .fv\:d-fc---gold-300.fv\:d-fc---gold-300:focus-visible {
9215
9147
  --fco: 100%;
9216
9148
  color: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--fco)) !important;
9217
9149
  }
9218
9150
 
9219
- .d-fc-gold-400.d-fc-gold-400, .h\:d-fc-gold-400.h\:d-fc-gold-400:hover, .f\:d-fc-gold-400.f\:d-fc-gold-400:focus, .f\:d-fc-gold-400.f\:d-fc-gold-400:focus-within, .fv\:d-fc-gold-400.fv\:d-fc-gold-400:focus-visible {
9151
+ .d-fc---gold-400.d-fc---gold-400, .h\:d-fc---gold-400.h\:d-fc---gold-400:hover, .f\:d-fc---gold-400.f\:d-fc---gold-400:focus, .f\:d-fc---gold-400.f\:d-fc---gold-400:focus-within, .fv\:d-fc---gold-400.fv\:d-fc---gold-400:focus-visible {
9220
9152
  --fco: 100%;
9221
9153
  color: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--fco)) !important;
9222
9154
  }
9223
9155
 
9224
- .d-fc-gold-500.d-fc-gold-500, .h\:d-fc-gold-500.h\:d-fc-gold-500:hover, .f\:d-fc-gold-500.f\:d-fc-gold-500:focus, .f\:d-fc-gold-500.f\:d-fc-gold-500:focus-within, .fv\:d-fc-gold-500.fv\:d-fc-gold-500:focus-visible {
9156
+ .d-fc---gold-500.d-fc---gold-500, .h\:d-fc---gold-500.h\:d-fc---gold-500:hover, .f\:d-fc---gold-500.f\:d-fc---gold-500:focus, .f\:d-fc---gold-500.f\:d-fc---gold-500:focus-within, .fv\:d-fc---gold-500.fv\:d-fc---gold-500:focus-visible {
9225
9157
  --fco: 100%;
9226
9158
  color: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--fco)) !important;
9227
9159
  }
9228
9160
 
9229
- .d-fc-green-100.d-fc-green-100, .h\:d-fc-green-100.h\:d-fc-green-100:hover, .f\:d-fc-green-100.f\:d-fc-green-100:focus, .f\:d-fc-green-100.f\:d-fc-green-100:focus-within, .fv\:d-fc-green-100.fv\:d-fc-green-100:focus-visible {
9161
+ .d-fc---green-100.d-fc---green-100, .h\:d-fc---green-100.h\:d-fc---green-100:hover, .f\:d-fc---green-100.f\:d-fc---green-100:focus, .f\:d-fc---green-100.f\:d-fc---green-100:focus-within, .fv\:d-fc---green-100.fv\:d-fc---green-100:focus-visible {
9230
9162
  --fco: 100%;
9231
9163
  color: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--fco)) !important;
9232
9164
  }
9233
9165
 
9234
- .d-fc-green-200.d-fc-green-200, .h\:d-fc-green-200.h\:d-fc-green-200:hover, .f\:d-fc-green-200.f\:d-fc-green-200:focus, .f\:d-fc-green-200.f\:d-fc-green-200:focus-within, .fv\:d-fc-green-200.fv\:d-fc-green-200:focus-visible {
9166
+ .d-fc---green-200.d-fc---green-200, .h\:d-fc---green-200.h\:d-fc---green-200:hover, .f\:d-fc---green-200.f\:d-fc---green-200:focus, .f\:d-fc---green-200.f\:d-fc---green-200:focus-within, .fv\:d-fc---green-200.fv\:d-fc---green-200:focus-visible {
9235
9167
  --fco: 100%;
9236
9168
  color: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--fco)) !important;
9237
9169
  }
9238
9170
 
9239
- .d-fc-green-300.d-fc-green-300, .h\:d-fc-green-300.h\:d-fc-green-300:hover, .f\:d-fc-green-300.f\:d-fc-green-300:focus, .f\:d-fc-green-300.f\:d-fc-green-300:focus-within, .fv\:d-fc-green-300.fv\:d-fc-green-300:focus-visible {
9171
+ .d-fc---green-300.d-fc---green-300, .h\:d-fc---green-300.h\:d-fc---green-300:hover, .f\:d-fc---green-300.f\:d-fc---green-300:focus, .f\:d-fc---green-300.f\:d-fc---green-300:focus-within, .fv\:d-fc---green-300.fv\:d-fc---green-300:focus-visible {
9240
9172
  --fco: 100%;
9241
9173
  color: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--fco)) !important;
9242
9174
  }
9243
9175
 
9244
- .d-fc-green-400.d-fc-green-400, .h\:d-fc-green-400.h\:d-fc-green-400:hover, .f\:d-fc-green-400.f\:d-fc-green-400:focus, .f\:d-fc-green-400.f\:d-fc-green-400:focus-within, .fv\:d-fc-green-400.fv\:d-fc-green-400:focus-visible {
9176
+ .d-fc---green-400.d-fc---green-400, .h\:d-fc---green-400.h\:d-fc---green-400:hover, .f\:d-fc---green-400.f\:d-fc---green-400:focus, .f\:d-fc---green-400.f\:d-fc---green-400:focus-within, .fv\:d-fc---green-400.fv\:d-fc---green-400:focus-visible {
9245
9177
  --fco: 100%;
9246
9178
  color: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--fco)) !important;
9247
9179
  }
9248
9180
 
9249
- .d-fc-green-500.d-fc-green-500, .h\:d-fc-green-500.h\:d-fc-green-500:hover, .f\:d-fc-green-500.f\:d-fc-green-500:focus, .f\:d-fc-green-500.f\:d-fc-green-500:focus-within, .fv\:d-fc-green-500.fv\:d-fc-green-500:focus-visible {
9181
+ .d-fc---green-500.d-fc---green-500, .h\:d-fc---green-500.h\:d-fc---green-500:hover, .f\:d-fc---green-500.f\:d-fc---green-500:focus, .f\:d-fc---green-500.f\:d-fc---green-500:focus-within, .fv\:d-fc---green-500.fv\:d-fc---green-500:focus-visible {
9250
9182
  --fco: 100%;
9251
9183
  color: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--fco)) !important;
9252
9184
  }
9253
9185
 
9254
- .d-fc-red-100.d-fc-red-100, .h\:d-fc-red-100.h\:d-fc-red-100:hover, .f\:d-fc-red-100.f\:d-fc-red-100:focus, .f\:d-fc-red-100.f\:d-fc-red-100:focus-within, .fv\:d-fc-red-100.fv\:d-fc-red-100:focus-visible {
9186
+ .d-fc---red-100.d-fc---red-100, .h\:d-fc---red-100.h\:d-fc---red-100:hover, .f\:d-fc---red-100.f\:d-fc---red-100:focus, .f\:d-fc---red-100.f\:d-fc---red-100:focus-within, .fv\:d-fc---red-100.fv\:d-fc---red-100:focus-visible {
9255
9187
  --fco: 100%;
9256
9188
  color: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--fco)) !important;
9257
9189
  }
9258
9190
 
9259
- .d-fc-red-200.d-fc-red-200, .h\:d-fc-red-200.h\:d-fc-red-200:hover, .f\:d-fc-red-200.f\:d-fc-red-200:focus, .f\:d-fc-red-200.f\:d-fc-red-200:focus-within, .fv\:d-fc-red-200.fv\:d-fc-red-200:focus-visible {
9191
+ .d-fc---red-200.d-fc---red-200, .h\:d-fc---red-200.h\:d-fc---red-200:hover, .f\:d-fc---red-200.f\:d-fc---red-200:focus, .f\:d-fc---red-200.f\:d-fc---red-200:focus-within, .fv\:d-fc---red-200.fv\:d-fc---red-200:focus-visible {
9260
9192
  --fco: 100%;
9261
9193
  color: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--fco)) !important;
9262
9194
  }
9263
9195
 
9264
- .d-fc-red-300.d-fc-red-300, .h\:d-fc-red-300.h\:d-fc-red-300:hover, .f\:d-fc-red-300.f\:d-fc-red-300:focus, .f\:d-fc-red-300.f\:d-fc-red-300:focus-within, .fv\:d-fc-red-300.fv\:d-fc-red-300:focus-visible {
9196
+ .d-fc---red-300.d-fc---red-300, .h\:d-fc---red-300.h\:d-fc---red-300:hover, .f\:d-fc---red-300.f\:d-fc---red-300:focus, .f\:d-fc---red-300.f\:d-fc---red-300:focus-within, .fv\:d-fc---red-300.fv\:d-fc---red-300:focus-visible {
9265
9197
  --fco: 100%;
9266
9198
  color: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--fco)) !important;
9267
9199
  }
9268
9200
 
9269
- .d-fc-red-400.d-fc-red-400, .h\:d-fc-red-400.h\:d-fc-red-400:hover, .f\:d-fc-red-400.f\:d-fc-red-400:focus, .f\:d-fc-red-400.f\:d-fc-red-400:focus-within, .fv\:d-fc-red-400.fv\:d-fc-red-400:focus-visible {
9201
+ .d-fc---red-400.d-fc---red-400, .h\:d-fc---red-400.h\:d-fc---red-400:hover, .f\:d-fc---red-400.f\:d-fc---red-400:focus, .f\:d-fc---red-400.f\:d-fc---red-400:focus-within, .fv\:d-fc---red-400.fv\:d-fc---red-400:focus-visible {
9270
9202
  --fco: 100%;
9271
9203
  color: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--fco)) !important;
9272
9204
  }
9273
9205
 
9274
- .d-fc-red-500.d-fc-red-500, .h\:d-fc-red-500.h\:d-fc-red-500:hover, .f\:d-fc-red-500.f\:d-fc-red-500:focus, .f\:d-fc-red-500.f\:d-fc-red-500:focus-within, .fv\:d-fc-red-500.fv\:d-fc-red-500:focus-visible {
9206
+ .d-fc---red-500.d-fc---red-500, .h\:d-fc---red-500.h\:d-fc---red-500:hover, .f\:d-fc---red-500.f\:d-fc---red-500:focus, .f\:d-fc---red-500.f\:d-fc---red-500:focus-within, .fv\:d-fc---red-500.fv\:d-fc---red-500:focus-visible {
9275
9207
  --fco: 100%;
9276
9208
  color: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--fco)) !important;
9277
9209
  }
9278
9210
 
9279
- .d-fc-tan-100.d-fc-tan-100, .h\:d-fc-tan-100.h\:d-fc-tan-100:hover, .f\:d-fc-tan-100.f\:d-fc-tan-100:focus, .f\:d-fc-tan-100.f\:d-fc-tan-100:focus-within, .fv\:d-fc-tan-100.fv\:d-fc-tan-100:focus-visible {
9211
+ .d-fc---tan-100.d-fc---tan-100, .h\:d-fc---tan-100.h\:d-fc---tan-100:hover, .f\:d-fc---tan-100.f\:d-fc---tan-100:focus, .f\:d-fc---tan-100.f\:d-fc---tan-100:focus-within, .fv\:d-fc---tan-100.fv\:d-fc---tan-100:focus-visible {
9280
9212
  --fco: 100%;
9281
9213
  color: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--fco)) !important;
9282
9214
  }
9283
9215
 
9284
- .d-fc-tan-200.d-fc-tan-200, .h\:d-fc-tan-200.h\:d-fc-tan-200:hover, .f\:d-fc-tan-200.f\:d-fc-tan-200:focus, .f\:d-fc-tan-200.f\:d-fc-tan-200:focus-within, .fv\:d-fc-tan-200.fv\:d-fc-tan-200:focus-visible {
9216
+ .d-fc---tan-200.d-fc---tan-200, .h\:d-fc---tan-200.h\:d-fc---tan-200:hover, .f\:d-fc---tan-200.f\:d-fc---tan-200:focus, .f\:d-fc---tan-200.f\:d-fc---tan-200:focus-within, .fv\:d-fc---tan-200.fv\:d-fc---tan-200:focus-visible {
9285
9217
  --fco: 100%;
9286
9218
  color: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--fco)) !important;
9287
9219
  }
9288
9220
 
9289
- .d-fc-tan-300.d-fc-tan-300, .h\:d-fc-tan-300.h\:d-fc-tan-300:hover, .f\:d-fc-tan-300.f\:d-fc-tan-300:focus, .f\:d-fc-tan-300.f\:d-fc-tan-300:focus-within, .fv\:d-fc-tan-300.fv\:d-fc-tan-300:focus-visible {
9221
+ .d-fc---tan-300.d-fc---tan-300, .h\:d-fc---tan-300.h\:d-fc---tan-300:hover, .f\:d-fc---tan-300.f\:d-fc---tan-300:focus, .f\:d-fc---tan-300.f\:d-fc---tan-300:focus-within, .fv\:d-fc---tan-300.fv\:d-fc---tan-300:focus-visible {
9290
9222
  --fco: 100%;
9291
9223
  color: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--fco)) !important;
9292
9224
  }
9293
9225
 
9294
- .d-fc-tan-400.d-fc-tan-400, .h\:d-fc-tan-400.h\:d-fc-tan-400:hover, .f\:d-fc-tan-400.f\:d-fc-tan-400:focus, .f\:d-fc-tan-400.f\:d-fc-tan-400:focus-within, .fv\:d-fc-tan-400.fv\:d-fc-tan-400:focus-visible {
9226
+ .d-fc---tan-400.d-fc---tan-400, .h\:d-fc---tan-400.h\:d-fc---tan-400:hover, .f\:d-fc---tan-400.f\:d-fc---tan-400:focus, .f\:d-fc---tan-400.f\:d-fc---tan-400:focus-within, .fv\:d-fc---tan-400.fv\:d-fc---tan-400:focus-visible {
9295
9227
  --fco: 100%;
9296
9228
  color: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--fco)) !important;
9297
9229
  }
9298
9230
 
9299
- .d-fc-tan-500.d-fc-tan-500, .h\:d-fc-tan-500.h\:d-fc-tan-500:hover, .f\:d-fc-tan-500.f\:d-fc-tan-500:focus, .f\:d-fc-tan-500.f\:d-fc-tan-500:focus-within, .fv\:d-fc-tan-500.fv\:d-fc-tan-500:focus-visible {
9231
+ .d-fc---tan-500.d-fc---tan-500, .h\:d-fc---tan-500.h\:d-fc---tan-500:hover, .f\:d-fc---tan-500.f\:d-fc---tan-500:focus, .f\:d-fc---tan-500.f\:d-fc---tan-500:focus-within, .fv\:d-fc---tan-500.fv\:d-fc---tan-500:focus-visible {
9300
9232
  --fco: 100%;
9301
9233
  color: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--fco)) !important;
9302
9234
  }
9303
9235
 
9304
- .d-bc-neutral-white.d-bc-neutral-white, .h\:d-bc-neutral-white.h\:d-bc-neutral-white:hover, .f\:d-bc-neutral-white.f\:d-bc-neutral-white:focus, .f\:d-bc-neutral-white.f\:d-bc-neutral-white:focus-within, .fv\:d-bc-neutral-white.fv\:d-bc-neutral-white:focus-visible {
9236
+ .d-fc---color-base.d-fc---color-base, .h\:d-fc---color-base.h\:d-fc---color-base:hover, .f\:d-fc---color-base.f\:d-fc---color-base:focus, .f\:d-fc---color-base.f\:d-fc---color-base:focus-within, .fv\:d-fc---color-base.fv\:d-fc---color-base:focus-visible {
9237
+ --fco: 100%;
9238
+ color: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--fco)) !important;
9239
+ }
9240
+
9241
+ .d-fc---topbar-color-foreground.d-fc---topbar-color-foreground, .h\:d-fc---topbar-color-foreground.h\:d-fc---topbar-color-foreground:hover, .f\:d-fc---topbar-color-foreground.f\:d-fc---topbar-color-foreground:focus, .f\:d-fc---topbar-color-foreground.f\:d-fc---topbar-color-foreground:focus-within, .fv\:d-fc---topbar-color-foreground.fv\:d-fc---topbar-color-foreground:focus-visible {
9242
+ --fco: 100%;
9243
+ color: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--fco)) !important;
9244
+ }
9245
+
9246
+ .d-fc---topbar-color-background.d-fc---topbar-color-background, .h\:d-fc---topbar-color-background.h\:d-fc---topbar-color-background:hover, .f\:d-fc---topbar-color-background.f\:d-fc---topbar-color-background:focus, .f\:d-fc---topbar-color-background.f\:d-fc---topbar-color-background:focus-within, .fv\:d-fc---topbar-color-background.fv\:d-fc---topbar-color-background:focus-visible {
9247
+ --fco: 100%;
9248
+ color: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--fco)) !important;
9249
+ }
9250
+
9251
+ .d-fc---topbar-field-color-foreground.d-fc---topbar-field-color-foreground, .h\:d-fc---topbar-field-color-foreground.h\:d-fc---topbar-field-color-foreground:hover, .f\:d-fc---topbar-field-color-foreground.f\:d-fc---topbar-field-color-foreground:focus, .f\:d-fc---topbar-field-color-foreground.f\:d-fc---topbar-field-color-foreground:focus-within, .fv\:d-fc---topbar-field-color-foreground.fv\:d-fc---topbar-field-color-foreground:focus-visible {
9252
+ --fco: 100%;
9253
+ color: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--fco)) !important;
9254
+ }
9255
+
9256
+ .d-fc---topbar-field-color-foreground-hover.d-fc---topbar-field-color-foreground-hover, .h\:d-fc---topbar-field-color-foreground-hover.h\:d-fc---topbar-field-color-foreground-hover:hover, .f\:d-fc---topbar-field-color-foreground-hover.f\:d-fc---topbar-field-color-foreground-hover:focus, .f\:d-fc---topbar-field-color-foreground-hover.f\:d-fc---topbar-field-color-foreground-hover:focus-within, .fv\:d-fc---topbar-field-color-foreground-hover.fv\:d-fc---topbar-field-color-foreground-hover:focus-visible {
9257
+ --fco: 100%;
9258
+ color: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--fco)) !important;
9259
+ }
9260
+
9261
+ .d-fc---topbar-field-color-background.d-fc---topbar-field-color-background, .h\:d-fc---topbar-field-color-background.h\:d-fc---topbar-field-color-background:hover, .f\:d-fc---topbar-field-color-background.f\:d-fc---topbar-field-color-background:focus, .f\:d-fc---topbar-field-color-background.f\:d-fc---topbar-field-color-background:focus-within, .fv\:d-fc---topbar-field-color-background.fv\:d-fc---topbar-field-color-background:focus-visible {
9262
+ --fco: 100%;
9263
+ color: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--fco)) !important;
9264
+ }
9265
+
9266
+ .d-fc---topbar-field-color-background-hover.d-fc---topbar-field-color-background-hover, .h\:d-fc---topbar-field-color-background-hover.h\:d-fc---topbar-field-color-background-hover:hover, .f\:d-fc---topbar-field-color-background-hover.f\:d-fc---topbar-field-color-background-hover:focus, .f\:d-fc---topbar-field-color-background-hover.f\:d-fc---topbar-field-color-background-hover:focus-within, .fv\:d-fc---topbar-field-color-background-hover.fv\:d-fc---topbar-field-color-background-hover:focus-visible {
9267
+ --fco: 100%;
9268
+ color: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--fco)) !important;
9269
+ }
9270
+
9271
+ .d-fc---topbar-field-color-border.d-fc---topbar-field-color-border, .h\:d-fc---topbar-field-color-border.h\:d-fc---topbar-field-color-border:hover, .f\:d-fc---topbar-field-color-border.f\:d-fc---topbar-field-color-border:focus, .f\:d-fc---topbar-field-color-border.f\:d-fc---topbar-field-color-border:focus-within, .fv\:d-fc---topbar-field-color-border.fv\:d-fc---topbar-field-color-border:focus-visible {
9272
+ --fco: 100%;
9273
+ color: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--fco)) !important;
9274
+ }
9275
+
9276
+ .d-fc---topbar-field-color-border-hover.d-fc---topbar-field-color-border-hover, .h\:d-fc---topbar-field-color-border-hover.h\:d-fc---topbar-field-color-border-hover:hover, .f\:d-fc---topbar-field-color-border-hover.f\:d-fc---topbar-field-color-border-hover:focus, .f\:d-fc---topbar-field-color-border-hover.f\:d-fc---topbar-field-color-border-hover:focus-within, .fv\:d-fc---topbar-field-color-border-hover.fv\:d-fc---topbar-field-color-border-hover:focus-visible {
9277
+ --fco: 100%;
9278
+ color: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--fco)) !important;
9279
+ }
9280
+
9281
+ .d-fc---topbar-field-color-border-active.d-fc---topbar-field-color-border-active, .h\:d-fc---topbar-field-color-border-active.h\:d-fc---topbar-field-color-border-active:hover, .f\:d-fc---topbar-field-color-border-active.f\:d-fc---topbar-field-color-border-active:focus, .f\:d-fc---topbar-field-color-border-active.f\:d-fc---topbar-field-color-border-active:focus-within, .fv\:d-fc---topbar-field-color-border-active.fv\:d-fc---topbar-field-color-border-active:focus-visible {
9282
+ --fco: 100%;
9283
+ color: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--fco)) !important;
9284
+ }
9285
+
9286
+ .d-fc---topbar-button-color-foreground.d-fc---topbar-button-color-foreground, .h\:d-fc---topbar-button-color-foreground.h\:d-fc---topbar-button-color-foreground:hover, .f\:d-fc---topbar-button-color-foreground.f\:d-fc---topbar-button-color-foreground:focus, .f\:d-fc---topbar-button-color-foreground.f\:d-fc---topbar-button-color-foreground:focus-within, .fv\:d-fc---topbar-button-color-foreground.fv\:d-fc---topbar-button-color-foreground:focus-visible {
9287
+ --fco: 100%;
9288
+ color: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--fco)) !important;
9289
+ }
9290
+
9291
+ .d-fc---topbar-button-color-foreground-hover.d-fc---topbar-button-color-foreground-hover, .h\:d-fc---topbar-button-color-foreground-hover.h\:d-fc---topbar-button-color-foreground-hover:hover, .f\:d-fc---topbar-button-color-foreground-hover.f\:d-fc---topbar-button-color-foreground-hover:focus, .f\:d-fc---topbar-button-color-foreground-hover.f\:d-fc---topbar-button-color-foreground-hover:focus-within, .fv\:d-fc---topbar-button-color-foreground-hover.fv\:d-fc---topbar-button-color-foreground-hover:focus-visible {
9292
+ --fco: 100%;
9293
+ color: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--fco)) !important;
9294
+ }
9295
+
9296
+ .d-fc---topbar-button-color-background.d-fc---topbar-button-color-background, .h\:d-fc---topbar-button-color-background.h\:d-fc---topbar-button-color-background:hover, .f\:d-fc---topbar-button-color-background.f\:d-fc---topbar-button-color-background:focus, .f\:d-fc---topbar-button-color-background.f\:d-fc---topbar-button-color-background:focus-within, .fv\:d-fc---topbar-button-color-background.fv\:d-fc---topbar-button-color-background:focus-visible {
9297
+ --fco: 100%;
9298
+ color: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--fco)) !important;
9299
+ }
9300
+
9301
+ .d-fc---topbar-button-color-background-hover.d-fc---topbar-button-color-background-hover, .h\:d-fc---topbar-button-color-background-hover.h\:d-fc---topbar-button-color-background-hover:hover, .f\:d-fc---topbar-button-color-background-hover.f\:d-fc---topbar-button-color-background-hover:focus, .f\:d-fc---topbar-button-color-background-hover.f\:d-fc---topbar-button-color-background-hover:focus-within, .fv\:d-fc---topbar-button-color-background-hover.fv\:d-fc---topbar-button-color-background-hover:focus-visible {
9302
+ --fco: 100%;
9303
+ color: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--fco)) !important;
9304
+ }
9305
+
9306
+ .d-fc---topbar-button-color-background-active.d-fc---topbar-button-color-background-active, .h\:d-fc---topbar-button-color-background-active.h\:d-fc---topbar-button-color-background-active:hover, .f\:d-fc---topbar-button-color-background-active.f\:d-fc---topbar-button-color-background-active:focus, .f\:d-fc---topbar-button-color-background-active.f\:d-fc---topbar-button-color-background-active:focus-within, .fv\:d-fc---topbar-button-color-background-active.fv\:d-fc---topbar-button-color-background-active:focus-visible {
9307
+ --fco: 100%;
9308
+ color: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--fco)) !important;
9309
+ }
9310
+
9311
+ .d-fc---topbar-profile-color-foreground.d-fc---topbar-profile-color-foreground, .h\:d-fc---topbar-profile-color-foreground.h\:d-fc---topbar-profile-color-foreground:hover, .f\:d-fc---topbar-profile-color-foreground.f\:d-fc---topbar-profile-color-foreground:focus, .f\:d-fc---topbar-profile-color-foreground.f\:d-fc---topbar-profile-color-foreground:focus-within, .fv\:d-fc---topbar-profile-color-foreground.fv\:d-fc---topbar-profile-color-foreground:focus-visible {
9312
+ --fco: 100%;
9313
+ color: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--fco)) !important;
9314
+ }
9315
+
9316
+ .d-fc---topbar-profile-color-foreground-inverted.d-fc---topbar-profile-color-foreground-inverted, .h\:d-fc---topbar-profile-color-foreground-inverted.h\:d-fc---topbar-profile-color-foreground-inverted:hover, .f\:d-fc---topbar-profile-color-foreground-inverted.f\:d-fc---topbar-profile-color-foreground-inverted:focus, .f\:d-fc---topbar-profile-color-foreground-inverted.f\:d-fc---topbar-profile-color-foreground-inverted:focus-within, .fv\:d-fc---topbar-profile-color-foreground-inverted.fv\:d-fc---topbar-profile-color-foreground-inverted:focus-visible {
9317
+ --fco: 100%;
9318
+ color: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--fco)) !important;
9319
+ }
9320
+
9321
+ .d-fc---topbar-profile-color-background.d-fc---topbar-profile-color-background, .h\:d-fc---topbar-profile-color-background.h\:d-fc---topbar-profile-color-background:hover, .f\:d-fc---topbar-profile-color-background.f\:d-fc---topbar-profile-color-background:focus, .f\:d-fc---topbar-profile-color-background.f\:d-fc---topbar-profile-color-background:focus-within, .fv\:d-fc---topbar-profile-color-background.fv\:d-fc---topbar-profile-color-background:focus-visible {
9322
+ --fco: 100%;
9323
+ color: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--fco)) !important;
9324
+ }
9325
+
9326
+ .d-fc---topbar-profile-color-background-inverted.d-fc---topbar-profile-color-background-inverted, .h\:d-fc---topbar-profile-color-background-inverted.h\:d-fc---topbar-profile-color-background-inverted:hover, .f\:d-fc---topbar-profile-color-background-inverted.f\:d-fc---topbar-profile-color-background-inverted:focus, .f\:d-fc---topbar-profile-color-background-inverted.f\:d-fc---topbar-profile-color-background-inverted:focus-within, .fv\:d-fc---topbar-profile-color-background-inverted.fv\:d-fc---topbar-profile-color-background-inverted:focus-visible {
9327
+ --fco: 100%;
9328
+ color: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--fco)) !important;
9329
+ }
9330
+
9331
+ .d-fc---topbar-profile-color-background-hover.d-fc---topbar-profile-color-background-hover, .h\:d-fc---topbar-profile-color-background-hover.h\:d-fc---topbar-profile-color-background-hover:hover, .f\:d-fc---topbar-profile-color-background-hover.f\:d-fc---topbar-profile-color-background-hover:focus, .f\:d-fc---topbar-profile-color-background-hover.f\:d-fc---topbar-profile-color-background-hover:focus-within, .fv\:d-fc---topbar-profile-color-background-hover.fv\:d-fc---topbar-profile-color-background-hover:focus-visible {
9332
+ --fco: 100%;
9333
+ color: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--fco)) !important;
9334
+ }
9335
+
9336
+ .d-fc---topbar-profile-color-background-active.d-fc---topbar-profile-color-background-active, .h\:d-fc---topbar-profile-color-background-active.h\:d-fc---topbar-profile-color-background-active:hover, .f\:d-fc---topbar-profile-color-background-active.f\:d-fc---topbar-profile-color-background-active:focus, .f\:d-fc---topbar-profile-color-background-active.f\:d-fc---topbar-profile-color-background-active:focus-within, .fv\:d-fc---topbar-profile-color-background-active.fv\:d-fc---topbar-profile-color-background-active:focus-visible {
9337
+ --fco: 100%;
9338
+ color: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--fco)) !important;
9339
+ }
9340
+
9341
+ .d-fc---sidebar-color-foreground.d-fc---sidebar-color-foreground, .h\:d-fc---sidebar-color-foreground.h\:d-fc---sidebar-color-foreground:hover, .f\:d-fc---sidebar-color-foreground.f\:d-fc---sidebar-color-foreground:focus, .f\:d-fc---sidebar-color-foreground.f\:d-fc---sidebar-color-foreground:focus-within, .fv\:d-fc---sidebar-color-foreground.fv\:d-fc---sidebar-color-foreground:focus-visible {
9342
+ --fco: 100%;
9343
+ color: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--fco)) !important;
9344
+ }
9345
+
9346
+ .d-fc---sidebar-color-foreground-unread.d-fc---sidebar-color-foreground-unread, .h\:d-fc---sidebar-color-foreground-unread.h\:d-fc---sidebar-color-foreground-unread:hover, .f\:d-fc---sidebar-color-foreground-unread.f\:d-fc---sidebar-color-foreground-unread:focus, .f\:d-fc---sidebar-color-foreground-unread.f\:d-fc---sidebar-color-foreground-unread:focus-within, .fv\:d-fc---sidebar-color-foreground-unread.fv\:d-fc---sidebar-color-foreground-unread:focus-visible {
9347
+ --fco: 100%;
9348
+ color: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--fco)) !important;
9349
+ }
9350
+
9351
+ .d-fc---sidebar-color-background.d-fc---sidebar-color-background, .h\:d-fc---sidebar-color-background.h\:d-fc---sidebar-color-background:hover, .f\:d-fc---sidebar-color-background.f\:d-fc---sidebar-color-background:focus, .f\:d-fc---sidebar-color-background.f\:d-fc---sidebar-color-background:focus-within, .fv\:d-fc---sidebar-color-background.fv\:d-fc---sidebar-color-background:focus-visible {
9352
+ --fco: 100%;
9353
+ color: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--fco)) !important;
9354
+ }
9355
+
9356
+ .d-fc---sidebar-icon-color-foreground.d-fc---sidebar-icon-color-foreground, .h\:d-fc---sidebar-icon-color-foreground.h\:d-fc---sidebar-icon-color-foreground:hover, .f\:d-fc---sidebar-icon-color-foreground.f\:d-fc---sidebar-icon-color-foreground:focus, .f\:d-fc---sidebar-icon-color-foreground.f\:d-fc---sidebar-icon-color-foreground:focus-within, .fv\:d-fc---sidebar-icon-color-foreground.fv\:d-fc---sidebar-icon-color-foreground:focus-visible {
9357
+ --fco: 100%;
9358
+ color: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--fco)) !important;
9359
+ }
9360
+
9361
+ .d-fc---sidebar-status-color-foreground.d-fc---sidebar-status-color-foreground, .h\:d-fc---sidebar-status-color-foreground.h\:d-fc---sidebar-status-color-foreground:hover, .f\:d-fc---sidebar-status-color-foreground.f\:d-fc---sidebar-status-color-foreground:focus, .f\:d-fc---sidebar-status-color-foreground.f\:d-fc---sidebar-status-color-foreground:focus-within, .fv\:d-fc---sidebar-status-color-foreground.fv\:d-fc---sidebar-status-color-foreground:focus-visible {
9362
+ --fco: 100%;
9363
+ color: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--fco)) !important;
9364
+ }
9365
+
9366
+ .d-fc---sidebar-row-color-background.d-fc---sidebar-row-color-background, .h\:d-fc---sidebar-row-color-background.h\:d-fc---sidebar-row-color-background:hover, .f\:d-fc---sidebar-row-color-background.f\:d-fc---sidebar-row-color-background:focus, .f\:d-fc---sidebar-row-color-background.f\:d-fc---sidebar-row-color-background:focus-within, .fv\:d-fc---sidebar-row-color-background.fv\:d-fc---sidebar-row-color-background:focus-visible {
9367
+ --fco: 100%;
9368
+ color: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--fco)) !important;
9369
+ }
9370
+
9371
+ .d-fc---sidebar-row-color-background-hover.d-fc---sidebar-row-color-background-hover, .h\:d-fc---sidebar-row-color-background-hover.h\:d-fc---sidebar-row-color-background-hover:hover, .f\:d-fc---sidebar-row-color-background-hover.f\:d-fc---sidebar-row-color-background-hover:focus, .f\:d-fc---sidebar-row-color-background-hover.f\:d-fc---sidebar-row-color-background-hover:focus-within, .fv\:d-fc---sidebar-row-color-background-hover.fv\:d-fc---sidebar-row-color-background-hover:focus-visible {
9372
+ --fco: 100%;
9373
+ color: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--fco)) !important;
9374
+ }
9375
+
9376
+ .d-fc---sidebar-row-color-background-active.d-fc---sidebar-row-color-background-active, .h\:d-fc---sidebar-row-color-background-active.h\:d-fc---sidebar-row-color-background-active:hover, .f\:d-fc---sidebar-row-color-background-active.f\:d-fc---sidebar-row-color-background-active:focus, .f\:d-fc---sidebar-row-color-background-active.f\:d-fc---sidebar-row-color-background-active:focus-within, .fv\:d-fc---sidebar-row-color-background-active.fv\:d-fc---sidebar-row-color-background-active:focus-visible {
9377
+ --fco: 100%;
9378
+ color: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--fco)) !important;
9379
+ }
9380
+
9381
+ .d-fc---sidebar-selected-row-color-foreground.d-fc---sidebar-selected-row-color-foreground, .h\:d-fc---sidebar-selected-row-color-foreground.h\:d-fc---sidebar-selected-row-color-foreground:hover, .f\:d-fc---sidebar-selected-row-color-foreground.f\:d-fc---sidebar-selected-row-color-foreground:focus, .f\:d-fc---sidebar-selected-row-color-foreground.f\:d-fc---sidebar-selected-row-color-foreground:focus-within, .fv\:d-fc---sidebar-selected-row-color-foreground.fv\:d-fc---sidebar-selected-row-color-foreground:focus-visible {
9382
+ --fco: 100%;
9383
+ color: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--fco)) !important;
9384
+ }
9385
+
9386
+ .d-fc---sidebar-selected-row-color-background.d-fc---sidebar-selected-row-color-background, .h\:d-fc---sidebar-selected-row-color-background.h\:d-fc---sidebar-selected-row-color-background:hover, .f\:d-fc---sidebar-selected-row-color-background.f\:d-fc---sidebar-selected-row-color-background:focus, .f\:d-fc---sidebar-selected-row-color-background.f\:d-fc---sidebar-selected-row-color-background:focus-within, .fv\:d-fc---sidebar-selected-row-color-background.fv\:d-fc---sidebar-selected-row-color-background:focus-visible {
9387
+ --fco: 100%;
9388
+ color: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--fco)) !important;
9389
+ }
9390
+
9391
+ .d-fc---sidebar-section-color-foreground.d-fc---sidebar-section-color-foreground, .h\:d-fc---sidebar-section-color-foreground.h\:d-fc---sidebar-section-color-foreground:hover, .f\:d-fc---sidebar-section-color-foreground.f\:d-fc---sidebar-section-color-foreground:focus, .f\:d-fc---sidebar-section-color-foreground.f\:d-fc---sidebar-section-color-foreground:focus-within, .fv\:d-fc---sidebar-section-color-foreground.fv\:d-fc---sidebar-section-color-foreground:focus-visible {
9392
+ --fco: 100%;
9393
+ color: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--fco)) !important;
9394
+ }
9395
+
9396
+ .d-fc---presence-color-background-available.d-fc---presence-color-background-available, .h\:d-fc---presence-color-background-available.h\:d-fc---presence-color-background-available:hover, .f\:d-fc---presence-color-background-available.f\:d-fc---presence-color-background-available:focus, .f\:d-fc---presence-color-background-available.f\:d-fc---presence-color-background-available:focus-within, .fv\:d-fc---presence-color-background-available.fv\:d-fc---presence-color-background-available:focus-visible {
9397
+ --fco: 100%;
9398
+ color: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--fco)) !important;
9399
+ }
9400
+
9401
+ .d-fc---presence-color-background-busy-unavailable.d-fc---presence-color-background-busy-unavailable, .h\:d-fc---presence-color-background-busy-unavailable.h\:d-fc---presence-color-background-busy-unavailable:hover, .f\:d-fc---presence-color-background-busy-unavailable.f\:d-fc---presence-color-background-busy-unavailable:focus, .f\:d-fc---presence-color-background-busy-unavailable.f\:d-fc---presence-color-background-busy-unavailable:focus-within, .fv\:d-fc---presence-color-background-busy-unavailable.fv\:d-fc---presence-color-background-busy-unavailable:focus-visible {
9402
+ --fco: 100%;
9403
+ color: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--fco)) !important;
9404
+ }
9405
+
9406
+ .d-fc---presence-color-background-busy.d-fc---presence-color-background-busy, .h\:d-fc---presence-color-background-busy.h\:d-fc---presence-color-background-busy:hover, .f\:d-fc---presence-color-background-busy.f\:d-fc---presence-color-background-busy:focus, .f\:d-fc---presence-color-background-busy.f\:d-fc---presence-color-background-busy:focus-within, .fv\:d-fc---presence-color-background-busy.fv\:d-fc---presence-color-background-busy:focus-visible {
9407
+ --fco: 100%;
9408
+ color: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--fco)) !important;
9409
+ }
9410
+
9411
+ .d-fc---presence-color-background-offline.d-fc---presence-color-background-offline, .h\:d-fc---presence-color-background-offline.h\:d-fc---presence-color-background-offline:hover, .f\:d-fc---presence-color-background-offline.f\:d-fc---presence-color-background-offline:focus, .f\:d-fc---presence-color-background-offline.f\:d-fc---presence-color-background-offline:focus-within, .fv\:d-fc---presence-color-background-offline.fv\:d-fc---presence-color-background-offline:focus-visible {
9412
+ --fco: 100%;
9413
+ color: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--fco)) !important;
9414
+ }
9415
+
9416
+ .d-fc---mention-color-foreground.d-fc---mention-color-foreground, .h\:d-fc---mention-color-foreground.h\:d-fc---mention-color-foreground:hover, .f\:d-fc---mention-color-foreground.f\:d-fc---mention-color-foreground:focus, .f\:d-fc---mention-color-foreground.f\:d-fc---mention-color-foreground:focus-within, .fv\:d-fc---mention-color-foreground.fv\:d-fc---mention-color-foreground:focus-visible {
9417
+ --fco: 100%;
9418
+ color: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--fco)) !important;
9419
+ }
9420
+
9421
+ .d-fc---mention-color-background.d-fc---mention-color-background, .h\:d-fc---mention-color-background.h\:d-fc---mention-color-background:hover, .f\:d-fc---mention-color-background.f\:d-fc---mention-color-background:focus, .f\:d-fc---mention-color-background.f\:d-fc---mention-color-background:focus-within, .fv\:d-fc---mention-color-background.fv\:d-fc---mention-color-background:focus-visible {
9422
+ --fco: 100%;
9423
+ color: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--fco)) !important;
9424
+ }
9425
+
9426
+ .d-bc---neutral-white.d-bc---neutral-white, .h\:d-bc---neutral-white.h\:d-bc---neutral-white:hover, .f\:d-bc---neutral-white.f\:d-bc---neutral-white:focus, .f\:d-bc---neutral-white.f\:d-bc---neutral-white:focus-within, .fv\:d-bc---neutral-white.fv\:d-bc---neutral-white:focus-visible {
9305
9427
  --bco: 100%;
9306
9428
  border-color: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--bco)) !important;
9307
9429
  }
9308
9430
 
9309
- .d-bc-neutral-black.d-bc-neutral-black, .h\:d-bc-neutral-black.h\:d-bc-neutral-black:hover, .f\:d-bc-neutral-black.f\:d-bc-neutral-black:focus, .f\:d-bc-neutral-black.f\:d-bc-neutral-black:focus-within, .fv\:d-bc-neutral-black.fv\:d-bc-neutral-black:focus-visible {
9431
+ .d-bc---neutral-black.d-bc---neutral-black, .h\:d-bc---neutral-black.h\:d-bc---neutral-black:hover, .f\:d-bc---neutral-black.f\:d-bc---neutral-black:focus, .f\:d-bc---neutral-black.f\:d-bc---neutral-black:focus-within, .fv\:d-bc---neutral-black.fv\:d-bc---neutral-black:focus-visible {
9310
9432
  --bco: 100%;
9311
9433
  border-color: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--bco)) !important;
9312
9434
  }
9313
9435
 
9314
- .d-bc-black-100.d-bc-black-100, .h\:d-bc-black-100.h\:d-bc-black-100:hover, .f\:d-bc-black-100.f\:d-bc-black-100:focus, .f\:d-bc-black-100.f\:d-bc-black-100:focus-within, .fv\:d-bc-black-100.fv\:d-bc-black-100:focus-visible {
9436
+ .d-bc---black-100.d-bc---black-100, .h\:d-bc---black-100.h\:d-bc---black-100:hover, .f\:d-bc---black-100.f\:d-bc---black-100:focus, .f\:d-bc---black-100.f\:d-bc---black-100:focus-within, .fv\:d-bc---black-100.fv\:d-bc---black-100:focus-visible {
9315
9437
  --bco: 100%;
9316
9438
  border-color: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--bco)) !important;
9317
9439
  }
9318
9440
 
9319
- .d-bc-black-200.d-bc-black-200, .h\:d-bc-black-200.h\:d-bc-black-200:hover, .f\:d-bc-black-200.f\:d-bc-black-200:focus, .f\:d-bc-black-200.f\:d-bc-black-200:focus-within, .fv\:d-bc-black-200.fv\:d-bc-black-200:focus-visible {
9441
+ .d-bc---black-200.d-bc---black-200, .h\:d-bc---black-200.h\:d-bc---black-200:hover, .f\:d-bc---black-200.f\:d-bc---black-200:focus, .f\:d-bc---black-200.f\:d-bc---black-200:focus-within, .fv\:d-bc---black-200.fv\:d-bc---black-200:focus-visible {
9320
9442
  --bco: 100%;
9321
9443
  border-color: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--bco)) !important;
9322
9444
  }
9323
9445
 
9324
- .d-bc-black-300.d-bc-black-300, .h\:d-bc-black-300.h\:d-bc-black-300:hover, .f\:d-bc-black-300.f\:d-bc-black-300:focus, .f\:d-bc-black-300.f\:d-bc-black-300:focus-within, .fv\:d-bc-black-300.fv\:d-bc-black-300:focus-visible {
9446
+ .d-bc---black-300.d-bc---black-300, .h\:d-bc---black-300.h\:d-bc---black-300:hover, .f\:d-bc---black-300.f\:d-bc---black-300:focus, .f\:d-bc---black-300.f\:d-bc---black-300:focus-within, .fv\:d-bc---black-300.fv\:d-bc---black-300:focus-visible {
9325
9447
  --bco: 100%;
9326
9448
  border-color: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--bco)) !important;
9327
9449
  }
9328
9450
 
9329
- .d-bc-black-400.d-bc-black-400, .h\:d-bc-black-400.h\:d-bc-black-400:hover, .f\:d-bc-black-400.f\:d-bc-black-400:focus, .f\:d-bc-black-400.f\:d-bc-black-400:focus-within, .fv\:d-bc-black-400.fv\:d-bc-black-400:focus-visible {
9451
+ .d-bc---black-400.d-bc---black-400, .h\:d-bc---black-400.h\:d-bc---black-400:hover, .f\:d-bc---black-400.f\:d-bc---black-400:focus, .f\:d-bc---black-400.f\:d-bc---black-400:focus-within, .fv\:d-bc---black-400.fv\:d-bc---black-400:focus-visible {
9330
9452
  --bco: 100%;
9331
9453
  border-color: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--bco)) !important;
9332
9454
  }
9333
9455
 
9334
- .d-bc-black-500.d-bc-black-500, .h\:d-bc-black-500.h\:d-bc-black-500:hover, .f\:d-bc-black-500.f\:d-bc-black-500:focus, .f\:d-bc-black-500.f\:d-bc-black-500:focus-within, .fv\:d-bc-black-500.fv\:d-bc-black-500:focus-visible {
9456
+ .d-bc---black-500.d-bc---black-500, .h\:d-bc---black-500.h\:d-bc---black-500:hover, .f\:d-bc---black-500.f\:d-bc---black-500:focus, .f\:d-bc---black-500.f\:d-bc---black-500:focus-within, .fv\:d-bc---black-500.fv\:d-bc---black-500:focus-visible {
9335
9457
  --bco: 100%;
9336
9458
  border-color: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--bco)) !important;
9337
9459
  }
9338
9460
 
9339
- .d-bc-black-600.d-bc-black-600, .h\:d-bc-black-600.h\:d-bc-black-600:hover, .f\:d-bc-black-600.f\:d-bc-black-600:focus, .f\:d-bc-black-600.f\:d-bc-black-600:focus-within, .fv\:d-bc-black-600.fv\:d-bc-black-600:focus-visible {
9461
+ .d-bc---black-600.d-bc---black-600, .h\:d-bc---black-600.h\:d-bc---black-600:hover, .f\:d-bc---black-600.f\:d-bc---black-600:focus, .f\:d-bc---black-600.f\:d-bc---black-600:focus-within, .fv\:d-bc---black-600.fv\:d-bc---black-600:focus-visible {
9340
9462
  --bco: 100%;
9341
9463
  border-color: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--bco)) !important;
9342
9464
  }
9343
9465
 
9344
- .d-bc-black-700.d-bc-black-700, .h\:d-bc-black-700.h\:d-bc-black-700:hover, .f\:d-bc-black-700.f\:d-bc-black-700:focus, .f\:d-bc-black-700.f\:d-bc-black-700:focus-within, .fv\:d-bc-black-700.fv\:d-bc-black-700:focus-visible {
9466
+ .d-bc---black-700.d-bc---black-700, .h\:d-bc---black-700.h\:d-bc---black-700:hover, .f\:d-bc---black-700.f\:d-bc---black-700:focus, .f\:d-bc---black-700.f\:d-bc---black-700:focus-within, .fv\:d-bc---black-700.fv\:d-bc---black-700:focus-visible {
9345
9467
  --bco: 100%;
9346
9468
  border-color: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--bco)) !important;
9347
9469
  }
9348
9470
 
9349
- .d-bc-black-800.d-bc-black-800, .h\:d-bc-black-800.h\:d-bc-black-800:hover, .f\:d-bc-black-800.f\:d-bc-black-800:focus, .f\:d-bc-black-800.f\:d-bc-black-800:focus-within, .fv\:d-bc-black-800.fv\:d-bc-black-800:focus-visible {
9471
+ .d-bc---black-800.d-bc---black-800, .h\:d-bc---black-800.h\:d-bc---black-800:hover, .f\:d-bc---black-800.f\:d-bc---black-800:focus, .f\:d-bc---black-800.f\:d-bc---black-800:focus-within, .fv\:d-bc---black-800.fv\:d-bc---black-800:focus-visible {
9350
9472
  --bco: 100%;
9351
9473
  border-color: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--bco)) !important;
9352
9474
  }
9353
9475
 
9354
- .d-bc-black-900.d-bc-black-900, .h\:d-bc-black-900.h\:d-bc-black-900:hover, .f\:d-bc-black-900.f\:d-bc-black-900:focus, .f\:d-bc-black-900.f\:d-bc-black-900:focus-within, .fv\:d-bc-black-900.fv\:d-bc-black-900:focus-visible {
9476
+ .d-bc---black-900.d-bc---black-900, .h\:d-bc---black-900.h\:d-bc---black-900:hover, .f\:d-bc---black-900.f\:d-bc---black-900:focus, .f\:d-bc---black-900.f\:d-bc---black-900:focus-within, .fv\:d-bc---black-900.fv\:d-bc---black-900:focus-visible {
9355
9477
  --bco: 100%;
9356
9478
  border-color: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--bco)) !important;
9357
9479
  }
9358
9480
 
9359
- .d-bc-purple-100.d-bc-purple-100, .h\:d-bc-purple-100.h\:d-bc-purple-100:hover, .f\:d-bc-purple-100.f\:d-bc-purple-100:focus, .f\:d-bc-purple-100.f\:d-bc-purple-100:focus-within, .fv\:d-bc-purple-100.fv\:d-bc-purple-100:focus-visible {
9481
+ .d-bc---purple-100.d-bc---purple-100, .h\:d-bc---purple-100.h\:d-bc---purple-100:hover, .f\:d-bc---purple-100.f\:d-bc---purple-100:focus, .f\:d-bc---purple-100.f\:d-bc---purple-100:focus-within, .fv\:d-bc---purple-100.fv\:d-bc---purple-100:focus-visible {
9360
9482
  --bco: 100%;
9361
9483
  border-color: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--bco)) !important;
9362
9484
  }
9363
9485
 
9364
- .d-bc-purple-200.d-bc-purple-200, .h\:d-bc-purple-200.h\:d-bc-purple-200:hover, .f\:d-bc-purple-200.f\:d-bc-purple-200:focus, .f\:d-bc-purple-200.f\:d-bc-purple-200:focus-within, .fv\:d-bc-purple-200.fv\:d-bc-purple-200:focus-visible {
9486
+ .d-bc---purple-200.d-bc---purple-200, .h\:d-bc---purple-200.h\:d-bc---purple-200:hover, .f\:d-bc---purple-200.f\:d-bc---purple-200:focus, .f\:d-bc---purple-200.f\:d-bc---purple-200:focus-within, .fv\:d-bc---purple-200.fv\:d-bc---purple-200:focus-visible {
9365
9487
  --bco: 100%;
9366
9488
  border-color: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--bco)) !important;
9367
9489
  }
9368
9490
 
9369
- .d-bc-purple-300.d-bc-purple-300, .h\:d-bc-purple-300.h\:d-bc-purple-300:hover, .f\:d-bc-purple-300.f\:d-bc-purple-300:focus, .f\:d-bc-purple-300.f\:d-bc-purple-300:focus-within, .fv\:d-bc-purple-300.fv\:d-bc-purple-300:focus-visible {
9491
+ .d-bc---purple-300.d-bc---purple-300, .h\:d-bc---purple-300.h\:d-bc---purple-300:hover, .f\:d-bc---purple-300.f\:d-bc---purple-300:focus, .f\:d-bc---purple-300.f\:d-bc---purple-300:focus-within, .fv\:d-bc---purple-300.fv\:d-bc---purple-300:focus-visible {
9370
9492
  --bco: 100%;
9371
9493
  border-color: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--bco)) !important;
9372
9494
  }
9373
9495
 
9374
- .d-bc-purple-400.d-bc-purple-400, .h\:d-bc-purple-400.h\:d-bc-purple-400:hover, .f\:d-bc-purple-400.f\:d-bc-purple-400:focus, .f\:d-bc-purple-400.f\:d-bc-purple-400:focus-within, .fv\:d-bc-purple-400.fv\:d-bc-purple-400:focus-visible {
9496
+ .d-bc---purple-400.d-bc---purple-400, .h\:d-bc---purple-400.h\:d-bc---purple-400:hover, .f\:d-bc---purple-400.f\:d-bc---purple-400:focus, .f\:d-bc---purple-400.f\:d-bc---purple-400:focus-within, .fv\:d-bc---purple-400.fv\:d-bc---purple-400:focus-visible {
9375
9497
  --bco: 100%;
9376
9498
  border-color: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--bco)) !important;
9377
9499
  }
9378
9500
 
9379
- .d-bc-purple-500.d-bc-purple-500, .h\:d-bc-purple-500.h\:d-bc-purple-500:hover, .f\:d-bc-purple-500.f\:d-bc-purple-500:focus, .f\:d-bc-purple-500.f\:d-bc-purple-500:focus-within, .fv\:d-bc-purple-500.fv\:d-bc-purple-500:focus-visible {
9501
+ .d-bc---purple-500.d-bc---purple-500, .h\:d-bc---purple-500.h\:d-bc---purple-500:hover, .f\:d-bc---purple-500.f\:d-bc---purple-500:focus, .f\:d-bc---purple-500.f\:d-bc---purple-500:focus-within, .fv\:d-bc---purple-500.fv\:d-bc---purple-500:focus-visible {
9380
9502
  --bco: 100%;
9381
9503
  border-color: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--bco)) !important;
9382
9504
  }
9383
9505
 
9384
- .d-bc-purple-600.d-bc-purple-600, .h\:d-bc-purple-600.h\:d-bc-purple-600:hover, .f\:d-bc-purple-600.f\:d-bc-purple-600:focus, .f\:d-bc-purple-600.f\:d-bc-purple-600:focus-within, .fv\:d-bc-purple-600.fv\:d-bc-purple-600:focus-visible {
9506
+ .d-bc---purple-600.d-bc---purple-600, .h\:d-bc---purple-600.h\:d-bc---purple-600:hover, .f\:d-bc---purple-600.f\:d-bc---purple-600:focus, .f\:d-bc---purple-600.f\:d-bc---purple-600:focus-within, .fv\:d-bc---purple-600.fv\:d-bc---purple-600:focus-visible {
9385
9507
  --bco: 100%;
9386
9508
  border-color: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--bco)) !important;
9387
9509
  }
9388
9510
 
9389
- .d-bc-blue-100.d-bc-blue-100, .h\:d-bc-blue-100.h\:d-bc-blue-100:hover, .f\:d-bc-blue-100.f\:d-bc-blue-100:focus, .f\:d-bc-blue-100.f\:d-bc-blue-100:focus-within, .fv\:d-bc-blue-100.fv\:d-bc-blue-100:focus-visible {
9511
+ .d-bc---blue-100.d-bc---blue-100, .h\:d-bc---blue-100.h\:d-bc---blue-100:hover, .f\:d-bc---blue-100.f\:d-bc---blue-100:focus, .f\:d-bc---blue-100.f\:d-bc---blue-100:focus-within, .fv\:d-bc---blue-100.fv\:d-bc---blue-100:focus-visible {
9390
9512
  --bco: 100%;
9391
9513
  border-color: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--bco)) !important;
9392
9514
  }
9393
9515
 
9394
- .d-bc-blue-200.d-bc-blue-200, .h\:d-bc-blue-200.h\:d-bc-blue-200:hover, .f\:d-bc-blue-200.f\:d-bc-blue-200:focus, .f\:d-bc-blue-200.f\:d-bc-blue-200:focus-within, .fv\:d-bc-blue-200.fv\:d-bc-blue-200:focus-visible {
9516
+ .d-bc---blue-200.d-bc---blue-200, .h\:d-bc---blue-200.h\:d-bc---blue-200:hover, .f\:d-bc---blue-200.f\:d-bc---blue-200:focus, .f\:d-bc---blue-200.f\:d-bc---blue-200:focus-within, .fv\:d-bc---blue-200.fv\:d-bc---blue-200:focus-visible {
9395
9517
  --bco: 100%;
9396
9518
  border-color: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--bco)) !important;
9397
9519
  }
9398
9520
 
9399
- .d-bc-blue-300.d-bc-blue-300, .h\:d-bc-blue-300.h\:d-bc-blue-300:hover, .f\:d-bc-blue-300.f\:d-bc-blue-300:focus, .f\:d-bc-blue-300.f\:d-bc-blue-300:focus-within, .fv\:d-bc-blue-300.fv\:d-bc-blue-300:focus-visible {
9521
+ .d-bc---blue-300.d-bc---blue-300, .h\:d-bc---blue-300.h\:d-bc---blue-300:hover, .f\:d-bc---blue-300.f\:d-bc---blue-300:focus, .f\:d-bc---blue-300.f\:d-bc---blue-300:focus-within, .fv\:d-bc---blue-300.fv\:d-bc---blue-300:focus-visible {
9400
9522
  --bco: 100%;
9401
9523
  border-color: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--bco)) !important;
9402
9524
  }
9403
9525
 
9404
- .d-bc-blue-400.d-bc-blue-400, .h\:d-bc-blue-400.h\:d-bc-blue-400:hover, .f\:d-bc-blue-400.f\:d-bc-blue-400:focus, .f\:d-bc-blue-400.f\:d-bc-blue-400:focus-within, .fv\:d-bc-blue-400.fv\:d-bc-blue-400:focus-visible {
9526
+ .d-bc---blue-400.d-bc---blue-400, .h\:d-bc---blue-400.h\:d-bc---blue-400:hover, .f\:d-bc---blue-400.f\:d-bc---blue-400:focus, .f\:d-bc---blue-400.f\:d-bc---blue-400:focus-within, .fv\:d-bc---blue-400.fv\:d-bc---blue-400:focus-visible {
9405
9527
  --bco: 100%;
9406
9528
  border-color: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--bco)) !important;
9407
9529
  }
9408
9530
 
9409
- .d-bc-blue-500.d-bc-blue-500, .h\:d-bc-blue-500.h\:d-bc-blue-500:hover, .f\:d-bc-blue-500.f\:d-bc-blue-500:focus, .f\:d-bc-blue-500.f\:d-bc-blue-500:focus-within, .fv\:d-bc-blue-500.fv\:d-bc-blue-500:focus-visible {
9531
+ .d-bc---blue-500.d-bc---blue-500, .h\:d-bc---blue-500.h\:d-bc---blue-500:hover, .f\:d-bc---blue-500.f\:d-bc---blue-500:focus, .f\:d-bc---blue-500.f\:d-bc---blue-500:focus-within, .fv\:d-bc---blue-500.fv\:d-bc---blue-500:focus-visible {
9410
9532
  --bco: 100%;
9411
9533
  border-color: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--bco)) !important;
9412
9534
  }
9413
9535
 
9414
- .d-bc-magenta-100.d-bc-magenta-100, .h\:d-bc-magenta-100.h\:d-bc-magenta-100:hover, .f\:d-bc-magenta-100.f\:d-bc-magenta-100:focus, .f\:d-bc-magenta-100.f\:d-bc-magenta-100:focus-within, .fv\:d-bc-magenta-100.fv\:d-bc-magenta-100:focus-visible {
9536
+ .d-bc---magenta-100.d-bc---magenta-100, .h\:d-bc---magenta-100.h\:d-bc---magenta-100:hover, .f\:d-bc---magenta-100.f\:d-bc---magenta-100:focus, .f\:d-bc---magenta-100.f\:d-bc---magenta-100:focus-within, .fv\:d-bc---magenta-100.fv\:d-bc---magenta-100:focus-visible {
9415
9537
  --bco: 100%;
9416
9538
  border-color: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--bco)) !important;
9417
9539
  }
9418
9540
 
9419
- .d-bc-magenta-200.d-bc-magenta-200, .h\:d-bc-magenta-200.h\:d-bc-magenta-200:hover, .f\:d-bc-magenta-200.f\:d-bc-magenta-200:focus, .f\:d-bc-magenta-200.f\:d-bc-magenta-200:focus-within, .fv\:d-bc-magenta-200.fv\:d-bc-magenta-200:focus-visible {
9541
+ .d-bc---magenta-200.d-bc---magenta-200, .h\:d-bc---magenta-200.h\:d-bc---magenta-200:hover, .f\:d-bc---magenta-200.f\:d-bc---magenta-200:focus, .f\:d-bc---magenta-200.f\:d-bc---magenta-200:focus-within, .fv\:d-bc---magenta-200.fv\:d-bc---magenta-200:focus-visible {
9420
9542
  --bco: 100%;
9421
9543
  border-color: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--bco)) !important;
9422
9544
  }
9423
9545
 
9424
- .d-bc-magenta-300.d-bc-magenta-300, .h\:d-bc-magenta-300.h\:d-bc-magenta-300:hover, .f\:d-bc-magenta-300.f\:d-bc-magenta-300:focus, .f\:d-bc-magenta-300.f\:d-bc-magenta-300:focus-within, .fv\:d-bc-magenta-300.fv\:d-bc-magenta-300:focus-visible {
9546
+ .d-bc---magenta-300.d-bc---magenta-300, .h\:d-bc---magenta-300.h\:d-bc---magenta-300:hover, .f\:d-bc---magenta-300.f\:d-bc---magenta-300:focus, .f\:d-bc---magenta-300.f\:d-bc---magenta-300:focus-within, .fv\:d-bc---magenta-300.fv\:d-bc---magenta-300:focus-visible {
9425
9547
  --bco: 100%;
9426
9548
  border-color: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--bco)) !important;
9427
9549
  }
9428
9550
 
9429
- .d-bc-magenta-400.d-bc-magenta-400, .h\:d-bc-magenta-400.h\:d-bc-magenta-400:hover, .f\:d-bc-magenta-400.f\:d-bc-magenta-400:focus, .f\:d-bc-magenta-400.f\:d-bc-magenta-400:focus-within, .fv\:d-bc-magenta-400.fv\:d-bc-magenta-400:focus-visible {
9551
+ .d-bc---magenta-400.d-bc---magenta-400, .h\:d-bc---magenta-400.h\:d-bc---magenta-400:hover, .f\:d-bc---magenta-400.f\:d-bc---magenta-400:focus, .f\:d-bc---magenta-400.f\:d-bc---magenta-400:focus-within, .fv\:d-bc---magenta-400.fv\:d-bc---magenta-400:focus-visible {
9430
9552
  --bco: 100%;
9431
9553
  border-color: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--bco)) !important;
9432
9554
  }
9433
9555
 
9434
- .d-bc-magenta-500.d-bc-magenta-500, .h\:d-bc-magenta-500.h\:d-bc-magenta-500:hover, .f\:d-bc-magenta-500.f\:d-bc-magenta-500:focus, .f\:d-bc-magenta-500.f\:d-bc-magenta-500:focus-within, .fv\:d-bc-magenta-500.fv\:d-bc-magenta-500:focus-visible {
9556
+ .d-bc---magenta-500.d-bc---magenta-500, .h\:d-bc---magenta-500.h\:d-bc---magenta-500:hover, .f\:d-bc---magenta-500.f\:d-bc---magenta-500:focus, .f\:d-bc---magenta-500.f\:d-bc---magenta-500:focus-within, .fv\:d-bc---magenta-500.fv\:d-bc---magenta-500:focus-visible {
9435
9557
  --bco: 100%;
9436
9558
  border-color: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--bco)) !important;
9437
9559
  }
9438
9560
 
9439
- .d-bc-gold-100.d-bc-gold-100, .h\:d-bc-gold-100.h\:d-bc-gold-100:hover, .f\:d-bc-gold-100.f\:d-bc-gold-100:focus, .f\:d-bc-gold-100.f\:d-bc-gold-100:focus-within, .fv\:d-bc-gold-100.fv\:d-bc-gold-100:focus-visible {
9561
+ .d-bc---gold-100.d-bc---gold-100, .h\:d-bc---gold-100.h\:d-bc---gold-100:hover, .f\:d-bc---gold-100.f\:d-bc---gold-100:focus, .f\:d-bc---gold-100.f\:d-bc---gold-100:focus-within, .fv\:d-bc---gold-100.fv\:d-bc---gold-100:focus-visible {
9440
9562
  --bco: 100%;
9441
9563
  border-color: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--bco)) !important;
9442
9564
  }
9443
9565
 
9444
- .d-bc-gold-200.d-bc-gold-200, .h\:d-bc-gold-200.h\:d-bc-gold-200:hover, .f\:d-bc-gold-200.f\:d-bc-gold-200:focus, .f\:d-bc-gold-200.f\:d-bc-gold-200:focus-within, .fv\:d-bc-gold-200.fv\:d-bc-gold-200:focus-visible {
9566
+ .d-bc---gold-200.d-bc---gold-200, .h\:d-bc---gold-200.h\:d-bc---gold-200:hover, .f\:d-bc---gold-200.f\:d-bc---gold-200:focus, .f\:d-bc---gold-200.f\:d-bc---gold-200:focus-within, .fv\:d-bc---gold-200.fv\:d-bc---gold-200:focus-visible {
9445
9567
  --bco: 100%;
9446
9568
  border-color: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--bco)) !important;
9447
9569
  }
9448
9570
 
9449
- .d-bc-gold-300.d-bc-gold-300, .h\:d-bc-gold-300.h\:d-bc-gold-300:hover, .f\:d-bc-gold-300.f\:d-bc-gold-300:focus, .f\:d-bc-gold-300.f\:d-bc-gold-300:focus-within, .fv\:d-bc-gold-300.fv\:d-bc-gold-300:focus-visible {
9571
+ .d-bc---gold-300.d-bc---gold-300, .h\:d-bc---gold-300.h\:d-bc---gold-300:hover, .f\:d-bc---gold-300.f\:d-bc---gold-300:focus, .f\:d-bc---gold-300.f\:d-bc---gold-300:focus-within, .fv\:d-bc---gold-300.fv\:d-bc---gold-300:focus-visible {
9450
9572
  --bco: 100%;
9451
9573
  border-color: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--bco)) !important;
9452
9574
  }
9453
9575
 
9454
- .d-bc-gold-400.d-bc-gold-400, .h\:d-bc-gold-400.h\:d-bc-gold-400:hover, .f\:d-bc-gold-400.f\:d-bc-gold-400:focus, .f\:d-bc-gold-400.f\:d-bc-gold-400:focus-within, .fv\:d-bc-gold-400.fv\:d-bc-gold-400:focus-visible {
9576
+ .d-bc---gold-400.d-bc---gold-400, .h\:d-bc---gold-400.h\:d-bc---gold-400:hover, .f\:d-bc---gold-400.f\:d-bc---gold-400:focus, .f\:d-bc---gold-400.f\:d-bc---gold-400:focus-within, .fv\:d-bc---gold-400.fv\:d-bc---gold-400:focus-visible {
9455
9577
  --bco: 100%;
9456
9578
  border-color: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--bco)) !important;
9457
9579
  }
9458
9580
 
9459
- .d-bc-gold-500.d-bc-gold-500, .h\:d-bc-gold-500.h\:d-bc-gold-500:hover, .f\:d-bc-gold-500.f\:d-bc-gold-500:focus, .f\:d-bc-gold-500.f\:d-bc-gold-500:focus-within, .fv\:d-bc-gold-500.fv\:d-bc-gold-500:focus-visible {
9581
+ .d-bc---gold-500.d-bc---gold-500, .h\:d-bc---gold-500.h\:d-bc---gold-500:hover, .f\:d-bc---gold-500.f\:d-bc---gold-500:focus, .f\:d-bc---gold-500.f\:d-bc---gold-500:focus-within, .fv\:d-bc---gold-500.fv\:d-bc---gold-500:focus-visible {
9460
9582
  --bco: 100%;
9461
9583
  border-color: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--bco)) !important;
9462
9584
  }
9463
9585
 
9464
- .d-bc-green-100.d-bc-green-100, .h\:d-bc-green-100.h\:d-bc-green-100:hover, .f\:d-bc-green-100.f\:d-bc-green-100:focus, .f\:d-bc-green-100.f\:d-bc-green-100:focus-within, .fv\:d-bc-green-100.fv\:d-bc-green-100:focus-visible {
9586
+ .d-bc---green-100.d-bc---green-100, .h\:d-bc---green-100.h\:d-bc---green-100:hover, .f\:d-bc---green-100.f\:d-bc---green-100:focus, .f\:d-bc---green-100.f\:d-bc---green-100:focus-within, .fv\:d-bc---green-100.fv\:d-bc---green-100:focus-visible {
9465
9587
  --bco: 100%;
9466
9588
  border-color: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--bco)) !important;
9467
9589
  }
9468
9590
 
9469
- .d-bc-green-200.d-bc-green-200, .h\:d-bc-green-200.h\:d-bc-green-200:hover, .f\:d-bc-green-200.f\:d-bc-green-200:focus, .f\:d-bc-green-200.f\:d-bc-green-200:focus-within, .fv\:d-bc-green-200.fv\:d-bc-green-200:focus-visible {
9591
+ .d-bc---green-200.d-bc---green-200, .h\:d-bc---green-200.h\:d-bc---green-200:hover, .f\:d-bc---green-200.f\:d-bc---green-200:focus, .f\:d-bc---green-200.f\:d-bc---green-200:focus-within, .fv\:d-bc---green-200.fv\:d-bc---green-200:focus-visible {
9470
9592
  --bco: 100%;
9471
9593
  border-color: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--bco)) !important;
9472
9594
  }
9473
9595
 
9474
- .d-bc-green-300.d-bc-green-300, .h\:d-bc-green-300.h\:d-bc-green-300:hover, .f\:d-bc-green-300.f\:d-bc-green-300:focus, .f\:d-bc-green-300.f\:d-bc-green-300:focus-within, .fv\:d-bc-green-300.fv\:d-bc-green-300:focus-visible {
9596
+ .d-bc---green-300.d-bc---green-300, .h\:d-bc---green-300.h\:d-bc---green-300:hover, .f\:d-bc---green-300.f\:d-bc---green-300:focus, .f\:d-bc---green-300.f\:d-bc---green-300:focus-within, .fv\:d-bc---green-300.fv\:d-bc---green-300:focus-visible {
9475
9597
  --bco: 100%;
9476
9598
  border-color: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--bco)) !important;
9477
9599
  }
9478
9600
 
9479
- .d-bc-green-400.d-bc-green-400, .h\:d-bc-green-400.h\:d-bc-green-400:hover, .f\:d-bc-green-400.f\:d-bc-green-400:focus, .f\:d-bc-green-400.f\:d-bc-green-400:focus-within, .fv\:d-bc-green-400.fv\:d-bc-green-400:focus-visible {
9601
+ .d-bc---green-400.d-bc---green-400, .h\:d-bc---green-400.h\:d-bc---green-400:hover, .f\:d-bc---green-400.f\:d-bc---green-400:focus, .f\:d-bc---green-400.f\:d-bc---green-400:focus-within, .fv\:d-bc---green-400.fv\:d-bc---green-400:focus-visible {
9480
9602
  --bco: 100%;
9481
9603
  border-color: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--bco)) !important;
9482
9604
  }
9483
9605
 
9484
- .d-bc-green-500.d-bc-green-500, .h\:d-bc-green-500.h\:d-bc-green-500:hover, .f\:d-bc-green-500.f\:d-bc-green-500:focus, .f\:d-bc-green-500.f\:d-bc-green-500:focus-within, .fv\:d-bc-green-500.fv\:d-bc-green-500:focus-visible {
9606
+ .d-bc---green-500.d-bc---green-500, .h\:d-bc---green-500.h\:d-bc---green-500:hover, .f\:d-bc---green-500.f\:d-bc---green-500:focus, .f\:d-bc---green-500.f\:d-bc---green-500:focus-within, .fv\:d-bc---green-500.fv\:d-bc---green-500:focus-visible {
9485
9607
  --bco: 100%;
9486
9608
  border-color: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--bco)) !important;
9487
9609
  }
9488
9610
 
9489
- .d-bc-red-100.d-bc-red-100, .h\:d-bc-red-100.h\:d-bc-red-100:hover, .f\:d-bc-red-100.f\:d-bc-red-100:focus, .f\:d-bc-red-100.f\:d-bc-red-100:focus-within, .fv\:d-bc-red-100.fv\:d-bc-red-100:focus-visible {
9611
+ .d-bc---red-100.d-bc---red-100, .h\:d-bc---red-100.h\:d-bc---red-100:hover, .f\:d-bc---red-100.f\:d-bc---red-100:focus, .f\:d-bc---red-100.f\:d-bc---red-100:focus-within, .fv\:d-bc---red-100.fv\:d-bc---red-100:focus-visible {
9490
9612
  --bco: 100%;
9491
9613
  border-color: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--bco)) !important;
9492
9614
  }
9493
9615
 
9494
- .d-bc-red-200.d-bc-red-200, .h\:d-bc-red-200.h\:d-bc-red-200:hover, .f\:d-bc-red-200.f\:d-bc-red-200:focus, .f\:d-bc-red-200.f\:d-bc-red-200:focus-within, .fv\:d-bc-red-200.fv\:d-bc-red-200:focus-visible {
9616
+ .d-bc---red-200.d-bc---red-200, .h\:d-bc---red-200.h\:d-bc---red-200:hover, .f\:d-bc---red-200.f\:d-bc---red-200:focus, .f\:d-bc---red-200.f\:d-bc---red-200:focus-within, .fv\:d-bc---red-200.fv\:d-bc---red-200:focus-visible {
9495
9617
  --bco: 100%;
9496
9618
  border-color: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--bco)) !important;
9497
9619
  }
9498
9620
 
9499
- .d-bc-red-300.d-bc-red-300, .h\:d-bc-red-300.h\:d-bc-red-300:hover, .f\:d-bc-red-300.f\:d-bc-red-300:focus, .f\:d-bc-red-300.f\:d-bc-red-300:focus-within, .fv\:d-bc-red-300.fv\:d-bc-red-300:focus-visible {
9621
+ .d-bc---red-300.d-bc---red-300, .h\:d-bc---red-300.h\:d-bc---red-300:hover, .f\:d-bc---red-300.f\:d-bc---red-300:focus, .f\:d-bc---red-300.f\:d-bc---red-300:focus-within, .fv\:d-bc---red-300.fv\:d-bc---red-300:focus-visible {
9500
9622
  --bco: 100%;
9501
9623
  border-color: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--bco)) !important;
9502
9624
  }
9503
9625
 
9504
- .d-bc-red-400.d-bc-red-400, .h\:d-bc-red-400.h\:d-bc-red-400:hover, .f\:d-bc-red-400.f\:d-bc-red-400:focus, .f\:d-bc-red-400.f\:d-bc-red-400:focus-within, .fv\:d-bc-red-400.fv\:d-bc-red-400:focus-visible {
9626
+ .d-bc---red-400.d-bc---red-400, .h\:d-bc---red-400.h\:d-bc---red-400:hover, .f\:d-bc---red-400.f\:d-bc---red-400:focus, .f\:d-bc---red-400.f\:d-bc---red-400:focus-within, .fv\:d-bc---red-400.fv\:d-bc---red-400:focus-visible {
9505
9627
  --bco: 100%;
9506
9628
  border-color: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--bco)) !important;
9507
9629
  }
9508
9630
 
9509
- .d-bc-red-500.d-bc-red-500, .h\:d-bc-red-500.h\:d-bc-red-500:hover, .f\:d-bc-red-500.f\:d-bc-red-500:focus, .f\:d-bc-red-500.f\:d-bc-red-500:focus-within, .fv\:d-bc-red-500.fv\:d-bc-red-500:focus-visible {
9631
+ .d-bc---red-500.d-bc---red-500, .h\:d-bc---red-500.h\:d-bc---red-500:hover, .f\:d-bc---red-500.f\:d-bc---red-500:focus, .f\:d-bc---red-500.f\:d-bc---red-500:focus-within, .fv\:d-bc---red-500.fv\:d-bc---red-500:focus-visible {
9510
9632
  --bco: 100%;
9511
9633
  border-color: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--bco)) !important;
9512
9634
  }
9513
9635
 
9514
- .d-bc-tan-100.d-bc-tan-100, .h\:d-bc-tan-100.h\:d-bc-tan-100:hover, .f\:d-bc-tan-100.f\:d-bc-tan-100:focus, .f\:d-bc-tan-100.f\:d-bc-tan-100:focus-within, .fv\:d-bc-tan-100.fv\:d-bc-tan-100:focus-visible {
9636
+ .d-bc---tan-100.d-bc---tan-100, .h\:d-bc---tan-100.h\:d-bc---tan-100:hover, .f\:d-bc---tan-100.f\:d-bc---tan-100:focus, .f\:d-bc---tan-100.f\:d-bc---tan-100:focus-within, .fv\:d-bc---tan-100.fv\:d-bc---tan-100:focus-visible {
9515
9637
  --bco: 100%;
9516
9638
  border-color: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--bco)) !important;
9517
9639
  }
9518
9640
 
9519
- .d-bc-tan-200.d-bc-tan-200, .h\:d-bc-tan-200.h\:d-bc-tan-200:hover, .f\:d-bc-tan-200.f\:d-bc-tan-200:focus, .f\:d-bc-tan-200.f\:d-bc-tan-200:focus-within, .fv\:d-bc-tan-200.fv\:d-bc-tan-200:focus-visible {
9641
+ .d-bc---tan-200.d-bc---tan-200, .h\:d-bc---tan-200.h\:d-bc---tan-200:hover, .f\:d-bc---tan-200.f\:d-bc---tan-200:focus, .f\:d-bc---tan-200.f\:d-bc---tan-200:focus-within, .fv\:d-bc---tan-200.fv\:d-bc---tan-200:focus-visible {
9520
9642
  --bco: 100%;
9521
9643
  border-color: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--bco)) !important;
9522
9644
  }
9523
9645
 
9524
- .d-bc-tan-300.d-bc-tan-300, .h\:d-bc-tan-300.h\:d-bc-tan-300:hover, .f\:d-bc-tan-300.f\:d-bc-tan-300:focus, .f\:d-bc-tan-300.f\:d-bc-tan-300:focus-within, .fv\:d-bc-tan-300.fv\:d-bc-tan-300:focus-visible {
9646
+ .d-bc---tan-300.d-bc---tan-300, .h\:d-bc---tan-300.h\:d-bc---tan-300:hover, .f\:d-bc---tan-300.f\:d-bc---tan-300:focus, .f\:d-bc---tan-300.f\:d-bc---tan-300:focus-within, .fv\:d-bc---tan-300.fv\:d-bc---tan-300:focus-visible {
9525
9647
  --bco: 100%;
9526
9648
  border-color: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--bco)) !important;
9527
9649
  }
9528
9650
 
9529
- .d-bc-tan-400.d-bc-tan-400, .h\:d-bc-tan-400.h\:d-bc-tan-400:hover, .f\:d-bc-tan-400.f\:d-bc-tan-400:focus, .f\:d-bc-tan-400.f\:d-bc-tan-400:focus-within, .fv\:d-bc-tan-400.fv\:d-bc-tan-400:focus-visible {
9651
+ .d-bc---tan-400.d-bc---tan-400, .h\:d-bc---tan-400.h\:d-bc---tan-400:hover, .f\:d-bc---tan-400.f\:d-bc---tan-400:focus, .f\:d-bc---tan-400.f\:d-bc---tan-400:focus-within, .fv\:d-bc---tan-400.fv\:d-bc---tan-400:focus-visible {
9530
9652
  --bco: 100%;
9531
9653
  border-color: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--bco)) !important;
9532
9654
  }
9533
9655
 
9534
- .d-bc-tan-500.d-bc-tan-500, .h\:d-bc-tan-500.h\:d-bc-tan-500:hover, .f\:d-bc-tan-500.f\:d-bc-tan-500:focus, .f\:d-bc-tan-500.f\:d-bc-tan-500:focus-within, .fv\:d-bc-tan-500.fv\:d-bc-tan-500:focus-visible {
9656
+ .d-bc---tan-500.d-bc---tan-500, .h\:d-bc---tan-500.h\:d-bc---tan-500:hover, .f\:d-bc---tan-500.f\:d-bc---tan-500:focus, .f\:d-bc---tan-500.f\:d-bc---tan-500:focus-within, .fv\:d-bc---tan-500.fv\:d-bc---tan-500:focus-visible {
9535
9657
  --bco: 100%;
9536
9658
  border-color: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--bco)) !important;
9537
9659
  }
9538
9660
 
9539
- .d-bgc-neutral-white.d-bgc-neutral-white, .h\:d-bgc-neutral-white.h\:d-bgc-neutral-white:hover, .f\:d-bgc-neutral-white.f\:d-bgc-neutral-white:focus, .f\:d-bgc-neutral-white.f\:d-bgc-neutral-white:focus-within, .fv\:d-bgc-neutral-white.fv\:d-bgc-neutral-white:focus-visible {
9661
+ .d-bc---color-base.d-bc---color-base, .h\:d-bc---color-base.h\:d-bc---color-base:hover, .f\:d-bc---color-base.f\:d-bc---color-base:focus, .f\:d-bc---color-base.f\:d-bc---color-base:focus-within, .fv\:d-bc---color-base.fv\:d-bc---color-base:focus-visible {
9662
+ --bco: 100%;
9663
+ border-color: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--bco)) !important;
9664
+ }
9665
+
9666
+ .d-bc---topbar-color-foreground.d-bc---topbar-color-foreground, .h\:d-bc---topbar-color-foreground.h\:d-bc---topbar-color-foreground:hover, .f\:d-bc---topbar-color-foreground.f\:d-bc---topbar-color-foreground:focus, .f\:d-bc---topbar-color-foreground.f\:d-bc---topbar-color-foreground:focus-within, .fv\:d-bc---topbar-color-foreground.fv\:d-bc---topbar-color-foreground:focus-visible {
9667
+ --bco: 100%;
9668
+ border-color: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--bco)) !important;
9669
+ }
9670
+
9671
+ .d-bc---topbar-color-background.d-bc---topbar-color-background, .h\:d-bc---topbar-color-background.h\:d-bc---topbar-color-background:hover, .f\:d-bc---topbar-color-background.f\:d-bc---topbar-color-background:focus, .f\:d-bc---topbar-color-background.f\:d-bc---topbar-color-background:focus-within, .fv\:d-bc---topbar-color-background.fv\:d-bc---topbar-color-background:focus-visible {
9672
+ --bco: 100%;
9673
+ border-color: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--bco)) !important;
9674
+ }
9675
+
9676
+ .d-bc---topbar-field-color-foreground.d-bc---topbar-field-color-foreground, .h\:d-bc---topbar-field-color-foreground.h\:d-bc---topbar-field-color-foreground:hover, .f\:d-bc---topbar-field-color-foreground.f\:d-bc---topbar-field-color-foreground:focus, .f\:d-bc---topbar-field-color-foreground.f\:d-bc---topbar-field-color-foreground:focus-within, .fv\:d-bc---topbar-field-color-foreground.fv\:d-bc---topbar-field-color-foreground:focus-visible {
9677
+ --bco: 100%;
9678
+ border-color: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--bco)) !important;
9679
+ }
9680
+
9681
+ .d-bc---topbar-field-color-foreground-hover.d-bc---topbar-field-color-foreground-hover, .h\:d-bc---topbar-field-color-foreground-hover.h\:d-bc---topbar-field-color-foreground-hover:hover, .f\:d-bc---topbar-field-color-foreground-hover.f\:d-bc---topbar-field-color-foreground-hover:focus, .f\:d-bc---topbar-field-color-foreground-hover.f\:d-bc---topbar-field-color-foreground-hover:focus-within, .fv\:d-bc---topbar-field-color-foreground-hover.fv\:d-bc---topbar-field-color-foreground-hover:focus-visible {
9682
+ --bco: 100%;
9683
+ border-color: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--bco)) !important;
9684
+ }
9685
+
9686
+ .d-bc---topbar-field-color-background.d-bc---topbar-field-color-background, .h\:d-bc---topbar-field-color-background.h\:d-bc---topbar-field-color-background:hover, .f\:d-bc---topbar-field-color-background.f\:d-bc---topbar-field-color-background:focus, .f\:d-bc---topbar-field-color-background.f\:d-bc---topbar-field-color-background:focus-within, .fv\:d-bc---topbar-field-color-background.fv\:d-bc---topbar-field-color-background:focus-visible {
9687
+ --bco: 100%;
9688
+ border-color: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--bco)) !important;
9689
+ }
9690
+
9691
+ .d-bc---topbar-field-color-background-hover.d-bc---topbar-field-color-background-hover, .h\:d-bc---topbar-field-color-background-hover.h\:d-bc---topbar-field-color-background-hover:hover, .f\:d-bc---topbar-field-color-background-hover.f\:d-bc---topbar-field-color-background-hover:focus, .f\:d-bc---topbar-field-color-background-hover.f\:d-bc---topbar-field-color-background-hover:focus-within, .fv\:d-bc---topbar-field-color-background-hover.fv\:d-bc---topbar-field-color-background-hover:focus-visible {
9692
+ --bco: 100%;
9693
+ border-color: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--bco)) !important;
9694
+ }
9695
+
9696
+ .d-bc---topbar-field-color-border.d-bc---topbar-field-color-border, .h\:d-bc---topbar-field-color-border.h\:d-bc---topbar-field-color-border:hover, .f\:d-bc---topbar-field-color-border.f\:d-bc---topbar-field-color-border:focus, .f\:d-bc---topbar-field-color-border.f\:d-bc---topbar-field-color-border:focus-within, .fv\:d-bc---topbar-field-color-border.fv\:d-bc---topbar-field-color-border:focus-visible {
9697
+ --bco: 100%;
9698
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--bco)) !important;
9699
+ }
9700
+
9701
+ .d-bc---topbar-field-color-border-hover.d-bc---topbar-field-color-border-hover, .h\:d-bc---topbar-field-color-border-hover.h\:d-bc---topbar-field-color-border-hover:hover, .f\:d-bc---topbar-field-color-border-hover.f\:d-bc---topbar-field-color-border-hover:focus, .f\:d-bc---topbar-field-color-border-hover.f\:d-bc---topbar-field-color-border-hover:focus-within, .fv\:d-bc---topbar-field-color-border-hover.fv\:d-bc---topbar-field-color-border-hover:focus-visible {
9702
+ --bco: 100%;
9703
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--bco)) !important;
9704
+ }
9705
+
9706
+ .d-bc---topbar-field-color-border-active.d-bc---topbar-field-color-border-active, .h\:d-bc---topbar-field-color-border-active.h\:d-bc---topbar-field-color-border-active:hover, .f\:d-bc---topbar-field-color-border-active.f\:d-bc---topbar-field-color-border-active:focus, .f\:d-bc---topbar-field-color-border-active.f\:d-bc---topbar-field-color-border-active:focus-within, .fv\:d-bc---topbar-field-color-border-active.fv\:d-bc---topbar-field-color-border-active:focus-visible {
9707
+ --bco: 100%;
9708
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--bco)) !important;
9709
+ }
9710
+
9711
+ .d-bc---topbar-button-color-foreground.d-bc---topbar-button-color-foreground, .h\:d-bc---topbar-button-color-foreground.h\:d-bc---topbar-button-color-foreground:hover, .f\:d-bc---topbar-button-color-foreground.f\:d-bc---topbar-button-color-foreground:focus, .f\:d-bc---topbar-button-color-foreground.f\:d-bc---topbar-button-color-foreground:focus-within, .fv\:d-bc---topbar-button-color-foreground.fv\:d-bc---topbar-button-color-foreground:focus-visible {
9712
+ --bco: 100%;
9713
+ border-color: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--bco)) !important;
9714
+ }
9715
+
9716
+ .d-bc---topbar-button-color-foreground-hover.d-bc---topbar-button-color-foreground-hover, .h\:d-bc---topbar-button-color-foreground-hover.h\:d-bc---topbar-button-color-foreground-hover:hover, .f\:d-bc---topbar-button-color-foreground-hover.f\:d-bc---topbar-button-color-foreground-hover:focus, .f\:d-bc---topbar-button-color-foreground-hover.f\:d-bc---topbar-button-color-foreground-hover:focus-within, .fv\:d-bc---topbar-button-color-foreground-hover.fv\:d-bc---topbar-button-color-foreground-hover:focus-visible {
9717
+ --bco: 100%;
9718
+ border-color: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--bco)) !important;
9719
+ }
9720
+
9721
+ .d-bc---topbar-button-color-background.d-bc---topbar-button-color-background, .h\:d-bc---topbar-button-color-background.h\:d-bc---topbar-button-color-background:hover, .f\:d-bc---topbar-button-color-background.f\:d-bc---topbar-button-color-background:focus, .f\:d-bc---topbar-button-color-background.f\:d-bc---topbar-button-color-background:focus-within, .fv\:d-bc---topbar-button-color-background.fv\:d-bc---topbar-button-color-background:focus-visible {
9722
+ --bco: 100%;
9723
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--bco)) !important;
9724
+ }
9725
+
9726
+ .d-bc---topbar-button-color-background-hover.d-bc---topbar-button-color-background-hover, .h\:d-bc---topbar-button-color-background-hover.h\:d-bc---topbar-button-color-background-hover:hover, .f\:d-bc---topbar-button-color-background-hover.f\:d-bc---topbar-button-color-background-hover:focus, .f\:d-bc---topbar-button-color-background-hover.f\:d-bc---topbar-button-color-background-hover:focus-within, .fv\:d-bc---topbar-button-color-background-hover.fv\:d-bc---topbar-button-color-background-hover:focus-visible {
9727
+ --bco: 100%;
9728
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--bco)) !important;
9729
+ }
9730
+
9731
+ .d-bc---topbar-button-color-background-active.d-bc---topbar-button-color-background-active, .h\:d-bc---topbar-button-color-background-active.h\:d-bc---topbar-button-color-background-active:hover, .f\:d-bc---topbar-button-color-background-active.f\:d-bc---topbar-button-color-background-active:focus, .f\:d-bc---topbar-button-color-background-active.f\:d-bc---topbar-button-color-background-active:focus-within, .fv\:d-bc---topbar-button-color-background-active.fv\:d-bc---topbar-button-color-background-active:focus-visible {
9732
+ --bco: 100%;
9733
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--bco)) !important;
9734
+ }
9735
+
9736
+ .d-bc---topbar-profile-color-foreground.d-bc---topbar-profile-color-foreground, .h\:d-bc---topbar-profile-color-foreground.h\:d-bc---topbar-profile-color-foreground:hover, .f\:d-bc---topbar-profile-color-foreground.f\:d-bc---topbar-profile-color-foreground:focus, .f\:d-bc---topbar-profile-color-foreground.f\:d-bc---topbar-profile-color-foreground:focus-within, .fv\:d-bc---topbar-profile-color-foreground.fv\:d-bc---topbar-profile-color-foreground:focus-visible {
9737
+ --bco: 100%;
9738
+ border-color: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--bco)) !important;
9739
+ }
9740
+
9741
+ .d-bc---topbar-profile-color-foreground-inverted.d-bc---topbar-profile-color-foreground-inverted, .h\:d-bc---topbar-profile-color-foreground-inverted.h\:d-bc---topbar-profile-color-foreground-inverted:hover, .f\:d-bc---topbar-profile-color-foreground-inverted.f\:d-bc---topbar-profile-color-foreground-inverted:focus, .f\:d-bc---topbar-profile-color-foreground-inverted.f\:d-bc---topbar-profile-color-foreground-inverted:focus-within, .fv\:d-bc---topbar-profile-color-foreground-inverted.fv\:d-bc---topbar-profile-color-foreground-inverted:focus-visible {
9742
+ --bco: 100%;
9743
+ border-color: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--bco)) !important;
9744
+ }
9745
+
9746
+ .d-bc---topbar-profile-color-background.d-bc---topbar-profile-color-background, .h\:d-bc---topbar-profile-color-background.h\:d-bc---topbar-profile-color-background:hover, .f\:d-bc---topbar-profile-color-background.f\:d-bc---topbar-profile-color-background:focus, .f\:d-bc---topbar-profile-color-background.f\:d-bc---topbar-profile-color-background:focus-within, .fv\:d-bc---topbar-profile-color-background.fv\:d-bc---topbar-profile-color-background:focus-visible {
9747
+ --bco: 100%;
9748
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--bco)) !important;
9749
+ }
9750
+
9751
+ .d-bc---topbar-profile-color-background-inverted.d-bc---topbar-profile-color-background-inverted, .h\:d-bc---topbar-profile-color-background-inverted.h\:d-bc---topbar-profile-color-background-inverted:hover, .f\:d-bc---topbar-profile-color-background-inverted.f\:d-bc---topbar-profile-color-background-inverted:focus, .f\:d-bc---topbar-profile-color-background-inverted.f\:d-bc---topbar-profile-color-background-inverted:focus-within, .fv\:d-bc---topbar-profile-color-background-inverted.fv\:d-bc---topbar-profile-color-background-inverted:focus-visible {
9752
+ --bco: 100%;
9753
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--bco)) !important;
9754
+ }
9755
+
9756
+ .d-bc---topbar-profile-color-background-hover.d-bc---topbar-profile-color-background-hover, .h\:d-bc---topbar-profile-color-background-hover.h\:d-bc---topbar-profile-color-background-hover:hover, .f\:d-bc---topbar-profile-color-background-hover.f\:d-bc---topbar-profile-color-background-hover:focus, .f\:d-bc---topbar-profile-color-background-hover.f\:d-bc---topbar-profile-color-background-hover:focus-within, .fv\:d-bc---topbar-profile-color-background-hover.fv\:d-bc---topbar-profile-color-background-hover:focus-visible {
9757
+ --bco: 100%;
9758
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--bco)) !important;
9759
+ }
9760
+
9761
+ .d-bc---topbar-profile-color-background-active.d-bc---topbar-profile-color-background-active, .h\:d-bc---topbar-profile-color-background-active.h\:d-bc---topbar-profile-color-background-active:hover, .f\:d-bc---topbar-profile-color-background-active.f\:d-bc---topbar-profile-color-background-active:focus, .f\:d-bc---topbar-profile-color-background-active.f\:d-bc---topbar-profile-color-background-active:focus-within, .fv\:d-bc---topbar-profile-color-background-active.fv\:d-bc---topbar-profile-color-background-active:focus-visible {
9762
+ --bco: 100%;
9763
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--bco)) !important;
9764
+ }
9765
+
9766
+ .d-bc---sidebar-color-foreground.d-bc---sidebar-color-foreground, .h\:d-bc---sidebar-color-foreground.h\:d-bc---sidebar-color-foreground:hover, .f\:d-bc---sidebar-color-foreground.f\:d-bc---sidebar-color-foreground:focus, .f\:d-bc---sidebar-color-foreground.f\:d-bc---sidebar-color-foreground:focus-within, .fv\:d-bc---sidebar-color-foreground.fv\:d-bc---sidebar-color-foreground:focus-visible {
9767
+ --bco: 100%;
9768
+ border-color: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--bco)) !important;
9769
+ }
9770
+
9771
+ .d-bc---sidebar-color-foreground-unread.d-bc---sidebar-color-foreground-unread, .h\:d-bc---sidebar-color-foreground-unread.h\:d-bc---sidebar-color-foreground-unread:hover, .f\:d-bc---sidebar-color-foreground-unread.f\:d-bc---sidebar-color-foreground-unread:focus, .f\:d-bc---sidebar-color-foreground-unread.f\:d-bc---sidebar-color-foreground-unread:focus-within, .fv\:d-bc---sidebar-color-foreground-unread.fv\:d-bc---sidebar-color-foreground-unread:focus-visible {
9772
+ --bco: 100%;
9773
+ border-color: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--bco)) !important;
9774
+ }
9775
+
9776
+ .d-bc---sidebar-color-background.d-bc---sidebar-color-background, .h\:d-bc---sidebar-color-background.h\:d-bc---sidebar-color-background:hover, .f\:d-bc---sidebar-color-background.f\:d-bc---sidebar-color-background:focus, .f\:d-bc---sidebar-color-background.f\:d-bc---sidebar-color-background:focus-within, .fv\:d-bc---sidebar-color-background.fv\:d-bc---sidebar-color-background:focus-visible {
9777
+ --bco: 100%;
9778
+ border-color: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--bco)) !important;
9779
+ }
9780
+
9781
+ .d-bc---sidebar-icon-color-foreground.d-bc---sidebar-icon-color-foreground, .h\:d-bc---sidebar-icon-color-foreground.h\:d-bc---sidebar-icon-color-foreground:hover, .f\:d-bc---sidebar-icon-color-foreground.f\:d-bc---sidebar-icon-color-foreground:focus, .f\:d-bc---sidebar-icon-color-foreground.f\:d-bc---sidebar-icon-color-foreground:focus-within, .fv\:d-bc---sidebar-icon-color-foreground.fv\:d-bc---sidebar-icon-color-foreground:focus-visible {
9782
+ --bco: 100%;
9783
+ border-color: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--bco)) !important;
9784
+ }
9785
+
9786
+ .d-bc---sidebar-status-color-foreground.d-bc---sidebar-status-color-foreground, .h\:d-bc---sidebar-status-color-foreground.h\:d-bc---sidebar-status-color-foreground:hover, .f\:d-bc---sidebar-status-color-foreground.f\:d-bc---sidebar-status-color-foreground:focus, .f\:d-bc---sidebar-status-color-foreground.f\:d-bc---sidebar-status-color-foreground:focus-within, .fv\:d-bc---sidebar-status-color-foreground.fv\:d-bc---sidebar-status-color-foreground:focus-visible {
9787
+ --bco: 100%;
9788
+ border-color: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--bco)) !important;
9789
+ }
9790
+
9791
+ .d-bc---sidebar-row-color-background.d-bc---sidebar-row-color-background, .h\:d-bc---sidebar-row-color-background.h\:d-bc---sidebar-row-color-background:hover, .f\:d-bc---sidebar-row-color-background.f\:d-bc---sidebar-row-color-background:focus, .f\:d-bc---sidebar-row-color-background.f\:d-bc---sidebar-row-color-background:focus-within, .fv\:d-bc---sidebar-row-color-background.fv\:d-bc---sidebar-row-color-background:focus-visible {
9792
+ --bco: 100%;
9793
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--bco)) !important;
9794
+ }
9795
+
9796
+ .d-bc---sidebar-row-color-background-hover.d-bc---sidebar-row-color-background-hover, .h\:d-bc---sidebar-row-color-background-hover.h\:d-bc---sidebar-row-color-background-hover:hover, .f\:d-bc---sidebar-row-color-background-hover.f\:d-bc---sidebar-row-color-background-hover:focus, .f\:d-bc---sidebar-row-color-background-hover.f\:d-bc---sidebar-row-color-background-hover:focus-within, .fv\:d-bc---sidebar-row-color-background-hover.fv\:d-bc---sidebar-row-color-background-hover:focus-visible {
9797
+ --bco: 100%;
9798
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--bco)) !important;
9799
+ }
9800
+
9801
+ .d-bc---sidebar-row-color-background-active.d-bc---sidebar-row-color-background-active, .h\:d-bc---sidebar-row-color-background-active.h\:d-bc---sidebar-row-color-background-active:hover, .f\:d-bc---sidebar-row-color-background-active.f\:d-bc---sidebar-row-color-background-active:focus, .f\:d-bc---sidebar-row-color-background-active.f\:d-bc---sidebar-row-color-background-active:focus-within, .fv\:d-bc---sidebar-row-color-background-active.fv\:d-bc---sidebar-row-color-background-active:focus-visible {
9802
+ --bco: 100%;
9803
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--bco)) !important;
9804
+ }
9805
+
9806
+ .d-bc---sidebar-selected-row-color-foreground.d-bc---sidebar-selected-row-color-foreground, .h\:d-bc---sidebar-selected-row-color-foreground.h\:d-bc---sidebar-selected-row-color-foreground:hover, .f\:d-bc---sidebar-selected-row-color-foreground.f\:d-bc---sidebar-selected-row-color-foreground:focus, .f\:d-bc---sidebar-selected-row-color-foreground.f\:d-bc---sidebar-selected-row-color-foreground:focus-within, .fv\:d-bc---sidebar-selected-row-color-foreground.fv\:d-bc---sidebar-selected-row-color-foreground:focus-visible {
9807
+ --bco: 100%;
9808
+ border-color: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--bco)) !important;
9809
+ }
9810
+
9811
+ .d-bc---sidebar-selected-row-color-background.d-bc---sidebar-selected-row-color-background, .h\:d-bc---sidebar-selected-row-color-background.h\:d-bc---sidebar-selected-row-color-background:hover, .f\:d-bc---sidebar-selected-row-color-background.f\:d-bc---sidebar-selected-row-color-background:focus, .f\:d-bc---sidebar-selected-row-color-background.f\:d-bc---sidebar-selected-row-color-background:focus-within, .fv\:d-bc---sidebar-selected-row-color-background.fv\:d-bc---sidebar-selected-row-color-background:focus-visible {
9812
+ --bco: 100%;
9813
+ border-color: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--bco)) !important;
9814
+ }
9815
+
9816
+ .d-bc---sidebar-section-color-foreground.d-bc---sidebar-section-color-foreground, .h\:d-bc---sidebar-section-color-foreground.h\:d-bc---sidebar-section-color-foreground:hover, .f\:d-bc---sidebar-section-color-foreground.f\:d-bc---sidebar-section-color-foreground:focus, .f\:d-bc---sidebar-section-color-foreground.f\:d-bc---sidebar-section-color-foreground:focus-within, .fv\:d-bc---sidebar-section-color-foreground.fv\:d-bc---sidebar-section-color-foreground:focus-visible {
9817
+ --bco: 100%;
9818
+ border-color: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--bco)) !important;
9819
+ }
9820
+
9821
+ .d-bc---presence-color-background-available.d-bc---presence-color-background-available, .h\:d-bc---presence-color-background-available.h\:d-bc---presence-color-background-available:hover, .f\:d-bc---presence-color-background-available.f\:d-bc---presence-color-background-available:focus, .f\:d-bc---presence-color-background-available.f\:d-bc---presence-color-background-available:focus-within, .fv\:d-bc---presence-color-background-available.fv\:d-bc---presence-color-background-available:focus-visible {
9822
+ --bco: 100%;
9823
+ border-color: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--bco)) !important;
9824
+ }
9825
+
9826
+ .d-bc---presence-color-background-busy-unavailable.d-bc---presence-color-background-busy-unavailable, .h\:d-bc---presence-color-background-busy-unavailable.h\:d-bc---presence-color-background-busy-unavailable:hover, .f\:d-bc---presence-color-background-busy-unavailable.f\:d-bc---presence-color-background-busy-unavailable:focus, .f\:d-bc---presence-color-background-busy-unavailable.f\:d-bc---presence-color-background-busy-unavailable:focus-within, .fv\:d-bc---presence-color-background-busy-unavailable.fv\:d-bc---presence-color-background-busy-unavailable:focus-visible {
9827
+ --bco: 100%;
9828
+ border-color: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--bco)) !important;
9829
+ }
9830
+
9831
+ .d-bc---presence-color-background-busy.d-bc---presence-color-background-busy, .h\:d-bc---presence-color-background-busy.h\:d-bc---presence-color-background-busy:hover, .f\:d-bc---presence-color-background-busy.f\:d-bc---presence-color-background-busy:focus, .f\:d-bc---presence-color-background-busy.f\:d-bc---presence-color-background-busy:focus-within, .fv\:d-bc---presence-color-background-busy.fv\:d-bc---presence-color-background-busy:focus-visible {
9832
+ --bco: 100%;
9833
+ border-color: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--bco)) !important;
9834
+ }
9835
+
9836
+ .d-bc---presence-color-background-offline.d-bc---presence-color-background-offline, .h\:d-bc---presence-color-background-offline.h\:d-bc---presence-color-background-offline:hover, .f\:d-bc---presence-color-background-offline.f\:d-bc---presence-color-background-offline:focus, .f\:d-bc---presence-color-background-offline.f\:d-bc---presence-color-background-offline:focus-within, .fv\:d-bc---presence-color-background-offline.fv\:d-bc---presence-color-background-offline:focus-visible {
9837
+ --bco: 100%;
9838
+ border-color: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--bco)) !important;
9839
+ }
9840
+
9841
+ .d-bc---mention-color-foreground.d-bc---mention-color-foreground, .h\:d-bc---mention-color-foreground.h\:d-bc---mention-color-foreground:hover, .f\:d-bc---mention-color-foreground.f\:d-bc---mention-color-foreground:focus, .f\:d-bc---mention-color-foreground.f\:d-bc---mention-color-foreground:focus-within, .fv\:d-bc---mention-color-foreground.fv\:d-bc---mention-color-foreground:focus-visible {
9842
+ --bco: 100%;
9843
+ border-color: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--bco)) !important;
9844
+ }
9845
+
9846
+ .d-bc---mention-color-background.d-bc---mention-color-background, .h\:d-bc---mention-color-background.h\:d-bc---mention-color-background:hover, .f\:d-bc---mention-color-background.f\:d-bc---mention-color-background:focus, .f\:d-bc---mention-color-background.f\:d-bc---mention-color-background:focus-within, .fv\:d-bc---mention-color-background.fv\:d-bc---mention-color-background:focus-visible {
9847
+ --bco: 100%;
9848
+ border-color: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--bco)) !important;
9849
+ }
9850
+
9851
+ .d-bgc---neutral-white.d-bgc---neutral-white, .h\:d-bgc---neutral-white.h\:d-bgc---neutral-white:hover, .f\:d-bgc---neutral-white.f\:d-bgc---neutral-white:focus, .f\:d-bgc---neutral-white.f\:d-bgc---neutral-white:focus-within, .fv\:d-bgc---neutral-white.fv\:d-bgc---neutral-white:focus-visible {
9540
9852
  --bgo: 100%;
9541
9853
  background-color: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--bgo)) !important;
9542
9854
  }
9543
9855
 
9544
- .d-bgc-neutral-black.d-bgc-neutral-black, .h\:d-bgc-neutral-black.h\:d-bgc-neutral-black:hover, .f\:d-bgc-neutral-black.f\:d-bgc-neutral-black:focus, .f\:d-bgc-neutral-black.f\:d-bgc-neutral-black:focus-within, .fv\:d-bgc-neutral-black.fv\:d-bgc-neutral-black:focus-visible {
9856
+ .d-bgc---neutral-black.d-bgc---neutral-black, .h\:d-bgc---neutral-black.h\:d-bgc---neutral-black:hover, .f\:d-bgc---neutral-black.f\:d-bgc---neutral-black:focus, .f\:d-bgc---neutral-black.f\:d-bgc---neutral-black:focus-within, .fv\:d-bgc---neutral-black.fv\:d-bgc---neutral-black:focus-visible {
9545
9857
  --bgo: 100%;
9546
9858
  background-color: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--bgo)) !important;
9547
9859
  }
9548
9860
 
9549
- .d-bgc-black-100.d-bgc-black-100, .h\:d-bgc-black-100.h\:d-bgc-black-100:hover, .f\:d-bgc-black-100.f\:d-bgc-black-100:focus, .f\:d-bgc-black-100.f\:d-bgc-black-100:focus-within, .fv\:d-bgc-black-100.fv\:d-bgc-black-100:focus-visible {
9861
+ .d-bgc---black-100.d-bgc---black-100, .h\:d-bgc---black-100.h\:d-bgc---black-100:hover, .f\:d-bgc---black-100.f\:d-bgc---black-100:focus, .f\:d-bgc---black-100.f\:d-bgc---black-100:focus-within, .fv\:d-bgc---black-100.fv\:d-bgc---black-100:focus-visible {
9550
9862
  --bgo: 100%;
9551
9863
  background-color: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--bgo)) !important;
9552
9864
  }
9553
9865
 
9554
- .d-bgc-black-200.d-bgc-black-200, .h\:d-bgc-black-200.h\:d-bgc-black-200:hover, .f\:d-bgc-black-200.f\:d-bgc-black-200:focus, .f\:d-bgc-black-200.f\:d-bgc-black-200:focus-within, .fv\:d-bgc-black-200.fv\:d-bgc-black-200:focus-visible {
9866
+ .d-bgc---black-200.d-bgc---black-200, .h\:d-bgc---black-200.h\:d-bgc---black-200:hover, .f\:d-bgc---black-200.f\:d-bgc---black-200:focus, .f\:d-bgc---black-200.f\:d-bgc---black-200:focus-within, .fv\:d-bgc---black-200.fv\:d-bgc---black-200:focus-visible {
9555
9867
  --bgo: 100%;
9556
9868
  background-color: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--bgo)) !important;
9557
9869
  }
9558
9870
 
9559
- .d-bgc-black-300.d-bgc-black-300, .h\:d-bgc-black-300.h\:d-bgc-black-300:hover, .f\:d-bgc-black-300.f\:d-bgc-black-300:focus, .f\:d-bgc-black-300.f\:d-bgc-black-300:focus-within, .fv\:d-bgc-black-300.fv\:d-bgc-black-300:focus-visible {
9871
+ .d-bgc---black-300.d-bgc---black-300, .h\:d-bgc---black-300.h\:d-bgc---black-300:hover, .f\:d-bgc---black-300.f\:d-bgc---black-300:focus, .f\:d-bgc---black-300.f\:d-bgc---black-300:focus-within, .fv\:d-bgc---black-300.fv\:d-bgc---black-300:focus-visible {
9560
9872
  --bgo: 100%;
9561
9873
  background-color: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--bgo)) !important;
9562
9874
  }
9563
9875
 
9564
- .d-bgc-black-400.d-bgc-black-400, .h\:d-bgc-black-400.h\:d-bgc-black-400:hover, .f\:d-bgc-black-400.f\:d-bgc-black-400:focus, .f\:d-bgc-black-400.f\:d-bgc-black-400:focus-within, .fv\:d-bgc-black-400.fv\:d-bgc-black-400:focus-visible {
9876
+ .d-bgc---black-400.d-bgc---black-400, .h\:d-bgc---black-400.h\:d-bgc---black-400:hover, .f\:d-bgc---black-400.f\:d-bgc---black-400:focus, .f\:d-bgc---black-400.f\:d-bgc---black-400:focus-within, .fv\:d-bgc---black-400.fv\:d-bgc---black-400:focus-visible {
9565
9877
  --bgo: 100%;
9566
9878
  background-color: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--bgo)) !important;
9567
9879
  }
9568
9880
 
9569
- .d-bgc-black-500.d-bgc-black-500, .h\:d-bgc-black-500.h\:d-bgc-black-500:hover, .f\:d-bgc-black-500.f\:d-bgc-black-500:focus, .f\:d-bgc-black-500.f\:d-bgc-black-500:focus-within, .fv\:d-bgc-black-500.fv\:d-bgc-black-500:focus-visible {
9881
+ .d-bgc---black-500.d-bgc---black-500, .h\:d-bgc---black-500.h\:d-bgc---black-500:hover, .f\:d-bgc---black-500.f\:d-bgc---black-500:focus, .f\:d-bgc---black-500.f\:d-bgc---black-500:focus-within, .fv\:d-bgc---black-500.fv\:d-bgc---black-500:focus-visible {
9570
9882
  --bgo: 100%;
9571
9883
  background-color: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--bgo)) !important;
9572
9884
  }
9573
9885
 
9574
- .d-bgc-black-600.d-bgc-black-600, .h\:d-bgc-black-600.h\:d-bgc-black-600:hover, .f\:d-bgc-black-600.f\:d-bgc-black-600:focus, .f\:d-bgc-black-600.f\:d-bgc-black-600:focus-within, .fv\:d-bgc-black-600.fv\:d-bgc-black-600:focus-visible {
9886
+ .d-bgc---black-600.d-bgc---black-600, .h\:d-bgc---black-600.h\:d-bgc---black-600:hover, .f\:d-bgc---black-600.f\:d-bgc---black-600:focus, .f\:d-bgc---black-600.f\:d-bgc---black-600:focus-within, .fv\:d-bgc---black-600.fv\:d-bgc---black-600:focus-visible {
9575
9887
  --bgo: 100%;
9576
9888
  background-color: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--bgo)) !important;
9577
9889
  }
9578
9890
 
9579
- .d-bgc-black-700.d-bgc-black-700, .h\:d-bgc-black-700.h\:d-bgc-black-700:hover, .f\:d-bgc-black-700.f\:d-bgc-black-700:focus, .f\:d-bgc-black-700.f\:d-bgc-black-700:focus-within, .fv\:d-bgc-black-700.fv\:d-bgc-black-700:focus-visible {
9891
+ .d-bgc---black-700.d-bgc---black-700, .h\:d-bgc---black-700.h\:d-bgc---black-700:hover, .f\:d-bgc---black-700.f\:d-bgc---black-700:focus, .f\:d-bgc---black-700.f\:d-bgc---black-700:focus-within, .fv\:d-bgc---black-700.fv\:d-bgc---black-700:focus-visible {
9580
9892
  --bgo: 100%;
9581
9893
  background-color: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--bgo)) !important;
9582
9894
  }
9583
9895
 
9584
- .d-bgc-black-800.d-bgc-black-800, .h\:d-bgc-black-800.h\:d-bgc-black-800:hover, .f\:d-bgc-black-800.f\:d-bgc-black-800:focus, .f\:d-bgc-black-800.f\:d-bgc-black-800:focus-within, .fv\:d-bgc-black-800.fv\:d-bgc-black-800:focus-visible {
9896
+ .d-bgc---black-800.d-bgc---black-800, .h\:d-bgc---black-800.h\:d-bgc---black-800:hover, .f\:d-bgc---black-800.f\:d-bgc---black-800:focus, .f\:d-bgc---black-800.f\:d-bgc---black-800:focus-within, .fv\:d-bgc---black-800.fv\:d-bgc---black-800:focus-visible {
9585
9897
  --bgo: 100%;
9586
9898
  background-color: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--bgo)) !important;
9587
9899
  }
9588
9900
 
9589
- .d-bgc-black-900.d-bgc-black-900, .h\:d-bgc-black-900.h\:d-bgc-black-900:hover, .f\:d-bgc-black-900.f\:d-bgc-black-900:focus, .f\:d-bgc-black-900.f\:d-bgc-black-900:focus-within, .fv\:d-bgc-black-900.fv\:d-bgc-black-900:focus-visible {
9901
+ .d-bgc---black-900.d-bgc---black-900, .h\:d-bgc---black-900.h\:d-bgc---black-900:hover, .f\:d-bgc---black-900.f\:d-bgc---black-900:focus, .f\:d-bgc---black-900.f\:d-bgc---black-900:focus-within, .fv\:d-bgc---black-900.fv\:d-bgc---black-900:focus-visible {
9590
9902
  --bgo: 100%;
9591
9903
  background-color: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--bgo)) !important;
9592
9904
  }
9593
9905
 
9594
- .d-bgc-purple-100.d-bgc-purple-100, .h\:d-bgc-purple-100.h\:d-bgc-purple-100:hover, .f\:d-bgc-purple-100.f\:d-bgc-purple-100:focus, .f\:d-bgc-purple-100.f\:d-bgc-purple-100:focus-within, .fv\:d-bgc-purple-100.fv\:d-bgc-purple-100:focus-visible {
9906
+ .d-bgc---purple-100.d-bgc---purple-100, .h\:d-bgc---purple-100.h\:d-bgc---purple-100:hover, .f\:d-bgc---purple-100.f\:d-bgc---purple-100:focus, .f\:d-bgc---purple-100.f\:d-bgc---purple-100:focus-within, .fv\:d-bgc---purple-100.fv\:d-bgc---purple-100:focus-visible {
9595
9907
  --bgo: 100%;
9596
9908
  background-color: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--bgo)) !important;
9597
9909
  }
9598
9910
 
9599
- .d-bgc-purple-200.d-bgc-purple-200, .h\:d-bgc-purple-200.h\:d-bgc-purple-200:hover, .f\:d-bgc-purple-200.f\:d-bgc-purple-200:focus, .f\:d-bgc-purple-200.f\:d-bgc-purple-200:focus-within, .fv\:d-bgc-purple-200.fv\:d-bgc-purple-200:focus-visible {
9911
+ .d-bgc---purple-200.d-bgc---purple-200, .h\:d-bgc---purple-200.h\:d-bgc---purple-200:hover, .f\:d-bgc---purple-200.f\:d-bgc---purple-200:focus, .f\:d-bgc---purple-200.f\:d-bgc---purple-200:focus-within, .fv\:d-bgc---purple-200.fv\:d-bgc---purple-200:focus-visible {
9600
9912
  --bgo: 100%;
9601
9913
  background-color: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--bgo)) !important;
9602
9914
  }
9603
9915
 
9604
- .d-bgc-purple-300.d-bgc-purple-300, .h\:d-bgc-purple-300.h\:d-bgc-purple-300:hover, .f\:d-bgc-purple-300.f\:d-bgc-purple-300:focus, .f\:d-bgc-purple-300.f\:d-bgc-purple-300:focus-within, .fv\:d-bgc-purple-300.fv\:d-bgc-purple-300:focus-visible {
9916
+ .d-bgc---purple-300.d-bgc---purple-300, .h\:d-bgc---purple-300.h\:d-bgc---purple-300:hover, .f\:d-bgc---purple-300.f\:d-bgc---purple-300:focus, .f\:d-bgc---purple-300.f\:d-bgc---purple-300:focus-within, .fv\:d-bgc---purple-300.fv\:d-bgc---purple-300:focus-visible {
9605
9917
  --bgo: 100%;
9606
9918
  background-color: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--bgo)) !important;
9607
9919
  }
9608
9920
 
9609
- .d-bgc-purple-400.d-bgc-purple-400, .h\:d-bgc-purple-400.h\:d-bgc-purple-400:hover, .f\:d-bgc-purple-400.f\:d-bgc-purple-400:focus, .f\:d-bgc-purple-400.f\:d-bgc-purple-400:focus-within, .fv\:d-bgc-purple-400.fv\:d-bgc-purple-400:focus-visible {
9921
+ .d-bgc---purple-400.d-bgc---purple-400, .h\:d-bgc---purple-400.h\:d-bgc---purple-400:hover, .f\:d-bgc---purple-400.f\:d-bgc---purple-400:focus, .f\:d-bgc---purple-400.f\:d-bgc---purple-400:focus-within, .fv\:d-bgc---purple-400.fv\:d-bgc---purple-400:focus-visible {
9610
9922
  --bgo: 100%;
9611
9923
  background-color: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--bgo)) !important;
9612
9924
  }
9613
9925
 
9614
- .d-bgc-purple-500.d-bgc-purple-500, .h\:d-bgc-purple-500.h\:d-bgc-purple-500:hover, .f\:d-bgc-purple-500.f\:d-bgc-purple-500:focus, .f\:d-bgc-purple-500.f\:d-bgc-purple-500:focus-within, .fv\:d-bgc-purple-500.fv\:d-bgc-purple-500:focus-visible {
9926
+ .d-bgc---purple-500.d-bgc---purple-500, .h\:d-bgc---purple-500.h\:d-bgc---purple-500:hover, .f\:d-bgc---purple-500.f\:d-bgc---purple-500:focus, .f\:d-bgc---purple-500.f\:d-bgc---purple-500:focus-within, .fv\:d-bgc---purple-500.fv\:d-bgc---purple-500:focus-visible {
9615
9927
  --bgo: 100%;
9616
9928
  background-color: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--bgo)) !important;
9617
9929
  }
9618
9930
 
9619
- .d-bgc-purple-600.d-bgc-purple-600, .h\:d-bgc-purple-600.h\:d-bgc-purple-600:hover, .f\:d-bgc-purple-600.f\:d-bgc-purple-600:focus, .f\:d-bgc-purple-600.f\:d-bgc-purple-600:focus-within, .fv\:d-bgc-purple-600.fv\:d-bgc-purple-600:focus-visible {
9931
+ .d-bgc---purple-600.d-bgc---purple-600, .h\:d-bgc---purple-600.h\:d-bgc---purple-600:hover, .f\:d-bgc---purple-600.f\:d-bgc---purple-600:focus, .f\:d-bgc---purple-600.f\:d-bgc---purple-600:focus-within, .fv\:d-bgc---purple-600.fv\:d-bgc---purple-600:focus-visible {
9620
9932
  --bgo: 100%;
9621
9933
  background-color: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--bgo)) !important;
9622
9934
  }
9623
9935
 
9624
- .d-bgc-blue-100.d-bgc-blue-100, .h\:d-bgc-blue-100.h\:d-bgc-blue-100:hover, .f\:d-bgc-blue-100.f\:d-bgc-blue-100:focus, .f\:d-bgc-blue-100.f\:d-bgc-blue-100:focus-within, .fv\:d-bgc-blue-100.fv\:d-bgc-blue-100:focus-visible {
9936
+ .d-bgc---blue-100.d-bgc---blue-100, .h\:d-bgc---blue-100.h\:d-bgc---blue-100:hover, .f\:d-bgc---blue-100.f\:d-bgc---blue-100:focus, .f\:d-bgc---blue-100.f\:d-bgc---blue-100:focus-within, .fv\:d-bgc---blue-100.fv\:d-bgc---blue-100:focus-visible {
9625
9937
  --bgo: 100%;
9626
9938
  background-color: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--bgo)) !important;
9627
9939
  }
9628
9940
 
9629
- .d-bgc-blue-200.d-bgc-blue-200, .h\:d-bgc-blue-200.h\:d-bgc-blue-200:hover, .f\:d-bgc-blue-200.f\:d-bgc-blue-200:focus, .f\:d-bgc-blue-200.f\:d-bgc-blue-200:focus-within, .fv\:d-bgc-blue-200.fv\:d-bgc-blue-200:focus-visible {
9941
+ .d-bgc---blue-200.d-bgc---blue-200, .h\:d-bgc---blue-200.h\:d-bgc---blue-200:hover, .f\:d-bgc---blue-200.f\:d-bgc---blue-200:focus, .f\:d-bgc---blue-200.f\:d-bgc---blue-200:focus-within, .fv\:d-bgc---blue-200.fv\:d-bgc---blue-200:focus-visible {
9630
9942
  --bgo: 100%;
9631
9943
  background-color: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--bgo)) !important;
9632
9944
  }
9633
9945
 
9634
- .d-bgc-blue-300.d-bgc-blue-300, .h\:d-bgc-blue-300.h\:d-bgc-blue-300:hover, .f\:d-bgc-blue-300.f\:d-bgc-blue-300:focus, .f\:d-bgc-blue-300.f\:d-bgc-blue-300:focus-within, .fv\:d-bgc-blue-300.fv\:d-bgc-blue-300:focus-visible {
9946
+ .d-bgc---blue-300.d-bgc---blue-300, .h\:d-bgc---blue-300.h\:d-bgc---blue-300:hover, .f\:d-bgc---blue-300.f\:d-bgc---blue-300:focus, .f\:d-bgc---blue-300.f\:d-bgc---blue-300:focus-within, .fv\:d-bgc---blue-300.fv\:d-bgc---blue-300:focus-visible {
9635
9947
  --bgo: 100%;
9636
9948
  background-color: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--bgo)) !important;
9637
9949
  }
9638
9950
 
9639
- .d-bgc-blue-400.d-bgc-blue-400, .h\:d-bgc-blue-400.h\:d-bgc-blue-400:hover, .f\:d-bgc-blue-400.f\:d-bgc-blue-400:focus, .f\:d-bgc-blue-400.f\:d-bgc-blue-400:focus-within, .fv\:d-bgc-blue-400.fv\:d-bgc-blue-400:focus-visible {
9951
+ .d-bgc---blue-400.d-bgc---blue-400, .h\:d-bgc---blue-400.h\:d-bgc---blue-400:hover, .f\:d-bgc---blue-400.f\:d-bgc---blue-400:focus, .f\:d-bgc---blue-400.f\:d-bgc---blue-400:focus-within, .fv\:d-bgc---blue-400.fv\:d-bgc---blue-400:focus-visible {
9640
9952
  --bgo: 100%;
9641
9953
  background-color: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--bgo)) !important;
9642
9954
  }
9643
9955
 
9644
- .d-bgc-blue-500.d-bgc-blue-500, .h\:d-bgc-blue-500.h\:d-bgc-blue-500:hover, .f\:d-bgc-blue-500.f\:d-bgc-blue-500:focus, .f\:d-bgc-blue-500.f\:d-bgc-blue-500:focus-within, .fv\:d-bgc-blue-500.fv\:d-bgc-blue-500:focus-visible {
9956
+ .d-bgc---blue-500.d-bgc---blue-500, .h\:d-bgc---blue-500.h\:d-bgc---blue-500:hover, .f\:d-bgc---blue-500.f\:d-bgc---blue-500:focus, .f\:d-bgc---blue-500.f\:d-bgc---blue-500:focus-within, .fv\:d-bgc---blue-500.fv\:d-bgc---blue-500:focus-visible {
9645
9957
  --bgo: 100%;
9646
9958
  background-color: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--bgo)) !important;
9647
9959
  }
9648
9960
 
9649
- .d-bgc-magenta-100.d-bgc-magenta-100, .h\:d-bgc-magenta-100.h\:d-bgc-magenta-100:hover, .f\:d-bgc-magenta-100.f\:d-bgc-magenta-100:focus, .f\:d-bgc-magenta-100.f\:d-bgc-magenta-100:focus-within, .fv\:d-bgc-magenta-100.fv\:d-bgc-magenta-100:focus-visible {
9961
+ .d-bgc---magenta-100.d-bgc---magenta-100, .h\:d-bgc---magenta-100.h\:d-bgc---magenta-100:hover, .f\:d-bgc---magenta-100.f\:d-bgc---magenta-100:focus, .f\:d-bgc---magenta-100.f\:d-bgc---magenta-100:focus-within, .fv\:d-bgc---magenta-100.fv\:d-bgc---magenta-100:focus-visible {
9650
9962
  --bgo: 100%;
9651
9963
  background-color: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--bgo)) !important;
9652
9964
  }
9653
9965
 
9654
- .d-bgc-magenta-200.d-bgc-magenta-200, .h\:d-bgc-magenta-200.h\:d-bgc-magenta-200:hover, .f\:d-bgc-magenta-200.f\:d-bgc-magenta-200:focus, .f\:d-bgc-magenta-200.f\:d-bgc-magenta-200:focus-within, .fv\:d-bgc-magenta-200.fv\:d-bgc-magenta-200:focus-visible {
9966
+ .d-bgc---magenta-200.d-bgc---magenta-200, .h\:d-bgc---magenta-200.h\:d-bgc---magenta-200:hover, .f\:d-bgc---magenta-200.f\:d-bgc---magenta-200:focus, .f\:d-bgc---magenta-200.f\:d-bgc---magenta-200:focus-within, .fv\:d-bgc---magenta-200.fv\:d-bgc---magenta-200:focus-visible {
9655
9967
  --bgo: 100%;
9656
9968
  background-color: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--bgo)) !important;
9657
9969
  }
9658
9970
 
9659
- .d-bgc-magenta-300.d-bgc-magenta-300, .h\:d-bgc-magenta-300.h\:d-bgc-magenta-300:hover, .f\:d-bgc-magenta-300.f\:d-bgc-magenta-300:focus, .f\:d-bgc-magenta-300.f\:d-bgc-magenta-300:focus-within, .fv\:d-bgc-magenta-300.fv\:d-bgc-magenta-300:focus-visible {
9971
+ .d-bgc---magenta-300.d-bgc---magenta-300, .h\:d-bgc---magenta-300.h\:d-bgc---magenta-300:hover, .f\:d-bgc---magenta-300.f\:d-bgc---magenta-300:focus, .f\:d-bgc---magenta-300.f\:d-bgc---magenta-300:focus-within, .fv\:d-bgc---magenta-300.fv\:d-bgc---magenta-300:focus-visible {
9660
9972
  --bgo: 100%;
9661
9973
  background-color: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--bgo)) !important;
9662
9974
  }
9663
9975
 
9664
- .d-bgc-magenta-400.d-bgc-magenta-400, .h\:d-bgc-magenta-400.h\:d-bgc-magenta-400:hover, .f\:d-bgc-magenta-400.f\:d-bgc-magenta-400:focus, .f\:d-bgc-magenta-400.f\:d-bgc-magenta-400:focus-within, .fv\:d-bgc-magenta-400.fv\:d-bgc-magenta-400:focus-visible {
9976
+ .d-bgc---magenta-400.d-bgc---magenta-400, .h\:d-bgc---magenta-400.h\:d-bgc---magenta-400:hover, .f\:d-bgc---magenta-400.f\:d-bgc---magenta-400:focus, .f\:d-bgc---magenta-400.f\:d-bgc---magenta-400:focus-within, .fv\:d-bgc---magenta-400.fv\:d-bgc---magenta-400:focus-visible {
9665
9977
  --bgo: 100%;
9666
9978
  background-color: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--bgo)) !important;
9667
9979
  }
9668
9980
 
9669
- .d-bgc-magenta-500.d-bgc-magenta-500, .h\:d-bgc-magenta-500.h\:d-bgc-magenta-500:hover, .f\:d-bgc-magenta-500.f\:d-bgc-magenta-500:focus, .f\:d-bgc-magenta-500.f\:d-bgc-magenta-500:focus-within, .fv\:d-bgc-magenta-500.fv\:d-bgc-magenta-500:focus-visible {
9981
+ .d-bgc---magenta-500.d-bgc---magenta-500, .h\:d-bgc---magenta-500.h\:d-bgc---magenta-500:hover, .f\:d-bgc---magenta-500.f\:d-bgc---magenta-500:focus, .f\:d-bgc---magenta-500.f\:d-bgc---magenta-500:focus-within, .fv\:d-bgc---magenta-500.fv\:d-bgc---magenta-500:focus-visible {
9670
9982
  --bgo: 100%;
9671
9983
  background-color: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--bgo)) !important;
9672
9984
  }
9673
9985
 
9674
- .d-bgc-gold-100.d-bgc-gold-100, .h\:d-bgc-gold-100.h\:d-bgc-gold-100:hover, .f\:d-bgc-gold-100.f\:d-bgc-gold-100:focus, .f\:d-bgc-gold-100.f\:d-bgc-gold-100:focus-within, .fv\:d-bgc-gold-100.fv\:d-bgc-gold-100:focus-visible {
9986
+ .d-bgc---gold-100.d-bgc---gold-100, .h\:d-bgc---gold-100.h\:d-bgc---gold-100:hover, .f\:d-bgc---gold-100.f\:d-bgc---gold-100:focus, .f\:d-bgc---gold-100.f\:d-bgc---gold-100:focus-within, .fv\:d-bgc---gold-100.fv\:d-bgc---gold-100:focus-visible {
9675
9987
  --bgo: 100%;
9676
9988
  background-color: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--bgo)) !important;
9677
9989
  }
9678
9990
 
9679
- .d-bgc-gold-200.d-bgc-gold-200, .h\:d-bgc-gold-200.h\:d-bgc-gold-200:hover, .f\:d-bgc-gold-200.f\:d-bgc-gold-200:focus, .f\:d-bgc-gold-200.f\:d-bgc-gold-200:focus-within, .fv\:d-bgc-gold-200.fv\:d-bgc-gold-200:focus-visible {
9991
+ .d-bgc---gold-200.d-bgc---gold-200, .h\:d-bgc---gold-200.h\:d-bgc---gold-200:hover, .f\:d-bgc---gold-200.f\:d-bgc---gold-200:focus, .f\:d-bgc---gold-200.f\:d-bgc---gold-200:focus-within, .fv\:d-bgc---gold-200.fv\:d-bgc---gold-200:focus-visible {
9680
9992
  --bgo: 100%;
9681
9993
  background-color: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--bgo)) !important;
9682
9994
  }
9683
9995
 
9684
- .d-bgc-gold-300.d-bgc-gold-300, .h\:d-bgc-gold-300.h\:d-bgc-gold-300:hover, .f\:d-bgc-gold-300.f\:d-bgc-gold-300:focus, .f\:d-bgc-gold-300.f\:d-bgc-gold-300:focus-within, .fv\:d-bgc-gold-300.fv\:d-bgc-gold-300:focus-visible {
9996
+ .d-bgc---gold-300.d-bgc---gold-300, .h\:d-bgc---gold-300.h\:d-bgc---gold-300:hover, .f\:d-bgc---gold-300.f\:d-bgc---gold-300:focus, .f\:d-bgc---gold-300.f\:d-bgc---gold-300:focus-within, .fv\:d-bgc---gold-300.fv\:d-bgc---gold-300:focus-visible {
9685
9997
  --bgo: 100%;
9686
9998
  background-color: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--bgo)) !important;
9687
9999
  }
9688
10000
 
9689
- .d-bgc-gold-400.d-bgc-gold-400, .h\:d-bgc-gold-400.h\:d-bgc-gold-400:hover, .f\:d-bgc-gold-400.f\:d-bgc-gold-400:focus, .f\:d-bgc-gold-400.f\:d-bgc-gold-400:focus-within, .fv\:d-bgc-gold-400.fv\:d-bgc-gold-400:focus-visible {
10001
+ .d-bgc---gold-400.d-bgc---gold-400, .h\:d-bgc---gold-400.h\:d-bgc---gold-400:hover, .f\:d-bgc---gold-400.f\:d-bgc---gold-400:focus, .f\:d-bgc---gold-400.f\:d-bgc---gold-400:focus-within, .fv\:d-bgc---gold-400.fv\:d-bgc---gold-400:focus-visible {
9690
10002
  --bgo: 100%;
9691
10003
  background-color: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--bgo)) !important;
9692
10004
  }
9693
10005
 
9694
- .d-bgc-gold-500.d-bgc-gold-500, .h\:d-bgc-gold-500.h\:d-bgc-gold-500:hover, .f\:d-bgc-gold-500.f\:d-bgc-gold-500:focus, .f\:d-bgc-gold-500.f\:d-bgc-gold-500:focus-within, .fv\:d-bgc-gold-500.fv\:d-bgc-gold-500:focus-visible {
10006
+ .d-bgc---gold-500.d-bgc---gold-500, .h\:d-bgc---gold-500.h\:d-bgc---gold-500:hover, .f\:d-bgc---gold-500.f\:d-bgc---gold-500:focus, .f\:d-bgc---gold-500.f\:d-bgc---gold-500:focus-within, .fv\:d-bgc---gold-500.fv\:d-bgc---gold-500:focus-visible {
9695
10007
  --bgo: 100%;
9696
10008
  background-color: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--bgo)) !important;
9697
10009
  }
9698
10010
 
9699
- .d-bgc-green-100.d-bgc-green-100, .h\:d-bgc-green-100.h\:d-bgc-green-100:hover, .f\:d-bgc-green-100.f\:d-bgc-green-100:focus, .f\:d-bgc-green-100.f\:d-bgc-green-100:focus-within, .fv\:d-bgc-green-100.fv\:d-bgc-green-100:focus-visible {
10011
+ .d-bgc---green-100.d-bgc---green-100, .h\:d-bgc---green-100.h\:d-bgc---green-100:hover, .f\:d-bgc---green-100.f\:d-bgc---green-100:focus, .f\:d-bgc---green-100.f\:d-bgc---green-100:focus-within, .fv\:d-bgc---green-100.fv\:d-bgc---green-100:focus-visible {
9700
10012
  --bgo: 100%;
9701
10013
  background-color: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--bgo)) !important;
9702
10014
  }
9703
10015
 
9704
- .d-bgc-green-200.d-bgc-green-200, .h\:d-bgc-green-200.h\:d-bgc-green-200:hover, .f\:d-bgc-green-200.f\:d-bgc-green-200:focus, .f\:d-bgc-green-200.f\:d-bgc-green-200:focus-within, .fv\:d-bgc-green-200.fv\:d-bgc-green-200:focus-visible {
10016
+ .d-bgc---green-200.d-bgc---green-200, .h\:d-bgc---green-200.h\:d-bgc---green-200:hover, .f\:d-bgc---green-200.f\:d-bgc---green-200:focus, .f\:d-bgc---green-200.f\:d-bgc---green-200:focus-within, .fv\:d-bgc---green-200.fv\:d-bgc---green-200:focus-visible {
9705
10017
  --bgo: 100%;
9706
10018
  background-color: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--bgo)) !important;
9707
10019
  }
9708
10020
 
9709
- .d-bgc-green-300.d-bgc-green-300, .h\:d-bgc-green-300.h\:d-bgc-green-300:hover, .f\:d-bgc-green-300.f\:d-bgc-green-300:focus, .f\:d-bgc-green-300.f\:d-bgc-green-300:focus-within, .fv\:d-bgc-green-300.fv\:d-bgc-green-300:focus-visible {
10021
+ .d-bgc---green-300.d-bgc---green-300, .h\:d-bgc---green-300.h\:d-bgc---green-300:hover, .f\:d-bgc---green-300.f\:d-bgc---green-300:focus, .f\:d-bgc---green-300.f\:d-bgc---green-300:focus-within, .fv\:d-bgc---green-300.fv\:d-bgc---green-300:focus-visible {
9710
10022
  --bgo: 100%;
9711
10023
  background-color: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--bgo)) !important;
9712
10024
  }
9713
10025
 
9714
- .d-bgc-green-400.d-bgc-green-400, .h\:d-bgc-green-400.h\:d-bgc-green-400:hover, .f\:d-bgc-green-400.f\:d-bgc-green-400:focus, .f\:d-bgc-green-400.f\:d-bgc-green-400:focus-within, .fv\:d-bgc-green-400.fv\:d-bgc-green-400:focus-visible {
10026
+ .d-bgc---green-400.d-bgc---green-400, .h\:d-bgc---green-400.h\:d-bgc---green-400:hover, .f\:d-bgc---green-400.f\:d-bgc---green-400:focus, .f\:d-bgc---green-400.f\:d-bgc---green-400:focus-within, .fv\:d-bgc---green-400.fv\:d-bgc---green-400:focus-visible {
9715
10027
  --bgo: 100%;
9716
10028
  background-color: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--bgo)) !important;
9717
10029
  }
9718
10030
 
9719
- .d-bgc-green-500.d-bgc-green-500, .h\:d-bgc-green-500.h\:d-bgc-green-500:hover, .f\:d-bgc-green-500.f\:d-bgc-green-500:focus, .f\:d-bgc-green-500.f\:d-bgc-green-500:focus-within, .fv\:d-bgc-green-500.fv\:d-bgc-green-500:focus-visible {
10031
+ .d-bgc---green-500.d-bgc---green-500, .h\:d-bgc---green-500.h\:d-bgc---green-500:hover, .f\:d-bgc---green-500.f\:d-bgc---green-500:focus, .f\:d-bgc---green-500.f\:d-bgc---green-500:focus-within, .fv\:d-bgc---green-500.fv\:d-bgc---green-500:focus-visible {
9720
10032
  --bgo: 100%;
9721
10033
  background-color: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--bgo)) !important;
9722
10034
  }
9723
10035
 
9724
- .d-bgc-red-100.d-bgc-red-100, .h\:d-bgc-red-100.h\:d-bgc-red-100:hover, .f\:d-bgc-red-100.f\:d-bgc-red-100:focus, .f\:d-bgc-red-100.f\:d-bgc-red-100:focus-within, .fv\:d-bgc-red-100.fv\:d-bgc-red-100:focus-visible {
10036
+ .d-bgc---red-100.d-bgc---red-100, .h\:d-bgc---red-100.h\:d-bgc---red-100:hover, .f\:d-bgc---red-100.f\:d-bgc---red-100:focus, .f\:d-bgc---red-100.f\:d-bgc---red-100:focus-within, .fv\:d-bgc---red-100.fv\:d-bgc---red-100:focus-visible {
9725
10037
  --bgo: 100%;
9726
10038
  background-color: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--bgo)) !important;
9727
10039
  }
9728
10040
 
9729
- .d-bgc-red-200.d-bgc-red-200, .h\:d-bgc-red-200.h\:d-bgc-red-200:hover, .f\:d-bgc-red-200.f\:d-bgc-red-200:focus, .f\:d-bgc-red-200.f\:d-bgc-red-200:focus-within, .fv\:d-bgc-red-200.fv\:d-bgc-red-200:focus-visible {
10041
+ .d-bgc---red-200.d-bgc---red-200, .h\:d-bgc---red-200.h\:d-bgc---red-200:hover, .f\:d-bgc---red-200.f\:d-bgc---red-200:focus, .f\:d-bgc---red-200.f\:d-bgc---red-200:focus-within, .fv\:d-bgc---red-200.fv\:d-bgc---red-200:focus-visible {
9730
10042
  --bgo: 100%;
9731
10043
  background-color: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--bgo)) !important;
9732
10044
  }
9733
10045
 
9734
- .d-bgc-red-300.d-bgc-red-300, .h\:d-bgc-red-300.h\:d-bgc-red-300:hover, .f\:d-bgc-red-300.f\:d-bgc-red-300:focus, .f\:d-bgc-red-300.f\:d-bgc-red-300:focus-within, .fv\:d-bgc-red-300.fv\:d-bgc-red-300:focus-visible {
10046
+ .d-bgc---red-300.d-bgc---red-300, .h\:d-bgc---red-300.h\:d-bgc---red-300:hover, .f\:d-bgc---red-300.f\:d-bgc---red-300:focus, .f\:d-bgc---red-300.f\:d-bgc---red-300:focus-within, .fv\:d-bgc---red-300.fv\:d-bgc---red-300:focus-visible {
9735
10047
  --bgo: 100%;
9736
10048
  background-color: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--bgo)) !important;
9737
10049
  }
9738
10050
 
9739
- .d-bgc-red-400.d-bgc-red-400, .h\:d-bgc-red-400.h\:d-bgc-red-400:hover, .f\:d-bgc-red-400.f\:d-bgc-red-400:focus, .f\:d-bgc-red-400.f\:d-bgc-red-400:focus-within, .fv\:d-bgc-red-400.fv\:d-bgc-red-400:focus-visible {
10051
+ .d-bgc---red-400.d-bgc---red-400, .h\:d-bgc---red-400.h\:d-bgc---red-400:hover, .f\:d-bgc---red-400.f\:d-bgc---red-400:focus, .f\:d-bgc---red-400.f\:d-bgc---red-400:focus-within, .fv\:d-bgc---red-400.fv\:d-bgc---red-400:focus-visible {
9740
10052
  --bgo: 100%;
9741
10053
  background-color: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--bgo)) !important;
9742
10054
  }
9743
10055
 
9744
- .d-bgc-red-500.d-bgc-red-500, .h\:d-bgc-red-500.h\:d-bgc-red-500:hover, .f\:d-bgc-red-500.f\:d-bgc-red-500:focus, .f\:d-bgc-red-500.f\:d-bgc-red-500:focus-within, .fv\:d-bgc-red-500.fv\:d-bgc-red-500:focus-visible {
10056
+ .d-bgc---red-500.d-bgc---red-500, .h\:d-bgc---red-500.h\:d-bgc---red-500:hover, .f\:d-bgc---red-500.f\:d-bgc---red-500:focus, .f\:d-bgc---red-500.f\:d-bgc---red-500:focus-within, .fv\:d-bgc---red-500.fv\:d-bgc---red-500:focus-visible {
9745
10057
  --bgo: 100%;
9746
10058
  background-color: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--bgo)) !important;
9747
10059
  }
9748
10060
 
9749
- .d-bgc-tan-100.d-bgc-tan-100, .h\:d-bgc-tan-100.h\:d-bgc-tan-100:hover, .f\:d-bgc-tan-100.f\:d-bgc-tan-100:focus, .f\:d-bgc-tan-100.f\:d-bgc-tan-100:focus-within, .fv\:d-bgc-tan-100.fv\:d-bgc-tan-100:focus-visible {
10061
+ .d-bgc---tan-100.d-bgc---tan-100, .h\:d-bgc---tan-100.h\:d-bgc---tan-100:hover, .f\:d-bgc---tan-100.f\:d-bgc---tan-100:focus, .f\:d-bgc---tan-100.f\:d-bgc---tan-100:focus-within, .fv\:d-bgc---tan-100.fv\:d-bgc---tan-100:focus-visible {
9750
10062
  --bgo: 100%;
9751
10063
  background-color: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--bgo)) !important;
9752
10064
  }
9753
10065
 
9754
- .d-bgc-tan-200.d-bgc-tan-200, .h\:d-bgc-tan-200.h\:d-bgc-tan-200:hover, .f\:d-bgc-tan-200.f\:d-bgc-tan-200:focus, .f\:d-bgc-tan-200.f\:d-bgc-tan-200:focus-within, .fv\:d-bgc-tan-200.fv\:d-bgc-tan-200:focus-visible {
10066
+ .d-bgc---tan-200.d-bgc---tan-200, .h\:d-bgc---tan-200.h\:d-bgc---tan-200:hover, .f\:d-bgc---tan-200.f\:d-bgc---tan-200:focus, .f\:d-bgc---tan-200.f\:d-bgc---tan-200:focus-within, .fv\:d-bgc---tan-200.fv\:d-bgc---tan-200:focus-visible {
9755
10067
  --bgo: 100%;
9756
10068
  background-color: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--bgo)) !important;
9757
10069
  }
9758
10070
 
9759
- .d-bgc-tan-300.d-bgc-tan-300, .h\:d-bgc-tan-300.h\:d-bgc-tan-300:hover, .f\:d-bgc-tan-300.f\:d-bgc-tan-300:focus, .f\:d-bgc-tan-300.f\:d-bgc-tan-300:focus-within, .fv\:d-bgc-tan-300.fv\:d-bgc-tan-300:focus-visible {
10071
+ .d-bgc---tan-300.d-bgc---tan-300, .h\:d-bgc---tan-300.h\:d-bgc---tan-300:hover, .f\:d-bgc---tan-300.f\:d-bgc---tan-300:focus, .f\:d-bgc---tan-300.f\:d-bgc---tan-300:focus-within, .fv\:d-bgc---tan-300.fv\:d-bgc---tan-300:focus-visible {
9760
10072
  --bgo: 100%;
9761
10073
  background-color: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--bgo)) !important;
9762
10074
  }
9763
10075
 
9764
- .d-bgc-tan-400.d-bgc-tan-400, .h\:d-bgc-tan-400.h\:d-bgc-tan-400:hover, .f\:d-bgc-tan-400.f\:d-bgc-tan-400:focus, .f\:d-bgc-tan-400.f\:d-bgc-tan-400:focus-within, .fv\:d-bgc-tan-400.fv\:d-bgc-tan-400:focus-visible {
10076
+ .d-bgc---tan-400.d-bgc---tan-400, .h\:d-bgc---tan-400.h\:d-bgc---tan-400:hover, .f\:d-bgc---tan-400.f\:d-bgc---tan-400:focus, .f\:d-bgc---tan-400.f\:d-bgc---tan-400:focus-within, .fv\:d-bgc---tan-400.fv\:d-bgc---tan-400:focus-visible {
9765
10077
  --bgo: 100%;
9766
10078
  background-color: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--bgo)) !important;
9767
10079
  }
9768
10080
 
9769
- .d-bgc-tan-500.d-bgc-tan-500, .h\:d-bgc-tan-500.h\:d-bgc-tan-500:hover, .f\:d-bgc-tan-500.f\:d-bgc-tan-500:focus, .f\:d-bgc-tan-500.f\:d-bgc-tan-500:focus-within, .fv\:d-bgc-tan-500.fv\:d-bgc-tan-500:focus-visible {
10081
+ .d-bgc---tan-500.d-bgc---tan-500, .h\:d-bgc---tan-500.h\:d-bgc---tan-500:hover, .f\:d-bgc---tan-500.f\:d-bgc---tan-500:focus, .f\:d-bgc---tan-500.f\:d-bgc---tan-500:focus-within, .fv\:d-bgc---tan-500.fv\:d-bgc---tan-500:focus-visible {
9770
10082
  --bgo: 100%;
9771
10083
  background-color: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--bgo)) !important;
9772
10084
  }
9773
10085
 
9774
- .d-divide-neutral-white.d-divide-neutral-white > * + * {
10086
+ .d-bgc---color-base.d-bgc---color-base, .h\:d-bgc---color-base.h\:d-bgc---color-base:hover, .f\:d-bgc---color-base.f\:d-bgc---color-base:focus, .f\:d-bgc---color-base.f\:d-bgc---color-base:focus-within, .fv\:d-bgc---color-base.fv\:d-bgc---color-base:focus-visible {
10087
+ --bgo: 100%;
10088
+ background-color: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--bgo)) !important;
10089
+ }
10090
+
10091
+ .d-bgc---topbar-color-foreground.d-bgc---topbar-color-foreground, .h\:d-bgc---topbar-color-foreground.h\:d-bgc---topbar-color-foreground:hover, .f\:d-bgc---topbar-color-foreground.f\:d-bgc---topbar-color-foreground:focus, .f\:d-bgc---topbar-color-foreground.f\:d-bgc---topbar-color-foreground:focus-within, .fv\:d-bgc---topbar-color-foreground.fv\:d-bgc---topbar-color-foreground:focus-visible {
10092
+ --bgo: 100%;
10093
+ background-color: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--bgo)) !important;
10094
+ }
10095
+
10096
+ .d-bgc---topbar-color-background.d-bgc---topbar-color-background, .h\:d-bgc---topbar-color-background.h\:d-bgc---topbar-color-background:hover, .f\:d-bgc---topbar-color-background.f\:d-bgc---topbar-color-background:focus, .f\:d-bgc---topbar-color-background.f\:d-bgc---topbar-color-background:focus-within, .fv\:d-bgc---topbar-color-background.fv\:d-bgc---topbar-color-background:focus-visible {
10097
+ --bgo: 100%;
10098
+ background-color: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--bgo)) !important;
10099
+ }
10100
+
10101
+ .d-bgc---topbar-field-color-foreground.d-bgc---topbar-field-color-foreground, .h\:d-bgc---topbar-field-color-foreground.h\:d-bgc---topbar-field-color-foreground:hover, .f\:d-bgc---topbar-field-color-foreground.f\:d-bgc---topbar-field-color-foreground:focus, .f\:d-bgc---topbar-field-color-foreground.f\:d-bgc---topbar-field-color-foreground:focus-within, .fv\:d-bgc---topbar-field-color-foreground.fv\:d-bgc---topbar-field-color-foreground:focus-visible {
10102
+ --bgo: 100%;
10103
+ background-color: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--bgo)) !important;
10104
+ }
10105
+
10106
+ .d-bgc---topbar-field-color-foreground-hover.d-bgc---topbar-field-color-foreground-hover, .h\:d-bgc---topbar-field-color-foreground-hover.h\:d-bgc---topbar-field-color-foreground-hover:hover, .f\:d-bgc---topbar-field-color-foreground-hover.f\:d-bgc---topbar-field-color-foreground-hover:focus, .f\:d-bgc---topbar-field-color-foreground-hover.f\:d-bgc---topbar-field-color-foreground-hover:focus-within, .fv\:d-bgc---topbar-field-color-foreground-hover.fv\:d-bgc---topbar-field-color-foreground-hover:focus-visible {
10107
+ --bgo: 100%;
10108
+ background-color: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--bgo)) !important;
10109
+ }
10110
+
10111
+ .d-bgc---topbar-field-color-background.d-bgc---topbar-field-color-background, .h\:d-bgc---topbar-field-color-background.h\:d-bgc---topbar-field-color-background:hover, .f\:d-bgc---topbar-field-color-background.f\:d-bgc---topbar-field-color-background:focus, .f\:d-bgc---topbar-field-color-background.f\:d-bgc---topbar-field-color-background:focus-within, .fv\:d-bgc---topbar-field-color-background.fv\:d-bgc---topbar-field-color-background:focus-visible {
10112
+ --bgo: 100%;
10113
+ background-color: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--bgo)) !important;
10114
+ }
10115
+
10116
+ .d-bgc---topbar-field-color-background-hover.d-bgc---topbar-field-color-background-hover, .h\:d-bgc---topbar-field-color-background-hover.h\:d-bgc---topbar-field-color-background-hover:hover, .f\:d-bgc---topbar-field-color-background-hover.f\:d-bgc---topbar-field-color-background-hover:focus, .f\:d-bgc---topbar-field-color-background-hover.f\:d-bgc---topbar-field-color-background-hover:focus-within, .fv\:d-bgc---topbar-field-color-background-hover.fv\:d-bgc---topbar-field-color-background-hover:focus-visible {
10117
+ --bgo: 100%;
10118
+ background-color: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--bgo)) !important;
10119
+ }
10120
+
10121
+ .d-bgc---topbar-field-color-border.d-bgc---topbar-field-color-border, .h\:d-bgc---topbar-field-color-border.h\:d-bgc---topbar-field-color-border:hover, .f\:d-bgc---topbar-field-color-border.f\:d-bgc---topbar-field-color-border:focus, .f\:d-bgc---topbar-field-color-border.f\:d-bgc---topbar-field-color-border:focus-within, .fv\:d-bgc---topbar-field-color-border.fv\:d-bgc---topbar-field-color-border:focus-visible {
10122
+ --bgo: 100%;
10123
+ background-color: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--bgo)) !important;
10124
+ }
10125
+
10126
+ .d-bgc---topbar-field-color-border-hover.d-bgc---topbar-field-color-border-hover, .h\:d-bgc---topbar-field-color-border-hover.h\:d-bgc---topbar-field-color-border-hover:hover, .f\:d-bgc---topbar-field-color-border-hover.f\:d-bgc---topbar-field-color-border-hover:focus, .f\:d-bgc---topbar-field-color-border-hover.f\:d-bgc---topbar-field-color-border-hover:focus-within, .fv\:d-bgc---topbar-field-color-border-hover.fv\:d-bgc---topbar-field-color-border-hover:focus-visible {
10127
+ --bgo: 100%;
10128
+ background-color: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--bgo)) !important;
10129
+ }
10130
+
10131
+ .d-bgc---topbar-field-color-border-active.d-bgc---topbar-field-color-border-active, .h\:d-bgc---topbar-field-color-border-active.h\:d-bgc---topbar-field-color-border-active:hover, .f\:d-bgc---topbar-field-color-border-active.f\:d-bgc---topbar-field-color-border-active:focus, .f\:d-bgc---topbar-field-color-border-active.f\:d-bgc---topbar-field-color-border-active:focus-within, .fv\:d-bgc---topbar-field-color-border-active.fv\:d-bgc---topbar-field-color-border-active:focus-visible {
10132
+ --bgo: 100%;
10133
+ background-color: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--bgo)) !important;
10134
+ }
10135
+
10136
+ .d-bgc---topbar-button-color-foreground.d-bgc---topbar-button-color-foreground, .h\:d-bgc---topbar-button-color-foreground.h\:d-bgc---topbar-button-color-foreground:hover, .f\:d-bgc---topbar-button-color-foreground.f\:d-bgc---topbar-button-color-foreground:focus, .f\:d-bgc---topbar-button-color-foreground.f\:d-bgc---topbar-button-color-foreground:focus-within, .fv\:d-bgc---topbar-button-color-foreground.fv\:d-bgc---topbar-button-color-foreground:focus-visible {
10137
+ --bgo: 100%;
10138
+ background-color: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--bgo)) !important;
10139
+ }
10140
+
10141
+ .d-bgc---topbar-button-color-foreground-hover.d-bgc---topbar-button-color-foreground-hover, .h\:d-bgc---topbar-button-color-foreground-hover.h\:d-bgc---topbar-button-color-foreground-hover:hover, .f\:d-bgc---topbar-button-color-foreground-hover.f\:d-bgc---topbar-button-color-foreground-hover:focus, .f\:d-bgc---topbar-button-color-foreground-hover.f\:d-bgc---topbar-button-color-foreground-hover:focus-within, .fv\:d-bgc---topbar-button-color-foreground-hover.fv\:d-bgc---topbar-button-color-foreground-hover:focus-visible {
10142
+ --bgo: 100%;
10143
+ background-color: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--bgo)) !important;
10144
+ }
10145
+
10146
+ .d-bgc---topbar-button-color-background.d-bgc---topbar-button-color-background, .h\:d-bgc---topbar-button-color-background.h\:d-bgc---topbar-button-color-background:hover, .f\:d-bgc---topbar-button-color-background.f\:d-bgc---topbar-button-color-background:focus, .f\:d-bgc---topbar-button-color-background.f\:d-bgc---topbar-button-color-background:focus-within, .fv\:d-bgc---topbar-button-color-background.fv\:d-bgc---topbar-button-color-background:focus-visible {
10147
+ --bgo: 100%;
10148
+ background-color: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--bgo)) !important;
10149
+ }
10150
+
10151
+ .d-bgc---topbar-button-color-background-hover.d-bgc---topbar-button-color-background-hover, .h\:d-bgc---topbar-button-color-background-hover.h\:d-bgc---topbar-button-color-background-hover:hover, .f\:d-bgc---topbar-button-color-background-hover.f\:d-bgc---topbar-button-color-background-hover:focus, .f\:d-bgc---topbar-button-color-background-hover.f\:d-bgc---topbar-button-color-background-hover:focus-within, .fv\:d-bgc---topbar-button-color-background-hover.fv\:d-bgc---topbar-button-color-background-hover:focus-visible {
10152
+ --bgo: 100%;
10153
+ background-color: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--bgo)) !important;
10154
+ }
10155
+
10156
+ .d-bgc---topbar-button-color-background-active.d-bgc---topbar-button-color-background-active, .h\:d-bgc---topbar-button-color-background-active.h\:d-bgc---topbar-button-color-background-active:hover, .f\:d-bgc---topbar-button-color-background-active.f\:d-bgc---topbar-button-color-background-active:focus, .f\:d-bgc---topbar-button-color-background-active.f\:d-bgc---topbar-button-color-background-active:focus-within, .fv\:d-bgc---topbar-button-color-background-active.fv\:d-bgc---topbar-button-color-background-active:focus-visible {
10157
+ --bgo: 100%;
10158
+ background-color: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--bgo)) !important;
10159
+ }
10160
+
10161
+ .d-bgc---topbar-profile-color-foreground.d-bgc---topbar-profile-color-foreground, .h\:d-bgc---topbar-profile-color-foreground.h\:d-bgc---topbar-profile-color-foreground:hover, .f\:d-bgc---topbar-profile-color-foreground.f\:d-bgc---topbar-profile-color-foreground:focus, .f\:d-bgc---topbar-profile-color-foreground.f\:d-bgc---topbar-profile-color-foreground:focus-within, .fv\:d-bgc---topbar-profile-color-foreground.fv\:d-bgc---topbar-profile-color-foreground:focus-visible {
10162
+ --bgo: 100%;
10163
+ background-color: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--bgo)) !important;
10164
+ }
10165
+
10166
+ .d-bgc---topbar-profile-color-foreground-inverted.d-bgc---topbar-profile-color-foreground-inverted, .h\:d-bgc---topbar-profile-color-foreground-inverted.h\:d-bgc---topbar-profile-color-foreground-inverted:hover, .f\:d-bgc---topbar-profile-color-foreground-inverted.f\:d-bgc---topbar-profile-color-foreground-inverted:focus, .f\:d-bgc---topbar-profile-color-foreground-inverted.f\:d-bgc---topbar-profile-color-foreground-inverted:focus-within, .fv\:d-bgc---topbar-profile-color-foreground-inverted.fv\:d-bgc---topbar-profile-color-foreground-inverted:focus-visible {
10167
+ --bgo: 100%;
10168
+ background-color: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--bgo)) !important;
10169
+ }
10170
+
10171
+ .d-bgc---topbar-profile-color-background.d-bgc---topbar-profile-color-background, .h\:d-bgc---topbar-profile-color-background.h\:d-bgc---topbar-profile-color-background:hover, .f\:d-bgc---topbar-profile-color-background.f\:d-bgc---topbar-profile-color-background:focus, .f\:d-bgc---topbar-profile-color-background.f\:d-bgc---topbar-profile-color-background:focus-within, .fv\:d-bgc---topbar-profile-color-background.fv\:d-bgc---topbar-profile-color-background:focus-visible {
10172
+ --bgo: 100%;
10173
+ background-color: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--bgo)) !important;
10174
+ }
10175
+
10176
+ .d-bgc---topbar-profile-color-background-inverted.d-bgc---topbar-profile-color-background-inverted, .h\:d-bgc---topbar-profile-color-background-inverted.h\:d-bgc---topbar-profile-color-background-inverted:hover, .f\:d-bgc---topbar-profile-color-background-inverted.f\:d-bgc---topbar-profile-color-background-inverted:focus, .f\:d-bgc---topbar-profile-color-background-inverted.f\:d-bgc---topbar-profile-color-background-inverted:focus-within, .fv\:d-bgc---topbar-profile-color-background-inverted.fv\:d-bgc---topbar-profile-color-background-inverted:focus-visible {
10177
+ --bgo: 100%;
10178
+ background-color: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--bgo)) !important;
10179
+ }
10180
+
10181
+ .d-bgc---topbar-profile-color-background-hover.d-bgc---topbar-profile-color-background-hover, .h\:d-bgc---topbar-profile-color-background-hover.h\:d-bgc---topbar-profile-color-background-hover:hover, .f\:d-bgc---topbar-profile-color-background-hover.f\:d-bgc---topbar-profile-color-background-hover:focus, .f\:d-bgc---topbar-profile-color-background-hover.f\:d-bgc---topbar-profile-color-background-hover:focus-within, .fv\:d-bgc---topbar-profile-color-background-hover.fv\:d-bgc---topbar-profile-color-background-hover:focus-visible {
10182
+ --bgo: 100%;
10183
+ background-color: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--bgo)) !important;
10184
+ }
10185
+
10186
+ .d-bgc---topbar-profile-color-background-active.d-bgc---topbar-profile-color-background-active, .h\:d-bgc---topbar-profile-color-background-active.h\:d-bgc---topbar-profile-color-background-active:hover, .f\:d-bgc---topbar-profile-color-background-active.f\:d-bgc---topbar-profile-color-background-active:focus, .f\:d-bgc---topbar-profile-color-background-active.f\:d-bgc---topbar-profile-color-background-active:focus-within, .fv\:d-bgc---topbar-profile-color-background-active.fv\:d-bgc---topbar-profile-color-background-active:focus-visible {
10187
+ --bgo: 100%;
10188
+ background-color: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--bgo)) !important;
10189
+ }
10190
+
10191
+ .d-bgc---sidebar-color-foreground.d-bgc---sidebar-color-foreground, .h\:d-bgc---sidebar-color-foreground.h\:d-bgc---sidebar-color-foreground:hover, .f\:d-bgc---sidebar-color-foreground.f\:d-bgc---sidebar-color-foreground:focus, .f\:d-bgc---sidebar-color-foreground.f\:d-bgc---sidebar-color-foreground:focus-within, .fv\:d-bgc---sidebar-color-foreground.fv\:d-bgc---sidebar-color-foreground:focus-visible {
10192
+ --bgo: 100%;
10193
+ background-color: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--bgo)) !important;
10194
+ }
10195
+
10196
+ .d-bgc---sidebar-color-foreground-unread.d-bgc---sidebar-color-foreground-unread, .h\:d-bgc---sidebar-color-foreground-unread.h\:d-bgc---sidebar-color-foreground-unread:hover, .f\:d-bgc---sidebar-color-foreground-unread.f\:d-bgc---sidebar-color-foreground-unread:focus, .f\:d-bgc---sidebar-color-foreground-unread.f\:d-bgc---sidebar-color-foreground-unread:focus-within, .fv\:d-bgc---sidebar-color-foreground-unread.fv\:d-bgc---sidebar-color-foreground-unread:focus-visible {
10197
+ --bgo: 100%;
10198
+ background-color: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--bgo)) !important;
10199
+ }
10200
+
10201
+ .d-bgc---sidebar-color-background.d-bgc---sidebar-color-background, .h\:d-bgc---sidebar-color-background.h\:d-bgc---sidebar-color-background:hover, .f\:d-bgc---sidebar-color-background.f\:d-bgc---sidebar-color-background:focus, .f\:d-bgc---sidebar-color-background.f\:d-bgc---sidebar-color-background:focus-within, .fv\:d-bgc---sidebar-color-background.fv\:d-bgc---sidebar-color-background:focus-visible {
10202
+ --bgo: 100%;
10203
+ background-color: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--bgo)) !important;
10204
+ }
10205
+
10206
+ .d-bgc---sidebar-icon-color-foreground.d-bgc---sidebar-icon-color-foreground, .h\:d-bgc---sidebar-icon-color-foreground.h\:d-bgc---sidebar-icon-color-foreground:hover, .f\:d-bgc---sidebar-icon-color-foreground.f\:d-bgc---sidebar-icon-color-foreground:focus, .f\:d-bgc---sidebar-icon-color-foreground.f\:d-bgc---sidebar-icon-color-foreground:focus-within, .fv\:d-bgc---sidebar-icon-color-foreground.fv\:d-bgc---sidebar-icon-color-foreground:focus-visible {
10207
+ --bgo: 100%;
10208
+ background-color: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--bgo)) !important;
10209
+ }
10210
+
10211
+ .d-bgc---sidebar-status-color-foreground.d-bgc---sidebar-status-color-foreground, .h\:d-bgc---sidebar-status-color-foreground.h\:d-bgc---sidebar-status-color-foreground:hover, .f\:d-bgc---sidebar-status-color-foreground.f\:d-bgc---sidebar-status-color-foreground:focus, .f\:d-bgc---sidebar-status-color-foreground.f\:d-bgc---sidebar-status-color-foreground:focus-within, .fv\:d-bgc---sidebar-status-color-foreground.fv\:d-bgc---sidebar-status-color-foreground:focus-visible {
10212
+ --bgo: 100%;
10213
+ background-color: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--bgo)) !important;
10214
+ }
10215
+
10216
+ .d-bgc---sidebar-row-color-background.d-bgc---sidebar-row-color-background, .h\:d-bgc---sidebar-row-color-background.h\:d-bgc---sidebar-row-color-background:hover, .f\:d-bgc---sidebar-row-color-background.f\:d-bgc---sidebar-row-color-background:focus, .f\:d-bgc---sidebar-row-color-background.f\:d-bgc---sidebar-row-color-background:focus-within, .fv\:d-bgc---sidebar-row-color-background.fv\:d-bgc---sidebar-row-color-background:focus-visible {
10217
+ --bgo: 100%;
10218
+ background-color: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--bgo)) !important;
10219
+ }
10220
+
10221
+ .d-bgc---sidebar-row-color-background-hover.d-bgc---sidebar-row-color-background-hover, .h\:d-bgc---sidebar-row-color-background-hover.h\:d-bgc---sidebar-row-color-background-hover:hover, .f\:d-bgc---sidebar-row-color-background-hover.f\:d-bgc---sidebar-row-color-background-hover:focus, .f\:d-bgc---sidebar-row-color-background-hover.f\:d-bgc---sidebar-row-color-background-hover:focus-within, .fv\:d-bgc---sidebar-row-color-background-hover.fv\:d-bgc---sidebar-row-color-background-hover:focus-visible {
10222
+ --bgo: 100%;
10223
+ background-color: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--bgo)) !important;
10224
+ }
10225
+
10226
+ .d-bgc---sidebar-row-color-background-active.d-bgc---sidebar-row-color-background-active, .h\:d-bgc---sidebar-row-color-background-active.h\:d-bgc---sidebar-row-color-background-active:hover, .f\:d-bgc---sidebar-row-color-background-active.f\:d-bgc---sidebar-row-color-background-active:focus, .f\:d-bgc---sidebar-row-color-background-active.f\:d-bgc---sidebar-row-color-background-active:focus-within, .fv\:d-bgc---sidebar-row-color-background-active.fv\:d-bgc---sidebar-row-color-background-active:focus-visible {
10227
+ --bgo: 100%;
10228
+ background-color: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--bgo)) !important;
10229
+ }
10230
+
10231
+ .d-bgc---sidebar-selected-row-color-foreground.d-bgc---sidebar-selected-row-color-foreground, .h\:d-bgc---sidebar-selected-row-color-foreground.h\:d-bgc---sidebar-selected-row-color-foreground:hover, .f\:d-bgc---sidebar-selected-row-color-foreground.f\:d-bgc---sidebar-selected-row-color-foreground:focus, .f\:d-bgc---sidebar-selected-row-color-foreground.f\:d-bgc---sidebar-selected-row-color-foreground:focus-within, .fv\:d-bgc---sidebar-selected-row-color-foreground.fv\:d-bgc---sidebar-selected-row-color-foreground:focus-visible {
10232
+ --bgo: 100%;
10233
+ background-color: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--bgo)) !important;
10234
+ }
10235
+
10236
+ .d-bgc---sidebar-selected-row-color-background.d-bgc---sidebar-selected-row-color-background, .h\:d-bgc---sidebar-selected-row-color-background.h\:d-bgc---sidebar-selected-row-color-background:hover, .f\:d-bgc---sidebar-selected-row-color-background.f\:d-bgc---sidebar-selected-row-color-background:focus, .f\:d-bgc---sidebar-selected-row-color-background.f\:d-bgc---sidebar-selected-row-color-background:focus-within, .fv\:d-bgc---sidebar-selected-row-color-background.fv\:d-bgc---sidebar-selected-row-color-background:focus-visible {
10237
+ --bgo: 100%;
10238
+ background-color: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--bgo)) !important;
10239
+ }
10240
+
10241
+ .d-bgc---sidebar-section-color-foreground.d-bgc---sidebar-section-color-foreground, .h\:d-bgc---sidebar-section-color-foreground.h\:d-bgc---sidebar-section-color-foreground:hover, .f\:d-bgc---sidebar-section-color-foreground.f\:d-bgc---sidebar-section-color-foreground:focus, .f\:d-bgc---sidebar-section-color-foreground.f\:d-bgc---sidebar-section-color-foreground:focus-within, .fv\:d-bgc---sidebar-section-color-foreground.fv\:d-bgc---sidebar-section-color-foreground:focus-visible {
10242
+ --bgo: 100%;
10243
+ background-color: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--bgo)) !important;
10244
+ }
10245
+
10246
+ .d-bgc---presence-color-background-available.d-bgc---presence-color-background-available, .h\:d-bgc---presence-color-background-available.h\:d-bgc---presence-color-background-available:hover, .f\:d-bgc---presence-color-background-available.f\:d-bgc---presence-color-background-available:focus, .f\:d-bgc---presence-color-background-available.f\:d-bgc---presence-color-background-available:focus-within, .fv\:d-bgc---presence-color-background-available.fv\:d-bgc---presence-color-background-available:focus-visible {
10247
+ --bgo: 100%;
10248
+ background-color: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--bgo)) !important;
10249
+ }
10250
+
10251
+ .d-bgc---presence-color-background-busy-unavailable.d-bgc---presence-color-background-busy-unavailable, .h\:d-bgc---presence-color-background-busy-unavailable.h\:d-bgc---presence-color-background-busy-unavailable:hover, .f\:d-bgc---presence-color-background-busy-unavailable.f\:d-bgc---presence-color-background-busy-unavailable:focus, .f\:d-bgc---presence-color-background-busy-unavailable.f\:d-bgc---presence-color-background-busy-unavailable:focus-within, .fv\:d-bgc---presence-color-background-busy-unavailable.fv\:d-bgc---presence-color-background-busy-unavailable:focus-visible {
10252
+ --bgo: 100%;
10253
+ background-color: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--bgo)) !important;
10254
+ }
10255
+
10256
+ .d-bgc---presence-color-background-busy.d-bgc---presence-color-background-busy, .h\:d-bgc---presence-color-background-busy.h\:d-bgc---presence-color-background-busy:hover, .f\:d-bgc---presence-color-background-busy.f\:d-bgc---presence-color-background-busy:focus, .f\:d-bgc---presence-color-background-busy.f\:d-bgc---presence-color-background-busy:focus-within, .fv\:d-bgc---presence-color-background-busy.fv\:d-bgc---presence-color-background-busy:focus-visible {
10257
+ --bgo: 100%;
10258
+ background-color: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--bgo)) !important;
10259
+ }
10260
+
10261
+ .d-bgc---presence-color-background-offline.d-bgc---presence-color-background-offline, .h\:d-bgc---presence-color-background-offline.h\:d-bgc---presence-color-background-offline:hover, .f\:d-bgc---presence-color-background-offline.f\:d-bgc---presence-color-background-offline:focus, .f\:d-bgc---presence-color-background-offline.f\:d-bgc---presence-color-background-offline:focus-within, .fv\:d-bgc---presence-color-background-offline.fv\:d-bgc---presence-color-background-offline:focus-visible {
10262
+ --bgo: 100%;
10263
+ background-color: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--bgo)) !important;
10264
+ }
10265
+
10266
+ .d-bgc---mention-color-foreground.d-bgc---mention-color-foreground, .h\:d-bgc---mention-color-foreground.h\:d-bgc---mention-color-foreground:hover, .f\:d-bgc---mention-color-foreground.f\:d-bgc---mention-color-foreground:focus, .f\:d-bgc---mention-color-foreground.f\:d-bgc---mention-color-foreground:focus-within, .fv\:d-bgc---mention-color-foreground.fv\:d-bgc---mention-color-foreground:focus-visible {
10267
+ --bgo: 100%;
10268
+ background-color: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--bgo)) !important;
10269
+ }
10270
+
10271
+ .d-bgc---mention-color-background.d-bgc---mention-color-background, .h\:d-bgc---mention-color-background.h\:d-bgc---mention-color-background:hover, .f\:d-bgc---mention-color-background.f\:d-bgc---mention-color-background:focus, .f\:d-bgc---mention-color-background.f\:d-bgc---mention-color-background:focus-within, .fv\:d-bgc---mention-color-background.fv\:d-bgc---mention-color-background:focus-visible {
10272
+ --bgo: 100%;
10273
+ background-color: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--bgo)) !important;
10274
+ }
10275
+
10276
+ .d-divide---neutral-white.d-divide---neutral-white > * + * {
9775
10277
  --dco: 100%;
9776
10278
  border-color: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--dco)) !important;
9777
10279
  }
9778
10280
 
9779
- .d-divide-neutral-black.d-divide-neutral-black > * + * {
10281
+ .d-divide---neutral-black.d-divide---neutral-black > * + * {
9780
10282
  --dco: 100%;
9781
10283
  border-color: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--dco)) !important;
9782
10284
  }
9783
10285
 
9784
- .d-divide-black-100.d-divide-black-100 > * + * {
10286
+ .d-divide---black-100.d-divide---black-100 > * + * {
9785
10287
  --dco: 100%;
9786
10288
  border-color: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--dco)) !important;
9787
10289
  }
9788
10290
 
9789
- .d-divide-black-200.d-divide-black-200 > * + * {
10291
+ .d-divide---black-200.d-divide---black-200 > * + * {
9790
10292
  --dco: 100%;
9791
10293
  border-color: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--dco)) !important;
9792
10294
  }
9793
10295
 
9794
- .d-divide-black-300.d-divide-black-300 > * + * {
10296
+ .d-divide---black-300.d-divide---black-300 > * + * {
9795
10297
  --dco: 100%;
9796
10298
  border-color: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--dco)) !important;
9797
10299
  }
9798
10300
 
9799
- .d-divide-black-400.d-divide-black-400 > * + * {
10301
+ .d-divide---black-400.d-divide---black-400 > * + * {
9800
10302
  --dco: 100%;
9801
10303
  border-color: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--dco)) !important;
9802
10304
  }
9803
10305
 
9804
- .d-divide-black-500.d-divide-black-500 > * + * {
10306
+ .d-divide---black-500.d-divide---black-500 > * + * {
9805
10307
  --dco: 100%;
9806
10308
  border-color: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--dco)) !important;
9807
10309
  }
9808
10310
 
9809
- .d-divide-black-600.d-divide-black-600 > * + * {
10311
+ .d-divide---black-600.d-divide---black-600 > * + * {
9810
10312
  --dco: 100%;
9811
10313
  border-color: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--dco)) !important;
9812
10314
  }
9813
10315
 
9814
- .d-divide-black-700.d-divide-black-700 > * + * {
10316
+ .d-divide---black-700.d-divide---black-700 > * + * {
9815
10317
  --dco: 100%;
9816
10318
  border-color: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--dco)) !important;
9817
10319
  }
9818
10320
 
9819
- .d-divide-black-800.d-divide-black-800 > * + * {
10321
+ .d-divide---black-800.d-divide---black-800 > * + * {
9820
10322
  --dco: 100%;
9821
10323
  border-color: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--dco)) !important;
9822
10324
  }
9823
10325
 
9824
- .d-divide-black-900.d-divide-black-900 > * + * {
10326
+ .d-divide---black-900.d-divide---black-900 > * + * {
9825
10327
  --dco: 100%;
9826
10328
  border-color: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--dco)) !important;
9827
10329
  }
9828
10330
 
9829
- .d-divide-purple-100.d-divide-purple-100 > * + * {
10331
+ .d-divide---purple-100.d-divide---purple-100 > * + * {
9830
10332
  --dco: 100%;
9831
10333
  border-color: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--dco)) !important;
9832
10334
  }
9833
10335
 
9834
- .d-divide-purple-200.d-divide-purple-200 > * + * {
10336
+ .d-divide---purple-200.d-divide---purple-200 > * + * {
9835
10337
  --dco: 100%;
9836
10338
  border-color: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--dco)) !important;
9837
10339
  }
9838
10340
 
9839
- .d-divide-purple-300.d-divide-purple-300 > * + * {
10341
+ .d-divide---purple-300.d-divide---purple-300 > * + * {
9840
10342
  --dco: 100%;
9841
10343
  border-color: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--dco)) !important;
9842
10344
  }
9843
10345
 
9844
- .d-divide-purple-400.d-divide-purple-400 > * + * {
10346
+ .d-divide---purple-400.d-divide---purple-400 > * + * {
9845
10347
  --dco: 100%;
9846
10348
  border-color: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--dco)) !important;
9847
10349
  }
9848
10350
 
9849
- .d-divide-purple-500.d-divide-purple-500 > * + * {
10351
+ .d-divide---purple-500.d-divide---purple-500 > * + * {
9850
10352
  --dco: 100%;
9851
10353
  border-color: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--dco)) !important;
9852
10354
  }
9853
10355
 
9854
- .d-divide-purple-600.d-divide-purple-600 > * + * {
10356
+ .d-divide---purple-600.d-divide---purple-600 > * + * {
9855
10357
  --dco: 100%;
9856
10358
  border-color: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--dco)) !important;
9857
10359
  }
9858
10360
 
9859
- .d-divide-blue-100.d-divide-blue-100 > * + * {
10361
+ .d-divide---blue-100.d-divide---blue-100 > * + * {
9860
10362
  --dco: 100%;
9861
10363
  border-color: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--dco)) !important;
9862
10364
  }
9863
10365
 
9864
- .d-divide-blue-200.d-divide-blue-200 > * + * {
10366
+ .d-divide---blue-200.d-divide---blue-200 > * + * {
9865
10367
  --dco: 100%;
9866
10368
  border-color: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--dco)) !important;
9867
10369
  }
9868
10370
 
9869
- .d-divide-blue-300.d-divide-blue-300 > * + * {
10371
+ .d-divide---blue-300.d-divide---blue-300 > * + * {
9870
10372
  --dco: 100%;
9871
10373
  border-color: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--dco)) !important;
9872
10374
  }
9873
10375
 
9874
- .d-divide-blue-400.d-divide-blue-400 > * + * {
10376
+ .d-divide---blue-400.d-divide---blue-400 > * + * {
10377
+ --dco: 100%;
10378
+ border-color: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--dco)) !important;
10379
+ }
10380
+
10381
+ .d-divide---blue-500.d-divide---blue-500 > * + * {
10382
+ --dco: 100%;
10383
+ border-color: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--dco)) !important;
10384
+ }
10385
+
10386
+ .d-divide---magenta-100.d-divide---magenta-100 > * + * {
10387
+ --dco: 100%;
10388
+ border-color: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--dco)) !important;
10389
+ }
10390
+
10391
+ .d-divide---magenta-200.d-divide---magenta-200 > * + * {
10392
+ --dco: 100%;
10393
+ border-color: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--dco)) !important;
10394
+ }
10395
+
10396
+ .d-divide---magenta-300.d-divide---magenta-300 > * + * {
10397
+ --dco: 100%;
10398
+ border-color: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--dco)) !important;
10399
+ }
10400
+
10401
+ .d-divide---magenta-400.d-divide---magenta-400 > * + * {
10402
+ --dco: 100%;
10403
+ border-color: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--dco)) !important;
10404
+ }
10405
+
10406
+ .d-divide---magenta-500.d-divide---magenta-500 > * + * {
10407
+ --dco: 100%;
10408
+ border-color: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--dco)) !important;
10409
+ }
10410
+
10411
+ .d-divide---gold-100.d-divide---gold-100 > * + * {
10412
+ --dco: 100%;
10413
+ border-color: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--dco)) !important;
10414
+ }
10415
+
10416
+ .d-divide---gold-200.d-divide---gold-200 > * + * {
10417
+ --dco: 100%;
10418
+ border-color: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--dco)) !important;
10419
+ }
10420
+
10421
+ .d-divide---gold-300.d-divide---gold-300 > * + * {
10422
+ --dco: 100%;
10423
+ border-color: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--dco)) !important;
10424
+ }
10425
+
10426
+ .d-divide---gold-400.d-divide---gold-400 > * + * {
10427
+ --dco: 100%;
10428
+ border-color: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--dco)) !important;
10429
+ }
10430
+
10431
+ .d-divide---gold-500.d-divide---gold-500 > * + * {
10432
+ --dco: 100%;
10433
+ border-color: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--dco)) !important;
10434
+ }
10435
+
10436
+ .d-divide---green-100.d-divide---green-100 > * + * {
10437
+ --dco: 100%;
10438
+ border-color: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--dco)) !important;
10439
+ }
10440
+
10441
+ .d-divide---green-200.d-divide---green-200 > * + * {
10442
+ --dco: 100%;
10443
+ border-color: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--dco)) !important;
10444
+ }
10445
+
10446
+ .d-divide---green-300.d-divide---green-300 > * + * {
10447
+ --dco: 100%;
10448
+ border-color: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--dco)) !important;
10449
+ }
10450
+
10451
+ .d-divide---green-400.d-divide---green-400 > * + * {
10452
+ --dco: 100%;
10453
+ border-color: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--dco)) !important;
10454
+ }
10455
+
10456
+ .d-divide---green-500.d-divide---green-500 > * + * {
10457
+ --dco: 100%;
10458
+ border-color: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--dco)) !important;
10459
+ }
10460
+
10461
+ .d-divide---red-100.d-divide---red-100 > * + * {
10462
+ --dco: 100%;
10463
+ border-color: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--dco)) !important;
10464
+ }
10465
+
10466
+ .d-divide---red-200.d-divide---red-200 > * + * {
10467
+ --dco: 100%;
10468
+ border-color: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--dco)) !important;
10469
+ }
10470
+
10471
+ .d-divide---red-300.d-divide---red-300 > * + * {
10472
+ --dco: 100%;
10473
+ border-color: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--dco)) !important;
10474
+ }
10475
+
10476
+ .d-divide---red-400.d-divide---red-400 > * + * {
10477
+ --dco: 100%;
10478
+ border-color: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--dco)) !important;
10479
+ }
10480
+
10481
+ .d-divide---red-500.d-divide---red-500 > * + * {
10482
+ --dco: 100%;
10483
+ border-color: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--dco)) !important;
10484
+ }
10485
+
10486
+ .d-divide---tan-100.d-divide---tan-100 > * + * {
10487
+ --dco: 100%;
10488
+ border-color: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--dco)) !important;
10489
+ }
10490
+
10491
+ .d-divide---tan-200.d-divide---tan-200 > * + * {
10492
+ --dco: 100%;
10493
+ border-color: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--dco)) !important;
10494
+ }
10495
+
10496
+ .d-divide---tan-300.d-divide---tan-300 > * + * {
10497
+ --dco: 100%;
10498
+ border-color: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--dco)) !important;
10499
+ }
10500
+
10501
+ .d-divide---tan-400.d-divide---tan-400 > * + * {
10502
+ --dco: 100%;
10503
+ border-color: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--dco)) !important;
10504
+ }
10505
+
10506
+ .d-divide---tan-500.d-divide---tan-500 > * + * {
10507
+ --dco: 100%;
10508
+ border-color: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--dco)) !important;
10509
+ }
10510
+
10511
+ .d-divide---color-base.d-divide---color-base > * + * {
10512
+ --dco: 100%;
10513
+ border-color: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--dco)) !important;
10514
+ }
10515
+
10516
+ .d-divide---topbar-color-foreground.d-divide---topbar-color-foreground > * + * {
10517
+ --dco: 100%;
10518
+ border-color: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--dco)) !important;
10519
+ }
10520
+
10521
+ .d-divide---topbar-color-background.d-divide---topbar-color-background > * + * {
10522
+ --dco: 100%;
10523
+ border-color: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--dco)) !important;
10524
+ }
10525
+
10526
+ .d-divide---topbar-field-color-foreground.d-divide---topbar-field-color-foreground > * + * {
10527
+ --dco: 100%;
10528
+ border-color: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--dco)) !important;
10529
+ }
10530
+
10531
+ .d-divide---topbar-field-color-foreground-hover.d-divide---topbar-field-color-foreground-hover > * + * {
10532
+ --dco: 100%;
10533
+ border-color: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--dco)) !important;
10534
+ }
10535
+
10536
+ .d-divide---topbar-field-color-background.d-divide---topbar-field-color-background > * + * {
10537
+ --dco: 100%;
10538
+ border-color: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--dco)) !important;
10539
+ }
10540
+
10541
+ .d-divide---topbar-field-color-background-hover.d-divide---topbar-field-color-background-hover > * + * {
10542
+ --dco: 100%;
10543
+ border-color: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--dco)) !important;
10544
+ }
10545
+
10546
+ .d-divide---topbar-field-color-border.d-divide---topbar-field-color-border > * + * {
10547
+ --dco: 100%;
10548
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--dco)) !important;
10549
+ }
10550
+
10551
+ .d-divide---topbar-field-color-border-hover.d-divide---topbar-field-color-border-hover > * + * {
10552
+ --dco: 100%;
10553
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--dco)) !important;
10554
+ }
10555
+
10556
+ .d-divide---topbar-field-color-border-active.d-divide---topbar-field-color-border-active > * + * {
10557
+ --dco: 100%;
10558
+ border-color: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--dco)) !important;
10559
+ }
10560
+
10561
+ .d-divide---topbar-button-color-foreground.d-divide---topbar-button-color-foreground > * + * {
10562
+ --dco: 100%;
10563
+ border-color: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--dco)) !important;
10564
+ }
10565
+
10566
+ .d-divide---topbar-button-color-foreground-hover.d-divide---topbar-button-color-foreground-hover > * + * {
9875
10567
  --dco: 100%;
9876
- border-color: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--dco)) !important;
10568
+ border-color: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--dco)) !important;
9877
10569
  }
9878
10570
 
9879
- .d-divide-blue-500.d-divide-blue-500 > * + * {
10571
+ .d-divide---topbar-button-color-background.d-divide---topbar-button-color-background > * + * {
9880
10572
  --dco: 100%;
9881
- border-color: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--dco)) !important;
10573
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--dco)) !important;
9882
10574
  }
9883
10575
 
9884
- .d-divide-magenta-100.d-divide-magenta-100 > * + * {
10576
+ .d-divide---topbar-button-color-background-hover.d-divide---topbar-button-color-background-hover > * + * {
9885
10577
  --dco: 100%;
9886
- border-color: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--dco)) !important;
10578
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--dco)) !important;
9887
10579
  }
9888
10580
 
9889
- .d-divide-magenta-200.d-divide-magenta-200 > * + * {
10581
+ .d-divide---topbar-button-color-background-active.d-divide---topbar-button-color-background-active > * + * {
9890
10582
  --dco: 100%;
9891
- border-color: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--dco)) !important;
10583
+ border-color: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--dco)) !important;
9892
10584
  }
9893
10585
 
9894
- .d-divide-magenta-300.d-divide-magenta-300 > * + * {
10586
+ .d-divide---topbar-profile-color-foreground.d-divide---topbar-profile-color-foreground > * + * {
9895
10587
  --dco: 100%;
9896
- border-color: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--dco)) !important;
10588
+ border-color: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--dco)) !important;
9897
10589
  }
9898
10590
 
9899
- .d-divide-magenta-400.d-divide-magenta-400 > * + * {
10591
+ .d-divide---topbar-profile-color-foreground-inverted.d-divide---topbar-profile-color-foreground-inverted > * + * {
9900
10592
  --dco: 100%;
9901
- border-color: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--dco)) !important;
10593
+ border-color: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--dco)) !important;
9902
10594
  }
9903
10595
 
9904
- .d-divide-magenta-500.d-divide-magenta-500 > * + * {
10596
+ .d-divide---topbar-profile-color-background.d-divide---topbar-profile-color-background > * + * {
9905
10597
  --dco: 100%;
9906
- border-color: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--dco)) !important;
10598
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--dco)) !important;
9907
10599
  }
9908
10600
 
9909
- .d-divide-gold-100.d-divide-gold-100 > * + * {
10601
+ .d-divide---topbar-profile-color-background-inverted.d-divide---topbar-profile-color-background-inverted > * + * {
9910
10602
  --dco: 100%;
9911
- border-color: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--dco)) !important;
10603
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--dco)) !important;
9912
10604
  }
9913
10605
 
9914
- .d-divide-gold-200.d-divide-gold-200 > * + * {
10606
+ .d-divide---topbar-profile-color-background-hover.d-divide---topbar-profile-color-background-hover > * + * {
9915
10607
  --dco: 100%;
9916
- border-color: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--dco)) !important;
10608
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--dco)) !important;
9917
10609
  }
9918
10610
 
9919
- .d-divide-gold-300.d-divide-gold-300 > * + * {
10611
+ .d-divide---topbar-profile-color-background-active.d-divide---topbar-profile-color-background-active > * + * {
9920
10612
  --dco: 100%;
9921
- border-color: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--dco)) !important;
10613
+ border-color: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--dco)) !important;
9922
10614
  }
9923
10615
 
9924
- .d-divide-gold-400.d-divide-gold-400 > * + * {
10616
+ .d-divide---sidebar-color-foreground.d-divide---sidebar-color-foreground > * + * {
9925
10617
  --dco: 100%;
9926
- border-color: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--dco)) !important;
10618
+ border-color: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--dco)) !important;
9927
10619
  }
9928
10620
 
9929
- .d-divide-gold-500.d-divide-gold-500 > * + * {
10621
+ .d-divide---sidebar-color-foreground-unread.d-divide---sidebar-color-foreground-unread > * + * {
9930
10622
  --dco: 100%;
9931
- border-color: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--dco)) !important;
10623
+ border-color: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--dco)) !important;
9932
10624
  }
9933
10625
 
9934
- .d-divide-green-100.d-divide-green-100 > * + * {
10626
+ .d-divide---sidebar-color-background.d-divide---sidebar-color-background > * + * {
9935
10627
  --dco: 100%;
9936
- border-color: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--dco)) !important;
10628
+ border-color: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--dco)) !important;
9937
10629
  }
9938
10630
 
9939
- .d-divide-green-200.d-divide-green-200 > * + * {
10631
+ .d-divide---sidebar-icon-color-foreground.d-divide---sidebar-icon-color-foreground > * + * {
9940
10632
  --dco: 100%;
9941
- border-color: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--dco)) !important;
10633
+ border-color: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--dco)) !important;
9942
10634
  }
9943
10635
 
9944
- .d-divide-green-300.d-divide-green-300 > * + * {
10636
+ .d-divide---sidebar-status-color-foreground.d-divide---sidebar-status-color-foreground > * + * {
9945
10637
  --dco: 100%;
9946
- border-color: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--dco)) !important;
10638
+ border-color: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--dco)) !important;
9947
10639
  }
9948
10640
 
9949
- .d-divide-green-400.d-divide-green-400 > * + * {
10641
+ .d-divide---sidebar-row-color-background.d-divide---sidebar-row-color-background > * + * {
9950
10642
  --dco: 100%;
9951
- border-color: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--dco)) !important;
10643
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--dco)) !important;
9952
10644
  }
9953
10645
 
9954
- .d-divide-green-500.d-divide-green-500 > * + * {
10646
+ .d-divide---sidebar-row-color-background-hover.d-divide---sidebar-row-color-background-hover > * + * {
9955
10647
  --dco: 100%;
9956
- border-color: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--dco)) !important;
10648
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--dco)) !important;
9957
10649
  }
9958
10650
 
9959
- .d-divide-red-100.d-divide-red-100 > * + * {
10651
+ .d-divide---sidebar-row-color-background-active.d-divide---sidebar-row-color-background-active > * + * {
9960
10652
  --dco: 100%;
9961
- border-color: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--dco)) !important;
10653
+ border-color: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--dco)) !important;
9962
10654
  }
9963
10655
 
9964
- .d-divide-red-200.d-divide-red-200 > * + * {
10656
+ .d-divide---sidebar-selected-row-color-foreground.d-divide---sidebar-selected-row-color-foreground > * + * {
9965
10657
  --dco: 100%;
9966
- border-color: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--dco)) !important;
10658
+ border-color: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--dco)) !important;
9967
10659
  }
9968
10660
 
9969
- .d-divide-red-300.d-divide-red-300 > * + * {
10661
+ .d-divide---sidebar-selected-row-color-background.d-divide---sidebar-selected-row-color-background > * + * {
9970
10662
  --dco: 100%;
9971
- border-color: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--dco)) !important;
10663
+ border-color: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--dco)) !important;
9972
10664
  }
9973
10665
 
9974
- .d-divide-red-400.d-divide-red-400 > * + * {
10666
+ .d-divide---sidebar-section-color-foreground.d-divide---sidebar-section-color-foreground > * + * {
9975
10667
  --dco: 100%;
9976
- border-color: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--dco)) !important;
10668
+ border-color: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--dco)) !important;
9977
10669
  }
9978
10670
 
9979
- .d-divide-red-500.d-divide-red-500 > * + * {
10671
+ .d-divide---presence-color-background-available.d-divide---presence-color-background-available > * + * {
9980
10672
  --dco: 100%;
9981
- border-color: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--dco)) !important;
10673
+ border-color: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--dco)) !important;
9982
10674
  }
9983
10675
 
9984
- .d-divide-tan-100.d-divide-tan-100 > * + * {
10676
+ .d-divide---presence-color-background-busy-unavailable.d-divide---presence-color-background-busy-unavailable > * + * {
9985
10677
  --dco: 100%;
9986
- border-color: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--dco)) !important;
10678
+ border-color: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--dco)) !important;
9987
10679
  }
9988
10680
 
9989
- .d-divide-tan-200.d-divide-tan-200 > * + * {
10681
+ .d-divide---presence-color-background-busy.d-divide---presence-color-background-busy > * + * {
9990
10682
  --dco: 100%;
9991
- border-color: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--dco)) !important;
10683
+ border-color: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--dco)) !important;
9992
10684
  }
9993
10685
 
9994
- .d-divide-tan-300.d-divide-tan-300 > * + * {
10686
+ .d-divide---presence-color-background-offline.d-divide---presence-color-background-offline > * + * {
9995
10687
  --dco: 100%;
9996
- border-color: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--dco)) !important;
10688
+ border-color: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--dco)) !important;
9997
10689
  }
9998
10690
 
9999
- .d-divide-tan-400.d-divide-tan-400 > * + * {
10691
+ .d-divide---mention-color-foreground.d-divide---mention-color-foreground > * + * {
10000
10692
  --dco: 100%;
10001
- border-color: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--dco)) !important;
10693
+ border-color: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--dco)) !important;
10002
10694
  }
10003
10695
 
10004
- .d-divide-tan-500.d-divide-tan-500 > * + * {
10696
+ .d-divide---mention-color-background.d-divide---mention-color-background > * + * {
10005
10697
  --dco: 100%;
10006
- border-color: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--dco)) !important;
10698
+ border-color: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--dco)) !important;
10007
10699
  }
10008
10700
 
10009
- .d-bgg-from-neutral-white.d-bgg-from-neutral-white, .h\:d-bgg-from-neutral-white.h\:d-bgg-from-neutral-white:hover, .f\:d-bgg-from-neutral-white.f\:d-bgg-from-neutral-white:focus, .f\:d-bgg-from-neutral-white.f\:d-bgg-from-neutral-white:focus-within, .fv\:d-bgg-from-neutral-white.fv\:d-bgg-from-neutral-white:focus-visible {
10701
+ .d-bgg-from---neutral-white.d-bgg-from---neutral-white, .h\:d-bgg-from---neutral-white.h\:d-bgg-from---neutral-white:hover, .f\:d-bgg-from---neutral-white.f\:d-bgg-from---neutral-white:focus, .f\:d-bgg-from---neutral-white.f\:d-bgg-from---neutral-white:focus-within, .fv\:d-bgg-from---neutral-white.fv\:d-bgg-from---neutral-white:focus-visible {
10010
10702
  --bgg-from-opacity: 100%;
10011
10703
  --bgg-from: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--bgg-from-opacity));
10012
10704
  --bgg-to: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / 0%);
10013
10705
  }
10014
10706
 
10015
- .d-bgg-from-neutral-black.d-bgg-from-neutral-black, .h\:d-bgg-from-neutral-black.h\:d-bgg-from-neutral-black:hover, .f\:d-bgg-from-neutral-black.f\:d-bgg-from-neutral-black:focus, .f\:d-bgg-from-neutral-black.f\:d-bgg-from-neutral-black:focus-within, .fv\:d-bgg-from-neutral-black.fv\:d-bgg-from-neutral-black:focus-visible {
10707
+ .d-bgg-from---neutral-black.d-bgg-from---neutral-black, .h\:d-bgg-from---neutral-black.h\:d-bgg-from---neutral-black:hover, .f\:d-bgg-from---neutral-black.f\:d-bgg-from---neutral-black:focus, .f\:d-bgg-from---neutral-black.f\:d-bgg-from---neutral-black:focus-within, .fv\:d-bgg-from---neutral-black.fv\:d-bgg-from---neutral-black:focus-visible {
10016
10708
  --bgg-from-opacity: 100%;
10017
10709
  --bgg-from: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--bgg-from-opacity));
10018
10710
  --bgg-to: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / 0%);
10019
10711
  }
10020
10712
 
10021
- .d-bgg-from-black-100.d-bgg-from-black-100, .h\:d-bgg-from-black-100.h\:d-bgg-from-black-100:hover, .f\:d-bgg-from-black-100.f\:d-bgg-from-black-100:focus, .f\:d-bgg-from-black-100.f\:d-bgg-from-black-100:focus-within, .fv\:d-bgg-from-black-100.fv\:d-bgg-from-black-100:focus-visible {
10713
+ .d-bgg-from---black-100.d-bgg-from---black-100, .h\:d-bgg-from---black-100.h\:d-bgg-from---black-100:hover, .f\:d-bgg-from---black-100.f\:d-bgg-from---black-100:focus, .f\:d-bgg-from---black-100.f\:d-bgg-from---black-100:focus-within, .fv\:d-bgg-from---black-100.fv\:d-bgg-from---black-100:focus-visible {
10022
10714
  --bgg-from-opacity: 100%;
10023
10715
  --bgg-from: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--bgg-from-opacity));
10024
10716
  --bgg-to: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / 0%);
10025
10717
  }
10026
10718
 
10027
- .d-bgg-from-black-200.d-bgg-from-black-200, .h\:d-bgg-from-black-200.h\:d-bgg-from-black-200:hover, .f\:d-bgg-from-black-200.f\:d-bgg-from-black-200:focus, .f\:d-bgg-from-black-200.f\:d-bgg-from-black-200:focus-within, .fv\:d-bgg-from-black-200.fv\:d-bgg-from-black-200:focus-visible {
10719
+ .d-bgg-from---black-200.d-bgg-from---black-200, .h\:d-bgg-from---black-200.h\:d-bgg-from---black-200:hover, .f\:d-bgg-from---black-200.f\:d-bgg-from---black-200:focus, .f\:d-bgg-from---black-200.f\:d-bgg-from---black-200:focus-within, .fv\:d-bgg-from---black-200.fv\:d-bgg-from---black-200:focus-visible {
10028
10720
  --bgg-from-opacity: 100%;
10029
10721
  --bgg-from: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--bgg-from-opacity));
10030
10722
  --bgg-to: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / 0%);
10031
10723
  }
10032
10724
 
10033
- .d-bgg-from-black-300.d-bgg-from-black-300, .h\:d-bgg-from-black-300.h\:d-bgg-from-black-300:hover, .f\:d-bgg-from-black-300.f\:d-bgg-from-black-300:focus, .f\:d-bgg-from-black-300.f\:d-bgg-from-black-300:focus-within, .fv\:d-bgg-from-black-300.fv\:d-bgg-from-black-300:focus-visible {
10725
+ .d-bgg-from---black-300.d-bgg-from---black-300, .h\:d-bgg-from---black-300.h\:d-bgg-from---black-300:hover, .f\:d-bgg-from---black-300.f\:d-bgg-from---black-300:focus, .f\:d-bgg-from---black-300.f\:d-bgg-from---black-300:focus-within, .fv\:d-bgg-from---black-300.fv\:d-bgg-from---black-300:focus-visible {
10034
10726
  --bgg-from-opacity: 100%;
10035
10727
  --bgg-from: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--bgg-from-opacity));
10036
10728
  --bgg-to: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / 0%);
10037
10729
  }
10038
10730
 
10039
- .d-bgg-from-black-400.d-bgg-from-black-400, .h\:d-bgg-from-black-400.h\:d-bgg-from-black-400:hover, .f\:d-bgg-from-black-400.f\:d-bgg-from-black-400:focus, .f\:d-bgg-from-black-400.f\:d-bgg-from-black-400:focus-within, .fv\:d-bgg-from-black-400.fv\:d-bgg-from-black-400:focus-visible {
10731
+ .d-bgg-from---black-400.d-bgg-from---black-400, .h\:d-bgg-from---black-400.h\:d-bgg-from---black-400:hover, .f\:d-bgg-from---black-400.f\:d-bgg-from---black-400:focus, .f\:d-bgg-from---black-400.f\:d-bgg-from---black-400:focus-within, .fv\:d-bgg-from---black-400.fv\:d-bgg-from---black-400:focus-visible {
10040
10732
  --bgg-from-opacity: 100%;
10041
10733
  --bgg-from: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--bgg-from-opacity));
10042
10734
  --bgg-to: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / 0%);
10043
10735
  }
10044
10736
 
10045
- .d-bgg-from-black-500.d-bgg-from-black-500, .h\:d-bgg-from-black-500.h\:d-bgg-from-black-500:hover, .f\:d-bgg-from-black-500.f\:d-bgg-from-black-500:focus, .f\:d-bgg-from-black-500.f\:d-bgg-from-black-500:focus-within, .fv\:d-bgg-from-black-500.fv\:d-bgg-from-black-500:focus-visible {
10737
+ .d-bgg-from---black-500.d-bgg-from---black-500, .h\:d-bgg-from---black-500.h\:d-bgg-from---black-500:hover, .f\:d-bgg-from---black-500.f\:d-bgg-from---black-500:focus, .f\:d-bgg-from---black-500.f\:d-bgg-from---black-500:focus-within, .fv\:d-bgg-from---black-500.fv\:d-bgg-from---black-500:focus-visible {
10046
10738
  --bgg-from-opacity: 100%;
10047
10739
  --bgg-from: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--bgg-from-opacity));
10048
10740
  --bgg-to: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / 0%);
10049
10741
  }
10050
10742
 
10051
- .d-bgg-from-black-600.d-bgg-from-black-600, .h\:d-bgg-from-black-600.h\:d-bgg-from-black-600:hover, .f\:d-bgg-from-black-600.f\:d-bgg-from-black-600:focus, .f\:d-bgg-from-black-600.f\:d-bgg-from-black-600:focus-within, .fv\:d-bgg-from-black-600.fv\:d-bgg-from-black-600:focus-visible {
10743
+ .d-bgg-from---black-600.d-bgg-from---black-600, .h\:d-bgg-from---black-600.h\:d-bgg-from---black-600:hover, .f\:d-bgg-from---black-600.f\:d-bgg-from---black-600:focus, .f\:d-bgg-from---black-600.f\:d-bgg-from---black-600:focus-within, .fv\:d-bgg-from---black-600.fv\:d-bgg-from---black-600:focus-visible {
10052
10744
  --bgg-from-opacity: 100%;
10053
10745
  --bgg-from: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--bgg-from-opacity));
10054
10746
  --bgg-to: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / 0%);
10055
10747
  }
10056
10748
 
10057
- .d-bgg-from-black-700.d-bgg-from-black-700, .h\:d-bgg-from-black-700.h\:d-bgg-from-black-700:hover, .f\:d-bgg-from-black-700.f\:d-bgg-from-black-700:focus, .f\:d-bgg-from-black-700.f\:d-bgg-from-black-700:focus-within, .fv\:d-bgg-from-black-700.fv\:d-bgg-from-black-700:focus-visible {
10749
+ .d-bgg-from---black-700.d-bgg-from---black-700, .h\:d-bgg-from---black-700.h\:d-bgg-from---black-700:hover, .f\:d-bgg-from---black-700.f\:d-bgg-from---black-700:focus, .f\:d-bgg-from---black-700.f\:d-bgg-from---black-700:focus-within, .fv\:d-bgg-from---black-700.fv\:d-bgg-from---black-700:focus-visible {
10058
10750
  --bgg-from-opacity: 100%;
10059
10751
  --bgg-from: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--bgg-from-opacity));
10060
10752
  --bgg-to: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / 0%);
10061
10753
  }
10062
10754
 
10063
- .d-bgg-from-black-800.d-bgg-from-black-800, .h\:d-bgg-from-black-800.h\:d-bgg-from-black-800:hover, .f\:d-bgg-from-black-800.f\:d-bgg-from-black-800:focus, .f\:d-bgg-from-black-800.f\:d-bgg-from-black-800:focus-within, .fv\:d-bgg-from-black-800.fv\:d-bgg-from-black-800:focus-visible {
10755
+ .d-bgg-from---black-800.d-bgg-from---black-800, .h\:d-bgg-from---black-800.h\:d-bgg-from---black-800:hover, .f\:d-bgg-from---black-800.f\:d-bgg-from---black-800:focus, .f\:d-bgg-from---black-800.f\:d-bgg-from---black-800:focus-within, .fv\:d-bgg-from---black-800.fv\:d-bgg-from---black-800:focus-visible {
10064
10756
  --bgg-from-opacity: 100%;
10065
10757
  --bgg-from: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--bgg-from-opacity));
10066
10758
  --bgg-to: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / 0%);
10067
10759
  }
10068
10760
 
10069
- .d-bgg-from-black-900.d-bgg-from-black-900, .h\:d-bgg-from-black-900.h\:d-bgg-from-black-900:hover, .f\:d-bgg-from-black-900.f\:d-bgg-from-black-900:focus, .f\:d-bgg-from-black-900.f\:d-bgg-from-black-900:focus-within, .fv\:d-bgg-from-black-900.fv\:d-bgg-from-black-900:focus-visible {
10761
+ .d-bgg-from---black-900.d-bgg-from---black-900, .h\:d-bgg-from---black-900.h\:d-bgg-from---black-900:hover, .f\:d-bgg-from---black-900.f\:d-bgg-from---black-900:focus, .f\:d-bgg-from---black-900.f\:d-bgg-from---black-900:focus-within, .fv\:d-bgg-from---black-900.fv\:d-bgg-from---black-900:focus-visible {
10070
10762
  --bgg-from-opacity: 100%;
10071
10763
  --bgg-from: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--bgg-from-opacity));
10072
10764
  --bgg-to: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / 0%);
10073
10765
  }
10074
10766
 
10075
- .d-bgg-from-purple-100.d-bgg-from-purple-100, .h\:d-bgg-from-purple-100.h\:d-bgg-from-purple-100:hover, .f\:d-bgg-from-purple-100.f\:d-bgg-from-purple-100:focus, .f\:d-bgg-from-purple-100.f\:d-bgg-from-purple-100:focus-within, .fv\:d-bgg-from-purple-100.fv\:d-bgg-from-purple-100:focus-visible {
10767
+ .d-bgg-from---purple-100.d-bgg-from---purple-100, .h\:d-bgg-from---purple-100.h\:d-bgg-from---purple-100:hover, .f\:d-bgg-from---purple-100.f\:d-bgg-from---purple-100:focus, .f\:d-bgg-from---purple-100.f\:d-bgg-from---purple-100:focus-within, .fv\:d-bgg-from---purple-100.fv\:d-bgg-from---purple-100:focus-visible {
10076
10768
  --bgg-from-opacity: 100%;
10077
10769
  --bgg-from: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--bgg-from-opacity));
10078
10770
  --bgg-to: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / 0%);
10079
10771
  }
10080
10772
 
10081
- .d-bgg-from-purple-200.d-bgg-from-purple-200, .h\:d-bgg-from-purple-200.h\:d-bgg-from-purple-200:hover, .f\:d-bgg-from-purple-200.f\:d-bgg-from-purple-200:focus, .f\:d-bgg-from-purple-200.f\:d-bgg-from-purple-200:focus-within, .fv\:d-bgg-from-purple-200.fv\:d-bgg-from-purple-200:focus-visible {
10773
+ .d-bgg-from---purple-200.d-bgg-from---purple-200, .h\:d-bgg-from---purple-200.h\:d-bgg-from---purple-200:hover, .f\:d-bgg-from---purple-200.f\:d-bgg-from---purple-200:focus, .f\:d-bgg-from---purple-200.f\:d-bgg-from---purple-200:focus-within, .fv\:d-bgg-from---purple-200.fv\:d-bgg-from---purple-200:focus-visible {
10082
10774
  --bgg-from-opacity: 100%;
10083
10775
  --bgg-from: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--bgg-from-opacity));
10084
10776
  --bgg-to: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / 0%);
10085
10777
  }
10086
10778
 
10087
- .d-bgg-from-purple-300.d-bgg-from-purple-300, .h\:d-bgg-from-purple-300.h\:d-bgg-from-purple-300:hover, .f\:d-bgg-from-purple-300.f\:d-bgg-from-purple-300:focus, .f\:d-bgg-from-purple-300.f\:d-bgg-from-purple-300:focus-within, .fv\:d-bgg-from-purple-300.fv\:d-bgg-from-purple-300:focus-visible {
10779
+ .d-bgg-from---purple-300.d-bgg-from---purple-300, .h\:d-bgg-from---purple-300.h\:d-bgg-from---purple-300:hover, .f\:d-bgg-from---purple-300.f\:d-bgg-from---purple-300:focus, .f\:d-bgg-from---purple-300.f\:d-bgg-from---purple-300:focus-within, .fv\:d-bgg-from---purple-300.fv\:d-bgg-from---purple-300:focus-visible {
10088
10780
  --bgg-from-opacity: 100%;
10089
10781
  --bgg-from: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--bgg-from-opacity));
10090
10782
  --bgg-to: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / 0%);
10091
10783
  }
10092
10784
 
10093
- .d-bgg-from-purple-400.d-bgg-from-purple-400, .h\:d-bgg-from-purple-400.h\:d-bgg-from-purple-400:hover, .f\:d-bgg-from-purple-400.f\:d-bgg-from-purple-400:focus, .f\:d-bgg-from-purple-400.f\:d-bgg-from-purple-400:focus-within, .fv\:d-bgg-from-purple-400.fv\:d-bgg-from-purple-400:focus-visible {
10785
+ .d-bgg-from---purple-400.d-bgg-from---purple-400, .h\:d-bgg-from---purple-400.h\:d-bgg-from---purple-400:hover, .f\:d-bgg-from---purple-400.f\:d-bgg-from---purple-400:focus, .f\:d-bgg-from---purple-400.f\:d-bgg-from---purple-400:focus-within, .fv\:d-bgg-from---purple-400.fv\:d-bgg-from---purple-400:focus-visible {
10094
10786
  --bgg-from-opacity: 100%;
10095
10787
  --bgg-from: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--bgg-from-opacity));
10096
10788
  --bgg-to: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / 0%);
10097
10789
  }
10098
10790
 
10099
- .d-bgg-from-purple-500.d-bgg-from-purple-500, .h\:d-bgg-from-purple-500.h\:d-bgg-from-purple-500:hover, .f\:d-bgg-from-purple-500.f\:d-bgg-from-purple-500:focus, .f\:d-bgg-from-purple-500.f\:d-bgg-from-purple-500:focus-within, .fv\:d-bgg-from-purple-500.fv\:d-bgg-from-purple-500:focus-visible {
10791
+ .d-bgg-from---purple-500.d-bgg-from---purple-500, .h\:d-bgg-from---purple-500.h\:d-bgg-from---purple-500:hover, .f\:d-bgg-from---purple-500.f\:d-bgg-from---purple-500:focus, .f\:d-bgg-from---purple-500.f\:d-bgg-from---purple-500:focus-within, .fv\:d-bgg-from---purple-500.fv\:d-bgg-from---purple-500:focus-visible {
10100
10792
  --bgg-from-opacity: 100%;
10101
10793
  --bgg-from: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--bgg-from-opacity));
10102
10794
  --bgg-to: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / 0%);
10103
10795
  }
10104
10796
 
10105
- .d-bgg-from-purple-600.d-bgg-from-purple-600, .h\:d-bgg-from-purple-600.h\:d-bgg-from-purple-600:hover, .f\:d-bgg-from-purple-600.f\:d-bgg-from-purple-600:focus, .f\:d-bgg-from-purple-600.f\:d-bgg-from-purple-600:focus-within, .fv\:d-bgg-from-purple-600.fv\:d-bgg-from-purple-600:focus-visible {
10797
+ .d-bgg-from---purple-600.d-bgg-from---purple-600, .h\:d-bgg-from---purple-600.h\:d-bgg-from---purple-600:hover, .f\:d-bgg-from---purple-600.f\:d-bgg-from---purple-600:focus, .f\:d-bgg-from---purple-600.f\:d-bgg-from---purple-600:focus-within, .fv\:d-bgg-from---purple-600.fv\:d-bgg-from---purple-600:focus-visible {
10106
10798
  --bgg-from-opacity: 100%;
10107
10799
  --bgg-from: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--bgg-from-opacity));
10108
10800
  --bgg-to: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / 0%);
10109
10801
  }
10110
10802
 
10111
- .d-bgg-from-blue-100.d-bgg-from-blue-100, .h\:d-bgg-from-blue-100.h\:d-bgg-from-blue-100:hover, .f\:d-bgg-from-blue-100.f\:d-bgg-from-blue-100:focus, .f\:d-bgg-from-blue-100.f\:d-bgg-from-blue-100:focus-within, .fv\:d-bgg-from-blue-100.fv\:d-bgg-from-blue-100:focus-visible {
10803
+ .d-bgg-from---blue-100.d-bgg-from---blue-100, .h\:d-bgg-from---blue-100.h\:d-bgg-from---blue-100:hover, .f\:d-bgg-from---blue-100.f\:d-bgg-from---blue-100:focus, .f\:d-bgg-from---blue-100.f\:d-bgg-from---blue-100:focus-within, .fv\:d-bgg-from---blue-100.fv\:d-bgg-from---blue-100:focus-visible {
10112
10804
  --bgg-from-opacity: 100%;
10113
10805
  --bgg-from: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--bgg-from-opacity));
10114
10806
  --bgg-to: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / 0%);
10115
10807
  }
10116
10808
 
10117
- .d-bgg-from-blue-200.d-bgg-from-blue-200, .h\:d-bgg-from-blue-200.h\:d-bgg-from-blue-200:hover, .f\:d-bgg-from-blue-200.f\:d-bgg-from-blue-200:focus, .f\:d-bgg-from-blue-200.f\:d-bgg-from-blue-200:focus-within, .fv\:d-bgg-from-blue-200.fv\:d-bgg-from-blue-200:focus-visible {
10809
+ .d-bgg-from---blue-200.d-bgg-from---blue-200, .h\:d-bgg-from---blue-200.h\:d-bgg-from---blue-200:hover, .f\:d-bgg-from---blue-200.f\:d-bgg-from---blue-200:focus, .f\:d-bgg-from---blue-200.f\:d-bgg-from---blue-200:focus-within, .fv\:d-bgg-from---blue-200.fv\:d-bgg-from---blue-200:focus-visible {
10118
10810
  --bgg-from-opacity: 100%;
10119
10811
  --bgg-from: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--bgg-from-opacity));
10120
10812
  --bgg-to: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / 0%);
10121
10813
  }
10122
10814
 
10123
- .d-bgg-from-blue-300.d-bgg-from-blue-300, .h\:d-bgg-from-blue-300.h\:d-bgg-from-blue-300:hover, .f\:d-bgg-from-blue-300.f\:d-bgg-from-blue-300:focus, .f\:d-bgg-from-blue-300.f\:d-bgg-from-blue-300:focus-within, .fv\:d-bgg-from-blue-300.fv\:d-bgg-from-blue-300:focus-visible {
10815
+ .d-bgg-from---blue-300.d-bgg-from---blue-300, .h\:d-bgg-from---blue-300.h\:d-bgg-from---blue-300:hover, .f\:d-bgg-from---blue-300.f\:d-bgg-from---blue-300:focus, .f\:d-bgg-from---blue-300.f\:d-bgg-from---blue-300:focus-within, .fv\:d-bgg-from---blue-300.fv\:d-bgg-from---blue-300:focus-visible {
10124
10816
  --bgg-from-opacity: 100%;
10125
10817
  --bgg-from: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--bgg-from-opacity));
10126
10818
  --bgg-to: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / 0%);
10127
10819
  }
10128
10820
 
10129
- .d-bgg-from-blue-400.d-bgg-from-blue-400, .h\:d-bgg-from-blue-400.h\:d-bgg-from-blue-400:hover, .f\:d-bgg-from-blue-400.f\:d-bgg-from-blue-400:focus, .f\:d-bgg-from-blue-400.f\:d-bgg-from-blue-400:focus-within, .fv\:d-bgg-from-blue-400.fv\:d-bgg-from-blue-400:focus-visible {
10821
+ .d-bgg-from---blue-400.d-bgg-from---blue-400, .h\:d-bgg-from---blue-400.h\:d-bgg-from---blue-400:hover, .f\:d-bgg-from---blue-400.f\:d-bgg-from---blue-400:focus, .f\:d-bgg-from---blue-400.f\:d-bgg-from---blue-400:focus-within, .fv\:d-bgg-from---blue-400.fv\:d-bgg-from---blue-400:focus-visible {
10130
10822
  --bgg-from-opacity: 100%;
10131
10823
  --bgg-from: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--bgg-from-opacity));
10132
10824
  --bgg-to: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / 0%);
10133
10825
  }
10134
10826
 
10135
- .d-bgg-from-blue-500.d-bgg-from-blue-500, .h\:d-bgg-from-blue-500.h\:d-bgg-from-blue-500:hover, .f\:d-bgg-from-blue-500.f\:d-bgg-from-blue-500:focus, .f\:d-bgg-from-blue-500.f\:d-bgg-from-blue-500:focus-within, .fv\:d-bgg-from-blue-500.fv\:d-bgg-from-blue-500:focus-visible {
10827
+ .d-bgg-from---blue-500.d-bgg-from---blue-500, .h\:d-bgg-from---blue-500.h\:d-bgg-from---blue-500:hover, .f\:d-bgg-from---blue-500.f\:d-bgg-from---blue-500:focus, .f\:d-bgg-from---blue-500.f\:d-bgg-from---blue-500:focus-within, .fv\:d-bgg-from---blue-500.fv\:d-bgg-from---blue-500:focus-visible {
10136
10828
  --bgg-from-opacity: 100%;
10137
10829
  --bgg-from: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--bgg-from-opacity));
10138
10830
  --bgg-to: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / 0%);
10139
10831
  }
10140
10832
 
10141
- .d-bgg-from-magenta-100.d-bgg-from-magenta-100, .h\:d-bgg-from-magenta-100.h\:d-bgg-from-magenta-100:hover, .f\:d-bgg-from-magenta-100.f\:d-bgg-from-magenta-100:focus, .f\:d-bgg-from-magenta-100.f\:d-bgg-from-magenta-100:focus-within, .fv\:d-bgg-from-magenta-100.fv\:d-bgg-from-magenta-100:focus-visible {
10833
+ .d-bgg-from---magenta-100.d-bgg-from---magenta-100, .h\:d-bgg-from---magenta-100.h\:d-bgg-from---magenta-100:hover, .f\:d-bgg-from---magenta-100.f\:d-bgg-from---magenta-100:focus, .f\:d-bgg-from---magenta-100.f\:d-bgg-from---magenta-100:focus-within, .fv\:d-bgg-from---magenta-100.fv\:d-bgg-from---magenta-100:focus-visible {
10142
10834
  --bgg-from-opacity: 100%;
10143
10835
  --bgg-from: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--bgg-from-opacity));
10144
10836
  --bgg-to: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / 0%);
10145
10837
  }
10146
10838
 
10147
- .d-bgg-from-magenta-200.d-bgg-from-magenta-200, .h\:d-bgg-from-magenta-200.h\:d-bgg-from-magenta-200:hover, .f\:d-bgg-from-magenta-200.f\:d-bgg-from-magenta-200:focus, .f\:d-bgg-from-magenta-200.f\:d-bgg-from-magenta-200:focus-within, .fv\:d-bgg-from-magenta-200.fv\:d-bgg-from-magenta-200:focus-visible {
10839
+ .d-bgg-from---magenta-200.d-bgg-from---magenta-200, .h\:d-bgg-from---magenta-200.h\:d-bgg-from---magenta-200:hover, .f\:d-bgg-from---magenta-200.f\:d-bgg-from---magenta-200:focus, .f\:d-bgg-from---magenta-200.f\:d-bgg-from---magenta-200:focus-within, .fv\:d-bgg-from---magenta-200.fv\:d-bgg-from---magenta-200:focus-visible {
10148
10840
  --bgg-from-opacity: 100%;
10149
10841
  --bgg-from: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--bgg-from-opacity));
10150
10842
  --bgg-to: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / 0%);
10151
10843
  }
10152
10844
 
10153
- .d-bgg-from-magenta-300.d-bgg-from-magenta-300, .h\:d-bgg-from-magenta-300.h\:d-bgg-from-magenta-300:hover, .f\:d-bgg-from-magenta-300.f\:d-bgg-from-magenta-300:focus, .f\:d-bgg-from-magenta-300.f\:d-bgg-from-magenta-300:focus-within, .fv\:d-bgg-from-magenta-300.fv\:d-bgg-from-magenta-300:focus-visible {
10845
+ .d-bgg-from---magenta-300.d-bgg-from---magenta-300, .h\:d-bgg-from---magenta-300.h\:d-bgg-from---magenta-300:hover, .f\:d-bgg-from---magenta-300.f\:d-bgg-from---magenta-300:focus, .f\:d-bgg-from---magenta-300.f\:d-bgg-from---magenta-300:focus-within, .fv\:d-bgg-from---magenta-300.fv\:d-bgg-from---magenta-300:focus-visible {
10154
10846
  --bgg-from-opacity: 100%;
10155
10847
  --bgg-from: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--bgg-from-opacity));
10156
10848
  --bgg-to: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / 0%);
10157
10849
  }
10158
10850
 
10159
- .d-bgg-from-magenta-400.d-bgg-from-magenta-400, .h\:d-bgg-from-magenta-400.h\:d-bgg-from-magenta-400:hover, .f\:d-bgg-from-magenta-400.f\:d-bgg-from-magenta-400:focus, .f\:d-bgg-from-magenta-400.f\:d-bgg-from-magenta-400:focus-within, .fv\:d-bgg-from-magenta-400.fv\:d-bgg-from-magenta-400:focus-visible {
10851
+ .d-bgg-from---magenta-400.d-bgg-from---magenta-400, .h\:d-bgg-from---magenta-400.h\:d-bgg-from---magenta-400:hover, .f\:d-bgg-from---magenta-400.f\:d-bgg-from---magenta-400:focus, .f\:d-bgg-from---magenta-400.f\:d-bgg-from---magenta-400:focus-within, .fv\:d-bgg-from---magenta-400.fv\:d-bgg-from---magenta-400:focus-visible {
10160
10852
  --bgg-from-opacity: 100%;
10161
10853
  --bgg-from: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--bgg-from-opacity));
10162
10854
  --bgg-to: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / 0%);
10163
10855
  }
10164
10856
 
10165
- .d-bgg-from-magenta-500.d-bgg-from-magenta-500, .h\:d-bgg-from-magenta-500.h\:d-bgg-from-magenta-500:hover, .f\:d-bgg-from-magenta-500.f\:d-bgg-from-magenta-500:focus, .f\:d-bgg-from-magenta-500.f\:d-bgg-from-magenta-500:focus-within, .fv\:d-bgg-from-magenta-500.fv\:d-bgg-from-magenta-500:focus-visible {
10857
+ .d-bgg-from---magenta-500.d-bgg-from---magenta-500, .h\:d-bgg-from---magenta-500.h\:d-bgg-from---magenta-500:hover, .f\:d-bgg-from---magenta-500.f\:d-bgg-from---magenta-500:focus, .f\:d-bgg-from---magenta-500.f\:d-bgg-from---magenta-500:focus-within, .fv\:d-bgg-from---magenta-500.fv\:d-bgg-from---magenta-500:focus-visible {
10166
10858
  --bgg-from-opacity: 100%;
10167
10859
  --bgg-from: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--bgg-from-opacity));
10168
10860
  --bgg-to: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / 0%);
10169
10861
  }
10170
10862
 
10171
- .d-bgg-from-gold-100.d-bgg-from-gold-100, .h\:d-bgg-from-gold-100.h\:d-bgg-from-gold-100:hover, .f\:d-bgg-from-gold-100.f\:d-bgg-from-gold-100:focus, .f\:d-bgg-from-gold-100.f\:d-bgg-from-gold-100:focus-within, .fv\:d-bgg-from-gold-100.fv\:d-bgg-from-gold-100:focus-visible {
10863
+ .d-bgg-from---gold-100.d-bgg-from---gold-100, .h\:d-bgg-from---gold-100.h\:d-bgg-from---gold-100:hover, .f\:d-bgg-from---gold-100.f\:d-bgg-from---gold-100:focus, .f\:d-bgg-from---gold-100.f\:d-bgg-from---gold-100:focus-within, .fv\:d-bgg-from---gold-100.fv\:d-bgg-from---gold-100:focus-visible {
10172
10864
  --bgg-from-opacity: 100%;
10173
10865
  --bgg-from: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--bgg-from-opacity));
10174
10866
  --bgg-to: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / 0%);
10175
10867
  }
10176
10868
 
10177
- .d-bgg-from-gold-200.d-bgg-from-gold-200, .h\:d-bgg-from-gold-200.h\:d-bgg-from-gold-200:hover, .f\:d-bgg-from-gold-200.f\:d-bgg-from-gold-200:focus, .f\:d-bgg-from-gold-200.f\:d-bgg-from-gold-200:focus-within, .fv\:d-bgg-from-gold-200.fv\:d-bgg-from-gold-200:focus-visible {
10869
+ .d-bgg-from---gold-200.d-bgg-from---gold-200, .h\:d-bgg-from---gold-200.h\:d-bgg-from---gold-200:hover, .f\:d-bgg-from---gold-200.f\:d-bgg-from---gold-200:focus, .f\:d-bgg-from---gold-200.f\:d-bgg-from---gold-200:focus-within, .fv\:d-bgg-from---gold-200.fv\:d-bgg-from---gold-200:focus-visible {
10178
10870
  --bgg-from-opacity: 100%;
10179
10871
  --bgg-from: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--bgg-from-opacity));
10180
10872
  --bgg-to: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / 0%);
10181
10873
  }
10182
10874
 
10183
- .d-bgg-from-gold-300.d-bgg-from-gold-300, .h\:d-bgg-from-gold-300.h\:d-bgg-from-gold-300:hover, .f\:d-bgg-from-gold-300.f\:d-bgg-from-gold-300:focus, .f\:d-bgg-from-gold-300.f\:d-bgg-from-gold-300:focus-within, .fv\:d-bgg-from-gold-300.fv\:d-bgg-from-gold-300:focus-visible {
10875
+ .d-bgg-from---gold-300.d-bgg-from---gold-300, .h\:d-bgg-from---gold-300.h\:d-bgg-from---gold-300:hover, .f\:d-bgg-from---gold-300.f\:d-bgg-from---gold-300:focus, .f\:d-bgg-from---gold-300.f\:d-bgg-from---gold-300:focus-within, .fv\:d-bgg-from---gold-300.fv\:d-bgg-from---gold-300:focus-visible {
10184
10876
  --bgg-from-opacity: 100%;
10185
10877
  --bgg-from: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--bgg-from-opacity));
10186
10878
  --bgg-to: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / 0%);
10187
10879
  }
10188
10880
 
10189
- .d-bgg-from-gold-400.d-bgg-from-gold-400, .h\:d-bgg-from-gold-400.h\:d-bgg-from-gold-400:hover, .f\:d-bgg-from-gold-400.f\:d-bgg-from-gold-400:focus, .f\:d-bgg-from-gold-400.f\:d-bgg-from-gold-400:focus-within, .fv\:d-bgg-from-gold-400.fv\:d-bgg-from-gold-400:focus-visible {
10881
+ .d-bgg-from---gold-400.d-bgg-from---gold-400, .h\:d-bgg-from---gold-400.h\:d-bgg-from---gold-400:hover, .f\:d-bgg-from---gold-400.f\:d-bgg-from---gold-400:focus, .f\:d-bgg-from---gold-400.f\:d-bgg-from---gold-400:focus-within, .fv\:d-bgg-from---gold-400.fv\:d-bgg-from---gold-400:focus-visible {
10190
10882
  --bgg-from-opacity: 100%;
10191
10883
  --bgg-from: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--bgg-from-opacity));
10192
10884
  --bgg-to: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / 0%);
10193
10885
  }
10194
10886
 
10195
- .d-bgg-from-gold-500.d-bgg-from-gold-500, .h\:d-bgg-from-gold-500.h\:d-bgg-from-gold-500:hover, .f\:d-bgg-from-gold-500.f\:d-bgg-from-gold-500:focus, .f\:d-bgg-from-gold-500.f\:d-bgg-from-gold-500:focus-within, .fv\:d-bgg-from-gold-500.fv\:d-bgg-from-gold-500:focus-visible {
10887
+ .d-bgg-from---gold-500.d-bgg-from---gold-500, .h\:d-bgg-from---gold-500.h\:d-bgg-from---gold-500:hover, .f\:d-bgg-from---gold-500.f\:d-bgg-from---gold-500:focus, .f\:d-bgg-from---gold-500.f\:d-bgg-from---gold-500:focus-within, .fv\:d-bgg-from---gold-500.fv\:d-bgg-from---gold-500:focus-visible {
10196
10888
  --bgg-from-opacity: 100%;
10197
10889
  --bgg-from: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--bgg-from-opacity));
10198
10890
  --bgg-to: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / 0%);
10199
10891
  }
10200
10892
 
10201
- .d-bgg-from-green-100.d-bgg-from-green-100, .h\:d-bgg-from-green-100.h\:d-bgg-from-green-100:hover, .f\:d-bgg-from-green-100.f\:d-bgg-from-green-100:focus, .f\:d-bgg-from-green-100.f\:d-bgg-from-green-100:focus-within, .fv\:d-bgg-from-green-100.fv\:d-bgg-from-green-100:focus-visible {
10893
+ .d-bgg-from---green-100.d-bgg-from---green-100, .h\:d-bgg-from---green-100.h\:d-bgg-from---green-100:hover, .f\:d-bgg-from---green-100.f\:d-bgg-from---green-100:focus, .f\:d-bgg-from---green-100.f\:d-bgg-from---green-100:focus-within, .fv\:d-bgg-from---green-100.fv\:d-bgg-from---green-100:focus-visible {
10202
10894
  --bgg-from-opacity: 100%;
10203
10895
  --bgg-from: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--bgg-from-opacity));
10204
10896
  --bgg-to: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / 0%);
10205
10897
  }
10206
10898
 
10207
- .d-bgg-from-green-200.d-bgg-from-green-200, .h\:d-bgg-from-green-200.h\:d-bgg-from-green-200:hover, .f\:d-bgg-from-green-200.f\:d-bgg-from-green-200:focus, .f\:d-bgg-from-green-200.f\:d-bgg-from-green-200:focus-within, .fv\:d-bgg-from-green-200.fv\:d-bgg-from-green-200:focus-visible {
10899
+ .d-bgg-from---green-200.d-bgg-from---green-200, .h\:d-bgg-from---green-200.h\:d-bgg-from---green-200:hover, .f\:d-bgg-from---green-200.f\:d-bgg-from---green-200:focus, .f\:d-bgg-from---green-200.f\:d-bgg-from---green-200:focus-within, .fv\:d-bgg-from---green-200.fv\:d-bgg-from---green-200:focus-visible {
10208
10900
  --bgg-from-opacity: 100%;
10209
10901
  --bgg-from: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--bgg-from-opacity));
10210
10902
  --bgg-to: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / 0%);
10211
10903
  }
10212
10904
 
10213
- .d-bgg-from-green-300.d-bgg-from-green-300, .h\:d-bgg-from-green-300.h\:d-bgg-from-green-300:hover, .f\:d-bgg-from-green-300.f\:d-bgg-from-green-300:focus, .f\:d-bgg-from-green-300.f\:d-bgg-from-green-300:focus-within, .fv\:d-bgg-from-green-300.fv\:d-bgg-from-green-300:focus-visible {
10905
+ .d-bgg-from---green-300.d-bgg-from---green-300, .h\:d-bgg-from---green-300.h\:d-bgg-from---green-300:hover, .f\:d-bgg-from---green-300.f\:d-bgg-from---green-300:focus, .f\:d-bgg-from---green-300.f\:d-bgg-from---green-300:focus-within, .fv\:d-bgg-from---green-300.fv\:d-bgg-from---green-300:focus-visible {
10214
10906
  --bgg-from-opacity: 100%;
10215
10907
  --bgg-from: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--bgg-from-opacity));
10216
10908
  --bgg-to: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / 0%);
10217
10909
  }
10218
10910
 
10219
- .d-bgg-from-green-400.d-bgg-from-green-400, .h\:d-bgg-from-green-400.h\:d-bgg-from-green-400:hover, .f\:d-bgg-from-green-400.f\:d-bgg-from-green-400:focus, .f\:d-bgg-from-green-400.f\:d-bgg-from-green-400:focus-within, .fv\:d-bgg-from-green-400.fv\:d-bgg-from-green-400:focus-visible {
10911
+ .d-bgg-from---green-400.d-bgg-from---green-400, .h\:d-bgg-from---green-400.h\:d-bgg-from---green-400:hover, .f\:d-bgg-from---green-400.f\:d-bgg-from---green-400:focus, .f\:d-bgg-from---green-400.f\:d-bgg-from---green-400:focus-within, .fv\:d-bgg-from---green-400.fv\:d-bgg-from---green-400:focus-visible {
10220
10912
  --bgg-from-opacity: 100%;
10221
10913
  --bgg-from: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--bgg-from-opacity));
10222
10914
  --bgg-to: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / 0%);
10223
10915
  }
10224
10916
 
10225
- .d-bgg-from-green-500.d-bgg-from-green-500, .h\:d-bgg-from-green-500.h\:d-bgg-from-green-500:hover, .f\:d-bgg-from-green-500.f\:d-bgg-from-green-500:focus, .f\:d-bgg-from-green-500.f\:d-bgg-from-green-500:focus-within, .fv\:d-bgg-from-green-500.fv\:d-bgg-from-green-500:focus-visible {
10917
+ .d-bgg-from---green-500.d-bgg-from---green-500, .h\:d-bgg-from---green-500.h\:d-bgg-from---green-500:hover, .f\:d-bgg-from---green-500.f\:d-bgg-from---green-500:focus, .f\:d-bgg-from---green-500.f\:d-bgg-from---green-500:focus-within, .fv\:d-bgg-from---green-500.fv\:d-bgg-from---green-500:focus-visible {
10226
10918
  --bgg-from-opacity: 100%;
10227
10919
  --bgg-from: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--bgg-from-opacity));
10228
10920
  --bgg-to: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / 0%);
10229
10921
  }
10230
10922
 
10231
- .d-bgg-from-red-100.d-bgg-from-red-100, .h\:d-bgg-from-red-100.h\:d-bgg-from-red-100:hover, .f\:d-bgg-from-red-100.f\:d-bgg-from-red-100:focus, .f\:d-bgg-from-red-100.f\:d-bgg-from-red-100:focus-within, .fv\:d-bgg-from-red-100.fv\:d-bgg-from-red-100:focus-visible {
10923
+ .d-bgg-from---red-100.d-bgg-from---red-100, .h\:d-bgg-from---red-100.h\:d-bgg-from---red-100:hover, .f\:d-bgg-from---red-100.f\:d-bgg-from---red-100:focus, .f\:d-bgg-from---red-100.f\:d-bgg-from---red-100:focus-within, .fv\:d-bgg-from---red-100.fv\:d-bgg-from---red-100:focus-visible {
10232
10924
  --bgg-from-opacity: 100%;
10233
10925
  --bgg-from: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--bgg-from-opacity));
10234
10926
  --bgg-to: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / 0%);
10235
10927
  }
10236
10928
 
10237
- .d-bgg-from-red-200.d-bgg-from-red-200, .h\:d-bgg-from-red-200.h\:d-bgg-from-red-200:hover, .f\:d-bgg-from-red-200.f\:d-bgg-from-red-200:focus, .f\:d-bgg-from-red-200.f\:d-bgg-from-red-200:focus-within, .fv\:d-bgg-from-red-200.fv\:d-bgg-from-red-200:focus-visible {
10929
+ .d-bgg-from---red-200.d-bgg-from---red-200, .h\:d-bgg-from---red-200.h\:d-bgg-from---red-200:hover, .f\:d-bgg-from---red-200.f\:d-bgg-from---red-200:focus, .f\:d-bgg-from---red-200.f\:d-bgg-from---red-200:focus-within, .fv\:d-bgg-from---red-200.fv\:d-bgg-from---red-200:focus-visible {
10238
10930
  --bgg-from-opacity: 100%;
10239
10931
  --bgg-from: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--bgg-from-opacity));
10240
10932
  --bgg-to: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / 0%);
10241
10933
  }
10242
10934
 
10243
- .d-bgg-from-red-300.d-bgg-from-red-300, .h\:d-bgg-from-red-300.h\:d-bgg-from-red-300:hover, .f\:d-bgg-from-red-300.f\:d-bgg-from-red-300:focus, .f\:d-bgg-from-red-300.f\:d-bgg-from-red-300:focus-within, .fv\:d-bgg-from-red-300.fv\:d-bgg-from-red-300:focus-visible {
10935
+ .d-bgg-from---red-300.d-bgg-from---red-300, .h\:d-bgg-from---red-300.h\:d-bgg-from---red-300:hover, .f\:d-bgg-from---red-300.f\:d-bgg-from---red-300:focus, .f\:d-bgg-from---red-300.f\:d-bgg-from---red-300:focus-within, .fv\:d-bgg-from---red-300.fv\:d-bgg-from---red-300:focus-visible {
10244
10936
  --bgg-from-opacity: 100%;
10245
10937
  --bgg-from: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--bgg-from-opacity));
10246
10938
  --bgg-to: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / 0%);
10247
10939
  }
10248
10940
 
10249
- .d-bgg-from-red-400.d-bgg-from-red-400, .h\:d-bgg-from-red-400.h\:d-bgg-from-red-400:hover, .f\:d-bgg-from-red-400.f\:d-bgg-from-red-400:focus, .f\:d-bgg-from-red-400.f\:d-bgg-from-red-400:focus-within, .fv\:d-bgg-from-red-400.fv\:d-bgg-from-red-400:focus-visible {
10941
+ .d-bgg-from---red-400.d-bgg-from---red-400, .h\:d-bgg-from---red-400.h\:d-bgg-from---red-400:hover, .f\:d-bgg-from---red-400.f\:d-bgg-from---red-400:focus, .f\:d-bgg-from---red-400.f\:d-bgg-from---red-400:focus-within, .fv\:d-bgg-from---red-400.fv\:d-bgg-from---red-400:focus-visible {
10250
10942
  --bgg-from-opacity: 100%;
10251
10943
  --bgg-from: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--bgg-from-opacity));
10252
10944
  --bgg-to: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / 0%);
10253
10945
  }
10254
10946
 
10255
- .d-bgg-from-red-500.d-bgg-from-red-500, .h\:d-bgg-from-red-500.h\:d-bgg-from-red-500:hover, .f\:d-bgg-from-red-500.f\:d-bgg-from-red-500:focus, .f\:d-bgg-from-red-500.f\:d-bgg-from-red-500:focus-within, .fv\:d-bgg-from-red-500.fv\:d-bgg-from-red-500:focus-visible {
10947
+ .d-bgg-from---red-500.d-bgg-from---red-500, .h\:d-bgg-from---red-500.h\:d-bgg-from---red-500:hover, .f\:d-bgg-from---red-500.f\:d-bgg-from---red-500:focus, .f\:d-bgg-from---red-500.f\:d-bgg-from---red-500:focus-within, .fv\:d-bgg-from---red-500.fv\:d-bgg-from---red-500:focus-visible {
10256
10948
  --bgg-from-opacity: 100%;
10257
10949
  --bgg-from: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--bgg-from-opacity));
10258
10950
  --bgg-to: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / 0%);
10259
10951
  }
10260
10952
 
10261
- .d-bgg-from-tan-100.d-bgg-from-tan-100, .h\:d-bgg-from-tan-100.h\:d-bgg-from-tan-100:hover, .f\:d-bgg-from-tan-100.f\:d-bgg-from-tan-100:focus, .f\:d-bgg-from-tan-100.f\:d-bgg-from-tan-100:focus-within, .fv\:d-bgg-from-tan-100.fv\:d-bgg-from-tan-100:focus-visible {
10953
+ .d-bgg-from---tan-100.d-bgg-from---tan-100, .h\:d-bgg-from---tan-100.h\:d-bgg-from---tan-100:hover, .f\:d-bgg-from---tan-100.f\:d-bgg-from---tan-100:focus, .f\:d-bgg-from---tan-100.f\:d-bgg-from---tan-100:focus-within, .fv\:d-bgg-from---tan-100.fv\:d-bgg-from---tan-100:focus-visible {
10262
10954
  --bgg-from-opacity: 100%;
10263
10955
  --bgg-from: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--bgg-from-opacity));
10264
10956
  --bgg-to: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / 0%);
10265
10957
  }
10266
10958
 
10267
- .d-bgg-from-tan-200.d-bgg-from-tan-200, .h\:d-bgg-from-tan-200.h\:d-bgg-from-tan-200:hover, .f\:d-bgg-from-tan-200.f\:d-bgg-from-tan-200:focus, .f\:d-bgg-from-tan-200.f\:d-bgg-from-tan-200:focus-within, .fv\:d-bgg-from-tan-200.fv\:d-bgg-from-tan-200:focus-visible {
10959
+ .d-bgg-from---tan-200.d-bgg-from---tan-200, .h\:d-bgg-from---tan-200.h\:d-bgg-from---tan-200:hover, .f\:d-bgg-from---tan-200.f\:d-bgg-from---tan-200:focus, .f\:d-bgg-from---tan-200.f\:d-bgg-from---tan-200:focus-within, .fv\:d-bgg-from---tan-200.fv\:d-bgg-from---tan-200:focus-visible {
10268
10960
  --bgg-from-opacity: 100%;
10269
10961
  --bgg-from: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--bgg-from-opacity));
10270
10962
  --bgg-to: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / 0%);
10271
10963
  }
10272
10964
 
10273
- .d-bgg-from-tan-300.d-bgg-from-tan-300, .h\:d-bgg-from-tan-300.h\:d-bgg-from-tan-300:hover, .f\:d-bgg-from-tan-300.f\:d-bgg-from-tan-300:focus, .f\:d-bgg-from-tan-300.f\:d-bgg-from-tan-300:focus-within, .fv\:d-bgg-from-tan-300.fv\:d-bgg-from-tan-300:focus-visible {
10965
+ .d-bgg-from---tan-300.d-bgg-from---tan-300, .h\:d-bgg-from---tan-300.h\:d-bgg-from---tan-300:hover, .f\:d-bgg-from---tan-300.f\:d-bgg-from---tan-300:focus, .f\:d-bgg-from---tan-300.f\:d-bgg-from---tan-300:focus-within, .fv\:d-bgg-from---tan-300.fv\:d-bgg-from---tan-300:focus-visible {
10274
10966
  --bgg-from-opacity: 100%;
10275
10967
  --bgg-from: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--bgg-from-opacity));
10276
10968
  --bgg-to: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / 0%);
10277
10969
  }
10278
10970
 
10279
- .d-bgg-from-tan-400.d-bgg-from-tan-400, .h\:d-bgg-from-tan-400.h\:d-bgg-from-tan-400:hover, .f\:d-bgg-from-tan-400.f\:d-bgg-from-tan-400:focus, .f\:d-bgg-from-tan-400.f\:d-bgg-from-tan-400:focus-within, .fv\:d-bgg-from-tan-400.fv\:d-bgg-from-tan-400:focus-visible {
10971
+ .d-bgg-from---tan-400.d-bgg-from---tan-400, .h\:d-bgg-from---tan-400.h\:d-bgg-from---tan-400:hover, .f\:d-bgg-from---tan-400.f\:d-bgg-from---tan-400:focus, .f\:d-bgg-from---tan-400.f\:d-bgg-from---tan-400:focus-within, .fv\:d-bgg-from---tan-400.fv\:d-bgg-from---tan-400:focus-visible {
10280
10972
  --bgg-from-opacity: 100%;
10281
10973
  --bgg-from: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--bgg-from-opacity));
10282
10974
  --bgg-to: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / 0%);
10283
10975
  }
10284
10976
 
10285
- .d-bgg-from-tan-500.d-bgg-from-tan-500, .h\:d-bgg-from-tan-500.h\:d-bgg-from-tan-500:hover, .f\:d-bgg-from-tan-500.f\:d-bgg-from-tan-500:focus, .f\:d-bgg-from-tan-500.f\:d-bgg-from-tan-500:focus-within, .fv\:d-bgg-from-tan-500.fv\:d-bgg-from-tan-500:focus-visible {
10977
+ .d-bgg-from---tan-500.d-bgg-from---tan-500, .h\:d-bgg-from---tan-500.h\:d-bgg-from---tan-500:hover, .f\:d-bgg-from---tan-500.f\:d-bgg-from---tan-500:focus, .f\:d-bgg-from---tan-500.f\:d-bgg-from---tan-500:focus-within, .fv\:d-bgg-from---tan-500.fv\:d-bgg-from---tan-500:focus-visible {
10286
10978
  --bgg-from-opacity: 100%;
10287
10979
  --bgg-from: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--bgg-from-opacity));
10288
10980
  --bgg-to: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / 0%);
10289
10981
  }
10290
10982
 
10291
- .d-bgg-to-neutral-white.d-bgg-to-neutral-white, .h\:d-bgg-to-neutral-white.h\:d-bgg-to-neutral-white:hover, .f\:d-bgg-to-neutral-white.f\:d-bgg-to-neutral-white:focus, .f\:d-bgg-to-neutral-white.f\:d-bgg-to-neutral-white:focus-within, .fv\:d-bgg-to-neutral-white.fv\:d-bgg-to-neutral-white:focus-visible {
10983
+ .d-bgg-from---color-base.d-bgg-from---color-base, .h\:d-bgg-from---color-base.h\:d-bgg-from---color-base:hover, .f\:d-bgg-from---color-base.f\:d-bgg-from---color-base:focus, .f\:d-bgg-from---color-base.f\:d-bgg-from---color-base:focus-within, .fv\:d-bgg-from---color-base.fv\:d-bgg-from---color-base:focus-visible {
10984
+ --bgg-from-opacity: 100%;
10985
+ --bgg-from: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--bgg-from-opacity));
10986
+ --bgg-to: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / 0%);
10987
+ }
10988
+
10989
+ .d-bgg-from---topbar-color-foreground.d-bgg-from---topbar-color-foreground, .h\:d-bgg-from---topbar-color-foreground.h\:d-bgg-from---topbar-color-foreground:hover, .f\:d-bgg-from---topbar-color-foreground.f\:d-bgg-from---topbar-color-foreground:focus, .f\:d-bgg-from---topbar-color-foreground.f\:d-bgg-from---topbar-color-foreground:focus-within, .fv\:d-bgg-from---topbar-color-foreground.fv\:d-bgg-from---topbar-color-foreground:focus-visible {
10990
+ --bgg-from-opacity: 100%;
10991
+ --bgg-from: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--bgg-from-opacity));
10992
+ --bgg-to: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / 0%);
10993
+ }
10994
+
10995
+ .d-bgg-from---topbar-color-background.d-bgg-from---topbar-color-background, .h\:d-bgg-from---topbar-color-background.h\:d-bgg-from---topbar-color-background:hover, .f\:d-bgg-from---topbar-color-background.f\:d-bgg-from---topbar-color-background:focus, .f\:d-bgg-from---topbar-color-background.f\:d-bgg-from---topbar-color-background:focus-within, .fv\:d-bgg-from---topbar-color-background.fv\:d-bgg-from---topbar-color-background:focus-visible {
10996
+ --bgg-from-opacity: 100%;
10997
+ --bgg-from: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--bgg-from-opacity));
10998
+ --bgg-to: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / 0%);
10999
+ }
11000
+
11001
+ .d-bgg-from---topbar-field-color-foreground.d-bgg-from---topbar-field-color-foreground, .h\:d-bgg-from---topbar-field-color-foreground.h\:d-bgg-from---topbar-field-color-foreground:hover, .f\:d-bgg-from---topbar-field-color-foreground.f\:d-bgg-from---topbar-field-color-foreground:focus, .f\:d-bgg-from---topbar-field-color-foreground.f\:d-bgg-from---topbar-field-color-foreground:focus-within, .fv\:d-bgg-from---topbar-field-color-foreground.fv\:d-bgg-from---topbar-field-color-foreground:focus-visible {
11002
+ --bgg-from-opacity: 100%;
11003
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--bgg-from-opacity));
11004
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / 0%);
11005
+ }
11006
+
11007
+ .d-bgg-from---topbar-field-color-foreground-hover.d-bgg-from---topbar-field-color-foreground-hover, .h\:d-bgg-from---topbar-field-color-foreground-hover.h\:d-bgg-from---topbar-field-color-foreground-hover:hover, .f\:d-bgg-from---topbar-field-color-foreground-hover.f\:d-bgg-from---topbar-field-color-foreground-hover:focus, .f\:d-bgg-from---topbar-field-color-foreground-hover.f\:d-bgg-from---topbar-field-color-foreground-hover:focus-within, .fv\:d-bgg-from---topbar-field-color-foreground-hover.fv\:d-bgg-from---topbar-field-color-foreground-hover:focus-visible {
11008
+ --bgg-from-opacity: 100%;
11009
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--bgg-from-opacity));
11010
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / 0%);
11011
+ }
11012
+
11013
+ .d-bgg-from---topbar-field-color-background.d-bgg-from---topbar-field-color-background, .h\:d-bgg-from---topbar-field-color-background.h\:d-bgg-from---topbar-field-color-background:hover, .f\:d-bgg-from---topbar-field-color-background.f\:d-bgg-from---topbar-field-color-background:focus, .f\:d-bgg-from---topbar-field-color-background.f\:d-bgg-from---topbar-field-color-background:focus-within, .fv\:d-bgg-from---topbar-field-color-background.fv\:d-bgg-from---topbar-field-color-background:focus-visible {
11014
+ --bgg-from-opacity: 100%;
11015
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--bgg-from-opacity));
11016
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / 0%);
11017
+ }
11018
+
11019
+ .d-bgg-from---topbar-field-color-background-hover.d-bgg-from---topbar-field-color-background-hover, .h\:d-bgg-from---topbar-field-color-background-hover.h\:d-bgg-from---topbar-field-color-background-hover:hover, .f\:d-bgg-from---topbar-field-color-background-hover.f\:d-bgg-from---topbar-field-color-background-hover:focus, .f\:d-bgg-from---topbar-field-color-background-hover.f\:d-bgg-from---topbar-field-color-background-hover:focus-within, .fv\:d-bgg-from---topbar-field-color-background-hover.fv\:d-bgg-from---topbar-field-color-background-hover:focus-visible {
11020
+ --bgg-from-opacity: 100%;
11021
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--bgg-from-opacity));
11022
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / 0%);
11023
+ }
11024
+
11025
+ .d-bgg-from---topbar-field-color-border.d-bgg-from---topbar-field-color-border, .h\:d-bgg-from---topbar-field-color-border.h\:d-bgg-from---topbar-field-color-border:hover, .f\:d-bgg-from---topbar-field-color-border.f\:d-bgg-from---topbar-field-color-border:focus, .f\:d-bgg-from---topbar-field-color-border.f\:d-bgg-from---topbar-field-color-border:focus-within, .fv\:d-bgg-from---topbar-field-color-border.fv\:d-bgg-from---topbar-field-color-border:focus-visible {
11026
+ --bgg-from-opacity: 100%;
11027
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--bgg-from-opacity));
11028
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / 0%);
11029
+ }
11030
+
11031
+ .d-bgg-from---topbar-field-color-border-hover.d-bgg-from---topbar-field-color-border-hover, .h\:d-bgg-from---topbar-field-color-border-hover.h\:d-bgg-from---topbar-field-color-border-hover:hover, .f\:d-bgg-from---topbar-field-color-border-hover.f\:d-bgg-from---topbar-field-color-border-hover:focus, .f\:d-bgg-from---topbar-field-color-border-hover.f\:d-bgg-from---topbar-field-color-border-hover:focus-within, .fv\:d-bgg-from---topbar-field-color-border-hover.fv\:d-bgg-from---topbar-field-color-border-hover:focus-visible {
11032
+ --bgg-from-opacity: 100%;
11033
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--bgg-from-opacity));
11034
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / 0%);
11035
+ }
11036
+
11037
+ .d-bgg-from---topbar-field-color-border-active.d-bgg-from---topbar-field-color-border-active, .h\:d-bgg-from---topbar-field-color-border-active.h\:d-bgg-from---topbar-field-color-border-active:hover, .f\:d-bgg-from---topbar-field-color-border-active.f\:d-bgg-from---topbar-field-color-border-active:focus, .f\:d-bgg-from---topbar-field-color-border-active.f\:d-bgg-from---topbar-field-color-border-active:focus-within, .fv\:d-bgg-from---topbar-field-color-border-active.fv\:d-bgg-from---topbar-field-color-border-active:focus-visible {
11038
+ --bgg-from-opacity: 100%;
11039
+ --bgg-from: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--bgg-from-opacity));
11040
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / 0%);
11041
+ }
11042
+
11043
+ .d-bgg-from---topbar-button-color-foreground.d-bgg-from---topbar-button-color-foreground, .h\:d-bgg-from---topbar-button-color-foreground.h\:d-bgg-from---topbar-button-color-foreground:hover, .f\:d-bgg-from---topbar-button-color-foreground.f\:d-bgg-from---topbar-button-color-foreground:focus, .f\:d-bgg-from---topbar-button-color-foreground.f\:d-bgg-from---topbar-button-color-foreground:focus-within, .fv\:d-bgg-from---topbar-button-color-foreground.fv\:d-bgg-from---topbar-button-color-foreground:focus-visible {
11044
+ --bgg-from-opacity: 100%;
11045
+ --bgg-from: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--bgg-from-opacity));
11046
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / 0%);
11047
+ }
11048
+
11049
+ .d-bgg-from---topbar-button-color-foreground-hover.d-bgg-from---topbar-button-color-foreground-hover, .h\:d-bgg-from---topbar-button-color-foreground-hover.h\:d-bgg-from---topbar-button-color-foreground-hover:hover, .f\:d-bgg-from---topbar-button-color-foreground-hover.f\:d-bgg-from---topbar-button-color-foreground-hover:focus, .f\:d-bgg-from---topbar-button-color-foreground-hover.f\:d-bgg-from---topbar-button-color-foreground-hover:focus-within, .fv\:d-bgg-from---topbar-button-color-foreground-hover.fv\:d-bgg-from---topbar-button-color-foreground-hover:focus-visible {
11050
+ --bgg-from-opacity: 100%;
11051
+ --bgg-from: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--bgg-from-opacity));
11052
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / 0%);
11053
+ }
11054
+
11055
+ .d-bgg-from---topbar-button-color-background.d-bgg-from---topbar-button-color-background, .h\:d-bgg-from---topbar-button-color-background.h\:d-bgg-from---topbar-button-color-background:hover, .f\:d-bgg-from---topbar-button-color-background.f\:d-bgg-from---topbar-button-color-background:focus, .f\:d-bgg-from---topbar-button-color-background.f\:d-bgg-from---topbar-button-color-background:focus-within, .fv\:d-bgg-from---topbar-button-color-background.fv\:d-bgg-from---topbar-button-color-background:focus-visible {
11056
+ --bgg-from-opacity: 100%;
11057
+ --bgg-from: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--bgg-from-opacity));
11058
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / 0%);
11059
+ }
11060
+
11061
+ .d-bgg-from---topbar-button-color-background-hover.d-bgg-from---topbar-button-color-background-hover, .h\:d-bgg-from---topbar-button-color-background-hover.h\:d-bgg-from---topbar-button-color-background-hover:hover, .f\:d-bgg-from---topbar-button-color-background-hover.f\:d-bgg-from---topbar-button-color-background-hover:focus, .f\:d-bgg-from---topbar-button-color-background-hover.f\:d-bgg-from---topbar-button-color-background-hover:focus-within, .fv\:d-bgg-from---topbar-button-color-background-hover.fv\:d-bgg-from---topbar-button-color-background-hover:focus-visible {
11062
+ --bgg-from-opacity: 100%;
11063
+ --bgg-from: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--bgg-from-opacity));
11064
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / 0%);
11065
+ }
11066
+
11067
+ .d-bgg-from---topbar-button-color-background-active.d-bgg-from---topbar-button-color-background-active, .h\:d-bgg-from---topbar-button-color-background-active.h\:d-bgg-from---topbar-button-color-background-active:hover, .f\:d-bgg-from---topbar-button-color-background-active.f\:d-bgg-from---topbar-button-color-background-active:focus, .f\:d-bgg-from---topbar-button-color-background-active.f\:d-bgg-from---topbar-button-color-background-active:focus-within, .fv\:d-bgg-from---topbar-button-color-background-active.fv\:d-bgg-from---topbar-button-color-background-active:focus-visible {
11068
+ --bgg-from-opacity: 100%;
11069
+ --bgg-from: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--bgg-from-opacity));
11070
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / 0%);
11071
+ }
11072
+
11073
+ .d-bgg-from---topbar-profile-color-foreground.d-bgg-from---topbar-profile-color-foreground, .h\:d-bgg-from---topbar-profile-color-foreground.h\:d-bgg-from---topbar-profile-color-foreground:hover, .f\:d-bgg-from---topbar-profile-color-foreground.f\:d-bgg-from---topbar-profile-color-foreground:focus, .f\:d-bgg-from---topbar-profile-color-foreground.f\:d-bgg-from---topbar-profile-color-foreground:focus-within, .fv\:d-bgg-from---topbar-profile-color-foreground.fv\:d-bgg-from---topbar-profile-color-foreground:focus-visible {
11074
+ --bgg-from-opacity: 100%;
11075
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--bgg-from-opacity));
11076
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / 0%);
11077
+ }
11078
+
11079
+ .d-bgg-from---topbar-profile-color-foreground-inverted.d-bgg-from---topbar-profile-color-foreground-inverted, .h\:d-bgg-from---topbar-profile-color-foreground-inverted.h\:d-bgg-from---topbar-profile-color-foreground-inverted:hover, .f\:d-bgg-from---topbar-profile-color-foreground-inverted.f\:d-bgg-from---topbar-profile-color-foreground-inverted:focus, .f\:d-bgg-from---topbar-profile-color-foreground-inverted.f\:d-bgg-from---topbar-profile-color-foreground-inverted:focus-within, .fv\:d-bgg-from---topbar-profile-color-foreground-inverted.fv\:d-bgg-from---topbar-profile-color-foreground-inverted:focus-visible {
11080
+ --bgg-from-opacity: 100%;
11081
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--bgg-from-opacity));
11082
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / 0%);
11083
+ }
11084
+
11085
+ .d-bgg-from---topbar-profile-color-background.d-bgg-from---topbar-profile-color-background, .h\:d-bgg-from---topbar-profile-color-background.h\:d-bgg-from---topbar-profile-color-background:hover, .f\:d-bgg-from---topbar-profile-color-background.f\:d-bgg-from---topbar-profile-color-background:focus, .f\:d-bgg-from---topbar-profile-color-background.f\:d-bgg-from---topbar-profile-color-background:focus-within, .fv\:d-bgg-from---topbar-profile-color-background.fv\:d-bgg-from---topbar-profile-color-background:focus-visible {
11086
+ --bgg-from-opacity: 100%;
11087
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--bgg-from-opacity));
11088
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / 0%);
11089
+ }
11090
+
11091
+ .d-bgg-from---topbar-profile-color-background-inverted.d-bgg-from---topbar-profile-color-background-inverted, .h\:d-bgg-from---topbar-profile-color-background-inverted.h\:d-bgg-from---topbar-profile-color-background-inverted:hover, .f\:d-bgg-from---topbar-profile-color-background-inverted.f\:d-bgg-from---topbar-profile-color-background-inverted:focus, .f\:d-bgg-from---topbar-profile-color-background-inverted.f\:d-bgg-from---topbar-profile-color-background-inverted:focus-within, .fv\:d-bgg-from---topbar-profile-color-background-inverted.fv\:d-bgg-from---topbar-profile-color-background-inverted:focus-visible {
11092
+ --bgg-from-opacity: 100%;
11093
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--bgg-from-opacity));
11094
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / 0%);
11095
+ }
11096
+
11097
+ .d-bgg-from---topbar-profile-color-background-hover.d-bgg-from---topbar-profile-color-background-hover, .h\:d-bgg-from---topbar-profile-color-background-hover.h\:d-bgg-from---topbar-profile-color-background-hover:hover, .f\:d-bgg-from---topbar-profile-color-background-hover.f\:d-bgg-from---topbar-profile-color-background-hover:focus, .f\:d-bgg-from---topbar-profile-color-background-hover.f\:d-bgg-from---topbar-profile-color-background-hover:focus-within, .fv\:d-bgg-from---topbar-profile-color-background-hover.fv\:d-bgg-from---topbar-profile-color-background-hover:focus-visible {
11098
+ --bgg-from-opacity: 100%;
11099
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--bgg-from-opacity));
11100
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / 0%);
11101
+ }
11102
+
11103
+ .d-bgg-from---topbar-profile-color-background-active.d-bgg-from---topbar-profile-color-background-active, .h\:d-bgg-from---topbar-profile-color-background-active.h\:d-bgg-from---topbar-profile-color-background-active:hover, .f\:d-bgg-from---topbar-profile-color-background-active.f\:d-bgg-from---topbar-profile-color-background-active:focus, .f\:d-bgg-from---topbar-profile-color-background-active.f\:d-bgg-from---topbar-profile-color-background-active:focus-within, .fv\:d-bgg-from---topbar-profile-color-background-active.fv\:d-bgg-from---topbar-profile-color-background-active:focus-visible {
11104
+ --bgg-from-opacity: 100%;
11105
+ --bgg-from: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--bgg-from-opacity));
11106
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / 0%);
11107
+ }
11108
+
11109
+ .d-bgg-from---sidebar-color-foreground.d-bgg-from---sidebar-color-foreground, .h\:d-bgg-from---sidebar-color-foreground.h\:d-bgg-from---sidebar-color-foreground:hover, .f\:d-bgg-from---sidebar-color-foreground.f\:d-bgg-from---sidebar-color-foreground:focus, .f\:d-bgg-from---sidebar-color-foreground.f\:d-bgg-from---sidebar-color-foreground:focus-within, .fv\:d-bgg-from---sidebar-color-foreground.fv\:d-bgg-from---sidebar-color-foreground:focus-visible {
11110
+ --bgg-from-opacity: 100%;
11111
+ --bgg-from: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--bgg-from-opacity));
11112
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / 0%);
11113
+ }
11114
+
11115
+ .d-bgg-from---sidebar-color-foreground-unread.d-bgg-from---sidebar-color-foreground-unread, .h\:d-bgg-from---sidebar-color-foreground-unread.h\:d-bgg-from---sidebar-color-foreground-unread:hover, .f\:d-bgg-from---sidebar-color-foreground-unread.f\:d-bgg-from---sidebar-color-foreground-unread:focus, .f\:d-bgg-from---sidebar-color-foreground-unread.f\:d-bgg-from---sidebar-color-foreground-unread:focus-within, .fv\:d-bgg-from---sidebar-color-foreground-unread.fv\:d-bgg-from---sidebar-color-foreground-unread:focus-visible {
11116
+ --bgg-from-opacity: 100%;
11117
+ --bgg-from: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--bgg-from-opacity));
11118
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / 0%);
11119
+ }
11120
+
11121
+ .d-bgg-from---sidebar-color-background.d-bgg-from---sidebar-color-background, .h\:d-bgg-from---sidebar-color-background.h\:d-bgg-from---sidebar-color-background:hover, .f\:d-bgg-from---sidebar-color-background.f\:d-bgg-from---sidebar-color-background:focus, .f\:d-bgg-from---sidebar-color-background.f\:d-bgg-from---sidebar-color-background:focus-within, .fv\:d-bgg-from---sidebar-color-background.fv\:d-bgg-from---sidebar-color-background:focus-visible {
11122
+ --bgg-from-opacity: 100%;
11123
+ --bgg-from: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--bgg-from-opacity));
11124
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / 0%);
11125
+ }
11126
+
11127
+ .d-bgg-from---sidebar-icon-color-foreground.d-bgg-from---sidebar-icon-color-foreground, .h\:d-bgg-from---sidebar-icon-color-foreground.h\:d-bgg-from---sidebar-icon-color-foreground:hover, .f\:d-bgg-from---sidebar-icon-color-foreground.f\:d-bgg-from---sidebar-icon-color-foreground:focus, .f\:d-bgg-from---sidebar-icon-color-foreground.f\:d-bgg-from---sidebar-icon-color-foreground:focus-within, .fv\:d-bgg-from---sidebar-icon-color-foreground.fv\:d-bgg-from---sidebar-icon-color-foreground:focus-visible {
11128
+ --bgg-from-opacity: 100%;
11129
+ --bgg-from: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--bgg-from-opacity));
11130
+ --bgg-to: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / 0%);
11131
+ }
11132
+
11133
+ .d-bgg-from---sidebar-status-color-foreground.d-bgg-from---sidebar-status-color-foreground, .h\:d-bgg-from---sidebar-status-color-foreground.h\:d-bgg-from---sidebar-status-color-foreground:hover, .f\:d-bgg-from---sidebar-status-color-foreground.f\:d-bgg-from---sidebar-status-color-foreground:focus, .f\:d-bgg-from---sidebar-status-color-foreground.f\:d-bgg-from---sidebar-status-color-foreground:focus-within, .fv\:d-bgg-from---sidebar-status-color-foreground.fv\:d-bgg-from---sidebar-status-color-foreground:focus-visible {
11134
+ --bgg-from-opacity: 100%;
11135
+ --bgg-from: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--bgg-from-opacity));
11136
+ --bgg-to: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / 0%);
11137
+ }
11138
+
11139
+ .d-bgg-from---sidebar-row-color-background.d-bgg-from---sidebar-row-color-background, .h\:d-bgg-from---sidebar-row-color-background.h\:d-bgg-from---sidebar-row-color-background:hover, .f\:d-bgg-from---sidebar-row-color-background.f\:d-bgg-from---sidebar-row-color-background:focus, .f\:d-bgg-from---sidebar-row-color-background.f\:d-bgg-from---sidebar-row-color-background:focus-within, .fv\:d-bgg-from---sidebar-row-color-background.fv\:d-bgg-from---sidebar-row-color-background:focus-visible {
11140
+ --bgg-from-opacity: 100%;
11141
+ --bgg-from: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--bgg-from-opacity));
11142
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / 0%);
11143
+ }
11144
+
11145
+ .d-bgg-from---sidebar-row-color-background-hover.d-bgg-from---sidebar-row-color-background-hover, .h\:d-bgg-from---sidebar-row-color-background-hover.h\:d-bgg-from---sidebar-row-color-background-hover:hover, .f\:d-bgg-from---sidebar-row-color-background-hover.f\:d-bgg-from---sidebar-row-color-background-hover:focus, .f\:d-bgg-from---sidebar-row-color-background-hover.f\:d-bgg-from---sidebar-row-color-background-hover:focus-within, .fv\:d-bgg-from---sidebar-row-color-background-hover.fv\:d-bgg-from---sidebar-row-color-background-hover:focus-visible {
11146
+ --bgg-from-opacity: 100%;
11147
+ --bgg-from: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--bgg-from-opacity));
11148
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / 0%);
11149
+ }
11150
+
11151
+ .d-bgg-from---sidebar-row-color-background-active.d-bgg-from---sidebar-row-color-background-active, .h\:d-bgg-from---sidebar-row-color-background-active.h\:d-bgg-from---sidebar-row-color-background-active:hover, .f\:d-bgg-from---sidebar-row-color-background-active.f\:d-bgg-from---sidebar-row-color-background-active:focus, .f\:d-bgg-from---sidebar-row-color-background-active.f\:d-bgg-from---sidebar-row-color-background-active:focus-within, .fv\:d-bgg-from---sidebar-row-color-background-active.fv\:d-bgg-from---sidebar-row-color-background-active:focus-visible {
11152
+ --bgg-from-opacity: 100%;
11153
+ --bgg-from: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--bgg-from-opacity));
11154
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / 0%);
11155
+ }
11156
+
11157
+ .d-bgg-from---sidebar-selected-row-color-foreground.d-bgg-from---sidebar-selected-row-color-foreground, .h\:d-bgg-from---sidebar-selected-row-color-foreground.h\:d-bgg-from---sidebar-selected-row-color-foreground:hover, .f\:d-bgg-from---sidebar-selected-row-color-foreground.f\:d-bgg-from---sidebar-selected-row-color-foreground:focus, .f\:d-bgg-from---sidebar-selected-row-color-foreground.f\:d-bgg-from---sidebar-selected-row-color-foreground:focus-within, .fv\:d-bgg-from---sidebar-selected-row-color-foreground.fv\:d-bgg-from---sidebar-selected-row-color-foreground:focus-visible {
11158
+ --bgg-from-opacity: 100%;
11159
+ --bgg-from: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--bgg-from-opacity));
11160
+ --bgg-to: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / 0%);
11161
+ }
11162
+
11163
+ .d-bgg-from---sidebar-selected-row-color-background.d-bgg-from---sidebar-selected-row-color-background, .h\:d-bgg-from---sidebar-selected-row-color-background.h\:d-bgg-from---sidebar-selected-row-color-background:hover, .f\:d-bgg-from---sidebar-selected-row-color-background.f\:d-bgg-from---sidebar-selected-row-color-background:focus, .f\:d-bgg-from---sidebar-selected-row-color-background.f\:d-bgg-from---sidebar-selected-row-color-background:focus-within, .fv\:d-bgg-from---sidebar-selected-row-color-background.fv\:d-bgg-from---sidebar-selected-row-color-background:focus-visible {
11164
+ --bgg-from-opacity: 100%;
11165
+ --bgg-from: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--bgg-from-opacity));
11166
+ --bgg-to: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / 0%);
11167
+ }
11168
+
11169
+ .d-bgg-from---sidebar-section-color-foreground.d-bgg-from---sidebar-section-color-foreground, .h\:d-bgg-from---sidebar-section-color-foreground.h\:d-bgg-from---sidebar-section-color-foreground:hover, .f\:d-bgg-from---sidebar-section-color-foreground.f\:d-bgg-from---sidebar-section-color-foreground:focus, .f\:d-bgg-from---sidebar-section-color-foreground.f\:d-bgg-from---sidebar-section-color-foreground:focus-within, .fv\:d-bgg-from---sidebar-section-color-foreground.fv\:d-bgg-from---sidebar-section-color-foreground:focus-visible {
11170
+ --bgg-from-opacity: 100%;
11171
+ --bgg-from: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--bgg-from-opacity));
11172
+ --bgg-to: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / 0%);
11173
+ }
11174
+
11175
+ .d-bgg-from---presence-color-background-available.d-bgg-from---presence-color-background-available, .h\:d-bgg-from---presence-color-background-available.h\:d-bgg-from---presence-color-background-available:hover, .f\:d-bgg-from---presence-color-background-available.f\:d-bgg-from---presence-color-background-available:focus, .f\:d-bgg-from---presence-color-background-available.f\:d-bgg-from---presence-color-background-available:focus-within, .fv\:d-bgg-from---presence-color-background-available.fv\:d-bgg-from---presence-color-background-available:focus-visible {
11176
+ --bgg-from-opacity: 100%;
11177
+ --bgg-from: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--bgg-from-opacity));
11178
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / 0%);
11179
+ }
11180
+
11181
+ .d-bgg-from---presence-color-background-busy-unavailable.d-bgg-from---presence-color-background-busy-unavailable, .h\:d-bgg-from---presence-color-background-busy-unavailable.h\:d-bgg-from---presence-color-background-busy-unavailable:hover, .f\:d-bgg-from---presence-color-background-busy-unavailable.f\:d-bgg-from---presence-color-background-busy-unavailable:focus, .f\:d-bgg-from---presence-color-background-busy-unavailable.f\:d-bgg-from---presence-color-background-busy-unavailable:focus-within, .fv\:d-bgg-from---presence-color-background-busy-unavailable.fv\:d-bgg-from---presence-color-background-busy-unavailable:focus-visible {
11182
+ --bgg-from-opacity: 100%;
11183
+ --bgg-from: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--bgg-from-opacity));
11184
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / 0%);
11185
+ }
11186
+
11187
+ .d-bgg-from---presence-color-background-busy.d-bgg-from---presence-color-background-busy, .h\:d-bgg-from---presence-color-background-busy.h\:d-bgg-from---presence-color-background-busy:hover, .f\:d-bgg-from---presence-color-background-busy.f\:d-bgg-from---presence-color-background-busy:focus, .f\:d-bgg-from---presence-color-background-busy.f\:d-bgg-from---presence-color-background-busy:focus-within, .fv\:d-bgg-from---presence-color-background-busy.fv\:d-bgg-from---presence-color-background-busy:focus-visible {
11188
+ --bgg-from-opacity: 100%;
11189
+ --bgg-from: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--bgg-from-opacity));
11190
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / 0%);
11191
+ }
11192
+
11193
+ .d-bgg-from---presence-color-background-offline.d-bgg-from---presence-color-background-offline, .h\:d-bgg-from---presence-color-background-offline.h\:d-bgg-from---presence-color-background-offline:hover, .f\:d-bgg-from---presence-color-background-offline.f\:d-bgg-from---presence-color-background-offline:focus, .f\:d-bgg-from---presence-color-background-offline.f\:d-bgg-from---presence-color-background-offline:focus-within, .fv\:d-bgg-from---presence-color-background-offline.fv\:d-bgg-from---presence-color-background-offline:focus-visible {
11194
+ --bgg-from-opacity: 100%;
11195
+ --bgg-from: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--bgg-from-opacity));
11196
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / 0%);
11197
+ }
11198
+
11199
+ .d-bgg-from---mention-color-foreground.d-bgg-from---mention-color-foreground, .h\:d-bgg-from---mention-color-foreground.h\:d-bgg-from---mention-color-foreground:hover, .f\:d-bgg-from---mention-color-foreground.f\:d-bgg-from---mention-color-foreground:focus, .f\:d-bgg-from---mention-color-foreground.f\:d-bgg-from---mention-color-foreground:focus-within, .fv\:d-bgg-from---mention-color-foreground.fv\:d-bgg-from---mention-color-foreground:focus-visible {
11200
+ --bgg-from-opacity: 100%;
11201
+ --bgg-from: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--bgg-from-opacity));
11202
+ --bgg-to: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / 0%);
11203
+ }
11204
+
11205
+ .d-bgg-from---mention-color-background.d-bgg-from---mention-color-background, .h\:d-bgg-from---mention-color-background.h\:d-bgg-from---mention-color-background:hover, .f\:d-bgg-from---mention-color-background.f\:d-bgg-from---mention-color-background:focus, .f\:d-bgg-from---mention-color-background.f\:d-bgg-from---mention-color-background:focus-within, .fv\:d-bgg-from---mention-color-background.fv\:d-bgg-from---mention-color-background:focus-visible {
11206
+ --bgg-from-opacity: 100%;
11207
+ --bgg-from: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--bgg-from-opacity));
11208
+ --bgg-to: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / 0%);
11209
+ }
11210
+
11211
+ .d-bgg-to---neutral-white.d-bgg-to---neutral-white, .h\:d-bgg-to---neutral-white.h\:d-bgg-to---neutral-white:hover, .f\:d-bgg-to---neutral-white.f\:d-bgg-to---neutral-white:focus, .f\:d-bgg-to---neutral-white.f\:d-bgg-to---neutral-white:focus-within, .fv\:d-bgg-to---neutral-white.fv\:d-bgg-to---neutral-white:focus-visible {
10292
11212
  --bgg-to-opacity: 100%;
10293
11213
  --bgg-to: hsla(var(--dt-color-neutral-white-h) var(--dt-color-neutral-white-s) var(--dt-color-neutral-white-l) / var(--bgg-to-opacity)) !important;
10294
11214
  }
10295
11215
 
10296
- .d-bgg-to-neutral-black.d-bgg-to-neutral-black, .h\:d-bgg-to-neutral-black.h\:d-bgg-to-neutral-black:hover, .f\:d-bgg-to-neutral-black.f\:d-bgg-to-neutral-black:focus, .f\:d-bgg-to-neutral-black.f\:d-bgg-to-neutral-black:focus-within, .fv\:d-bgg-to-neutral-black.fv\:d-bgg-to-neutral-black:focus-visible {
11216
+ .d-bgg-to---neutral-black.d-bgg-to---neutral-black, .h\:d-bgg-to---neutral-black.h\:d-bgg-to---neutral-black:hover, .f\:d-bgg-to---neutral-black.f\:d-bgg-to---neutral-black:focus, .f\:d-bgg-to---neutral-black.f\:d-bgg-to---neutral-black:focus-within, .fv\:d-bgg-to---neutral-black.fv\:d-bgg-to---neutral-black:focus-visible {
10297
11217
  --bgg-to-opacity: 100%;
10298
11218
  --bgg-to: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--bgg-to-opacity)) !important;
10299
11219
  }
10300
11220
 
10301
- .d-bgg-to-black-100.d-bgg-to-black-100, .h\:d-bgg-to-black-100.h\:d-bgg-to-black-100:hover, .f\:d-bgg-to-black-100.f\:d-bgg-to-black-100:focus, .f\:d-bgg-to-black-100.f\:d-bgg-to-black-100:focus-within, .fv\:d-bgg-to-black-100.fv\:d-bgg-to-black-100:focus-visible {
11221
+ .d-bgg-to---black-100.d-bgg-to---black-100, .h\:d-bgg-to---black-100.h\:d-bgg-to---black-100:hover, .f\:d-bgg-to---black-100.f\:d-bgg-to---black-100:focus, .f\:d-bgg-to---black-100.f\:d-bgg-to---black-100:focus-within, .fv\:d-bgg-to---black-100.fv\:d-bgg-to---black-100:focus-visible {
10302
11222
  --bgg-to-opacity: 100%;
10303
11223
  --bgg-to: hsla(var(--dt-color-black-100-h) var(--dt-color-black-100-s) var(--dt-color-black-100-l) / var(--bgg-to-opacity)) !important;
10304
11224
  }
10305
11225
 
10306
- .d-bgg-to-black-200.d-bgg-to-black-200, .h\:d-bgg-to-black-200.h\:d-bgg-to-black-200:hover, .f\:d-bgg-to-black-200.f\:d-bgg-to-black-200:focus, .f\:d-bgg-to-black-200.f\:d-bgg-to-black-200:focus-within, .fv\:d-bgg-to-black-200.fv\:d-bgg-to-black-200:focus-visible {
11226
+ .d-bgg-to---black-200.d-bgg-to---black-200, .h\:d-bgg-to---black-200.h\:d-bgg-to---black-200:hover, .f\:d-bgg-to---black-200.f\:d-bgg-to---black-200:focus, .f\:d-bgg-to---black-200.f\:d-bgg-to---black-200:focus-within, .fv\:d-bgg-to---black-200.fv\:d-bgg-to---black-200:focus-visible {
10307
11227
  --bgg-to-opacity: 100%;
10308
11228
  --bgg-to: hsla(var(--dt-color-black-200-h) var(--dt-color-black-200-s) var(--dt-color-black-200-l) / var(--bgg-to-opacity)) !important;
10309
11229
  }
10310
11230
 
10311
- .d-bgg-to-black-300.d-bgg-to-black-300, .h\:d-bgg-to-black-300.h\:d-bgg-to-black-300:hover, .f\:d-bgg-to-black-300.f\:d-bgg-to-black-300:focus, .f\:d-bgg-to-black-300.f\:d-bgg-to-black-300:focus-within, .fv\:d-bgg-to-black-300.fv\:d-bgg-to-black-300:focus-visible {
11231
+ .d-bgg-to---black-300.d-bgg-to---black-300, .h\:d-bgg-to---black-300.h\:d-bgg-to---black-300:hover, .f\:d-bgg-to---black-300.f\:d-bgg-to---black-300:focus, .f\:d-bgg-to---black-300.f\:d-bgg-to---black-300:focus-within, .fv\:d-bgg-to---black-300.fv\:d-bgg-to---black-300:focus-visible {
10312
11232
  --bgg-to-opacity: 100%;
10313
11233
  --bgg-to: hsla(var(--dt-color-black-300-h) var(--dt-color-black-300-s) var(--dt-color-black-300-l) / var(--bgg-to-opacity)) !important;
10314
11234
  }
10315
11235
 
10316
- .d-bgg-to-black-400.d-bgg-to-black-400, .h\:d-bgg-to-black-400.h\:d-bgg-to-black-400:hover, .f\:d-bgg-to-black-400.f\:d-bgg-to-black-400:focus, .f\:d-bgg-to-black-400.f\:d-bgg-to-black-400:focus-within, .fv\:d-bgg-to-black-400.fv\:d-bgg-to-black-400:focus-visible {
11236
+ .d-bgg-to---black-400.d-bgg-to---black-400, .h\:d-bgg-to---black-400.h\:d-bgg-to---black-400:hover, .f\:d-bgg-to---black-400.f\:d-bgg-to---black-400:focus, .f\:d-bgg-to---black-400.f\:d-bgg-to---black-400:focus-within, .fv\:d-bgg-to---black-400.fv\:d-bgg-to---black-400:focus-visible {
10317
11237
  --bgg-to-opacity: 100%;
10318
11238
  --bgg-to: hsla(var(--dt-color-black-400-h) var(--dt-color-black-400-s) var(--dt-color-black-400-l) / var(--bgg-to-opacity)) !important;
10319
11239
  }
10320
11240
 
10321
- .d-bgg-to-black-500.d-bgg-to-black-500, .h\:d-bgg-to-black-500.h\:d-bgg-to-black-500:hover, .f\:d-bgg-to-black-500.f\:d-bgg-to-black-500:focus, .f\:d-bgg-to-black-500.f\:d-bgg-to-black-500:focus-within, .fv\:d-bgg-to-black-500.fv\:d-bgg-to-black-500:focus-visible {
11241
+ .d-bgg-to---black-500.d-bgg-to---black-500, .h\:d-bgg-to---black-500.h\:d-bgg-to---black-500:hover, .f\:d-bgg-to---black-500.f\:d-bgg-to---black-500:focus, .f\:d-bgg-to---black-500.f\:d-bgg-to---black-500:focus-within, .fv\:d-bgg-to---black-500.fv\:d-bgg-to---black-500:focus-visible {
10322
11242
  --bgg-to-opacity: 100%;
10323
11243
  --bgg-to: hsla(var(--dt-color-black-500-h) var(--dt-color-black-500-s) var(--dt-color-black-500-l) / var(--bgg-to-opacity)) !important;
10324
11244
  }
10325
11245
 
10326
- .d-bgg-to-black-600.d-bgg-to-black-600, .h\:d-bgg-to-black-600.h\:d-bgg-to-black-600:hover, .f\:d-bgg-to-black-600.f\:d-bgg-to-black-600:focus, .f\:d-bgg-to-black-600.f\:d-bgg-to-black-600:focus-within, .fv\:d-bgg-to-black-600.fv\:d-bgg-to-black-600:focus-visible {
11246
+ .d-bgg-to---black-600.d-bgg-to---black-600, .h\:d-bgg-to---black-600.h\:d-bgg-to---black-600:hover, .f\:d-bgg-to---black-600.f\:d-bgg-to---black-600:focus, .f\:d-bgg-to---black-600.f\:d-bgg-to---black-600:focus-within, .fv\:d-bgg-to---black-600.fv\:d-bgg-to---black-600:focus-visible {
10327
11247
  --bgg-to-opacity: 100%;
10328
11248
  --bgg-to: hsla(var(--dt-color-black-600-h) var(--dt-color-black-600-s) var(--dt-color-black-600-l) / var(--bgg-to-opacity)) !important;
10329
11249
  }
10330
11250
 
10331
- .d-bgg-to-black-700.d-bgg-to-black-700, .h\:d-bgg-to-black-700.h\:d-bgg-to-black-700:hover, .f\:d-bgg-to-black-700.f\:d-bgg-to-black-700:focus, .f\:d-bgg-to-black-700.f\:d-bgg-to-black-700:focus-within, .fv\:d-bgg-to-black-700.fv\:d-bgg-to-black-700:focus-visible {
11251
+ .d-bgg-to---black-700.d-bgg-to---black-700, .h\:d-bgg-to---black-700.h\:d-bgg-to---black-700:hover, .f\:d-bgg-to---black-700.f\:d-bgg-to---black-700:focus, .f\:d-bgg-to---black-700.f\:d-bgg-to---black-700:focus-within, .fv\:d-bgg-to---black-700.fv\:d-bgg-to---black-700:focus-visible {
10332
11252
  --bgg-to-opacity: 100%;
10333
11253
  --bgg-to: hsla(var(--dt-color-black-700-h) var(--dt-color-black-700-s) var(--dt-color-black-700-l) / var(--bgg-to-opacity)) !important;
10334
11254
  }
10335
11255
 
10336
- .d-bgg-to-black-800.d-bgg-to-black-800, .h\:d-bgg-to-black-800.h\:d-bgg-to-black-800:hover, .f\:d-bgg-to-black-800.f\:d-bgg-to-black-800:focus, .f\:d-bgg-to-black-800.f\:d-bgg-to-black-800:focus-within, .fv\:d-bgg-to-black-800.fv\:d-bgg-to-black-800:focus-visible {
11256
+ .d-bgg-to---black-800.d-bgg-to---black-800, .h\:d-bgg-to---black-800.h\:d-bgg-to---black-800:hover, .f\:d-bgg-to---black-800.f\:d-bgg-to---black-800:focus, .f\:d-bgg-to---black-800.f\:d-bgg-to---black-800:focus-within, .fv\:d-bgg-to---black-800.fv\:d-bgg-to---black-800:focus-visible {
10337
11257
  --bgg-to-opacity: 100%;
10338
11258
  --bgg-to: hsla(var(--dt-color-black-800-h) var(--dt-color-black-800-s) var(--dt-color-black-800-l) / var(--bgg-to-opacity)) !important;
10339
11259
  }
10340
11260
 
10341
- .d-bgg-to-black-900.d-bgg-to-black-900, .h\:d-bgg-to-black-900.h\:d-bgg-to-black-900:hover, .f\:d-bgg-to-black-900.f\:d-bgg-to-black-900:focus, .f\:d-bgg-to-black-900.f\:d-bgg-to-black-900:focus-within, .fv\:d-bgg-to-black-900.fv\:d-bgg-to-black-900:focus-visible {
11261
+ .d-bgg-to---black-900.d-bgg-to---black-900, .h\:d-bgg-to---black-900.h\:d-bgg-to---black-900:hover, .f\:d-bgg-to---black-900.f\:d-bgg-to---black-900:focus, .f\:d-bgg-to---black-900.f\:d-bgg-to---black-900:focus-within, .fv\:d-bgg-to---black-900.fv\:d-bgg-to---black-900:focus-visible {
10342
11262
  --bgg-to-opacity: 100%;
10343
11263
  --bgg-to: hsla(var(--dt-color-black-900-h) var(--dt-color-black-900-s) var(--dt-color-black-900-l) / var(--bgg-to-opacity)) !important;
10344
11264
  }
10345
11265
 
10346
- .d-bgg-to-purple-100.d-bgg-to-purple-100, .h\:d-bgg-to-purple-100.h\:d-bgg-to-purple-100:hover, .f\:d-bgg-to-purple-100.f\:d-bgg-to-purple-100:focus, .f\:d-bgg-to-purple-100.f\:d-bgg-to-purple-100:focus-within, .fv\:d-bgg-to-purple-100.fv\:d-bgg-to-purple-100:focus-visible {
11266
+ .d-bgg-to---purple-100.d-bgg-to---purple-100, .h\:d-bgg-to---purple-100.h\:d-bgg-to---purple-100:hover, .f\:d-bgg-to---purple-100.f\:d-bgg-to---purple-100:focus, .f\:d-bgg-to---purple-100.f\:d-bgg-to---purple-100:focus-within, .fv\:d-bgg-to---purple-100.fv\:d-bgg-to---purple-100:focus-visible {
10347
11267
  --bgg-to-opacity: 100%;
10348
11268
  --bgg-to: hsla(var(--dt-color-purple-100-h) var(--dt-color-purple-100-s) var(--dt-color-purple-100-l) / var(--bgg-to-opacity)) !important;
10349
11269
  }
10350
11270
 
10351
- .d-bgg-to-purple-200.d-bgg-to-purple-200, .h\:d-bgg-to-purple-200.h\:d-bgg-to-purple-200:hover, .f\:d-bgg-to-purple-200.f\:d-bgg-to-purple-200:focus, .f\:d-bgg-to-purple-200.f\:d-bgg-to-purple-200:focus-within, .fv\:d-bgg-to-purple-200.fv\:d-bgg-to-purple-200:focus-visible {
11271
+ .d-bgg-to---purple-200.d-bgg-to---purple-200, .h\:d-bgg-to---purple-200.h\:d-bgg-to---purple-200:hover, .f\:d-bgg-to---purple-200.f\:d-bgg-to---purple-200:focus, .f\:d-bgg-to---purple-200.f\:d-bgg-to---purple-200:focus-within, .fv\:d-bgg-to---purple-200.fv\:d-bgg-to---purple-200:focus-visible {
10352
11272
  --bgg-to-opacity: 100%;
10353
11273
  --bgg-to: hsla(var(--dt-color-purple-200-h) var(--dt-color-purple-200-s) var(--dt-color-purple-200-l) / var(--bgg-to-opacity)) !important;
10354
11274
  }
10355
11275
 
10356
- .d-bgg-to-purple-300.d-bgg-to-purple-300, .h\:d-bgg-to-purple-300.h\:d-bgg-to-purple-300:hover, .f\:d-bgg-to-purple-300.f\:d-bgg-to-purple-300:focus, .f\:d-bgg-to-purple-300.f\:d-bgg-to-purple-300:focus-within, .fv\:d-bgg-to-purple-300.fv\:d-bgg-to-purple-300:focus-visible {
11276
+ .d-bgg-to---purple-300.d-bgg-to---purple-300, .h\:d-bgg-to---purple-300.h\:d-bgg-to---purple-300:hover, .f\:d-bgg-to---purple-300.f\:d-bgg-to---purple-300:focus, .f\:d-bgg-to---purple-300.f\:d-bgg-to---purple-300:focus-within, .fv\:d-bgg-to---purple-300.fv\:d-bgg-to---purple-300:focus-visible {
10357
11277
  --bgg-to-opacity: 100%;
10358
11278
  --bgg-to: hsla(var(--dt-color-purple-300-h) var(--dt-color-purple-300-s) var(--dt-color-purple-300-l) / var(--bgg-to-opacity)) !important;
10359
11279
  }
10360
11280
 
10361
- .d-bgg-to-purple-400.d-bgg-to-purple-400, .h\:d-bgg-to-purple-400.h\:d-bgg-to-purple-400:hover, .f\:d-bgg-to-purple-400.f\:d-bgg-to-purple-400:focus, .f\:d-bgg-to-purple-400.f\:d-bgg-to-purple-400:focus-within, .fv\:d-bgg-to-purple-400.fv\:d-bgg-to-purple-400:focus-visible {
11281
+ .d-bgg-to---purple-400.d-bgg-to---purple-400, .h\:d-bgg-to---purple-400.h\:d-bgg-to---purple-400:hover, .f\:d-bgg-to---purple-400.f\:d-bgg-to---purple-400:focus, .f\:d-bgg-to---purple-400.f\:d-bgg-to---purple-400:focus-within, .fv\:d-bgg-to---purple-400.fv\:d-bgg-to---purple-400:focus-visible {
10362
11282
  --bgg-to-opacity: 100%;
10363
11283
  --bgg-to: hsla(var(--dt-color-purple-400-h) var(--dt-color-purple-400-s) var(--dt-color-purple-400-l) / var(--bgg-to-opacity)) !important;
10364
11284
  }
10365
11285
 
10366
- .d-bgg-to-purple-500.d-bgg-to-purple-500, .h\:d-bgg-to-purple-500.h\:d-bgg-to-purple-500:hover, .f\:d-bgg-to-purple-500.f\:d-bgg-to-purple-500:focus, .f\:d-bgg-to-purple-500.f\:d-bgg-to-purple-500:focus-within, .fv\:d-bgg-to-purple-500.fv\:d-bgg-to-purple-500:focus-visible {
11286
+ .d-bgg-to---purple-500.d-bgg-to---purple-500, .h\:d-bgg-to---purple-500.h\:d-bgg-to---purple-500:hover, .f\:d-bgg-to---purple-500.f\:d-bgg-to---purple-500:focus, .f\:d-bgg-to---purple-500.f\:d-bgg-to---purple-500:focus-within, .fv\:d-bgg-to---purple-500.fv\:d-bgg-to---purple-500:focus-visible {
10367
11287
  --bgg-to-opacity: 100%;
10368
11288
  --bgg-to: hsla(var(--dt-color-purple-500-h) var(--dt-color-purple-500-s) var(--dt-color-purple-500-l) / var(--bgg-to-opacity)) !important;
10369
11289
  }
10370
11290
 
10371
- .d-bgg-to-purple-600.d-bgg-to-purple-600, .h\:d-bgg-to-purple-600.h\:d-bgg-to-purple-600:hover, .f\:d-bgg-to-purple-600.f\:d-bgg-to-purple-600:focus, .f\:d-bgg-to-purple-600.f\:d-bgg-to-purple-600:focus-within, .fv\:d-bgg-to-purple-600.fv\:d-bgg-to-purple-600:focus-visible {
11291
+ .d-bgg-to---purple-600.d-bgg-to---purple-600, .h\:d-bgg-to---purple-600.h\:d-bgg-to---purple-600:hover, .f\:d-bgg-to---purple-600.f\:d-bgg-to---purple-600:focus, .f\:d-bgg-to---purple-600.f\:d-bgg-to---purple-600:focus-within, .fv\:d-bgg-to---purple-600.fv\:d-bgg-to---purple-600:focus-visible {
10372
11292
  --bgg-to-opacity: 100%;
10373
11293
  --bgg-to: hsla(var(--dt-color-purple-600-h) var(--dt-color-purple-600-s) var(--dt-color-purple-600-l) / var(--bgg-to-opacity)) !important;
10374
11294
  }
10375
11295
 
10376
- .d-bgg-to-blue-100.d-bgg-to-blue-100, .h\:d-bgg-to-blue-100.h\:d-bgg-to-blue-100:hover, .f\:d-bgg-to-blue-100.f\:d-bgg-to-blue-100:focus, .f\:d-bgg-to-blue-100.f\:d-bgg-to-blue-100:focus-within, .fv\:d-bgg-to-blue-100.fv\:d-bgg-to-blue-100:focus-visible {
11296
+ .d-bgg-to---blue-100.d-bgg-to---blue-100, .h\:d-bgg-to---blue-100.h\:d-bgg-to---blue-100:hover, .f\:d-bgg-to---blue-100.f\:d-bgg-to---blue-100:focus, .f\:d-bgg-to---blue-100.f\:d-bgg-to---blue-100:focus-within, .fv\:d-bgg-to---blue-100.fv\:d-bgg-to---blue-100:focus-visible {
10377
11297
  --bgg-to-opacity: 100%;
10378
11298
  --bgg-to: hsla(var(--dt-color-blue-100-h) var(--dt-color-blue-100-s) var(--dt-color-blue-100-l) / var(--bgg-to-opacity)) !important;
10379
11299
  }
10380
11300
 
10381
- .d-bgg-to-blue-200.d-bgg-to-blue-200, .h\:d-bgg-to-blue-200.h\:d-bgg-to-blue-200:hover, .f\:d-bgg-to-blue-200.f\:d-bgg-to-blue-200:focus, .f\:d-bgg-to-blue-200.f\:d-bgg-to-blue-200:focus-within, .fv\:d-bgg-to-blue-200.fv\:d-bgg-to-blue-200:focus-visible {
11301
+ .d-bgg-to---blue-200.d-bgg-to---blue-200, .h\:d-bgg-to---blue-200.h\:d-bgg-to---blue-200:hover, .f\:d-bgg-to---blue-200.f\:d-bgg-to---blue-200:focus, .f\:d-bgg-to---blue-200.f\:d-bgg-to---blue-200:focus-within, .fv\:d-bgg-to---blue-200.fv\:d-bgg-to---blue-200:focus-visible {
10382
11302
  --bgg-to-opacity: 100%;
10383
11303
  --bgg-to: hsla(var(--dt-color-blue-200-h) var(--dt-color-blue-200-s) var(--dt-color-blue-200-l) / var(--bgg-to-opacity)) !important;
10384
11304
  }
10385
11305
 
10386
- .d-bgg-to-blue-300.d-bgg-to-blue-300, .h\:d-bgg-to-blue-300.h\:d-bgg-to-blue-300:hover, .f\:d-bgg-to-blue-300.f\:d-bgg-to-blue-300:focus, .f\:d-bgg-to-blue-300.f\:d-bgg-to-blue-300:focus-within, .fv\:d-bgg-to-blue-300.fv\:d-bgg-to-blue-300:focus-visible {
11306
+ .d-bgg-to---blue-300.d-bgg-to---blue-300, .h\:d-bgg-to---blue-300.h\:d-bgg-to---blue-300:hover, .f\:d-bgg-to---blue-300.f\:d-bgg-to---blue-300:focus, .f\:d-bgg-to---blue-300.f\:d-bgg-to---blue-300:focus-within, .fv\:d-bgg-to---blue-300.fv\:d-bgg-to---blue-300:focus-visible {
10387
11307
  --bgg-to-opacity: 100%;
10388
11308
  --bgg-to: hsla(var(--dt-color-blue-300-h) var(--dt-color-blue-300-s) var(--dt-color-blue-300-l) / var(--bgg-to-opacity)) !important;
10389
11309
  }
10390
11310
 
10391
- .d-bgg-to-blue-400.d-bgg-to-blue-400, .h\:d-bgg-to-blue-400.h\:d-bgg-to-blue-400:hover, .f\:d-bgg-to-blue-400.f\:d-bgg-to-blue-400:focus, .f\:d-bgg-to-blue-400.f\:d-bgg-to-blue-400:focus-within, .fv\:d-bgg-to-blue-400.fv\:d-bgg-to-blue-400:focus-visible {
11311
+ .d-bgg-to---blue-400.d-bgg-to---blue-400, .h\:d-bgg-to---blue-400.h\:d-bgg-to---blue-400:hover, .f\:d-bgg-to---blue-400.f\:d-bgg-to---blue-400:focus, .f\:d-bgg-to---blue-400.f\:d-bgg-to---blue-400:focus-within, .fv\:d-bgg-to---blue-400.fv\:d-bgg-to---blue-400:focus-visible {
10392
11312
  --bgg-to-opacity: 100%;
10393
11313
  --bgg-to: hsla(var(--dt-color-blue-400-h) var(--dt-color-blue-400-s) var(--dt-color-blue-400-l) / var(--bgg-to-opacity)) !important;
10394
11314
  }
10395
11315
 
10396
- .d-bgg-to-blue-500.d-bgg-to-blue-500, .h\:d-bgg-to-blue-500.h\:d-bgg-to-blue-500:hover, .f\:d-bgg-to-blue-500.f\:d-bgg-to-blue-500:focus, .f\:d-bgg-to-blue-500.f\:d-bgg-to-blue-500:focus-within, .fv\:d-bgg-to-blue-500.fv\:d-bgg-to-blue-500:focus-visible {
11316
+ .d-bgg-to---blue-500.d-bgg-to---blue-500, .h\:d-bgg-to---blue-500.h\:d-bgg-to---blue-500:hover, .f\:d-bgg-to---blue-500.f\:d-bgg-to---blue-500:focus, .f\:d-bgg-to---blue-500.f\:d-bgg-to---blue-500:focus-within, .fv\:d-bgg-to---blue-500.fv\:d-bgg-to---blue-500:focus-visible {
10397
11317
  --bgg-to-opacity: 100%;
10398
11318
  --bgg-to: hsla(var(--dt-color-blue-500-h) var(--dt-color-blue-500-s) var(--dt-color-blue-500-l) / var(--bgg-to-opacity)) !important;
10399
11319
  }
10400
11320
 
10401
- .d-bgg-to-magenta-100.d-bgg-to-magenta-100, .h\:d-bgg-to-magenta-100.h\:d-bgg-to-magenta-100:hover, .f\:d-bgg-to-magenta-100.f\:d-bgg-to-magenta-100:focus, .f\:d-bgg-to-magenta-100.f\:d-bgg-to-magenta-100:focus-within, .fv\:d-bgg-to-magenta-100.fv\:d-bgg-to-magenta-100:focus-visible {
11321
+ .d-bgg-to---magenta-100.d-bgg-to---magenta-100, .h\:d-bgg-to---magenta-100.h\:d-bgg-to---magenta-100:hover, .f\:d-bgg-to---magenta-100.f\:d-bgg-to---magenta-100:focus, .f\:d-bgg-to---magenta-100.f\:d-bgg-to---magenta-100:focus-within, .fv\:d-bgg-to---magenta-100.fv\:d-bgg-to---magenta-100:focus-visible {
10402
11322
  --bgg-to-opacity: 100%;
10403
11323
  --bgg-to: hsla(var(--dt-color-magenta-100-h) var(--dt-color-magenta-100-s) var(--dt-color-magenta-100-l) / var(--bgg-to-opacity)) !important;
10404
11324
  }
10405
11325
 
10406
- .d-bgg-to-magenta-200.d-bgg-to-magenta-200, .h\:d-bgg-to-magenta-200.h\:d-bgg-to-magenta-200:hover, .f\:d-bgg-to-magenta-200.f\:d-bgg-to-magenta-200:focus, .f\:d-bgg-to-magenta-200.f\:d-bgg-to-magenta-200:focus-within, .fv\:d-bgg-to-magenta-200.fv\:d-bgg-to-magenta-200:focus-visible {
11326
+ .d-bgg-to---magenta-200.d-bgg-to---magenta-200, .h\:d-bgg-to---magenta-200.h\:d-bgg-to---magenta-200:hover, .f\:d-bgg-to---magenta-200.f\:d-bgg-to---magenta-200:focus, .f\:d-bgg-to---magenta-200.f\:d-bgg-to---magenta-200:focus-within, .fv\:d-bgg-to---magenta-200.fv\:d-bgg-to---magenta-200:focus-visible {
10407
11327
  --bgg-to-opacity: 100%;
10408
11328
  --bgg-to: hsla(var(--dt-color-magenta-200-h) var(--dt-color-magenta-200-s) var(--dt-color-magenta-200-l) / var(--bgg-to-opacity)) !important;
10409
11329
  }
10410
11330
 
10411
- .d-bgg-to-magenta-300.d-bgg-to-magenta-300, .h\:d-bgg-to-magenta-300.h\:d-bgg-to-magenta-300:hover, .f\:d-bgg-to-magenta-300.f\:d-bgg-to-magenta-300:focus, .f\:d-bgg-to-magenta-300.f\:d-bgg-to-magenta-300:focus-within, .fv\:d-bgg-to-magenta-300.fv\:d-bgg-to-magenta-300:focus-visible {
11331
+ .d-bgg-to---magenta-300.d-bgg-to---magenta-300, .h\:d-bgg-to---magenta-300.h\:d-bgg-to---magenta-300:hover, .f\:d-bgg-to---magenta-300.f\:d-bgg-to---magenta-300:focus, .f\:d-bgg-to---magenta-300.f\:d-bgg-to---magenta-300:focus-within, .fv\:d-bgg-to---magenta-300.fv\:d-bgg-to---magenta-300:focus-visible {
10412
11332
  --bgg-to-opacity: 100%;
10413
11333
  --bgg-to: hsla(var(--dt-color-magenta-300-h) var(--dt-color-magenta-300-s) var(--dt-color-magenta-300-l) / var(--bgg-to-opacity)) !important;
10414
11334
  }
10415
11335
 
10416
- .d-bgg-to-magenta-400.d-bgg-to-magenta-400, .h\:d-bgg-to-magenta-400.h\:d-bgg-to-magenta-400:hover, .f\:d-bgg-to-magenta-400.f\:d-bgg-to-magenta-400:focus, .f\:d-bgg-to-magenta-400.f\:d-bgg-to-magenta-400:focus-within, .fv\:d-bgg-to-magenta-400.fv\:d-bgg-to-magenta-400:focus-visible {
11336
+ .d-bgg-to---magenta-400.d-bgg-to---magenta-400, .h\:d-bgg-to---magenta-400.h\:d-bgg-to---magenta-400:hover, .f\:d-bgg-to---magenta-400.f\:d-bgg-to---magenta-400:focus, .f\:d-bgg-to---magenta-400.f\:d-bgg-to---magenta-400:focus-within, .fv\:d-bgg-to---magenta-400.fv\:d-bgg-to---magenta-400:focus-visible {
10417
11337
  --bgg-to-opacity: 100%;
10418
11338
  --bgg-to: hsla(var(--dt-color-magenta-400-h) var(--dt-color-magenta-400-s) var(--dt-color-magenta-400-l) / var(--bgg-to-opacity)) !important;
10419
11339
  }
10420
11340
 
10421
- .d-bgg-to-magenta-500.d-bgg-to-magenta-500, .h\:d-bgg-to-magenta-500.h\:d-bgg-to-magenta-500:hover, .f\:d-bgg-to-magenta-500.f\:d-bgg-to-magenta-500:focus, .f\:d-bgg-to-magenta-500.f\:d-bgg-to-magenta-500:focus-within, .fv\:d-bgg-to-magenta-500.fv\:d-bgg-to-magenta-500:focus-visible {
11341
+ .d-bgg-to---magenta-500.d-bgg-to---magenta-500, .h\:d-bgg-to---magenta-500.h\:d-bgg-to---magenta-500:hover, .f\:d-bgg-to---magenta-500.f\:d-bgg-to---magenta-500:focus, .f\:d-bgg-to---magenta-500.f\:d-bgg-to---magenta-500:focus-within, .fv\:d-bgg-to---magenta-500.fv\:d-bgg-to---magenta-500:focus-visible {
10422
11342
  --bgg-to-opacity: 100%;
10423
11343
  --bgg-to: hsla(var(--dt-color-magenta-500-h) var(--dt-color-magenta-500-s) var(--dt-color-magenta-500-l) / var(--bgg-to-opacity)) !important;
10424
11344
  }
10425
11345
 
10426
- .d-bgg-to-gold-100.d-bgg-to-gold-100, .h\:d-bgg-to-gold-100.h\:d-bgg-to-gold-100:hover, .f\:d-bgg-to-gold-100.f\:d-bgg-to-gold-100:focus, .f\:d-bgg-to-gold-100.f\:d-bgg-to-gold-100:focus-within, .fv\:d-bgg-to-gold-100.fv\:d-bgg-to-gold-100:focus-visible {
11346
+ .d-bgg-to---gold-100.d-bgg-to---gold-100, .h\:d-bgg-to---gold-100.h\:d-bgg-to---gold-100:hover, .f\:d-bgg-to---gold-100.f\:d-bgg-to---gold-100:focus, .f\:d-bgg-to---gold-100.f\:d-bgg-to---gold-100:focus-within, .fv\:d-bgg-to---gold-100.fv\:d-bgg-to---gold-100:focus-visible {
10427
11347
  --bgg-to-opacity: 100%;
10428
11348
  --bgg-to: hsla(var(--dt-color-gold-100-h) var(--dt-color-gold-100-s) var(--dt-color-gold-100-l) / var(--bgg-to-opacity)) !important;
10429
11349
  }
10430
11350
 
10431
- .d-bgg-to-gold-200.d-bgg-to-gold-200, .h\:d-bgg-to-gold-200.h\:d-bgg-to-gold-200:hover, .f\:d-bgg-to-gold-200.f\:d-bgg-to-gold-200:focus, .f\:d-bgg-to-gold-200.f\:d-bgg-to-gold-200:focus-within, .fv\:d-bgg-to-gold-200.fv\:d-bgg-to-gold-200:focus-visible {
11351
+ .d-bgg-to---gold-200.d-bgg-to---gold-200, .h\:d-bgg-to---gold-200.h\:d-bgg-to---gold-200:hover, .f\:d-bgg-to---gold-200.f\:d-bgg-to---gold-200:focus, .f\:d-bgg-to---gold-200.f\:d-bgg-to---gold-200:focus-within, .fv\:d-bgg-to---gold-200.fv\:d-bgg-to---gold-200:focus-visible {
10432
11352
  --bgg-to-opacity: 100%;
10433
11353
  --bgg-to: hsla(var(--dt-color-gold-200-h) var(--dt-color-gold-200-s) var(--dt-color-gold-200-l) / var(--bgg-to-opacity)) !important;
10434
11354
  }
10435
11355
 
10436
- .d-bgg-to-gold-300.d-bgg-to-gold-300, .h\:d-bgg-to-gold-300.h\:d-bgg-to-gold-300:hover, .f\:d-bgg-to-gold-300.f\:d-bgg-to-gold-300:focus, .f\:d-bgg-to-gold-300.f\:d-bgg-to-gold-300:focus-within, .fv\:d-bgg-to-gold-300.fv\:d-bgg-to-gold-300:focus-visible {
11356
+ .d-bgg-to---gold-300.d-bgg-to---gold-300, .h\:d-bgg-to---gold-300.h\:d-bgg-to---gold-300:hover, .f\:d-bgg-to---gold-300.f\:d-bgg-to---gold-300:focus, .f\:d-bgg-to---gold-300.f\:d-bgg-to---gold-300:focus-within, .fv\:d-bgg-to---gold-300.fv\:d-bgg-to---gold-300:focus-visible {
10437
11357
  --bgg-to-opacity: 100%;
10438
11358
  --bgg-to: hsla(var(--dt-color-gold-300-h) var(--dt-color-gold-300-s) var(--dt-color-gold-300-l) / var(--bgg-to-opacity)) !important;
10439
11359
  }
10440
11360
 
10441
- .d-bgg-to-gold-400.d-bgg-to-gold-400, .h\:d-bgg-to-gold-400.h\:d-bgg-to-gold-400:hover, .f\:d-bgg-to-gold-400.f\:d-bgg-to-gold-400:focus, .f\:d-bgg-to-gold-400.f\:d-bgg-to-gold-400:focus-within, .fv\:d-bgg-to-gold-400.fv\:d-bgg-to-gold-400:focus-visible {
11361
+ .d-bgg-to---gold-400.d-bgg-to---gold-400, .h\:d-bgg-to---gold-400.h\:d-bgg-to---gold-400:hover, .f\:d-bgg-to---gold-400.f\:d-bgg-to---gold-400:focus, .f\:d-bgg-to---gold-400.f\:d-bgg-to---gold-400:focus-within, .fv\:d-bgg-to---gold-400.fv\:d-bgg-to---gold-400:focus-visible {
10442
11362
  --bgg-to-opacity: 100%;
10443
11363
  --bgg-to: hsla(var(--dt-color-gold-400-h) var(--dt-color-gold-400-s) var(--dt-color-gold-400-l) / var(--bgg-to-opacity)) !important;
10444
11364
  }
10445
11365
 
10446
- .d-bgg-to-gold-500.d-bgg-to-gold-500, .h\:d-bgg-to-gold-500.h\:d-bgg-to-gold-500:hover, .f\:d-bgg-to-gold-500.f\:d-bgg-to-gold-500:focus, .f\:d-bgg-to-gold-500.f\:d-bgg-to-gold-500:focus-within, .fv\:d-bgg-to-gold-500.fv\:d-bgg-to-gold-500:focus-visible {
11366
+ .d-bgg-to---gold-500.d-bgg-to---gold-500, .h\:d-bgg-to---gold-500.h\:d-bgg-to---gold-500:hover, .f\:d-bgg-to---gold-500.f\:d-bgg-to---gold-500:focus, .f\:d-bgg-to---gold-500.f\:d-bgg-to---gold-500:focus-within, .fv\:d-bgg-to---gold-500.fv\:d-bgg-to---gold-500:focus-visible {
10447
11367
  --bgg-to-opacity: 100%;
10448
11368
  --bgg-to: hsla(var(--dt-color-gold-500-h) var(--dt-color-gold-500-s) var(--dt-color-gold-500-l) / var(--bgg-to-opacity)) !important;
10449
11369
  }
10450
11370
 
10451
- .d-bgg-to-green-100.d-bgg-to-green-100, .h\:d-bgg-to-green-100.h\:d-bgg-to-green-100:hover, .f\:d-bgg-to-green-100.f\:d-bgg-to-green-100:focus, .f\:d-bgg-to-green-100.f\:d-bgg-to-green-100:focus-within, .fv\:d-bgg-to-green-100.fv\:d-bgg-to-green-100:focus-visible {
11371
+ .d-bgg-to---green-100.d-bgg-to---green-100, .h\:d-bgg-to---green-100.h\:d-bgg-to---green-100:hover, .f\:d-bgg-to---green-100.f\:d-bgg-to---green-100:focus, .f\:d-bgg-to---green-100.f\:d-bgg-to---green-100:focus-within, .fv\:d-bgg-to---green-100.fv\:d-bgg-to---green-100:focus-visible {
10452
11372
  --bgg-to-opacity: 100%;
10453
11373
  --bgg-to: hsla(var(--dt-color-green-100-h) var(--dt-color-green-100-s) var(--dt-color-green-100-l) / var(--bgg-to-opacity)) !important;
10454
11374
  }
10455
11375
 
10456
- .d-bgg-to-green-200.d-bgg-to-green-200, .h\:d-bgg-to-green-200.h\:d-bgg-to-green-200:hover, .f\:d-bgg-to-green-200.f\:d-bgg-to-green-200:focus, .f\:d-bgg-to-green-200.f\:d-bgg-to-green-200:focus-within, .fv\:d-bgg-to-green-200.fv\:d-bgg-to-green-200:focus-visible {
11376
+ .d-bgg-to---green-200.d-bgg-to---green-200, .h\:d-bgg-to---green-200.h\:d-bgg-to---green-200:hover, .f\:d-bgg-to---green-200.f\:d-bgg-to---green-200:focus, .f\:d-bgg-to---green-200.f\:d-bgg-to---green-200:focus-within, .fv\:d-bgg-to---green-200.fv\:d-bgg-to---green-200:focus-visible {
10457
11377
  --bgg-to-opacity: 100%;
10458
11378
  --bgg-to: hsla(var(--dt-color-green-200-h) var(--dt-color-green-200-s) var(--dt-color-green-200-l) / var(--bgg-to-opacity)) !important;
10459
11379
  }
10460
11380
 
10461
- .d-bgg-to-green-300.d-bgg-to-green-300, .h\:d-bgg-to-green-300.h\:d-bgg-to-green-300:hover, .f\:d-bgg-to-green-300.f\:d-bgg-to-green-300:focus, .f\:d-bgg-to-green-300.f\:d-bgg-to-green-300:focus-within, .fv\:d-bgg-to-green-300.fv\:d-bgg-to-green-300:focus-visible {
11381
+ .d-bgg-to---green-300.d-bgg-to---green-300, .h\:d-bgg-to---green-300.h\:d-bgg-to---green-300:hover, .f\:d-bgg-to---green-300.f\:d-bgg-to---green-300:focus, .f\:d-bgg-to---green-300.f\:d-bgg-to---green-300:focus-within, .fv\:d-bgg-to---green-300.fv\:d-bgg-to---green-300:focus-visible {
10462
11382
  --bgg-to-opacity: 100%;
10463
11383
  --bgg-to: hsla(var(--dt-color-green-300-h) var(--dt-color-green-300-s) var(--dt-color-green-300-l) / var(--bgg-to-opacity)) !important;
10464
11384
  }
10465
11385
 
10466
- .d-bgg-to-green-400.d-bgg-to-green-400, .h\:d-bgg-to-green-400.h\:d-bgg-to-green-400:hover, .f\:d-bgg-to-green-400.f\:d-bgg-to-green-400:focus, .f\:d-bgg-to-green-400.f\:d-bgg-to-green-400:focus-within, .fv\:d-bgg-to-green-400.fv\:d-bgg-to-green-400:focus-visible {
11386
+ .d-bgg-to---green-400.d-bgg-to---green-400, .h\:d-bgg-to---green-400.h\:d-bgg-to---green-400:hover, .f\:d-bgg-to---green-400.f\:d-bgg-to---green-400:focus, .f\:d-bgg-to---green-400.f\:d-bgg-to---green-400:focus-within, .fv\:d-bgg-to---green-400.fv\:d-bgg-to---green-400:focus-visible {
10467
11387
  --bgg-to-opacity: 100%;
10468
11388
  --bgg-to: hsla(var(--dt-color-green-400-h) var(--dt-color-green-400-s) var(--dt-color-green-400-l) / var(--bgg-to-opacity)) !important;
10469
11389
  }
10470
11390
 
10471
- .d-bgg-to-green-500.d-bgg-to-green-500, .h\:d-bgg-to-green-500.h\:d-bgg-to-green-500:hover, .f\:d-bgg-to-green-500.f\:d-bgg-to-green-500:focus, .f\:d-bgg-to-green-500.f\:d-bgg-to-green-500:focus-within, .fv\:d-bgg-to-green-500.fv\:d-bgg-to-green-500:focus-visible {
11391
+ .d-bgg-to---green-500.d-bgg-to---green-500, .h\:d-bgg-to---green-500.h\:d-bgg-to---green-500:hover, .f\:d-bgg-to---green-500.f\:d-bgg-to---green-500:focus, .f\:d-bgg-to---green-500.f\:d-bgg-to---green-500:focus-within, .fv\:d-bgg-to---green-500.fv\:d-bgg-to---green-500:focus-visible {
10472
11392
  --bgg-to-opacity: 100%;
10473
11393
  --bgg-to: hsla(var(--dt-color-green-500-h) var(--dt-color-green-500-s) var(--dt-color-green-500-l) / var(--bgg-to-opacity)) !important;
10474
11394
  }
10475
11395
 
10476
- .d-bgg-to-red-100.d-bgg-to-red-100, .h\:d-bgg-to-red-100.h\:d-bgg-to-red-100:hover, .f\:d-bgg-to-red-100.f\:d-bgg-to-red-100:focus, .f\:d-bgg-to-red-100.f\:d-bgg-to-red-100:focus-within, .fv\:d-bgg-to-red-100.fv\:d-bgg-to-red-100:focus-visible {
11396
+ .d-bgg-to---red-100.d-bgg-to---red-100, .h\:d-bgg-to---red-100.h\:d-bgg-to---red-100:hover, .f\:d-bgg-to---red-100.f\:d-bgg-to---red-100:focus, .f\:d-bgg-to---red-100.f\:d-bgg-to---red-100:focus-within, .fv\:d-bgg-to---red-100.fv\:d-bgg-to---red-100:focus-visible {
10477
11397
  --bgg-to-opacity: 100%;
10478
11398
  --bgg-to: hsla(var(--dt-color-red-100-h) var(--dt-color-red-100-s) var(--dt-color-red-100-l) / var(--bgg-to-opacity)) !important;
10479
11399
  }
10480
11400
 
10481
- .d-bgg-to-red-200.d-bgg-to-red-200, .h\:d-bgg-to-red-200.h\:d-bgg-to-red-200:hover, .f\:d-bgg-to-red-200.f\:d-bgg-to-red-200:focus, .f\:d-bgg-to-red-200.f\:d-bgg-to-red-200:focus-within, .fv\:d-bgg-to-red-200.fv\:d-bgg-to-red-200:focus-visible {
11401
+ .d-bgg-to---red-200.d-bgg-to---red-200, .h\:d-bgg-to---red-200.h\:d-bgg-to---red-200:hover, .f\:d-bgg-to---red-200.f\:d-bgg-to---red-200:focus, .f\:d-bgg-to---red-200.f\:d-bgg-to---red-200:focus-within, .fv\:d-bgg-to---red-200.fv\:d-bgg-to---red-200:focus-visible {
10482
11402
  --bgg-to-opacity: 100%;
10483
11403
  --bgg-to: hsla(var(--dt-color-red-200-h) var(--dt-color-red-200-s) var(--dt-color-red-200-l) / var(--bgg-to-opacity)) !important;
10484
11404
  }
10485
11405
 
10486
- .d-bgg-to-red-300.d-bgg-to-red-300, .h\:d-bgg-to-red-300.h\:d-bgg-to-red-300:hover, .f\:d-bgg-to-red-300.f\:d-bgg-to-red-300:focus, .f\:d-bgg-to-red-300.f\:d-bgg-to-red-300:focus-within, .fv\:d-bgg-to-red-300.fv\:d-bgg-to-red-300:focus-visible {
11406
+ .d-bgg-to---red-300.d-bgg-to---red-300, .h\:d-bgg-to---red-300.h\:d-bgg-to---red-300:hover, .f\:d-bgg-to---red-300.f\:d-bgg-to---red-300:focus, .f\:d-bgg-to---red-300.f\:d-bgg-to---red-300:focus-within, .fv\:d-bgg-to---red-300.fv\:d-bgg-to---red-300:focus-visible {
10487
11407
  --bgg-to-opacity: 100%;
10488
11408
  --bgg-to: hsla(var(--dt-color-red-300-h) var(--dt-color-red-300-s) var(--dt-color-red-300-l) / var(--bgg-to-opacity)) !important;
10489
11409
  }
10490
11410
 
10491
- .d-bgg-to-red-400.d-bgg-to-red-400, .h\:d-bgg-to-red-400.h\:d-bgg-to-red-400:hover, .f\:d-bgg-to-red-400.f\:d-bgg-to-red-400:focus, .f\:d-bgg-to-red-400.f\:d-bgg-to-red-400:focus-within, .fv\:d-bgg-to-red-400.fv\:d-bgg-to-red-400:focus-visible {
11411
+ .d-bgg-to---red-400.d-bgg-to---red-400, .h\:d-bgg-to---red-400.h\:d-bgg-to---red-400:hover, .f\:d-bgg-to---red-400.f\:d-bgg-to---red-400:focus, .f\:d-bgg-to---red-400.f\:d-bgg-to---red-400:focus-within, .fv\:d-bgg-to---red-400.fv\:d-bgg-to---red-400:focus-visible {
10492
11412
  --bgg-to-opacity: 100%;
10493
11413
  --bgg-to: hsla(var(--dt-color-red-400-h) var(--dt-color-red-400-s) var(--dt-color-red-400-l) / var(--bgg-to-opacity)) !important;
10494
11414
  }
10495
11415
 
10496
- .d-bgg-to-red-500.d-bgg-to-red-500, .h\:d-bgg-to-red-500.h\:d-bgg-to-red-500:hover, .f\:d-bgg-to-red-500.f\:d-bgg-to-red-500:focus, .f\:d-bgg-to-red-500.f\:d-bgg-to-red-500:focus-within, .fv\:d-bgg-to-red-500.fv\:d-bgg-to-red-500:focus-visible {
11416
+ .d-bgg-to---red-500.d-bgg-to---red-500, .h\:d-bgg-to---red-500.h\:d-bgg-to---red-500:hover, .f\:d-bgg-to---red-500.f\:d-bgg-to---red-500:focus, .f\:d-bgg-to---red-500.f\:d-bgg-to---red-500:focus-within, .fv\:d-bgg-to---red-500.fv\:d-bgg-to---red-500:focus-visible {
10497
11417
  --bgg-to-opacity: 100%;
10498
11418
  --bgg-to: hsla(var(--dt-color-red-500-h) var(--dt-color-red-500-s) var(--dt-color-red-500-l) / var(--bgg-to-opacity)) !important;
10499
11419
  }
10500
11420
 
10501
- .d-bgg-to-tan-100.d-bgg-to-tan-100, .h\:d-bgg-to-tan-100.h\:d-bgg-to-tan-100:hover, .f\:d-bgg-to-tan-100.f\:d-bgg-to-tan-100:focus, .f\:d-bgg-to-tan-100.f\:d-bgg-to-tan-100:focus-within, .fv\:d-bgg-to-tan-100.fv\:d-bgg-to-tan-100:focus-visible {
11421
+ .d-bgg-to---tan-100.d-bgg-to---tan-100, .h\:d-bgg-to---tan-100.h\:d-bgg-to---tan-100:hover, .f\:d-bgg-to---tan-100.f\:d-bgg-to---tan-100:focus, .f\:d-bgg-to---tan-100.f\:d-bgg-to---tan-100:focus-within, .fv\:d-bgg-to---tan-100.fv\:d-bgg-to---tan-100:focus-visible {
10502
11422
  --bgg-to-opacity: 100%;
10503
11423
  --bgg-to: hsla(var(--dt-color-tan-100-h) var(--dt-color-tan-100-s) var(--dt-color-tan-100-l) / var(--bgg-to-opacity)) !important;
10504
11424
  }
10505
11425
 
10506
- .d-bgg-to-tan-200.d-bgg-to-tan-200, .h\:d-bgg-to-tan-200.h\:d-bgg-to-tan-200:hover, .f\:d-bgg-to-tan-200.f\:d-bgg-to-tan-200:focus, .f\:d-bgg-to-tan-200.f\:d-bgg-to-tan-200:focus-within, .fv\:d-bgg-to-tan-200.fv\:d-bgg-to-tan-200:focus-visible {
11426
+ .d-bgg-to---tan-200.d-bgg-to---tan-200, .h\:d-bgg-to---tan-200.h\:d-bgg-to---tan-200:hover, .f\:d-bgg-to---tan-200.f\:d-bgg-to---tan-200:focus, .f\:d-bgg-to---tan-200.f\:d-bgg-to---tan-200:focus-within, .fv\:d-bgg-to---tan-200.fv\:d-bgg-to---tan-200:focus-visible {
10507
11427
  --bgg-to-opacity: 100%;
10508
11428
  --bgg-to: hsla(var(--dt-color-tan-200-h) var(--dt-color-tan-200-s) var(--dt-color-tan-200-l) / var(--bgg-to-opacity)) !important;
10509
11429
  }
10510
11430
 
10511
- .d-bgg-to-tan-300.d-bgg-to-tan-300, .h\:d-bgg-to-tan-300.h\:d-bgg-to-tan-300:hover, .f\:d-bgg-to-tan-300.f\:d-bgg-to-tan-300:focus, .f\:d-bgg-to-tan-300.f\:d-bgg-to-tan-300:focus-within, .fv\:d-bgg-to-tan-300.fv\:d-bgg-to-tan-300:focus-visible {
11431
+ .d-bgg-to---tan-300.d-bgg-to---tan-300, .h\:d-bgg-to---tan-300.h\:d-bgg-to---tan-300:hover, .f\:d-bgg-to---tan-300.f\:d-bgg-to---tan-300:focus, .f\:d-bgg-to---tan-300.f\:d-bgg-to---tan-300:focus-within, .fv\:d-bgg-to---tan-300.fv\:d-bgg-to---tan-300:focus-visible {
10512
11432
  --bgg-to-opacity: 100%;
10513
11433
  --bgg-to: hsla(var(--dt-color-tan-300-h) var(--dt-color-tan-300-s) var(--dt-color-tan-300-l) / var(--bgg-to-opacity)) !important;
10514
11434
  }
10515
11435
 
10516
- .d-bgg-to-tan-400.d-bgg-to-tan-400, .h\:d-bgg-to-tan-400.h\:d-bgg-to-tan-400:hover, .f\:d-bgg-to-tan-400.f\:d-bgg-to-tan-400:focus, .f\:d-bgg-to-tan-400.f\:d-bgg-to-tan-400:focus-within, .fv\:d-bgg-to-tan-400.fv\:d-bgg-to-tan-400:focus-visible {
11436
+ .d-bgg-to---tan-400.d-bgg-to---tan-400, .h\:d-bgg-to---tan-400.h\:d-bgg-to---tan-400:hover, .f\:d-bgg-to---tan-400.f\:d-bgg-to---tan-400:focus, .f\:d-bgg-to---tan-400.f\:d-bgg-to---tan-400:focus-within, .fv\:d-bgg-to---tan-400.fv\:d-bgg-to---tan-400:focus-visible {
10517
11437
  --bgg-to-opacity: 100%;
10518
11438
  --bgg-to: hsla(var(--dt-color-tan-400-h) var(--dt-color-tan-400-s) var(--dt-color-tan-400-l) / var(--bgg-to-opacity)) !important;
10519
11439
  }
10520
11440
 
10521
- .d-bgg-to-tan-500.d-bgg-to-tan-500, .h\:d-bgg-to-tan-500.h\:d-bgg-to-tan-500:hover, .f\:d-bgg-to-tan-500.f\:d-bgg-to-tan-500:focus, .f\:d-bgg-to-tan-500.f\:d-bgg-to-tan-500:focus-within, .fv\:d-bgg-to-tan-500.fv\:d-bgg-to-tan-500:focus-visible {
11441
+ .d-bgg-to---tan-500.d-bgg-to---tan-500, .h\:d-bgg-to---tan-500.h\:d-bgg-to---tan-500:hover, .f\:d-bgg-to---tan-500.f\:d-bgg-to---tan-500:focus, .f\:d-bgg-to---tan-500.f\:d-bgg-to---tan-500:focus-within, .fv\:d-bgg-to---tan-500.fv\:d-bgg-to---tan-500:focus-visible {
10522
11442
  --bgg-to-opacity: 100%;
10523
11443
  --bgg-to: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--bgg-to-opacity)) !important;
10524
11444
  }
10525
11445
 
11446
+ .d-bgg-to---color-base.d-bgg-to---color-base, .h\:d-bgg-to---color-base.h\:d-bgg-to---color-base:hover, .f\:d-bgg-to---color-base.f\:d-bgg-to---color-base:focus, .f\:d-bgg-to---color-base.f\:d-bgg-to---color-base:focus-within, .fv\:d-bgg-to---color-base.fv\:d-bgg-to---color-base:focus-visible {
11447
+ --bgg-to-opacity: 100%;
11448
+ --bgg-to: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--bgg-to-opacity)) !important;
11449
+ }
11450
+
11451
+ .d-bgg-to---topbar-color-foreground.d-bgg-to---topbar-color-foreground, .h\:d-bgg-to---topbar-color-foreground.h\:d-bgg-to---topbar-color-foreground:hover, .f\:d-bgg-to---topbar-color-foreground.f\:d-bgg-to---topbar-color-foreground:focus, .f\:d-bgg-to---topbar-color-foreground.f\:d-bgg-to---topbar-color-foreground:focus-within, .fv\:d-bgg-to---topbar-color-foreground.fv\:d-bgg-to---topbar-color-foreground:focus-visible {
11452
+ --bgg-to-opacity: 100%;
11453
+ --bgg-to: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--bgg-to-opacity)) !important;
11454
+ }
11455
+
11456
+ .d-bgg-to---topbar-color-background.d-bgg-to---topbar-color-background, .h\:d-bgg-to---topbar-color-background.h\:d-bgg-to---topbar-color-background:hover, .f\:d-bgg-to---topbar-color-background.f\:d-bgg-to---topbar-color-background:focus, .f\:d-bgg-to---topbar-color-background.f\:d-bgg-to---topbar-color-background:focus-within, .fv\:d-bgg-to---topbar-color-background.fv\:d-bgg-to---topbar-color-background:focus-visible {
11457
+ --bgg-to-opacity: 100%;
11458
+ --bgg-to: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--bgg-to-opacity)) !important;
11459
+ }
11460
+
11461
+ .d-bgg-to---topbar-field-color-foreground.d-bgg-to---topbar-field-color-foreground, .h\:d-bgg-to---topbar-field-color-foreground.h\:d-bgg-to---topbar-field-color-foreground:hover, .f\:d-bgg-to---topbar-field-color-foreground.f\:d-bgg-to---topbar-field-color-foreground:focus, .f\:d-bgg-to---topbar-field-color-foreground.f\:d-bgg-to---topbar-field-color-foreground:focus-within, .fv\:d-bgg-to---topbar-field-color-foreground.fv\:d-bgg-to---topbar-field-color-foreground:focus-visible {
11462
+ --bgg-to-opacity: 100%;
11463
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--bgg-to-opacity)) !important;
11464
+ }
11465
+
11466
+ .d-bgg-to---topbar-field-color-foreground-hover.d-bgg-to---topbar-field-color-foreground-hover, .h\:d-bgg-to---topbar-field-color-foreground-hover.h\:d-bgg-to---topbar-field-color-foreground-hover:hover, .f\:d-bgg-to---topbar-field-color-foreground-hover.f\:d-bgg-to---topbar-field-color-foreground-hover:focus, .f\:d-bgg-to---topbar-field-color-foreground-hover.f\:d-bgg-to---topbar-field-color-foreground-hover:focus-within, .fv\:d-bgg-to---topbar-field-color-foreground-hover.fv\:d-bgg-to---topbar-field-color-foreground-hover:focus-visible {
11467
+ --bgg-to-opacity: 100%;
11468
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--bgg-to-opacity)) !important;
11469
+ }
11470
+
11471
+ .d-bgg-to---topbar-field-color-background.d-bgg-to---topbar-field-color-background, .h\:d-bgg-to---topbar-field-color-background.h\:d-bgg-to---topbar-field-color-background:hover, .f\:d-bgg-to---topbar-field-color-background.f\:d-bgg-to---topbar-field-color-background:focus, .f\:d-bgg-to---topbar-field-color-background.f\:d-bgg-to---topbar-field-color-background:focus-within, .fv\:d-bgg-to---topbar-field-color-background.fv\:d-bgg-to---topbar-field-color-background:focus-visible {
11472
+ --bgg-to-opacity: 100%;
11473
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--bgg-to-opacity)) !important;
11474
+ }
11475
+
11476
+ .d-bgg-to---topbar-field-color-background-hover.d-bgg-to---topbar-field-color-background-hover, .h\:d-bgg-to---topbar-field-color-background-hover.h\:d-bgg-to---topbar-field-color-background-hover:hover, .f\:d-bgg-to---topbar-field-color-background-hover.f\:d-bgg-to---topbar-field-color-background-hover:focus, .f\:d-bgg-to---topbar-field-color-background-hover.f\:d-bgg-to---topbar-field-color-background-hover:focus-within, .fv\:d-bgg-to---topbar-field-color-background-hover.fv\:d-bgg-to---topbar-field-color-background-hover:focus-visible {
11477
+ --bgg-to-opacity: 100%;
11478
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--bgg-to-opacity)) !important;
11479
+ }
11480
+
11481
+ .d-bgg-to---topbar-field-color-border.d-bgg-to---topbar-field-color-border, .h\:d-bgg-to---topbar-field-color-border.h\:d-bgg-to---topbar-field-color-border:hover, .f\:d-bgg-to---topbar-field-color-border.f\:d-bgg-to---topbar-field-color-border:focus, .f\:d-bgg-to---topbar-field-color-border.f\:d-bgg-to---topbar-field-color-border:focus-within, .fv\:d-bgg-to---topbar-field-color-border.fv\:d-bgg-to---topbar-field-color-border:focus-visible {
11482
+ --bgg-to-opacity: 100%;
11483
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--bgg-to-opacity)) !important;
11484
+ }
11485
+
11486
+ .d-bgg-to---topbar-field-color-border-hover.d-bgg-to---topbar-field-color-border-hover, .h\:d-bgg-to---topbar-field-color-border-hover.h\:d-bgg-to---topbar-field-color-border-hover:hover, .f\:d-bgg-to---topbar-field-color-border-hover.f\:d-bgg-to---topbar-field-color-border-hover:focus, .f\:d-bgg-to---topbar-field-color-border-hover.f\:d-bgg-to---topbar-field-color-border-hover:focus-within, .fv\:d-bgg-to---topbar-field-color-border-hover.fv\:d-bgg-to---topbar-field-color-border-hover:focus-visible {
11487
+ --bgg-to-opacity: 100%;
11488
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--bgg-to-opacity)) !important;
11489
+ }
11490
+
11491
+ .d-bgg-to---topbar-field-color-border-active.d-bgg-to---topbar-field-color-border-active, .h\:d-bgg-to---topbar-field-color-border-active.h\:d-bgg-to---topbar-field-color-border-active:hover, .f\:d-bgg-to---topbar-field-color-border-active.f\:d-bgg-to---topbar-field-color-border-active:focus, .f\:d-bgg-to---topbar-field-color-border-active.f\:d-bgg-to---topbar-field-color-border-active:focus-within, .fv\:d-bgg-to---topbar-field-color-border-active.fv\:d-bgg-to---topbar-field-color-border-active:focus-visible {
11492
+ --bgg-to-opacity: 100%;
11493
+ --bgg-to: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--bgg-to-opacity)) !important;
11494
+ }
11495
+
11496
+ .d-bgg-to---topbar-button-color-foreground.d-bgg-to---topbar-button-color-foreground, .h\:d-bgg-to---topbar-button-color-foreground.h\:d-bgg-to---topbar-button-color-foreground:hover, .f\:d-bgg-to---topbar-button-color-foreground.f\:d-bgg-to---topbar-button-color-foreground:focus, .f\:d-bgg-to---topbar-button-color-foreground.f\:d-bgg-to---topbar-button-color-foreground:focus-within, .fv\:d-bgg-to---topbar-button-color-foreground.fv\:d-bgg-to---topbar-button-color-foreground:focus-visible {
11497
+ --bgg-to-opacity: 100%;
11498
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--bgg-to-opacity)) !important;
11499
+ }
11500
+
11501
+ .d-bgg-to---topbar-button-color-foreground-hover.d-bgg-to---topbar-button-color-foreground-hover, .h\:d-bgg-to---topbar-button-color-foreground-hover.h\:d-bgg-to---topbar-button-color-foreground-hover:hover, .f\:d-bgg-to---topbar-button-color-foreground-hover.f\:d-bgg-to---topbar-button-color-foreground-hover:focus, .f\:d-bgg-to---topbar-button-color-foreground-hover.f\:d-bgg-to---topbar-button-color-foreground-hover:focus-within, .fv\:d-bgg-to---topbar-button-color-foreground-hover.fv\:d-bgg-to---topbar-button-color-foreground-hover:focus-visible {
11502
+ --bgg-to-opacity: 100%;
11503
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--bgg-to-opacity)) !important;
11504
+ }
11505
+
11506
+ .d-bgg-to---topbar-button-color-background.d-bgg-to---topbar-button-color-background, .h\:d-bgg-to---topbar-button-color-background.h\:d-bgg-to---topbar-button-color-background:hover, .f\:d-bgg-to---topbar-button-color-background.f\:d-bgg-to---topbar-button-color-background:focus, .f\:d-bgg-to---topbar-button-color-background.f\:d-bgg-to---topbar-button-color-background:focus-within, .fv\:d-bgg-to---topbar-button-color-background.fv\:d-bgg-to---topbar-button-color-background:focus-visible {
11507
+ --bgg-to-opacity: 100%;
11508
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--bgg-to-opacity)) !important;
11509
+ }
11510
+
11511
+ .d-bgg-to---topbar-button-color-background-hover.d-bgg-to---topbar-button-color-background-hover, .h\:d-bgg-to---topbar-button-color-background-hover.h\:d-bgg-to---topbar-button-color-background-hover:hover, .f\:d-bgg-to---topbar-button-color-background-hover.f\:d-bgg-to---topbar-button-color-background-hover:focus, .f\:d-bgg-to---topbar-button-color-background-hover.f\:d-bgg-to---topbar-button-color-background-hover:focus-within, .fv\:d-bgg-to---topbar-button-color-background-hover.fv\:d-bgg-to---topbar-button-color-background-hover:focus-visible {
11512
+ --bgg-to-opacity: 100%;
11513
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--bgg-to-opacity)) !important;
11514
+ }
11515
+
11516
+ .d-bgg-to---topbar-button-color-background-active.d-bgg-to---topbar-button-color-background-active, .h\:d-bgg-to---topbar-button-color-background-active.h\:d-bgg-to---topbar-button-color-background-active:hover, .f\:d-bgg-to---topbar-button-color-background-active.f\:d-bgg-to---topbar-button-color-background-active:focus, .f\:d-bgg-to---topbar-button-color-background-active.f\:d-bgg-to---topbar-button-color-background-active:focus-within, .fv\:d-bgg-to---topbar-button-color-background-active.fv\:d-bgg-to---topbar-button-color-background-active:focus-visible {
11517
+ --bgg-to-opacity: 100%;
11518
+ --bgg-to: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--bgg-to-opacity)) !important;
11519
+ }
11520
+
11521
+ .d-bgg-to---topbar-profile-color-foreground.d-bgg-to---topbar-profile-color-foreground, .h\:d-bgg-to---topbar-profile-color-foreground.h\:d-bgg-to---topbar-profile-color-foreground:hover, .f\:d-bgg-to---topbar-profile-color-foreground.f\:d-bgg-to---topbar-profile-color-foreground:focus, .f\:d-bgg-to---topbar-profile-color-foreground.f\:d-bgg-to---topbar-profile-color-foreground:focus-within, .fv\:d-bgg-to---topbar-profile-color-foreground.fv\:d-bgg-to---topbar-profile-color-foreground:focus-visible {
11522
+ --bgg-to-opacity: 100%;
11523
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--bgg-to-opacity)) !important;
11524
+ }
11525
+
11526
+ .d-bgg-to---topbar-profile-color-foreground-inverted.d-bgg-to---topbar-profile-color-foreground-inverted, .h\:d-bgg-to---topbar-profile-color-foreground-inverted.h\:d-bgg-to---topbar-profile-color-foreground-inverted:hover, .f\:d-bgg-to---topbar-profile-color-foreground-inverted.f\:d-bgg-to---topbar-profile-color-foreground-inverted:focus, .f\:d-bgg-to---topbar-profile-color-foreground-inverted.f\:d-bgg-to---topbar-profile-color-foreground-inverted:focus-within, .fv\:d-bgg-to---topbar-profile-color-foreground-inverted.fv\:d-bgg-to---topbar-profile-color-foreground-inverted:focus-visible {
11527
+ --bgg-to-opacity: 100%;
11528
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--bgg-to-opacity)) !important;
11529
+ }
11530
+
11531
+ .d-bgg-to---topbar-profile-color-background.d-bgg-to---topbar-profile-color-background, .h\:d-bgg-to---topbar-profile-color-background.h\:d-bgg-to---topbar-profile-color-background:hover, .f\:d-bgg-to---topbar-profile-color-background.f\:d-bgg-to---topbar-profile-color-background:focus, .f\:d-bgg-to---topbar-profile-color-background.f\:d-bgg-to---topbar-profile-color-background:focus-within, .fv\:d-bgg-to---topbar-profile-color-background.fv\:d-bgg-to---topbar-profile-color-background:focus-visible {
11532
+ --bgg-to-opacity: 100%;
11533
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--bgg-to-opacity)) !important;
11534
+ }
11535
+
11536
+ .d-bgg-to---topbar-profile-color-background-inverted.d-bgg-to---topbar-profile-color-background-inverted, .h\:d-bgg-to---topbar-profile-color-background-inverted.h\:d-bgg-to---topbar-profile-color-background-inverted:hover, .f\:d-bgg-to---topbar-profile-color-background-inverted.f\:d-bgg-to---topbar-profile-color-background-inverted:focus, .f\:d-bgg-to---topbar-profile-color-background-inverted.f\:d-bgg-to---topbar-profile-color-background-inverted:focus-within, .fv\:d-bgg-to---topbar-profile-color-background-inverted.fv\:d-bgg-to---topbar-profile-color-background-inverted:focus-visible {
11537
+ --bgg-to-opacity: 100%;
11538
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--bgg-to-opacity)) !important;
11539
+ }
11540
+
11541
+ .d-bgg-to---topbar-profile-color-background-hover.d-bgg-to---topbar-profile-color-background-hover, .h\:d-bgg-to---topbar-profile-color-background-hover.h\:d-bgg-to---topbar-profile-color-background-hover:hover, .f\:d-bgg-to---topbar-profile-color-background-hover.f\:d-bgg-to---topbar-profile-color-background-hover:focus, .f\:d-bgg-to---topbar-profile-color-background-hover.f\:d-bgg-to---topbar-profile-color-background-hover:focus-within, .fv\:d-bgg-to---topbar-profile-color-background-hover.fv\:d-bgg-to---topbar-profile-color-background-hover:focus-visible {
11542
+ --bgg-to-opacity: 100%;
11543
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--bgg-to-opacity)) !important;
11544
+ }
11545
+
11546
+ .d-bgg-to---topbar-profile-color-background-active.d-bgg-to---topbar-profile-color-background-active, .h\:d-bgg-to---topbar-profile-color-background-active.h\:d-bgg-to---topbar-profile-color-background-active:hover, .f\:d-bgg-to---topbar-profile-color-background-active.f\:d-bgg-to---topbar-profile-color-background-active:focus, .f\:d-bgg-to---topbar-profile-color-background-active.f\:d-bgg-to---topbar-profile-color-background-active:focus-within, .fv\:d-bgg-to---topbar-profile-color-background-active.fv\:d-bgg-to---topbar-profile-color-background-active:focus-visible {
11547
+ --bgg-to-opacity: 100%;
11548
+ --bgg-to: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--bgg-to-opacity)) !important;
11549
+ }
11550
+
11551
+ .d-bgg-to---sidebar-color-foreground.d-bgg-to---sidebar-color-foreground, .h\:d-bgg-to---sidebar-color-foreground.h\:d-bgg-to---sidebar-color-foreground:hover, .f\:d-bgg-to---sidebar-color-foreground.f\:d-bgg-to---sidebar-color-foreground:focus, .f\:d-bgg-to---sidebar-color-foreground.f\:d-bgg-to---sidebar-color-foreground:focus-within, .fv\:d-bgg-to---sidebar-color-foreground.fv\:d-bgg-to---sidebar-color-foreground:focus-visible {
11552
+ --bgg-to-opacity: 100%;
11553
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--bgg-to-opacity)) !important;
11554
+ }
11555
+
11556
+ .d-bgg-to---sidebar-color-foreground-unread.d-bgg-to---sidebar-color-foreground-unread, .h\:d-bgg-to---sidebar-color-foreground-unread.h\:d-bgg-to---sidebar-color-foreground-unread:hover, .f\:d-bgg-to---sidebar-color-foreground-unread.f\:d-bgg-to---sidebar-color-foreground-unread:focus, .f\:d-bgg-to---sidebar-color-foreground-unread.f\:d-bgg-to---sidebar-color-foreground-unread:focus-within, .fv\:d-bgg-to---sidebar-color-foreground-unread.fv\:d-bgg-to---sidebar-color-foreground-unread:focus-visible {
11557
+ --bgg-to-opacity: 100%;
11558
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--bgg-to-opacity)) !important;
11559
+ }
11560
+
11561
+ .d-bgg-to---sidebar-color-background.d-bgg-to---sidebar-color-background, .h\:d-bgg-to---sidebar-color-background.h\:d-bgg-to---sidebar-color-background:hover, .f\:d-bgg-to---sidebar-color-background.f\:d-bgg-to---sidebar-color-background:focus, .f\:d-bgg-to---sidebar-color-background.f\:d-bgg-to---sidebar-color-background:focus-within, .fv\:d-bgg-to---sidebar-color-background.fv\:d-bgg-to---sidebar-color-background:focus-visible {
11562
+ --bgg-to-opacity: 100%;
11563
+ --bgg-to: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--bgg-to-opacity)) !important;
11564
+ }
11565
+
11566
+ .d-bgg-to---sidebar-icon-color-foreground.d-bgg-to---sidebar-icon-color-foreground, .h\:d-bgg-to---sidebar-icon-color-foreground.h\:d-bgg-to---sidebar-icon-color-foreground:hover, .f\:d-bgg-to---sidebar-icon-color-foreground.f\:d-bgg-to---sidebar-icon-color-foreground:focus, .f\:d-bgg-to---sidebar-icon-color-foreground.f\:d-bgg-to---sidebar-icon-color-foreground:focus-within, .fv\:d-bgg-to---sidebar-icon-color-foreground.fv\:d-bgg-to---sidebar-icon-color-foreground:focus-visible {
11567
+ --bgg-to-opacity: 100%;
11568
+ --bgg-to: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--bgg-to-opacity)) !important;
11569
+ }
11570
+
11571
+ .d-bgg-to---sidebar-status-color-foreground.d-bgg-to---sidebar-status-color-foreground, .h\:d-bgg-to---sidebar-status-color-foreground.h\:d-bgg-to---sidebar-status-color-foreground:hover, .f\:d-bgg-to---sidebar-status-color-foreground.f\:d-bgg-to---sidebar-status-color-foreground:focus, .f\:d-bgg-to---sidebar-status-color-foreground.f\:d-bgg-to---sidebar-status-color-foreground:focus-within, .fv\:d-bgg-to---sidebar-status-color-foreground.fv\:d-bgg-to---sidebar-status-color-foreground:focus-visible {
11572
+ --bgg-to-opacity: 100%;
11573
+ --bgg-to: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--bgg-to-opacity)) !important;
11574
+ }
11575
+
11576
+ .d-bgg-to---sidebar-row-color-background.d-bgg-to---sidebar-row-color-background, .h\:d-bgg-to---sidebar-row-color-background.h\:d-bgg-to---sidebar-row-color-background:hover, .f\:d-bgg-to---sidebar-row-color-background.f\:d-bgg-to---sidebar-row-color-background:focus, .f\:d-bgg-to---sidebar-row-color-background.f\:d-bgg-to---sidebar-row-color-background:focus-within, .fv\:d-bgg-to---sidebar-row-color-background.fv\:d-bgg-to---sidebar-row-color-background:focus-visible {
11577
+ --bgg-to-opacity: 100%;
11578
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--bgg-to-opacity)) !important;
11579
+ }
11580
+
11581
+ .d-bgg-to---sidebar-row-color-background-hover.d-bgg-to---sidebar-row-color-background-hover, .h\:d-bgg-to---sidebar-row-color-background-hover.h\:d-bgg-to---sidebar-row-color-background-hover:hover, .f\:d-bgg-to---sidebar-row-color-background-hover.f\:d-bgg-to---sidebar-row-color-background-hover:focus, .f\:d-bgg-to---sidebar-row-color-background-hover.f\:d-bgg-to---sidebar-row-color-background-hover:focus-within, .fv\:d-bgg-to---sidebar-row-color-background-hover.fv\:d-bgg-to---sidebar-row-color-background-hover:focus-visible {
11582
+ --bgg-to-opacity: 100%;
11583
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--bgg-to-opacity)) !important;
11584
+ }
11585
+
11586
+ .d-bgg-to---sidebar-row-color-background-active.d-bgg-to---sidebar-row-color-background-active, .h\:d-bgg-to---sidebar-row-color-background-active.h\:d-bgg-to---sidebar-row-color-background-active:hover, .f\:d-bgg-to---sidebar-row-color-background-active.f\:d-bgg-to---sidebar-row-color-background-active:focus, .f\:d-bgg-to---sidebar-row-color-background-active.f\:d-bgg-to---sidebar-row-color-background-active:focus-within, .fv\:d-bgg-to---sidebar-row-color-background-active.fv\:d-bgg-to---sidebar-row-color-background-active:focus-visible {
11587
+ --bgg-to-opacity: 100%;
11588
+ --bgg-to: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--bgg-to-opacity)) !important;
11589
+ }
11590
+
11591
+ .d-bgg-to---sidebar-selected-row-color-foreground.d-bgg-to---sidebar-selected-row-color-foreground, .h\:d-bgg-to---sidebar-selected-row-color-foreground.h\:d-bgg-to---sidebar-selected-row-color-foreground:hover, .f\:d-bgg-to---sidebar-selected-row-color-foreground.f\:d-bgg-to---sidebar-selected-row-color-foreground:focus, .f\:d-bgg-to---sidebar-selected-row-color-foreground.f\:d-bgg-to---sidebar-selected-row-color-foreground:focus-within, .fv\:d-bgg-to---sidebar-selected-row-color-foreground.fv\:d-bgg-to---sidebar-selected-row-color-foreground:focus-visible {
11592
+ --bgg-to-opacity: 100%;
11593
+ --bgg-to: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--bgg-to-opacity)) !important;
11594
+ }
11595
+
11596
+ .d-bgg-to---sidebar-selected-row-color-background.d-bgg-to---sidebar-selected-row-color-background, .h\:d-bgg-to---sidebar-selected-row-color-background.h\:d-bgg-to---sidebar-selected-row-color-background:hover, .f\:d-bgg-to---sidebar-selected-row-color-background.f\:d-bgg-to---sidebar-selected-row-color-background:focus, .f\:d-bgg-to---sidebar-selected-row-color-background.f\:d-bgg-to---sidebar-selected-row-color-background:focus-within, .fv\:d-bgg-to---sidebar-selected-row-color-background.fv\:d-bgg-to---sidebar-selected-row-color-background:focus-visible {
11597
+ --bgg-to-opacity: 100%;
11598
+ --bgg-to: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--bgg-to-opacity)) !important;
11599
+ }
11600
+
11601
+ .d-bgg-to---sidebar-section-color-foreground.d-bgg-to---sidebar-section-color-foreground, .h\:d-bgg-to---sidebar-section-color-foreground.h\:d-bgg-to---sidebar-section-color-foreground:hover, .f\:d-bgg-to---sidebar-section-color-foreground.f\:d-bgg-to---sidebar-section-color-foreground:focus, .f\:d-bgg-to---sidebar-section-color-foreground.f\:d-bgg-to---sidebar-section-color-foreground:focus-within, .fv\:d-bgg-to---sidebar-section-color-foreground.fv\:d-bgg-to---sidebar-section-color-foreground:focus-visible {
11602
+ --bgg-to-opacity: 100%;
11603
+ --bgg-to: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--bgg-to-opacity)) !important;
11604
+ }
11605
+
11606
+ .d-bgg-to---presence-color-background-available.d-bgg-to---presence-color-background-available, .h\:d-bgg-to---presence-color-background-available.h\:d-bgg-to---presence-color-background-available:hover, .f\:d-bgg-to---presence-color-background-available.f\:d-bgg-to---presence-color-background-available:focus, .f\:d-bgg-to---presence-color-background-available.f\:d-bgg-to---presence-color-background-available:focus-within, .fv\:d-bgg-to---presence-color-background-available.fv\:d-bgg-to---presence-color-background-available:focus-visible {
11607
+ --bgg-to-opacity: 100%;
11608
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--bgg-to-opacity)) !important;
11609
+ }
11610
+
11611
+ .d-bgg-to---presence-color-background-busy-unavailable.d-bgg-to---presence-color-background-busy-unavailable, .h\:d-bgg-to---presence-color-background-busy-unavailable.h\:d-bgg-to---presence-color-background-busy-unavailable:hover, .f\:d-bgg-to---presence-color-background-busy-unavailable.f\:d-bgg-to---presence-color-background-busy-unavailable:focus, .f\:d-bgg-to---presence-color-background-busy-unavailable.f\:d-bgg-to---presence-color-background-busy-unavailable:focus-within, .fv\:d-bgg-to---presence-color-background-busy-unavailable.fv\:d-bgg-to---presence-color-background-busy-unavailable:focus-visible {
11612
+ --bgg-to-opacity: 100%;
11613
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--bgg-to-opacity)) !important;
11614
+ }
11615
+
11616
+ .d-bgg-to---presence-color-background-busy.d-bgg-to---presence-color-background-busy, .h\:d-bgg-to---presence-color-background-busy.h\:d-bgg-to---presence-color-background-busy:hover, .f\:d-bgg-to---presence-color-background-busy.f\:d-bgg-to---presence-color-background-busy:focus, .f\:d-bgg-to---presence-color-background-busy.f\:d-bgg-to---presence-color-background-busy:focus-within, .fv\:d-bgg-to---presence-color-background-busy.fv\:d-bgg-to---presence-color-background-busy:focus-visible {
11617
+ --bgg-to-opacity: 100%;
11618
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--bgg-to-opacity)) !important;
11619
+ }
11620
+
11621
+ .d-bgg-to---presence-color-background-offline.d-bgg-to---presence-color-background-offline, .h\:d-bgg-to---presence-color-background-offline.h\:d-bgg-to---presence-color-background-offline:hover, .f\:d-bgg-to---presence-color-background-offline.f\:d-bgg-to---presence-color-background-offline:focus, .f\:d-bgg-to---presence-color-background-offline.f\:d-bgg-to---presence-color-background-offline:focus-within, .fv\:d-bgg-to---presence-color-background-offline.fv\:d-bgg-to---presence-color-background-offline:focus-visible {
11622
+ --bgg-to-opacity: 100%;
11623
+ --bgg-to: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--bgg-to-opacity)) !important;
11624
+ }
11625
+
11626
+ .d-bgg-to---mention-color-foreground.d-bgg-to---mention-color-foreground, .h\:d-bgg-to---mention-color-foreground.h\:d-bgg-to---mention-color-foreground:hover, .f\:d-bgg-to---mention-color-foreground.f\:d-bgg-to---mention-color-foreground:focus, .f\:d-bgg-to---mention-color-foreground.f\:d-bgg-to---mention-color-foreground:focus-within, .fv\:d-bgg-to---mention-color-foreground.fv\:d-bgg-to---mention-color-foreground:focus-visible {
11627
+ --bgg-to-opacity: 100%;
11628
+ --bgg-to: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--bgg-to-opacity)) !important;
11629
+ }
11630
+
11631
+ .d-bgg-to---mention-color-background.d-bgg-to---mention-color-background, .h\:d-bgg-to---mention-color-background.h\:d-bgg-to---mention-color-background:hover, .f\:d-bgg-to---mention-color-background.f\:d-bgg-to---mention-color-background:focus, .f\:d-bgg-to---mention-color-background.f\:d-bgg-to---mention-color-background:focus-within, .fv\:d-bgg-to---mention-color-background.fv\:d-bgg-to---mention-color-background:focus-visible {
11632
+ --bgg-to-opacity: 100%;
11633
+ --bgg-to: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--bgg-to-opacity)) !important;
11634
+ }
11635
+
10526
11636
  .d-fco100, .h\:d-fco100:hover, .f\:d-fco100:focus, .f\:d-fco100:focus-within, .fv\:d-fco100:focus-visible {
10527
11637
  --fco: 100% !important;
10528
11638
  }
@@ -15062,6 +16172,196 @@ body {
15062
16172
  --dt-color-neutral-black-l: 0%;
15063
16173
  --dt-color-neutral-black-hsl: var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l);
15064
16174
  --dt-color-neutral-black-hsla: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--alpha, 100%));
16175
+ --dt-theme-topbar-field-color-background-hover-h: 0;
16176
+ --dt-theme-topbar-field-color-background-hover-s: 0%;
16177
+ --dt-theme-topbar-field-color-background-hover-l: 0%;
16178
+ --dt-theme-topbar-field-color-background-hover-hsl: var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l);
16179
+ --dt-theme-topbar-field-color-background-hover-hsla: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--alpha, 100%));
16180
+ --dt-theme-topbar-field-color-foreground-h: 0;
16181
+ --dt-theme-topbar-field-color-foreground-s: 0%;
16182
+ --dt-theme-topbar-field-color-foreground-l: 90.19607843137256%;
16183
+ --dt-theme-topbar-field-color-foreground-hsl: var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l);
16184
+ --dt-theme-topbar-field-color-foreground-hsla: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--alpha, 100%));
16185
+ --dt-theme-topbar-field-color-foreground-hover-h: 0;
16186
+ --dt-theme-topbar-field-color-foreground-hover-s: 0%;
16187
+ --dt-theme-topbar-field-color-foreground-hover-l: 90.19607843137256%;
16188
+ --dt-theme-topbar-field-color-foreground-hover-hsl: var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l);
16189
+ --dt-theme-topbar-field-color-foreground-hover-hsla: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--alpha, 100%));
16190
+ --dt-theme-topbar-field-color-background-h: 0;
16191
+ --dt-theme-topbar-field-color-background-s: 0%;
16192
+ --dt-theme-topbar-field-color-background-l: 90.19607843137256%;
16193
+ --dt-theme-topbar-field-color-background-hsl: var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l);
16194
+ --dt-theme-topbar-field-color-background-hsla: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--alpha, 100%));
16195
+ --dt-theme-topbar-field-color-border-h: 0;
16196
+ --dt-theme-topbar-field-color-border-s: 0%;
16197
+ --dt-theme-topbar-field-color-border-l: 90.19607843137256%;
16198
+ --dt-theme-topbar-field-color-border-hsl: var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l);
16199
+ --dt-theme-topbar-field-color-border-hsla: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--alpha, 100%));
16200
+ --dt-theme-topbar-field-color-border-hover-h: 0;
16201
+ --dt-theme-topbar-field-color-border-hover-s: 0%;
16202
+ --dt-theme-topbar-field-color-border-hover-l: 90.19607843137256%;
16203
+ --dt-theme-topbar-field-color-border-hover-hsl: var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l);
16204
+ --dt-theme-topbar-field-color-border-hover-hsla: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--alpha, 100%));
16205
+ --dt-theme-topbar-field-color-border-active-h: 0;
16206
+ --dt-theme-topbar-field-color-border-active-s: 0%;
16207
+ --dt-theme-topbar-field-color-border-active-l: 90.19607843137256%;
16208
+ --dt-theme-topbar-field-color-border-active-hsl: var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l);
16209
+ --dt-theme-topbar-field-color-border-active-hsla: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--alpha, 100%));
16210
+ --dt-theme-topbar-button-color-background-hover-h: 0;
16211
+ --dt-theme-topbar-button-color-background-hover-s: 0%;
16212
+ --dt-theme-topbar-button-color-background-hover-l: 90.19607843137256%;
16213
+ --dt-theme-topbar-button-color-background-hover-hsl: var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l);
16214
+ --dt-theme-topbar-button-color-background-hover-hsla: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--alpha, 100%));
16215
+ --dt-theme-topbar-button-color-foreground-h: 0;
16216
+ --dt-theme-topbar-button-color-foreground-s: 0%;
16217
+ --dt-theme-topbar-button-color-foreground-l: 90.19607843137256%;
16218
+ --dt-theme-topbar-button-color-foreground-hsl: var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l);
16219
+ --dt-theme-topbar-button-color-foreground-hsla: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--alpha, 100%));
16220
+ --dt-theme-topbar-button-color-foreground-hover-h: 0;
16221
+ --dt-theme-topbar-button-color-foreground-hover-s: 0%;
16222
+ --dt-theme-topbar-button-color-foreground-hover-l: 90.19607843137256%;
16223
+ --dt-theme-topbar-button-color-foreground-hover-hsl: var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l);
16224
+ --dt-theme-topbar-button-color-foreground-hover-hsla: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--alpha, 100%));
16225
+ --dt-theme-topbar-button-color-background-h: 0;
16226
+ --dt-theme-topbar-button-color-background-s: 0%;
16227
+ --dt-theme-topbar-button-color-background-l: 90.19607843137256%;
16228
+ --dt-theme-topbar-button-color-background-hsl: var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l);
16229
+ --dt-theme-topbar-button-color-background-hsla: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--alpha, 100%));
16230
+ --dt-theme-topbar-button-color-background-active-h: 0;
16231
+ --dt-theme-topbar-button-color-background-active-s: 0%;
16232
+ --dt-theme-topbar-button-color-background-active-l: 90.19607843137256%;
16233
+ --dt-theme-topbar-button-color-background-active-hsl: var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l);
16234
+ --dt-theme-topbar-button-color-background-active-hsla: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--alpha, 100%));
16235
+ --dt-theme-topbar-color-foreground-h: 0;
16236
+ --dt-theme-topbar-color-foreground-s: 0%;
16237
+ --dt-theme-topbar-color-foreground-l: 90.19607843137256%;
16238
+ --dt-theme-topbar-color-foreground-hsl: var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l);
16239
+ --dt-theme-topbar-color-foreground-hsla: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--alpha, 100%));
16240
+ --dt-theme-topbar-color-background-h: 0;
16241
+ --dt-theme-topbar-color-background-s: 0%;
16242
+ --dt-theme-topbar-color-background-l: 14.901960784313726%;
16243
+ --dt-theme-topbar-color-background-hsl: var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l);
16244
+ --dt-theme-topbar-color-background-hsla: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--alpha, 100%));
16245
+ --dt-theme-topbar-profile-color-foreground-h: 0;
16246
+ --dt-theme-topbar-profile-color-foreground-s: 0%;
16247
+ --dt-theme-topbar-profile-color-foreground-l: 90.19607843137256%;
16248
+ --dt-theme-topbar-profile-color-foreground-hsl: var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l);
16249
+ --dt-theme-topbar-profile-color-foreground-hsla: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--alpha, 100%));
16250
+ --dt-theme-topbar-profile-color-foreground-inverted-h: 0;
16251
+ --dt-theme-topbar-profile-color-foreground-inverted-s: 0%;
16252
+ --dt-theme-topbar-profile-color-foreground-inverted-l: 0%;
16253
+ --dt-theme-topbar-profile-color-foreground-inverted-hsl: var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l);
16254
+ --dt-theme-topbar-profile-color-foreground-inverted-hsla: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--alpha, 100%));
16255
+ --dt-theme-topbar-profile-color-background-h: 0;
16256
+ --dt-theme-topbar-profile-color-background-s: 0%;
16257
+ --dt-theme-topbar-profile-color-background-l: 90.19607843137256%;
16258
+ --dt-theme-topbar-profile-color-background-hsl: var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l);
16259
+ --dt-theme-topbar-profile-color-background-hsla: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--alpha, 100%));
16260
+ --dt-theme-topbar-profile-color-background-inverted-h: 0;
16261
+ --dt-theme-topbar-profile-color-background-inverted-s: 0%;
16262
+ --dt-theme-topbar-profile-color-background-inverted-l: 90.19607843137256%;
16263
+ --dt-theme-topbar-profile-color-background-inverted-hsl: var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l);
16264
+ --dt-theme-topbar-profile-color-background-inverted-hsla: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--alpha, 100%));
16265
+ --dt-theme-topbar-profile-color-background-hover-h: 0;
16266
+ --dt-theme-topbar-profile-color-background-hover-s: 0%;
16267
+ --dt-theme-topbar-profile-color-background-hover-l: 90.19607843137256%;
16268
+ --dt-theme-topbar-profile-color-background-hover-hsl: var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l);
16269
+ --dt-theme-topbar-profile-color-background-hover-hsla: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--alpha, 100%));
16270
+ --dt-theme-topbar-profile-color-background-active-h: 0;
16271
+ --dt-theme-topbar-profile-color-background-active-s: 0%;
16272
+ --dt-theme-topbar-profile-color-background-active-l: 90.19607843137256%;
16273
+ --dt-theme-topbar-profile-color-background-active-hsl: var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l);
16274
+ --dt-theme-topbar-profile-color-background-active-hsla: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--alpha, 100%));
16275
+ --dt-theme-sidebar-row-color-background-hover-h: 0;
16276
+ --dt-theme-sidebar-row-color-background-hover-s: 0%;
16277
+ --dt-theme-sidebar-row-color-background-hover-l: 90.19607843137256%;
16278
+ --dt-theme-sidebar-row-color-background-hover-hsl: var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l);
16279
+ --dt-theme-sidebar-row-color-background-hover-hsla: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--alpha, 100%));
16280
+ --dt-theme-sidebar-row-color-background-active-h: 0;
16281
+ --dt-theme-sidebar-row-color-background-active-s: 0%;
16282
+ --dt-theme-sidebar-row-color-background-active-l: 90.19607843137256%;
16283
+ --dt-theme-sidebar-row-color-background-active-hsl: var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l);
16284
+ --dt-theme-sidebar-row-color-background-active-hsla: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--alpha, 100%));
16285
+ --dt-theme-sidebar-row-color-background-h: 0;
16286
+ --dt-theme-sidebar-row-color-background-s: 0%;
16287
+ --dt-theme-sidebar-row-color-background-l: 90.19607843137256%;
16288
+ --dt-theme-sidebar-row-color-background-hsl: var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l);
16289
+ --dt-theme-sidebar-row-color-background-hsla: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--alpha, 100%));
16290
+ --dt-theme-sidebar-selected-row-color-background-h: 0;
16291
+ --dt-theme-sidebar-selected-row-color-background-s: 0%;
16292
+ --dt-theme-sidebar-selected-row-color-background-l: 90.19607843137256%;
16293
+ --dt-theme-sidebar-selected-row-color-background-hsl: var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l);
16294
+ --dt-theme-sidebar-selected-row-color-background-hsla: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--alpha, 100%));
16295
+ --dt-theme-sidebar-selected-row-color-foreground-h: 0;
16296
+ --dt-theme-sidebar-selected-row-color-foreground-s: 0%;
16297
+ --dt-theme-sidebar-selected-row-color-foreground-l: 90.19607843137256%;
16298
+ --dt-theme-sidebar-selected-row-color-foreground-hsl: var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l);
16299
+ --dt-theme-sidebar-selected-row-color-foreground-hsla: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--alpha, 100%));
16300
+ --dt-theme-sidebar-color-foreground-h: 0;
16301
+ --dt-theme-sidebar-color-foreground-s: 0%;
16302
+ --dt-theme-sidebar-color-foreground-l: 76.07843137254902%;
16303
+ --dt-theme-sidebar-color-foreground-hsl: var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l);
16304
+ --dt-theme-sidebar-color-foreground-hsla: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--alpha, 100%));
16305
+ --dt-theme-sidebar-color-foreground-unread-h: 0;
16306
+ --dt-theme-sidebar-color-foreground-unread-s: 0%;
16307
+ --dt-theme-sidebar-color-foreground-unread-l: 90.19607843137256%;
16308
+ --dt-theme-sidebar-color-foreground-unread-hsl: var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l);
16309
+ --dt-theme-sidebar-color-foreground-unread-hsla: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--alpha, 100%));
16310
+ --dt-theme-sidebar-color-background-h: 0;
16311
+ --dt-theme-sidebar-color-background-s: 0%;
16312
+ --dt-theme-sidebar-color-background-l: 14.901960784313726%;
16313
+ --dt-theme-sidebar-color-background-hsl: var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l);
16314
+ --dt-theme-sidebar-color-background-hsla: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--alpha, 100%));
16315
+ --dt-theme-sidebar-icon-color-foreground-h: 0;
16316
+ --dt-theme-sidebar-icon-color-foreground-s: 0%;
16317
+ --dt-theme-sidebar-icon-color-foreground-l: 76.07843137254902%;
16318
+ --dt-theme-sidebar-icon-color-foreground-hsl: var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l);
16319
+ --dt-theme-sidebar-icon-color-foreground-hsla: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--alpha, 100%));
16320
+ --dt-theme-sidebar-status-color-foreground-h: 0;
16321
+ --dt-theme-sidebar-status-color-foreground-s: 0%;
16322
+ --dt-theme-sidebar-status-color-foreground-l: 66.66666666666666%;
16323
+ --dt-theme-sidebar-status-color-foreground-hsl: var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l);
16324
+ --dt-theme-sidebar-status-color-foreground-hsla: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--alpha, 100%));
16325
+ --dt-theme-sidebar-section-color-foreground-h: 0;
16326
+ --dt-theme-sidebar-section-color-foreground-s: 0%;
16327
+ --dt-theme-sidebar-section-color-foreground-l: 66.66666666666666%;
16328
+ --dt-theme-sidebar-section-color-foreground-hsl: var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l);
16329
+ --dt-theme-sidebar-section-color-foreground-hsla: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--alpha, 100%));
16330
+ --dt-theme-color-base-h: 0;
16331
+ --dt-theme-color-base-s: 0%;
16332
+ --dt-theme-color-base-l: 90.19607843137256%;
16333
+ --dt-theme-color-base-hsl: var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l);
16334
+ --dt-theme-color-base-hsla: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--alpha, 100%));
16335
+ --dt-theme-presence-color-background-available-h: 111.52173913043478;
16336
+ --dt-theme-presence-color-background-available-s: 100%;
16337
+ --dt-theme-presence-color-background-available-l: 81.96078431372548%;
16338
+ --dt-theme-presence-color-background-available-hsl: var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l);
16339
+ --dt-theme-presence-color-background-available-hsla: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--alpha, 100%));
16340
+ --dt-theme-presence-color-background-busy-unavailable-h: 0;
16341
+ --dt-theme-presence-color-background-busy-unavailable-s: 88.79999999999998%;
16342
+ --dt-theme-presence-color-background-busy-unavailable-l: 49.01960784313726%;
16343
+ --dt-theme-presence-color-background-busy-unavailable-hsl: var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l);
16344
+ --dt-theme-presence-color-background-busy-unavailable-hsla: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--alpha, 100%));
16345
+ --dt-theme-presence-color-background-busy-h: 35.80645161290322;
16346
+ --dt-theme-presence-color-background-busy-s: 91.17647058823533%;
16347
+ --dt-theme-presence-color-background-busy-l: 60%;
16348
+ --dt-theme-presence-color-background-busy-hsl: var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l);
16349
+ --dt-theme-presence-color-background-busy-hsla: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--alpha, 100%));
16350
+ --dt-theme-presence-color-background-offline-h: 0;
16351
+ --dt-theme-presence-color-background-offline-s: 0%;
16352
+ --dt-theme-presence-color-background-offline-l: 100%;
16353
+ --dt-theme-presence-color-background-offline-hsl: var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l);
16354
+ --dt-theme-presence-color-background-offline-hsla: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--alpha, 100%));
16355
+ --dt-theme-mention-color-foreground-h: 0;
16356
+ --dt-theme-mention-color-foreground-s: 0%;
16357
+ --dt-theme-mention-color-foreground-l: 100%;
16358
+ --dt-theme-mention-color-foreground-hsl: var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l);
16359
+ --dt-theme-mention-color-foreground-hsla: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--alpha, 100%));
16360
+ --dt-theme-mention-color-background-h: 254.5664739884393;
16361
+ --dt-theme-mention-color-background-s: 100%;
16362
+ --dt-theme-mention-color-background-l: 66.07843137254902%;
16363
+ --dt-theme-mention-color-background-hsl: var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l);
16364
+ --dt-theme-mention-color-background-hsla: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--alpha, 100%));
15065
16365
  color-scheme: dark;
15066
16366
  --dt-shadow-small: var(--dt-shadow-small-0-x) var(--dt-shadow-small-0-y) var(--dt-shadow-small-0-blur) var(--dt-shadow-small-0-spread) var(--dt-shadow-small-0-color), var(--dt-shadow-small-1-x) var(--dt-shadow-small-1-y) var(--dt-shadow-small-1-blur) var(--dt-shadow-small-1-spread) var(--dt-shadow-small-1-color), var(--dt-shadow-small-2-x) var(--dt-shadow-small-2-y) var(--dt-shadow-small-2-blur) var(--dt-shadow-small-2-spread) var(--dt-shadow-small-2-color), var(--dt-shadow-small-3-x) var(--dt-shadow-small-3-y) var(--dt-shadow-small-3-blur) var(--dt-shadow-small-3-spread) var(--dt-shadow-small-3-color), var(--dt-shadow-small-4-x) var(--dt-shadow-small-4-y) var(--dt-shadow-small-4-blur) var(--dt-shadow-small-4-spread) var(--dt-shadow-small-4-color);
15067
16367
  --dt-shadow-medium: var(--dt-shadow-medium-0-x) var(--dt-shadow-medium-0-y) var(--dt-shadow-medium-0-blur) var(--dt-shadow-medium-0-spread) var(--dt-shadow-medium-0-color), var(--dt-shadow-medium-1-x) var(--dt-shadow-medium-1-y) var(--dt-shadow-medium-1-blur) var(--dt-shadow-medium-1-spread) var(--dt-shadow-medium-1-color), var(--dt-shadow-medium-2-x) var(--dt-shadow-medium-2-y) var(--dt-shadow-medium-2-blur) var(--dt-shadow-medium-2-spread) var(--dt-shadow-medium-2-color), var(--dt-shadow-medium-3-x) var(--dt-shadow-medium-3-y) var(--dt-shadow-medium-3-blur) var(--dt-shadow-medium-3-spread) var(--dt-shadow-medium-3-color), var(--dt-shadow-medium-4-x) var(--dt-shadow-medium-4-y) var(--dt-shadow-medium-4-blur) var(--dt-shadow-medium-4-spread) var(--dt-shadow-medium-4-color);
@@ -15308,6 +16608,196 @@ body {
15308
16608
  --dt-color-tan-500-l: 7.0588235294117645%;
15309
16609
  --dt-color-tan-500-hsl: var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l);
15310
16610
  --dt-color-tan-500-hsla: hsla(var(--dt-color-tan-500-h) var(--dt-color-tan-500-s) var(--dt-color-tan-500-l) / var(--alpha, 100%));
16611
+ --dt-theme-color-base-h: 0;
16612
+ --dt-theme-color-base-s: 0%;
16613
+ --dt-theme-color-base-l: 0%;
16614
+ --dt-theme-color-base-hsl: var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l);
16615
+ --dt-theme-color-base-hsla: hsla(var(--dt-theme-color-base-h) var(--dt-theme-color-base-s) var(--dt-theme-color-base-l) / var(--alpha, 100%));
16616
+ --dt-theme-topbar-color-foreground-h: 0;
16617
+ --dt-theme-topbar-color-foreground-s: 0%;
16618
+ --dt-theme-topbar-color-foreground-l: 0%;
16619
+ --dt-theme-topbar-color-foreground-hsl: var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l);
16620
+ --dt-theme-topbar-color-foreground-hsla: hsla(var(--dt-theme-topbar-color-foreground-h) var(--dt-theme-topbar-color-foreground-s) var(--dt-theme-topbar-color-foreground-l) / var(--alpha, 100%));
16621
+ --dt-theme-topbar-color-background-h: 0;
16622
+ --dt-theme-topbar-color-background-s: 0%;
16623
+ --dt-theme-topbar-color-background-l: 97.6470588235294%;
16624
+ --dt-theme-topbar-color-background-hsl: var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l);
16625
+ --dt-theme-topbar-color-background-hsla: hsla(var(--dt-theme-topbar-color-background-h) var(--dt-theme-topbar-color-background-s) var(--dt-theme-topbar-color-background-l) / var(--alpha, 100%));
16626
+ --dt-theme-topbar-field-color-foreground-h: 0;
16627
+ --dt-theme-topbar-field-color-foreground-s: 0%;
16628
+ --dt-theme-topbar-field-color-foreground-l: 0%;
16629
+ --dt-theme-topbar-field-color-foreground-hsl: var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l);
16630
+ --dt-theme-topbar-field-color-foreground-hsla: hsla(var(--dt-theme-topbar-field-color-foreground-h) var(--dt-theme-topbar-field-color-foreground-s) var(--dt-theme-topbar-field-color-foreground-l) / var(--alpha, 100%));
16631
+ --dt-theme-topbar-field-color-foreground-hover-h: 0;
16632
+ --dt-theme-topbar-field-color-foreground-hover-s: 0%;
16633
+ --dt-theme-topbar-field-color-foreground-hover-l: 0%;
16634
+ --dt-theme-topbar-field-color-foreground-hover-hsl: var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l);
16635
+ --dt-theme-topbar-field-color-foreground-hover-hsla: hsla(var(--dt-theme-topbar-field-color-foreground-hover-h) var(--dt-theme-topbar-field-color-foreground-hover-s) var(--dt-theme-topbar-field-color-foreground-hover-l) / var(--alpha, 100%));
16636
+ --dt-theme-topbar-field-color-background-h: 0;
16637
+ --dt-theme-topbar-field-color-background-s: 0%;
16638
+ --dt-theme-topbar-field-color-background-l: 0%;
16639
+ --dt-theme-topbar-field-color-background-hsl: var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l);
16640
+ --dt-theme-topbar-field-color-background-hsla: hsla(var(--dt-theme-topbar-field-color-background-h) var(--dt-theme-topbar-field-color-background-s) var(--dt-theme-topbar-field-color-background-l) / var(--alpha, 100%));
16641
+ --dt-theme-topbar-field-color-background-hover-h: 0;
16642
+ --dt-theme-topbar-field-color-background-hover-s: 0%;
16643
+ --dt-theme-topbar-field-color-background-hover-l: 100%;
16644
+ --dt-theme-topbar-field-color-background-hover-hsl: var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l);
16645
+ --dt-theme-topbar-field-color-background-hover-hsla: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--alpha, 100%));
16646
+ --dt-theme-topbar-field-color-border-h: 0;
16647
+ --dt-theme-topbar-field-color-border-s: 0%;
16648
+ --dt-theme-topbar-field-color-border-l: 0%;
16649
+ --dt-theme-topbar-field-color-border-hsl: var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l);
16650
+ --dt-theme-topbar-field-color-border-hsla: hsla(var(--dt-theme-topbar-field-color-border-h) var(--dt-theme-topbar-field-color-border-s) var(--dt-theme-topbar-field-color-border-l) / var(--alpha, 100%));
16651
+ --dt-theme-topbar-field-color-border-hover-h: 0;
16652
+ --dt-theme-topbar-field-color-border-hover-s: 0%;
16653
+ --dt-theme-topbar-field-color-border-hover-l: 0%;
16654
+ --dt-theme-topbar-field-color-border-hover-hsl: var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l);
16655
+ --dt-theme-topbar-field-color-border-hover-hsla: hsla(var(--dt-theme-topbar-field-color-border-hover-h) var(--dt-theme-topbar-field-color-border-hover-s) var(--dt-theme-topbar-field-color-border-hover-l) / var(--alpha, 100%));
16656
+ --dt-theme-topbar-field-color-border-active-h: 0;
16657
+ --dt-theme-topbar-field-color-border-active-s: 0%;
16658
+ --dt-theme-topbar-field-color-border-active-l: 0%;
16659
+ --dt-theme-topbar-field-color-border-active-hsl: var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l);
16660
+ --dt-theme-topbar-field-color-border-active-hsla: hsla(var(--dt-theme-topbar-field-color-border-active-h) var(--dt-theme-topbar-field-color-border-active-s) var(--dt-theme-topbar-field-color-border-active-l) / var(--alpha, 100%));
16661
+ --dt-theme-topbar-button-color-foreground-h: 0;
16662
+ --dt-theme-topbar-button-color-foreground-s: 0%;
16663
+ --dt-theme-topbar-button-color-foreground-l: 0%;
16664
+ --dt-theme-topbar-button-color-foreground-hsl: var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l);
16665
+ --dt-theme-topbar-button-color-foreground-hsla: hsla(var(--dt-theme-topbar-button-color-foreground-h) var(--dt-theme-topbar-button-color-foreground-s) var(--dt-theme-topbar-button-color-foreground-l) / var(--alpha, 100%));
16666
+ --dt-theme-topbar-button-color-foreground-hover-h: 0;
16667
+ --dt-theme-topbar-button-color-foreground-hover-s: 0%;
16668
+ --dt-theme-topbar-button-color-foreground-hover-l: 0%;
16669
+ --dt-theme-topbar-button-color-foreground-hover-hsl: var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l);
16670
+ --dt-theme-topbar-button-color-foreground-hover-hsla: hsla(var(--dt-theme-topbar-button-color-foreground-hover-h) var(--dt-theme-topbar-button-color-foreground-hover-s) var(--dt-theme-topbar-button-color-foreground-hover-l) / var(--alpha, 100%));
16671
+ --dt-theme-topbar-button-color-background-h: 0;
16672
+ --dt-theme-topbar-button-color-background-s: 0%;
16673
+ --dt-theme-topbar-button-color-background-l: 0%;
16674
+ --dt-theme-topbar-button-color-background-hsl: var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l);
16675
+ --dt-theme-topbar-button-color-background-hsla: hsla(var(--dt-theme-topbar-button-color-background-h) var(--dt-theme-topbar-button-color-background-s) var(--dt-theme-topbar-button-color-background-l) / var(--alpha, 100%));
16676
+ --dt-theme-topbar-button-color-background-hover-h: 0;
16677
+ --dt-theme-topbar-button-color-background-hover-s: 0%;
16678
+ --dt-theme-topbar-button-color-background-hover-l: 0%;
16679
+ --dt-theme-topbar-button-color-background-hover-hsl: var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l);
16680
+ --dt-theme-topbar-button-color-background-hover-hsla: hsla(var(--dt-theme-topbar-button-color-background-hover-h) var(--dt-theme-topbar-button-color-background-hover-s) var(--dt-theme-topbar-button-color-background-hover-l) / var(--alpha, 100%));
16681
+ --dt-theme-topbar-button-color-background-active-h: 0;
16682
+ --dt-theme-topbar-button-color-background-active-s: 0%;
16683
+ --dt-theme-topbar-button-color-background-active-l: 0%;
16684
+ --dt-theme-topbar-button-color-background-active-hsl: var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l);
16685
+ --dt-theme-topbar-button-color-background-active-hsla: hsla(var(--dt-theme-topbar-button-color-background-active-h) var(--dt-theme-topbar-button-color-background-active-s) var(--dt-theme-topbar-button-color-background-active-l) / var(--alpha, 100%));
16686
+ --dt-theme-topbar-profile-color-foreground-h: 0;
16687
+ --dt-theme-topbar-profile-color-foreground-s: 0%;
16688
+ --dt-theme-topbar-profile-color-foreground-l: 0%;
16689
+ --dt-theme-topbar-profile-color-foreground-hsl: var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l);
16690
+ --dt-theme-topbar-profile-color-foreground-hsla: hsla(var(--dt-theme-topbar-profile-color-foreground-h) var(--dt-theme-topbar-profile-color-foreground-s) var(--dt-theme-topbar-profile-color-foreground-l) / var(--alpha, 100%));
16691
+ --dt-theme-topbar-profile-color-foreground-inverted-h: 0;
16692
+ --dt-theme-topbar-profile-color-foreground-inverted-s: 0%;
16693
+ --dt-theme-topbar-profile-color-foreground-inverted-l: 100%;
16694
+ --dt-theme-topbar-profile-color-foreground-inverted-hsl: var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l);
16695
+ --dt-theme-topbar-profile-color-foreground-inverted-hsla: hsla(var(--dt-theme-topbar-profile-color-foreground-inverted-h) var(--dt-theme-topbar-profile-color-foreground-inverted-s) var(--dt-theme-topbar-profile-color-foreground-inverted-l) / var(--alpha, 100%));
16696
+ --dt-theme-topbar-profile-color-background-h: 0;
16697
+ --dt-theme-topbar-profile-color-background-s: 0%;
16698
+ --dt-theme-topbar-profile-color-background-l: 0%;
16699
+ --dt-theme-topbar-profile-color-background-hsl: var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l);
16700
+ --dt-theme-topbar-profile-color-background-hsla: hsla(var(--dt-theme-topbar-profile-color-background-h) var(--dt-theme-topbar-profile-color-background-s) var(--dt-theme-topbar-profile-color-background-l) / var(--alpha, 100%));
16701
+ --dt-theme-topbar-profile-color-background-inverted-h: 0;
16702
+ --dt-theme-topbar-profile-color-background-inverted-s: 0%;
16703
+ --dt-theme-topbar-profile-color-background-inverted-l: 0%;
16704
+ --dt-theme-topbar-profile-color-background-inverted-hsl: var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l);
16705
+ --dt-theme-topbar-profile-color-background-inverted-hsla: hsla(var(--dt-theme-topbar-profile-color-background-inverted-h) var(--dt-theme-topbar-profile-color-background-inverted-s) var(--dt-theme-topbar-profile-color-background-inverted-l) / var(--alpha, 100%));
16706
+ --dt-theme-topbar-profile-color-background-hover-h: 0;
16707
+ --dt-theme-topbar-profile-color-background-hover-s: 0%;
16708
+ --dt-theme-topbar-profile-color-background-hover-l: 0%;
16709
+ --dt-theme-topbar-profile-color-background-hover-hsl: var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l);
16710
+ --dt-theme-topbar-profile-color-background-hover-hsla: hsla(var(--dt-theme-topbar-profile-color-background-hover-h) var(--dt-theme-topbar-profile-color-background-hover-s) var(--dt-theme-topbar-profile-color-background-hover-l) / var(--alpha, 100%));
16711
+ --dt-theme-topbar-profile-color-background-active-h: 0;
16712
+ --dt-theme-topbar-profile-color-background-active-s: 0%;
16713
+ --dt-theme-topbar-profile-color-background-active-l: 0%;
16714
+ --dt-theme-topbar-profile-color-background-active-hsl: var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l);
16715
+ --dt-theme-topbar-profile-color-background-active-hsla: hsla(var(--dt-theme-topbar-profile-color-background-active-h) var(--dt-theme-topbar-profile-color-background-active-s) var(--dt-theme-topbar-profile-color-background-active-l) / var(--alpha, 100%));
16716
+ --dt-theme-sidebar-color-foreground-h: 0;
16717
+ --dt-theme-sidebar-color-foreground-s: 0%;
16718
+ --dt-theme-sidebar-color-foreground-l: 22.745098039215687%;
16719
+ --dt-theme-sidebar-color-foreground-hsl: var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l);
16720
+ --dt-theme-sidebar-color-foreground-hsla: hsla(var(--dt-theme-sidebar-color-foreground-h) var(--dt-theme-sidebar-color-foreground-s) var(--dt-theme-sidebar-color-foreground-l) / var(--alpha, 100%));
16721
+ --dt-theme-sidebar-color-foreground-unread-h: 0;
16722
+ --dt-theme-sidebar-color-foreground-unread-s: 0%;
16723
+ --dt-theme-sidebar-color-foreground-unread-l: 0%;
16724
+ --dt-theme-sidebar-color-foreground-unread-hsl: var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l);
16725
+ --dt-theme-sidebar-color-foreground-unread-hsla: hsla(var(--dt-theme-sidebar-color-foreground-unread-h) var(--dt-theme-sidebar-color-foreground-unread-s) var(--dt-theme-sidebar-color-foreground-unread-l) / var(--alpha, 100%));
16726
+ --dt-theme-sidebar-color-background-h: 0;
16727
+ --dt-theme-sidebar-color-background-s: 0%;
16728
+ --dt-theme-sidebar-color-background-l: 97.6470588235294%;
16729
+ --dt-theme-sidebar-color-background-hsl: var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l);
16730
+ --dt-theme-sidebar-color-background-hsla: hsla(var(--dt-theme-sidebar-color-background-h) var(--dt-theme-sidebar-color-background-s) var(--dt-theme-sidebar-color-background-l) / var(--alpha, 100%));
16731
+ --dt-theme-sidebar-icon-color-foreground-h: 0;
16732
+ --dt-theme-sidebar-icon-color-foreground-s: 0%;
16733
+ --dt-theme-sidebar-icon-color-foreground-l: 22.745098039215687%;
16734
+ --dt-theme-sidebar-icon-color-foreground-hsl: var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l);
16735
+ --dt-theme-sidebar-icon-color-foreground-hsla: hsla(var(--dt-theme-sidebar-icon-color-foreground-h) var(--dt-theme-sidebar-icon-color-foreground-s) var(--dt-theme-sidebar-icon-color-foreground-l) / var(--alpha, 100%));
16736
+ --dt-theme-sidebar-status-color-foreground-h: 0;
16737
+ --dt-theme-sidebar-status-color-foreground-s: 0%;
16738
+ --dt-theme-sidebar-status-color-foreground-l: 33.33333333333333%;
16739
+ --dt-theme-sidebar-status-color-foreground-hsl: var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l);
16740
+ --dt-theme-sidebar-status-color-foreground-hsla: hsla(var(--dt-theme-sidebar-status-color-foreground-h) var(--dt-theme-sidebar-status-color-foreground-s) var(--dt-theme-sidebar-status-color-foreground-l) / var(--alpha, 100%));
16741
+ --dt-theme-sidebar-row-color-background-h: 0;
16742
+ --dt-theme-sidebar-row-color-background-s: 0%;
16743
+ --dt-theme-sidebar-row-color-background-l: 0%;
16744
+ --dt-theme-sidebar-row-color-background-hsl: var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l);
16745
+ --dt-theme-sidebar-row-color-background-hsla: hsla(var(--dt-theme-sidebar-row-color-background-h) var(--dt-theme-sidebar-row-color-background-s) var(--dt-theme-sidebar-row-color-background-l) / var(--alpha, 100%));
16746
+ --dt-theme-sidebar-row-color-background-hover-h: 0;
16747
+ --dt-theme-sidebar-row-color-background-hover-s: 0%;
16748
+ --dt-theme-sidebar-row-color-background-hover-l: 0%;
16749
+ --dt-theme-sidebar-row-color-background-hover-hsl: var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l);
16750
+ --dt-theme-sidebar-row-color-background-hover-hsla: hsla(var(--dt-theme-sidebar-row-color-background-hover-h) var(--dt-theme-sidebar-row-color-background-hover-s) var(--dt-theme-sidebar-row-color-background-hover-l) / var(--alpha, 100%));
16751
+ --dt-theme-sidebar-row-color-background-active-h: 0;
16752
+ --dt-theme-sidebar-row-color-background-active-s: 0%;
16753
+ --dt-theme-sidebar-row-color-background-active-l: 0%;
16754
+ --dt-theme-sidebar-row-color-background-active-hsl: var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l);
16755
+ --dt-theme-sidebar-row-color-background-active-hsla: hsla(var(--dt-theme-sidebar-row-color-background-active-h) var(--dt-theme-sidebar-row-color-background-active-s) var(--dt-theme-sidebar-row-color-background-active-l) / var(--alpha, 100%));
16756
+ --dt-theme-sidebar-selected-row-color-foreground-h: 0;
16757
+ --dt-theme-sidebar-selected-row-color-foreground-s: 0%;
16758
+ --dt-theme-sidebar-selected-row-color-foreground-l: 0%;
16759
+ --dt-theme-sidebar-selected-row-color-foreground-hsl: var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l);
16760
+ --dt-theme-sidebar-selected-row-color-foreground-hsla: hsla(var(--dt-theme-sidebar-selected-row-color-foreground-h) var(--dt-theme-sidebar-selected-row-color-foreground-s) var(--dt-theme-sidebar-selected-row-color-foreground-l) / var(--alpha, 100%));
16761
+ --dt-theme-sidebar-selected-row-color-background-h: 0;
16762
+ --dt-theme-sidebar-selected-row-color-background-s: 0%;
16763
+ --dt-theme-sidebar-selected-row-color-background-l: 0%;
16764
+ --dt-theme-sidebar-selected-row-color-background-hsl: var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l);
16765
+ --dt-theme-sidebar-selected-row-color-background-hsla: hsla(var(--dt-theme-sidebar-selected-row-color-background-h) var(--dt-theme-sidebar-selected-row-color-background-s) var(--dt-theme-sidebar-selected-row-color-background-l) / var(--alpha, 100%));
16766
+ --dt-theme-sidebar-section-color-foreground-h: 0;
16767
+ --dt-theme-sidebar-section-color-foreground-s: 0%;
16768
+ --dt-theme-sidebar-section-color-foreground-l: 33.33333333333333%;
16769
+ --dt-theme-sidebar-section-color-foreground-hsl: var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l);
16770
+ --dt-theme-sidebar-section-color-foreground-hsla: hsla(var(--dt-theme-sidebar-section-color-foreground-h) var(--dt-theme-sidebar-section-color-foreground-s) var(--dt-theme-sidebar-section-color-foreground-l) / var(--alpha, 100%));
16771
+ --dt-theme-presence-color-background-available-h: 136.64233576642334;
16772
+ --dt-theme-presence-color-background-available-s: 72.4867724867725%;
16773
+ --dt-theme-presence-color-background-available-l: 37.05882352941176%;
16774
+ --dt-theme-presence-color-background-available-hsl: var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l);
16775
+ --dt-theme-presence-color-background-available-hsla: hsla(var(--dt-theme-presence-color-background-available-h) var(--dt-theme-presence-color-background-available-s) var(--dt-theme-presence-color-background-available-l) / var(--alpha, 100%));
16776
+ --dt-theme-presence-color-background-busy-unavailable-h: 0;
16777
+ --dt-theme-presence-color-background-busy-unavailable-s: 88.79999999999998%;
16778
+ --dt-theme-presence-color-background-busy-unavailable-l: 49.01960784313726%;
16779
+ --dt-theme-presence-color-background-busy-unavailable-hsl: var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l);
16780
+ --dt-theme-presence-color-background-busy-unavailable-hsla: hsla(var(--dt-theme-presence-color-background-busy-unavailable-h) var(--dt-theme-presence-color-background-busy-unavailable-s) var(--dt-theme-presence-color-background-busy-unavailable-l) / var(--alpha, 100%));
16781
+ --dt-theme-presence-color-background-busy-h: 35.80645161290322;
16782
+ --dt-theme-presence-color-background-busy-s: 91.17647058823533%;
16783
+ --dt-theme-presence-color-background-busy-l: 60%;
16784
+ --dt-theme-presence-color-background-busy-hsl: var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l);
16785
+ --dt-theme-presence-color-background-busy-hsla: hsla(var(--dt-theme-presence-color-background-busy-h) var(--dt-theme-presence-color-background-busy-s) var(--dt-theme-presence-color-background-busy-l) / var(--alpha, 100%));
16786
+ --dt-theme-presence-color-background-offline-h: 0;
16787
+ --dt-theme-presence-color-background-offline-s: 0%;
16788
+ --dt-theme-presence-color-background-offline-l: 100%;
16789
+ --dt-theme-presence-color-background-offline-hsl: var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l);
16790
+ --dt-theme-presence-color-background-offline-hsla: hsla(var(--dt-theme-presence-color-background-offline-h) var(--dt-theme-presence-color-background-offline-s) var(--dt-theme-presence-color-background-offline-l) / var(--alpha, 100%));
16791
+ --dt-theme-mention-color-foreground-h: 0;
16792
+ --dt-theme-mention-color-foreground-s: 0%;
16793
+ --dt-theme-mention-color-foreground-l: 100%;
16794
+ --dt-theme-mention-color-foreground-hsl: var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l);
16795
+ --dt-theme-mention-color-foreground-hsla: hsla(var(--dt-theme-mention-color-foreground-h) var(--dt-theme-mention-color-foreground-s) var(--dt-theme-mention-color-foreground-l) / var(--alpha, 100%));
16796
+ --dt-theme-mention-color-background-h: 254.5664739884393;
16797
+ --dt-theme-mention-color-background-s: 100%;
16798
+ --dt-theme-mention-color-background-l: 66.07843137254902%;
16799
+ --dt-theme-mention-color-background-hsl: var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l);
16800
+ --dt-theme-mention-color-background-hsla: hsla(var(--dt-theme-mention-color-background-h) var(--dt-theme-mention-color-background-s) var(--dt-theme-mention-color-background-l) / var(--alpha, 100%));
15311
16801
  color-scheme: light;
15312
16802
  --dt-shadow-small: var(--dt-shadow-small-0-x) var(--dt-shadow-small-0-y) var(--dt-shadow-small-0-blur) var(--dt-shadow-small-0-spread) var(--dt-shadow-small-0-color);
15313
16803
  --dt-shadow-medium: var(--dt-shadow-medium-0-x) var(--dt-shadow-medium-0-y) var(--dt-shadow-medium-0-blur) var(--dt-shadow-medium-0-spread) var(--dt-shadow-medium-0-color);
@@ -18244,3 +19734,5 @@ body {
18244
19734
  }
18245
19735
  }
18246
19736
 
19737
+
19738
+ .d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.dt-list-item{list-style:none}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-color-surface-moderate-opaque)}.dt-list-item--highlighted:active{background-color:var(--dt-color-surface-bold-opaque)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--circle.d-btn--icon-only .d-btn__label{display:none}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-79689993] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-79689993] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start}.dt-contact-info[data-v-79689993] .dt-item-layout--right{min-width:0}.dt-contact-info[data-v-79689993] .d-avatar{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--dt-color-surface-primary);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base1);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.d-btn[data-v-cb6fd78e]:active{--bgo: 85% !important}.settings-menu-button[data-v-cb6fd78e]:hover{background-color:hsla(var(--theme-topbar-color-hsl) / .05)}.settings-menu-button[data-v-cb6fd78e]:focus-visible{color:var(--theme-topbar-color-hsl);box-shadow:0 0 0 var(--dt-size-200) hsla(var(--theme-sidebar-color-hsl) / .15)}.dt-leftbar-row[data-v-7580a758]{--leftbar-row-color-foreground: var(--theme-sidebar-color);--leftbar-row-color-background: var(--theme-sidebar-row-color-background);--leftbar-row-radius: 100em;--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--theme-sidebar-icon-color);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--theme-sidebar-status-color);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-7580a758]:hover,.dt-leftbar-row[data-v-7580a758]:focus-within{--leftbar-row-color-background: var(--theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-7580a758]:hover .d-presence,.dt-leftbar-row[data-v-7580a758]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-7580a758]:hover .d-avatar__count,.dt-leftbar-row[data-v-7580a758]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-7580a758]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-alpha-color-foreground: var(--leftbar-row-color-foreground)}.dt-leftbar-row--unread-count[data-v-7580a758] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-7580a758]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-7580a758]{--leftbar-row-color-background: var(--theme-sidebar-selected-row-color-background);--leftbar-row-color-foreground: var(--theme-sidebar-selected-row-color)}.dt-leftbar-row--selected[data-v-7580a758] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-7580a758] .d-avatar__count{--avatar-count-color-shadow: var(--theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-7580a758]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-7580a758]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);-webkit-animation:wave-7580a758 1.5s ease infinite;animation:wave-7580a758 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(1){-webkit-animation-delay:0ms;animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(2){-webkit-animation-delay:var(--td100);animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(3){-webkit-animation-delay:var(--td200);animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-7580a758]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-7580a758]:active{--leftbar-row-color-background: var(--theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-7580a758]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-7580a758]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-7580a758]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-7580a758]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-7580a758]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);-webkit-transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-7580a758]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-7580a758]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-7580a758]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row__meta-custom[data-v-7580a758]:not(:empty) .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--theme-sidebar-status-color)}.dt-leftbar-row__icon-cc[data-v-7580a758]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-7580a758]{-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@-webkit-keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}@keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--theme-mention-color-background);color:var(--theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-primary);color:var(--dt-color-foreground-primary)}content-text-wrapper-class:not(img){line-height:1.6rem}.feed-item-row{transition-duration:2s!important}.ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);float:left;color:var(--dt-color-foreground-placeholder);pointer-events:none;height:0}.dt-message-input--remaining-char{font-size:1.2rem}.message-input-button__disabled{background-color:unset;color:var(--theme-sidebar-icon-color);cursor:default}.dt-message-input-notice .d-notice__icon{margin-right:8px}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{-webkit-animation-name:placeholder-throb;animation-name:placeholder-throb;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}