@shohojdhara/atomix 0.2.1 → 0.2.3

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.
Files changed (201) hide show
  1. package/README.md +1 -28
  2. package/dist/atomix.css +1500 -241
  3. package/dist/atomix.min.css +6 -6
  4. package/dist/index.d.ts +1052 -194
  5. package/dist/index.esm.js +12201 -6066
  6. package/dist/index.esm.js.map +1 -1
  7. package/dist/index.js +5481 -2827
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.min.js +1 -1
  10. package/dist/index.min.js.map +1 -1
  11. package/dist/themes/boomdevs.css +1500 -301
  12. package/dist/themes/boomdevs.min.css +60 -8
  13. package/dist/themes/esrar.css +1500 -241
  14. package/dist/themes/esrar.min.css +6 -6
  15. package/dist/themes/mashroom.css +1496 -237
  16. package/dist/themes/mashroom.min.css +8 -8
  17. package/dist/themes/shaj-default.css +1451 -192
  18. package/dist/themes/shaj-default.min.css +6 -6
  19. package/package.json +66 -15
  20. package/src/components/Accordion/Accordion.stories.tsx +137 -0
  21. package/src/components/Accordion/Accordion.tsx +33 -3
  22. package/src/components/AtomixGlass/AtomixGlass.stories.tsx +3011 -0
  23. package/src/components/AtomixGlass/AtomixGlass.test.tsx +199 -0
  24. package/src/components/AtomixGlass/AtomixGlass.tsx +1281 -0
  25. package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +1369 -0
  26. package/src/components/AtomixGlass/README.md +134 -0
  27. package/src/components/AtomixGlass/index.ts +10 -0
  28. package/src/components/AtomixGlass/shader-utils.ts +140 -0
  29. package/src/components/AtomixGlass/utils.ts +8 -0
  30. package/src/components/Badge/Badge.stories.tsx +169 -0
  31. package/src/components/Badge/Badge.tsx +27 -2
  32. package/src/components/Button/Button.stories.tsx +345 -0
  33. package/src/components/Button/Button.tsx +35 -3
  34. package/src/components/Button/README.md +216 -0
  35. package/src/components/Callout/Callout.stories.tsx +813 -78
  36. package/src/components/Callout/Callout.test.tsx +368 -0
  37. package/src/components/Callout/Callout.tsx +26 -7
  38. package/src/components/Callout/README.md +409 -0
  39. package/src/components/Card/Card.stories.tsx +140 -0
  40. package/src/components/Card/Card.tsx +19 -3
  41. package/src/components/DatePicker/DatePicker copy.tsx +551 -0
  42. package/src/components/DatePicker/DatePicker.stories.tsx +188 -0
  43. package/src/components/DatePicker/DatePicker.tsx +379 -332
  44. package/src/components/DatePicker/readme.md +110 -1
  45. package/src/components/DatePicker/types.ts +8 -0
  46. package/src/components/Dropdown/Dropdown.stories.tsx +145 -0
  47. package/src/components/Dropdown/Dropdown.tsx +34 -5
  48. package/src/components/Footer/Footer.stories.tsx +388 -0
  49. package/src/components/Footer/Footer.tsx +197 -0
  50. package/src/components/Footer/FooterLink.tsx +72 -0
  51. package/src/components/Footer/FooterSection.tsx +87 -0
  52. package/src/components/Footer/FooterSocialLink.tsx +117 -0
  53. package/src/components/Footer/README.md +261 -0
  54. package/src/components/Footer/index.ts +13 -0
  55. package/src/components/Form/Checkbox.stories.tsx +101 -0
  56. package/src/components/Form/Checkbox.tsx +26 -2
  57. package/src/components/Form/Input.stories.tsx +124 -0
  58. package/src/components/Form/Input.tsx +36 -7
  59. package/src/components/Form/Radio.stories.tsx +139 -0
  60. package/src/components/Form/Radio.tsx +26 -2
  61. package/src/components/Form/Select.stories.tsx +110 -0
  62. package/src/components/Form/Select.tsx +26 -2
  63. package/src/components/Form/Textarea.stories.tsx +104 -0
  64. package/src/components/Form/Textarea.tsx +36 -7
  65. package/src/components/Hero/Hero.stories.tsx +54 -1
  66. package/src/components/Hero/Hero.tsx +70 -11
  67. package/src/components/Modal/Modal.stories.tsx +235 -0
  68. package/src/components/Modal/Modal.tsx +64 -35
  69. package/src/components/Pagination/Pagination.stories.tsx +101 -0
  70. package/src/components/Pagination/Pagination.tsx +25 -1
  71. package/src/components/Popover/Popover.stories.tsx +94 -0
  72. package/src/components/Popover/Popover.tsx +30 -4
  73. package/src/components/Rating/Rating.stories.tsx +112 -0
  74. package/src/components/Rating/Rating.tsx +25 -1
  75. package/src/components/SectionIntro/SectionIntro.tsx +9 -11
  76. package/src/components/Slider/Slider.stories.tsx +634 -50
  77. package/src/components/Slider/Slider.tsx +5 -3
  78. package/src/components/Steps/Steps.stories.tsx +119 -0
  79. package/src/components/Steps/Steps.tsx +32 -1
  80. package/src/components/Tab/Tab.stories.tsx +88 -0
  81. package/src/components/Tab/Tab.tsx +32 -1
  82. package/src/components/Toggle/Toggle.stories.tsx +92 -0
  83. package/src/components/Toggle/Toggle.tsx +32 -1
  84. package/src/components/Tooltip/Tooltip.stories.tsx +131 -0
  85. package/src/components/Tooltip/Tooltip.tsx +43 -7
  86. package/src/components/VideoPlayer/VideoPlayer.stories.tsx +1002 -196
  87. package/src/components/VideoPlayer/VideoPlayer.tsx +161 -4
  88. package/src/components/index.ts +14 -0
  89. package/src/layouts/Grid/Grid.stories.tsx +226 -159
  90. package/src/lib/composables/index.ts +4 -0
  91. package/src/lib/composables/useAtomixGlass.ts +71 -0
  92. package/src/lib/composables/useButton.ts +3 -1
  93. package/src/lib/composables/useCallout.ts +4 -1
  94. package/src/lib/composables/useFooter.ts +85 -0
  95. package/src/lib/composables/useGlassContainer.ts +168 -0
  96. package/src/lib/composables/useSlider.ts +191 -4
  97. package/src/lib/constants/components.ts +173 -0
  98. package/src/lib/types/components.ts +622 -0
  99. package/src/lib/utils/displacement-generator.ts +86 -0
  100. package/src/styles/01-settings/_index.scss +1 -0
  101. package/src/styles/01-settings/_settings.accordion.scss +20 -19
  102. package/src/styles/01-settings/_settings.animations.scss +5 -5
  103. package/src/styles/01-settings/_settings.avatar-group.scss +1 -1
  104. package/src/styles/01-settings/_settings.avatar.scss +17 -18
  105. package/src/styles/01-settings/_settings.background.scss +10 -0
  106. package/src/styles/01-settings/_settings.badge.scss +1 -1
  107. package/src/styles/01-settings/_settings.breadcrumb.scss +8 -2
  108. package/src/styles/01-settings/_settings.callout.scss +7 -7
  109. package/src/styles/01-settings/_settings.card.scss +2 -2
  110. package/src/styles/01-settings/_settings.chart.scss +7 -7
  111. package/src/styles/01-settings/_settings.checkbox-group.scss +5 -2
  112. package/src/styles/01-settings/_settings.checkbox.scss +10 -4
  113. package/src/styles/01-settings/_settings.countdown.scss +6 -4
  114. package/src/styles/01-settings/_settings.dropdown.scss +9 -7
  115. package/src/styles/01-settings/_settings.edge-panel.scss +3 -2
  116. package/src/styles/01-settings/_settings.footer.scss +125 -0
  117. package/src/styles/01-settings/_settings.form-group.scss +3 -1
  118. package/src/styles/01-settings/_settings.form.scss +4 -2
  119. package/src/styles/01-settings/_settings.hero.scss +9 -7
  120. package/src/styles/01-settings/_settings.input.scss +9 -7
  121. package/src/styles/01-settings/_settings.list-group.scss +4 -2
  122. package/src/styles/01-settings/_settings.list.scss +4 -2
  123. package/src/styles/01-settings/_settings.menu.scss +10 -8
  124. package/src/styles/01-settings/_settings.messages.scss +19 -17
  125. package/src/styles/01-settings/_settings.modal.scss +6 -4
  126. package/src/styles/01-settings/_settings.nav.scss +6 -4
  127. package/src/styles/01-settings/_settings.navbar.scss +8 -5
  128. package/src/styles/01-settings/_settings.pagination.scss +5 -3
  129. package/src/styles/01-settings/_settings.popover.scss +6 -4
  130. package/src/styles/01-settings/_settings.rating.scss +5 -3
  131. package/src/styles/01-settings/_settings.river.scss +8 -6
  132. package/src/styles/01-settings/_settings.sectionintro.scss +8 -6
  133. package/src/styles/01-settings/_settings.select.scss +7 -5
  134. package/src/styles/01-settings/_settings.side-menu.scss +15 -13
  135. package/src/styles/01-settings/_settings.spacing.scss +4 -0
  136. package/src/styles/01-settings/_settings.steps.scss +7 -5
  137. package/src/styles/01-settings/_settings.tabs.scss +7 -5
  138. package/src/styles/01-settings/_settings.testimonials.scss +6 -4
  139. package/src/styles/01-settings/_settings.toggle.scss +3 -1
  140. package/src/styles/01-settings/_settings.tooltip.scss +5 -3
  141. package/src/styles/01-settings/_settings.upload.scss +22 -20
  142. package/src/styles/02-tools/_tools.animations.scss +19 -0
  143. package/src/styles/02-tools/_tools.background.scss +87 -0
  144. package/src/styles/02-tools/_tools.glass.scss +1 -0
  145. package/src/styles/02-tools/_tools.rem.scss +18 -5
  146. package/src/styles/02-tools/_tools.utility-api.scss +32 -26
  147. package/src/styles/03-generic/_generic.root.scss +15 -2
  148. package/src/styles/04-elements/_elements.body.scss +6 -0
  149. package/src/styles/06-components/_components.accordion.scss +24 -4
  150. package/src/styles/06-components/_components.atomix-glass.scss +0 -0
  151. package/src/styles/06-components/_components.avatar-group.scss +2 -1
  152. package/src/styles/06-components/_components.avatar.scss +2 -1
  153. package/src/styles/06-components/_components.badge.scss +36 -1
  154. package/src/styles/06-components/_components.breadcrumb.scss +2 -1
  155. package/src/styles/06-components/_components.button.scss +14 -3
  156. package/src/styles/06-components/_components.callout.scss +44 -4
  157. package/src/styles/06-components/_components.card.scss +21 -2
  158. package/src/styles/06-components/_components.chart.scss +3 -2
  159. package/src/styles/06-components/_components.checkbox.scss +2 -1
  160. package/src/styles/06-components/_components.color-mode-toggle.scss +3 -2
  161. package/src/styles/06-components/_components.countdown.scss +2 -1
  162. package/src/styles/06-components/_components.data-table.scss +7 -6
  163. package/src/styles/06-components/_components.datepicker.scss +20 -1
  164. package/src/styles/06-components/_components.dropdown.scss +11 -4
  165. package/src/styles/06-components/_components.edge-panel.scss +4 -3
  166. package/src/styles/06-components/_components.footer.scss +825 -0
  167. package/src/styles/06-components/_components.form-group.scss +1 -0
  168. package/src/styles/06-components/_components.hero.scss +4 -4
  169. package/src/styles/06-components/_components.image-gallery.scss +1 -0
  170. package/src/styles/06-components/_components.input.scss +33 -2
  171. package/src/styles/06-components/_components.list-group.scss +3 -2
  172. package/src/styles/06-components/_components.list.scss +2 -1
  173. package/src/styles/06-components/_components.menu.scss +5 -4
  174. package/src/styles/06-components/_components.messages.scss +8 -7
  175. package/src/styles/06-components/_components.modal.scss +3 -2
  176. package/src/styles/06-components/_components.nav.scss +6 -5
  177. package/src/styles/06-components/_components.navbar.scss +4 -3
  178. package/src/styles/06-components/_components.pagination.scss +2 -1
  179. package/src/styles/06-components/_components.photoviewer.scss +4 -3
  180. package/src/styles/06-components/_components.popover.scss +3 -2
  181. package/src/styles/06-components/_components.product-review.scss +3 -2
  182. package/src/styles/06-components/_components.progress.scss +3 -2
  183. package/src/styles/06-components/_components.river.scss +3 -2
  184. package/src/styles/06-components/_components.sectionintro.scss +2 -1
  185. package/src/styles/06-components/_components.select.scss +5 -4
  186. package/src/styles/06-components/_components.side-menu.scss +8 -7
  187. package/src/styles/06-components/_components.skeleton.scss +3 -2
  188. package/src/styles/06-components/_components.slider.scss +7 -6
  189. package/src/styles/06-components/_components.spinner.scss +1 -0
  190. package/src/styles/06-components/_components.steps.scss +3 -2
  191. package/src/styles/06-components/_components.tabs.scss +4 -3
  192. package/src/styles/06-components/_components.testimonials.scss +2 -1
  193. package/src/styles/06-components/_components.todo.scss +3 -2
  194. package/src/styles/06-components/_components.toggle.scss +5 -4
  195. package/src/styles/06-components/_components.tooltip.scss +3 -2
  196. package/src/styles/06-components/_components.upload.scss +4 -3
  197. package/src/styles/06-components/_components.video-player.scss +50 -27
  198. package/src/styles/06-components/_index.scss +2 -0
  199. package/src/styles/99-utilities/_utilities.glass-fixes.scss +48 -0
  200. package/dist/themes/yabai.css +0 -13711
  201. package/dist/themes/yabai.min.css +0 -189
@@ -144,6 +144,10 @@
144
144
  * Boomdevs Theme Checkbox Settings
145
145
  * Custom checkbox styles for the Boomdevs theme
146
146
  */
147
+ /*!
148
+ * Boomdevs Theme Spacing Settings
149
+ * Custom spacing styles for the Boomdevs theme
150
+ */
147
151
  /*!
148
152
  * Boomdevs Theme Typography Settings
149
153
  * Custom typography for the Boomdevs theme
@@ -160,6 +164,10 @@
160
164
  * Boomdevs Theme Border Radius Settings
161
165
  * Custom border radius styles for the Boomdevs theme
162
166
  */
167
+ /*!
168
+ * Boomdevs Theme Spacing Settings
169
+ * Custom spacing styles for the Boomdevs theme
170
+ */
163
171
  /*!
164
172
  * Boomdevs Theme Grid Settings
165
173
  * Custom grid styles for the Boomdevs theme
@@ -172,6 +180,10 @@
172
180
  * Boomdevs Theme Input Settings
173
181
  * Custom input styles for the Boomdevs theme
174
182
  */
183
+ /*!
184
+ * Boomdevs Theme Spacing Settings
185
+ * Custom spacing styles for the Boomdevs theme
186
+ */
175
187
  /*!
176
188
  * Boomdevs Theme Typography Settings
177
189
  * Custom typography for the Boomdevs theme
@@ -196,6 +208,10 @@
196
208
  * Boomdevs Theme List Settings
197
209
  * Custom list styles for the Boomdevs theme
198
210
  */
211
+ /*!
212
+ * Boomdevs Theme Spacing Settings
213
+ * Custom spacing styles for the Boomdevs theme
214
+ */
199
215
  /*!
200
216
  * Boomdevs Theme Typography Settings
201
217
  * Custom typography for the Boomdevs theme
@@ -204,6 +220,10 @@
204
220
  * Boomdevs Theme Modal Settings
205
221
  * Custom modal styles for the Boomdevs theme
206
222
  */
223
+ /*!
224
+ * Boomdevs Theme Spacing Settings
225
+ * Custom spacing styles for the Boomdevs theme
226
+ */
207
227
  /*!
208
228
  * Boomdevs Theme Typography Settings
209
229
  * Custom typography for the Boomdevs theme
@@ -216,14 +236,26 @@
216
236
  * Boomdevs Theme Navbar Settings
217
237
  * Custom navbar styles for the Boomdevs theme
218
238
  */
239
+ /*!
240
+ * Boomdevs Theme Spacing Settings
241
+ * Custom spacing styles for the Boomdevs theme
242
+ */
219
243
  /*!
220
244
  * Boomdevs Theme Typography Settings
221
245
  * Custom typography for the Boomdevs theme
222
246
  */
247
+ /*!
248
+ * Boomdevs Theme Border Radius Settings
249
+ * Custom border radius styles for the Boomdevs theme
250
+ */
223
251
  /*!
224
252
  * Boomdevs Theme Pagination Settings
225
253
  * Custom pagination styles for the Boomdevs theme
226
254
  */
255
+ /*!
256
+ * Boomdevs Theme Spacing Settings
257
+ * Custom spacing styles for the Boomdevs theme
258
+ */
227
259
  /*!
228
260
  * Boomdevs Theme Typography Settings
229
261
  * Custom typography for the Boomdevs theme
@@ -252,6 +284,10 @@
252
284
  * Boomdevs Theme Rating Settings
253
285
  * Custom rating styles for the Boomdevs theme
254
286
  */
287
+ /*!
288
+ * Boomdevs Theme Spacing Settings
289
+ * Custom spacing styles for the Boomdevs theme
290
+ */
255
291
  /*!
256
292
  * Boomdevs Theme Spinner Settings
257
293
  * Custom spinner styles for the Boomdevs theme
@@ -260,6 +296,10 @@
260
296
  * Boomdevs Theme Steps Settings
261
297
  * Custom steps styles for the Boomdevs theme
262
298
  */
299
+ /*!
300
+ * Boomdevs Theme Spacing Settings
301
+ * Custom spacing styles for the Boomdevs theme
302
+ */
263
303
  /*!
264
304
  * Boomdevs Theme Typography Settings
265
305
  * Custom typography for the Boomdevs theme
@@ -272,6 +312,10 @@
272
312
  * Boomdevs Theme Tabs Settings
273
313
  * Custom tabs styles for the Boomdevs theme
274
314
  */
315
+ /*!
316
+ * Boomdevs Theme Spacing Settings
317
+ * Custom spacing styles for the Boomdevs theme
318
+ */
275
319
  /*!
276
320
  * Boomdevs Theme Typography Settings
277
321
  * Custom typography for the Boomdevs theme
@@ -296,6 +340,10 @@
296
340
  * Boomdevs Theme Toggle Settings
297
341
  * Custom toggle styles for the Boomdevs theme
298
342
  */
343
+ /*!
344
+ * Boomdevs Theme Spacing Settings
345
+ * Custom spacing styles for the Boomdevs theme
346
+ */
299
347
  /*!
300
348
  * Boomdevs Theme Border Radius Settings
301
349
  * Custom border radius styles for the Boomdevs theme
@@ -308,6 +356,10 @@
308
356
  * Boomdevs Theme Tooltip Settings
309
357
  * Custom tooltip styles for the Boomdevs theme
310
358
  */
359
+ /*!
360
+ * Boomdevs Theme Spacing Settings
361
+ * Custom spacing styles for the Boomdevs theme
362
+ */
311
363
  /*!
312
364
  * Boomdevs Theme Typography Settings
313
365
  * Custom typography for the Boomdevs theme
@@ -332,6 +384,23 @@
332
384
  background-position: 0 50%;
333
385
  }
334
386
  }
387
+ @keyframes backgroundMoving {
388
+ 0% {
389
+ background-position: 0 0%;
390
+ }
391
+ 250% {
392
+ background-position: 100% 100%;
393
+ }
394
+ 50% {
395
+ background-position: 100% 0%;
396
+ }
397
+ 75% {
398
+ background-position: 0% 100%;
399
+ }
400
+ 100% {
401
+ background-position: 100% 100%;
402
+ }
403
+ }
335
404
  @keyframes component-spin {
336
405
  0% {
337
406
  transform: rotate(0deg);
@@ -746,9 +815,17 @@ summary {
746
815
  --atomix-success-hover: #005e21;
747
816
  --atomix-warning-hover: #b27a00;
748
817
  --atomix-info-hover: #003ca0;
818
+ --atomix-primary-gradient: linear-gradient(135deg, #cce0ff, #99c0ff, #66a1ff);
819
+ --atomix-secondary-gradient: linear-gradient(135deg, #f1f3f5, #e9ecef, #dee2e6);
820
+ --atomix-light-gradient: linear-gradient(135deg, #f8f9fa, #f1f3f5, #e9ecef);
821
+ --atomix-dark-gradient: linear-gradient(135deg, #868e96, #343a40, #000000);
822
+ --atomix-success-gradient: linear-gradient(135deg, #cce9d6, #66bd85, #33a75c);
823
+ --atomix-info-gradient: linear-gradient(135deg, #cce0ff, #99c0ff, #3381ff);
824
+ --atomix-warning-gradient: linear-gradient(135deg, #ffefcc, #ffdf99, #ffc033);
825
+ --atomix-error-gradient: linear-gradient(135deg, #fce6e6, #f8cccc, #f29999);
826
+ --atomix-gradient: linear-gradient(135deg, #f8f9fa, #f1f3f5, #e9ecef);
749
827
  --atomix-font-sans-serif: "Roboto", sans-serif;
750
828
  --atomix-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
751
- --atomix-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
752
829
  --atomix-body-font-family: "Roboto", sans-serif;
753
830
  --atomix-body-font-size: 1rem;
754
831
  --atomix-body-font-weight: 400;
@@ -842,6 +919,15 @@ summary {
842
919
  --atomix-success-hover: #66bd85;
843
920
  --atomix-warning-hover: #ffc033;
844
921
  --atomix-info-hover: #66a1ff;
922
+ --atomix-primary-gradient: linear-gradient(135deg, #001c44, #040dbf, #003ca0);
923
+ --atomix-secondary-gradient: linear-gradient(135deg, #495057, #adb5bd, #dee2e6);
924
+ --atomix-light-gradient: linear-gradient(135deg, #ced4da, #adb5bd, #ced4da);
925
+ --atomix-dark-gradient: linear-gradient(135deg, #000000, #868e96, #343a40);
926
+ --atomix-success-gradient: linear-gradient(135deg, #002a0f, #00772a, #004418);
927
+ --atomix-info-gradient: linear-gradient(135deg, #001c44, #003ca0, #002c72);
928
+ --atomix-warning-gradient: linear-gradient(135deg, #664500, #b27a00, #8c6000);
929
+ --atomix-error-gradient: linear-gradient(135deg, #440000, #b80000, #440000);
930
+ --atomix-gradient: linear-gradient(135deg, #868e96, #343a40, #000000);
845
931
  --atomix-box-shadow: 0px 8px 40px -8px rgba(30, 30, 30, 0.7), 0px 4px 20px 0px rgba(30, 30, 30, 0.8);
846
932
  --atomix-box-shadow-xs: 0px 1px 2px 0px rgba(30, 30, 30, 0.5), 0px 2px 4px 0px rgba(30, 30, 30, 0.5);
847
933
  --atomix-box-shadow-sm: 0px 2px 4px -2px rgba(30, 30, 30, 0.5), 0px 4px 8px -2px rgba(30, 30, 30, 0.5);
@@ -1771,7 +1857,7 @@ a, a:hover {
1771
1857
  --atomix-accordion-header-padding-y: 1rem;
1772
1858
  --atomix-accordion-header-color: var(--atomix-body-color);
1773
1859
  --atomix-accordion-header-bg: var(--atomix-light);
1774
- --atomix-accordion-header-bg-hover: var(--atomix-tertiary-bg-subtle);
1860
+ --atomix-accordion-header-bg-hover: var(--atomix-body-bg);
1775
1861
  --atomix-accordion-icon-size: 1.25rem;
1776
1862
  --atomix-accordion-icon-color: var(--atomix-primary);
1777
1863
  --atomix-accordion-icon-transform: 180deg;
@@ -1787,12 +1873,17 @@ a, a:hover {
1787
1873
  display: flex;
1788
1874
  align-items: center;
1789
1875
  justify-content: space-between;
1876
+ width: 100%;
1790
1877
  color: var(--atomix-accordion-header-color);
1791
1878
  padding: var(--atomix-accordion-header-padding-y) var(--atomix-accordion-header-padding-x);
1792
- background-color: var(--atomix-accordion-header-bg);
1793
1879
  border: none;
1880
+ outline: none;
1794
1881
  cursor: pointer;
1795
- width: 100%;
1882
+ transition-property: background;
1883
+ transition-duration: 0.2s;
1884
+ transition-timing-function: ease-in-out;
1885
+ transition-delay: 0s;
1886
+ background-color: var(--atomix-accordion-header-bg);
1796
1887
  }
1797
1888
  .c-accordion__header--icon-left {
1798
1889
  flex-direction: row-reverse;
@@ -1826,8 +1917,8 @@ a, a:hover {
1826
1917
  .c-accordion__body {
1827
1918
  color: var(--atomix-accordion-body-color);
1828
1919
  padding: var(--atomix-accordion-body-padding-y) var(--atomix-accordion-body-padding-x);
1829
- background-color: var(--atomix-accordion-body-bg);
1830
1920
  border-radius: 0 0 var(--atomix-accordion-border-radius) var(--atomix-accordion-border-radius);
1921
+ background-color: var(--atomix-accordion-body-bg);
1831
1922
  }
1832
1923
  .c-accordion:focus, .c-accordion.is-focused {
1833
1924
  --atomix-accordion-border-color: var(--atomix-focus-border-color);
@@ -1844,6 +1935,15 @@ a, a:hover {
1844
1935
  --atomix-accordion-body-color: var(--atomix-accordion-disable-color);
1845
1936
  --atomix-accordion-icon-color: var(--atomix-accordion-disable-color);
1846
1937
  }
1938
+ .c-accordion--glass {
1939
+ border-color: transparent;
1940
+ }
1941
+ .c-accordion--glass .c-accordion__header {
1942
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
1943
+ }
1944
+ .c-accordion--glass .c-accordion__body {
1945
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
1946
+ }
1847
1947
  .c-avatar {
1848
1948
  --atomix-avatar-fit: cover;
1849
1949
  --atomix-avatar-size: 2.5rem;
@@ -2056,6 +2156,10 @@ a, a:hover {
2056
2156
  .c-badge--lg {
2057
2157
  --atomix-tag-padding-y: 0.5rem;
2058
2158
  }
2159
+ .c-badge--glass {
2160
+ background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 80%, transparent);
2161
+ border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 20%, transparent);
2162
+ }
2059
2163
  .c-badge--primary {
2060
2164
  --atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
2061
2165
  --atomix-tag-color: var(--atomix-brand-text-emphasis);
@@ -2083,10 +2187,16 @@ a, a:hover {
2083
2187
  .c-badge--light {
2084
2188
  --atomix-tag-bg-color: var(--atomix-light);
2085
2189
  --atomix-tag-color: var(--atomix-dark);
2190
+ border: 1px solid var(--atomix-light);
2086
2191
  }
2087
2192
  .c-badge--dark {
2088
2193
  --atomix-tag-bg-color: var(--atomix-dark);
2089
2194
  --atomix-tag-color: var(--atomix-light);
2195
+ border: 1px solid var(--atomix-dark);
2196
+ }
2197
+ .c-badge-glass {
2198
+ box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
2199
+ border-radius: 999px;
2090
2200
  }
2091
2201
  .c-breadcrumb {
2092
2202
  --atomix-breadcrumb-font-size: 0.875rem;
@@ -2485,6 +2595,12 @@ a, a:hover {
2485
2595
  border-color: var(--atomix-btn-disabled-border-color);
2486
2596
  opacity: var(--atomix-btn-disabled-opacity);
2487
2597
  }
2598
+ .c-btn--glass {
2599
+ background-color: color-mix(in srgb, var(--atomix-btn-bg) 50%, transparent);
2600
+ }
2601
+ .c-btn--glass:hover {
2602
+ background-color: color-mix(in srgb, var(--atomix-btn-hover-bg) 50%, transparent);
2603
+ }
2488
2604
  .c-datepicker {
2489
2605
  --atomix-datepicker-width: 19rem;
2490
2606
  --atomix-datepicker-padding-x: 0.5rem;
@@ -2607,6 +2723,24 @@ a, a:hover {
2607
2723
  .c-datepicker__calendar--right-end {
2608
2724
  bottom: 0;
2609
2725
  }
2726
+ .c-datepicker__calendar--glass {
2727
+ z-index: auto;
2728
+ z-index: initial;
2729
+ box-shadow: none;
2730
+ border: none;
2731
+ border-radius: 0;
2732
+ padding: 0;
2733
+ background: transparent;
2734
+ }
2735
+ .c-datepicker__glass-content {
2736
+ z-index: auto;
2737
+ z-index: initial;
2738
+ box-shadow: none;
2739
+ border: none;
2740
+ border-radius: var(--atomix-datepicker-border-radius);
2741
+ padding: var(--atomix-datepicker-padding-y) var(--atomix-datepicker-padding-x);
2742
+ background: color-mix(in srgb, var(--atomix-datepicker-bg) 50%, transparent 0%);
2743
+ }
2610
2744
  .c-datepicker--inline {
2611
2745
  --atomix-datepicker-width: calc(
2612
2746
  var(--atomix-datepicker-width) + var(--atomix-datepicker-week-width)
@@ -2915,7 +3049,7 @@ a, a:hover {
2915
3049
  --atomix-card-bg: var(--atomix-primary-bg-subtle);
2916
3050
  --atomix-card-bg-hover: var(--atomix-secondary-bg-subtle);
2917
3051
  --atomix-card-icon-size: 1.25rem;
2918
- --atomix-card-icon-padding: 0.625rem;
3052
+ --atomix-card-icon-padding: 0.375rem;
2919
3053
  --atomix-card-icon-bg: var(--atomix-brand-bg-subtle);
2920
3054
  --atomix-card-icon-color: var(--atomix-brand-text-emphasis);
2921
3055
  --atomix-card-width: 100%;
@@ -2924,11 +3058,11 @@ a, a:hover {
2924
3058
  padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
2925
3059
  border: var(--atomix-card-border-width) solid var(--atomix-card-border-color);
2926
3060
  border-radius: var(--atomix-card-border-radius);
2927
- background-color: var(--atomix-card-bg);
2928
3061
  transition-property: all;
2929
3062
  transition-duration: 0.2s;
2930
3063
  transition-timing-function: ease-in-out;
2931
3064
  transition-delay: 0s;
3065
+ background-color: var(--atomix-card-bg);
2932
3066
  }
2933
3067
  .c-card__header {
2934
3068
  margin-bottom: var(--atomix-card-header-spacer-y);
@@ -3006,6 +3140,21 @@ a, a:hover {
3006
3140
  padding: var(--atomix-card-row-spacer-y) var(--atomix-card-row-spacer-x);
3007
3141
  padding-top: 0;
3008
3142
  }
3143
+ .c-card--glass {
3144
+ background-color: transparent;
3145
+ padding: 0;
3146
+ border: none;
3147
+ display: block;
3148
+ border-radius: 0;
3149
+ }
3150
+ .c-card--glass .c-card__glass-content {
3151
+ padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
3152
+ max-width: var(--atomix-card-width);
3153
+ border-radius: var(--atomix-card-border-radius);
3154
+ width: 100%;
3155
+ background-color: color-mix(in srgb, var(--atomix-card-bg) 50%, transparent);
3156
+ background-blend-mode: overlay;
3157
+ }
3009
3158
  .is-elevated .c-card {
3010
3159
  box-shadow: var(--atomix-box-shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.175));
3011
3160
  z-index: 1;
@@ -3017,7 +3166,7 @@ a, a:hover {
3017
3166
  --atomix-chart-border-radius: 0.75rem;
3018
3167
  --atomix-chart-padding: 1rem;
3019
3168
  --atomix-chart-gap: 0.5rem;
3020
- --atomix-chart-border-width: 1px;
3169
+ --atomix-chart-border-width: var(--atomix-border-width);
3021
3170
  --atomix-chart-border-color: var(--atomix-border-color);
3022
3171
  --atomix-chart-bg: var(--atomix-body-bg);
3023
3172
  --atomix-chart-min-height: ;
@@ -3050,7 +3199,7 @@ a, a:hover {
3050
3199
  border-color: var(--atomix-primary-border-subtle);
3051
3200
  }
3052
3201
  .c-chart:focus-visible {
3053
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 3px var(--atomix-primary-border-subtle);
3202
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 calc(var(--atomix-border-width) * 3) var(--atomix-primary-border-subtle);
3054
3203
  }
3055
3204
  .c-chart--xs {
3056
3205
  --atomix-chart-min-height: 7rem;
@@ -3233,8 +3382,8 @@ a, a:hover {
3233
3382
  .c-chart__header {
3234
3383
  padding: var(--atomix-chart-padding);
3235
3384
  border-bottom: var(--atomix-chart-border-width) solid var(--atomix-brand-bg-subtle);
3236
- -webkit-backdrop-filter: blur(12px);
3237
- backdrop-filter: blur(12px);
3385
+ -webkit-backdrop-filter: blur(0.75rem);
3386
+ backdrop-filter: blur(0.75rem);
3238
3387
  position: relative;
3239
3388
  display: flex;
3240
3389
  align-items: flex-start;
@@ -3483,7 +3632,7 @@ a, a:hover {
3483
3632
  right: 0;
3484
3633
  bottom: 0;
3485
3634
  background-image: radial-gradient(circle at 1px 1px, var(--atomix-primary-border-subtle) 1px, transparent 0);
3486
- background-size: 20px 20px;
3635
+ background-size: 1.25rem 1.25rem;
3487
3636
  opacity: 0.03;
3488
3637
  pointer-events: none;
3489
3638
  z-index: 0;
@@ -3661,8 +3810,8 @@ a, a:hover {
3661
3810
  position: fixed;
3662
3811
  top: 0;
3663
3812
  left: 0;
3664
- -webkit-backdrop-filter: blur(16px);
3665
- backdrop-filter: blur(16px);
3813
+ -webkit-backdrop-filter: blur(1rem);
3814
+ backdrop-filter: blur(1rem);
3666
3815
  border-radius: 0.75rem;
3667
3816
  padding: 0.75rem 1rem;
3668
3817
  box-shadow: var(--atomix-box-shadow);
@@ -4739,7 +4888,7 @@ a, a:hover {
4739
4888
  animation: none;
4740
4889
  }
4741
4890
  }
4742
- .c-chart:focus-within__data-point:focus {
4891
+ .c-chart:focus-within .c-chart__data-point:focus {
4743
4892
  outline: 2px solid var(--atomix-primary-6);
4744
4893
  outline-offset: 2px;
4745
4894
  z-index: 10;
@@ -4816,9 +4965,9 @@ a, a:hover {
4816
4965
  flex-direction: row;
4817
4966
  }
4818
4967
  .c-checkbox {
4819
- --atomix-checkbox-width: 20px;
4820
- --atomix-checkbox-height: 20px;
4821
- --atomix-checkbox-spacer: 8px;
4968
+ --atomix-checkbox-width: 1.25rem;
4969
+ --atomix-checkbox-height: 1.25rem;
4970
+ --atomix-checkbox-spacer: 0.5rem;
4822
4971
  --atomix-checkbox-font-size: 1rem;
4823
4972
  --atomix-checkbox-text-color: var(--atomix-body-color);
4824
4973
  --atomix-checkbox-text-color-disabled: var(--atomix-tertiary-text-emphasis);
@@ -4828,7 +4977,7 @@ a, a:hover {
4828
4977
  --atomix-checkbox-checked-bg: var(--atomix-primary);
4829
4978
  --atomix-checkbox-checked-bg-hover: var(--atomix-tertiary-text-emphasis);
4830
4979
  --atomix-checkbox-checked-bg-disabled: var(--atomix-disabled-text-emphasis);
4831
- --atomix-checkbox-border-width: 1px;
4980
+ --atomix-checkbox-border-width: var(--atomix-border-width);
4832
4981
  --atomix-checkbox-border-color: var(--atomix-tertiary-text-emphasis);
4833
4982
  --atomix-checkbox-border-color-hover: var(--atomix-primary);
4834
4983
  --atomix-checkbox-border-color-disabled: var(--atomix-disabled-text-emphasis);
@@ -5142,7 +5291,7 @@ a, a:hover {
5142
5291
  }
5143
5292
  .c-dropdown {
5144
5293
  --atomix-dropdown-min-width: 11.25rem;
5145
- --atomix-dropdown-padding-x: 0;
5294
+ --atomix-dropdown-padding-x: 0rem;
5146
5295
  --atomix-dropdown-padding-y: 0.5rem;
5147
5296
  --atomix-dropdown-spacer: 0.25rem;
5148
5297
  --atomix-dropdown-font-size: 1rem;
@@ -5150,7 +5299,7 @@ a, a:hover {
5150
5299
  --atomix-dropdown-bg: var(--atomix-body-bg);
5151
5300
  --atomix-dropdown-border-color: var(--atomix-primary-border-subtle);
5152
5301
  --atomix-dropdown-border-radius: 6px;
5153
- --atomix-dropdown-border-width: 1px;
5302
+ --atomix-dropdown-border-width: var(--atomix-border-width);
5154
5303
  --atomix-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
5155
5304
  --atomix-dropdown-link-color: var(--atomix-body-color);
5156
5305
  --atomix-dropdown-link-hover-color: var(--atomix-primary);
@@ -5179,7 +5328,6 @@ a, a:hover {
5179
5328
  .c-dropdown__menu-wrapper {
5180
5329
  position: absolute;
5181
5330
  left: 0;
5182
- z-index: 99;
5183
5331
  display: flex;
5184
5332
  opacity: 0;
5185
5333
  visibility: hidden;
@@ -5261,11 +5409,16 @@ a, a:hover {
5261
5409
  padding: var(--atomix-dropdown-padding-y) var(--atomix-dropdown-padding-x);
5262
5410
  list-style: none;
5263
5411
  margin-bottom: 0rem;
5412
+ border: 1px solid rgba(255, 255, 255, 0.08);
5264
5413
  background-color: var(--atomix-dropdown-bg);
5265
5414
  border-radius: var(--atomix-dropdown-border-radius);
5266
5415
  box-shadow: var(--atomix-dropdown-box-shadow);
5267
5416
  overflow: hidden;
5268
5417
  }
5418
+ .c-dropdown__menu--glass {
5419
+ background-color: color-mix(in srgb, var(--atomix-dropdown-bg) 50%, transparent);
5420
+ box-shadow: var(--atomix-dropdown-box-shadow);
5421
+ }
5269
5422
  .c-dropdown__menu-item {
5270
5423
  display: block;
5271
5424
  width: 100%;
@@ -5385,7 +5538,7 @@ a, a:hover {
5385
5538
  .c-edge-panel__backdrop {
5386
5539
  position: absolute;
5387
5540
  inset: 0;
5388
- background: var(--atomix-edge-panel-backdrop-bg);
5541
+ background-color: var(--atomix-edge-panel-backdrop-bg);
5389
5542
  -webkit-backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
5390
5543
  backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
5391
5544
  opacity: 0;
@@ -5441,188 +5594,1176 @@ a, a:hover {
5441
5594
  .c-edge-panel__close:hover {
5442
5595
  background-color: rgba(0, 0, 0, 0.05);
5443
5596
  }
5444
- .c-edge-panel__close:focus-visible {
5445
- outline: 2px solid var(--atomix-primary);
5446
- outline-offset: 2px;
5597
+ .c-edge-panel__close:focus-visible {
5598
+ outline: 2px solid var(--atomix-primary);
5599
+ outline-offset: 2px;
5600
+ }
5601
+ .c-edge-panel__body {
5602
+ padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
5603
+ overflow-y: auto;
5604
+ flex: 1 1;
5605
+ -webkit-overflow-scrolling: touch;
5606
+ }
5607
+ .c-edge-panel--start .c-edge-panel__container {
5608
+ left: 0;
5609
+ top: 0;
5610
+ bottom: 0;
5611
+ border-right: 1px solid var(--atomix-edge-panel-border-color);
5612
+ transform: translateX(-100%);
5613
+ }
5614
+ .c-edge-panel--start .c-edge-panel__container.is-animating {
5615
+ animation-name: slideInStart;
5616
+ }
5617
+ .c-edge-panel--start .c-edge-panel__container.is-animating-out {
5618
+ animation-name: slideOutStart;
5619
+ }
5620
+ .c-edge-panel--end .c-edge-panel__container {
5621
+ right: 0;
5622
+ top: 0;
5623
+ bottom: 0;
5624
+ left: auto;
5625
+ border-left: 1px solid var(--atomix-edge-panel-border-color);
5626
+ transform: translateX(100%);
5627
+ }
5628
+ .c-edge-panel--end .c-edge-panel__container.is-animating {
5629
+ animation-name: slideInEnd;
5630
+ }
5631
+ .c-edge-panel--end .c-edge-panel__container.is-animating-out {
5632
+ animation-name: slideOutEnd;
5633
+ }
5634
+ .c-edge-panel--top .c-edge-panel__container {
5635
+ left: 0;
5636
+ right: 0;
5637
+ top: 0;
5638
+ bottom: auto;
5639
+ width: 100%;
5640
+ height: var(--atomix-edge-panel-height);
5641
+ transform: translateY(-100%);
5642
+ border-bottom: 1px solid var(--atomix-edge-panel-border-color);
5643
+ }
5644
+ .c-edge-panel--top .c-edge-panel__container.is-animating {
5645
+ animation-name: slideInTop;
5646
+ }
5647
+ .c-edge-panel--top .c-edge-panel__container.is-animating-out {
5648
+ animation-name: slideOutTop;
5649
+ }
5650
+ .c-edge-panel--bottom .c-edge-panel__container {
5651
+ left: 0;
5652
+ right: 0;
5653
+ bottom: 0;
5654
+ top: auto;
5655
+ width: 100%;
5656
+ height: var(--atomix-edge-panel-height);
5657
+ transform: translateY(100%);
5658
+ border-top: 1px solid var(--atomix-edge-panel-border-color);
5659
+ }
5660
+ .c-edge-panel--bottom .c-edge-panel__container.is-animating {
5661
+ animation-name: slideInBottom;
5662
+ }
5663
+ .c-edge-panel--bottom .c-edge-panel__container.is-animating-out {
5664
+ animation-name: slideOutBottom;
5665
+ }
5666
+ .c-edge-panel.is-open .c-edge-panel__backdrop {
5667
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
5668
+ }
5669
+ .c-edge-panel.is-open .c-edge-panel__container {
5670
+ transform: translateX(0) translateY(0);
5671
+ }
5672
+ .c-edge-panel[data-mode=none] .c-edge-panel__container {
5673
+ transition: none !important;
5674
+ animation: none !important;
5675
+ }
5676
+ .c-edge-panel[data-mode=none] .c-edge-panel__container.is-animating, .c-edge-panel[data-mode=none] .c-edge-panel__container.is-animating-out {
5677
+ animation: none !important;
5678
+ }
5679
+ .c-edge-panel[data-mode=none] .c-edge-panel__backdrop {
5680
+ transition: none !important;
5681
+ animation: none !important;
5682
+ }
5683
+ .c-edge-panel[data-mode=none] .c-edge-panel__backdrop.is-animating, .c-edge-panel[data-mode=none] .c-edge-panel__backdrop.is-animating-out {
5684
+ animation: none !important;
5685
+ }
5686
+ .is-edgepanel-open {
5687
+ --atomix-edge-panel-animation-duration: 300ms;
5688
+ overflow: hidden;
5689
+ }
5690
+ .is-edgepanel-open.is-pushed {
5691
+ transition: padding-left var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-right var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-top var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-bottom var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1);
5692
+ position: fixed;
5693
+ width: 100%;
5694
+ height: 100%;
5695
+ }
5696
+ .is-edgepanel-open:not(.is-pushed) {
5697
+ position: fixed;
5698
+ width: 100%;
5699
+ height: 100%;
5700
+ }
5701
+ @keyframes fadeIn {
5702
+ from {
5703
+ opacity: 0;
5704
+ }
5705
+ to {
5706
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
5707
+ }
5708
+ }
5709
+ @keyframes fadeOut {
5710
+ from {
5711
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
5712
+ }
5713
+ to {
5714
+ opacity: 0;
5715
+ }
5716
+ }
5717
+ @keyframes slideInStart {
5718
+ from {
5719
+ transform: translateX(-100%);
5720
+ }
5721
+ to {
5722
+ transform: translateX(0);
5723
+ }
5724
+ }
5725
+ @keyframes slideOutStart {
5726
+ from {
5727
+ transform: translateX(0);
5728
+ }
5729
+ to {
5730
+ transform: translateX(-100%);
5731
+ }
5732
+ }
5733
+ @keyframes slideInEnd {
5734
+ from {
5735
+ transform: translateX(100%);
5736
+ }
5737
+ to {
5738
+ transform: translateX(0);
5739
+ }
5740
+ }
5741
+ @keyframes slideOutEnd {
5742
+ from {
5743
+ transform: translateX(0);
5744
+ }
5745
+ to {
5746
+ transform: translateX(100%);
5747
+ }
5748
+ }
5749
+ @keyframes slideInTop {
5750
+ from {
5751
+ transform: translateY(-100%);
5752
+ }
5753
+ to {
5754
+ transform: translateY(0);
5755
+ }
5756
+ }
5757
+ @keyframes slideOutTop {
5758
+ from {
5759
+ transform: translateY(0);
5760
+ }
5761
+ to {
5762
+ transform: translateY(-100%);
5763
+ }
5764
+ }
5765
+ @keyframes slideInBottom {
5766
+ from {
5767
+ transform: translateY(100%);
5768
+ }
5769
+ to {
5770
+ transform: translateY(0);
5771
+ }
5772
+ }
5773
+ @keyframes slideOutBottom {
5774
+ from {
5775
+ transform: translateY(0);
5776
+ }
5777
+ to {
5778
+ transform: translateY(100%);
5779
+ }
5780
+ }
5781
+ .c-footer {
5782
+ --atomix-footer-padding-x: 1rem;
5783
+ --atomix-footer-padding-y: 3rem;
5784
+ --atomix-footer-container-max-width: 1200px;
5785
+ --atomix-footer-bg: var(--atomix-surface);
5786
+ --atomix-footer-color: var(--atomix-text);
5787
+ --atomix-footer-border-width: 1px;
5788
+ --atomix-footer-border-color: var(--atomix-border);
5789
+ --atomix-footer-brand-margin-bottom: 1.5rem;
5790
+ --atomix-footer-section-margin-bottom: 2rem;
5791
+ --atomix-footer-social-gap: 0.75rem;
5792
+ --atomix-footer-newsletter-padding: 1.5rem;
5793
+ --atomix-footer-bottom-padding-top: 1.5rem;
5794
+ --atomix-footer-bottom-margin-top: 2rem;
5795
+ background-color: var(--atomix-footer-bg);
5796
+ color: var(--atomix-footer-color);
5797
+ border-top: var(--atomix-footer-border-width) solid var(--atomix-footer-border-color);
5798
+ padding: var(--atomix-footer-padding-y) 0;
5799
+ position: relative;
5800
+ }
5801
+ .c-footer__container {
5802
+ display: flex;
5803
+ flex-direction: column;
5804
+ width: 100%;
5805
+ max-width: var(--atomix-footer-container-max-width);
5806
+ margin: 0 auto;
5807
+ padding: 0 var(--atomix-footer-padding-x);
5808
+ }
5809
+ .c-footer__sections {
5810
+ display: grid;
5811
+ grid-gap: var(--atomix-footer-section-margin-bottom);
5812
+ gap: var(--atomix-footer-section-margin-bottom);
5813
+ margin-bottom: var(--atomix-footer-bottom-margin-top);
5814
+ grid-template-columns: 1fr;
5815
+ }
5816
+ @media (min-width: 768px) {
5817
+ .c-footer__sections {
5818
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
5819
+ gap: clamp(2rem, 4vw, 3rem);
5820
+ }
5821
+ }
5822
+ .c-footer__brand {
5823
+ margin-bottom: var(--atomix-footer-brand-margin-bottom);
5824
+ }
5825
+ .c-footer__brand-logo {
5826
+ display: inline-block;
5827
+ margin-bottom: 1rem;
5828
+ transition: opacity 0.2s ease;
5829
+ }
5830
+ .c-footer__brand-logo:hover {
5831
+ opacity: 0.8;
5832
+ }
5833
+ .c-footer__brand-logo img {
5834
+ max-width: 200px;
5835
+ max-height: 60px;
5836
+ height: auto;
5837
+ -o-object-fit: contain;
5838
+ object-fit: contain;
5839
+ }
5840
+ .c-footer__brand-name h3 {
5841
+ margin: 0;
5842
+ font-size: clamp(1.25rem, 2.5vw, 1.5rem);
5843
+ font-weight: 600;
5844
+ color: var(--atomix-text-emphasis);
5845
+ line-height: 1.2;
5846
+ }
5847
+ .c-footer__brand-description {
5848
+ margin-top: 0.5rem;
5849
+ font-size: 0.875rem;
5850
+ color: var(--atomix-text-muted);
5851
+ line-height: 1.6;
5852
+ max-width: 35ch;
5853
+ }
5854
+ .c-footer__section {
5855
+ margin-bottom: var(--atomix-footer-section-margin-bottom);
5856
+ }
5857
+ .c-footer__section-header {
5858
+ margin-bottom: 1rem;
5859
+ }
5860
+ .c-footer__section-header-content {
5861
+ display: flex;
5862
+ align-items: center;
5863
+ gap: 0.5rem;
5864
+ }
5865
+ .c-footer__section-toggle {
5866
+ display: flex;
5867
+ align-items: center;
5868
+ justify-content: space-between;
5869
+ width: 100%;
5870
+ padding: 0.75rem 0;
5871
+ background: none;
5872
+ border: none;
5873
+ cursor: pointer;
5874
+ color: inherit;
5875
+ font: inherit;
5876
+ text-align: left;
5877
+ border-radius: 0.25rem;
5878
+ transition: color 0.2s ease;
5879
+ }
5880
+ .c-footer__section-toggle:hover {
5881
+ color: var(--atomix-primary);
5882
+ }
5883
+ .c-footer__section-toggle:focus-visible {
5884
+ outline: 2px solid var(--atomix-primary);
5885
+ outline-offset: 2px;
5886
+ }
5887
+ .c-footer__section-title {
5888
+ margin: 0;
5889
+ font-size: 1.125rem;
5890
+ font-weight: 600;
5891
+ color: var(--atomix-text-emphasis);
5892
+ line-height: 1.3;
5893
+ }
5894
+ .c-footer__section-icon {
5895
+ display: flex;
5896
+ align-items: center;
5897
+ margin-right: 0.5rem;
5898
+ font-size: 1.1em;
5899
+ }
5900
+ .c-footer__section-chevron {
5901
+ font-size: 0.875rem;
5902
+ transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5903
+ color: var(--atomix-text-muted);
5904
+ }
5905
+ .c-footer__section-content {
5906
+ display: flex;
5907
+ flex-direction: column;
5908
+ gap: 0.5rem;
5909
+ }
5910
+ @media (max-width: 767.98px) {
5911
+ .c-footer__section--collapsible .c-footer__section-content {
5912
+ overflow: hidden;
5913
+ transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5914
+ }
5915
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-content {
5916
+ max-height: 0;
5917
+ }
5918
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-chevron {
5919
+ transform: rotate(-90deg);
5920
+ }
5921
+ .c-footer__section--collapsible:not(.c-footer__section--collapsed) .c-footer__section-content {
5922
+ max-height: 500px;
5923
+ }
5924
+ }
5925
+ @media (min-width: 768px) {
5926
+ .c-footer__section--collapsible .c-footer__section-toggle {
5927
+ pointer-events: none;
5928
+ }
5929
+ .c-footer__section--collapsible .c-footer__section-chevron {
5930
+ display: none;
5931
+ }
5932
+ }
5933
+ .c-footer__link {
5934
+ display: inline-flex;
5935
+ align-items: center;
5936
+ gap: 0.5rem;
5937
+ padding: 0.25rem 0;
5938
+ color: var(--atomix-text);
5939
+ text-decoration: none;
5940
+ transition: color 0.15s ease-in-out;
5941
+ border-radius: 0.25rem;
5942
+ position: relative;
5943
+ }
5944
+ .c-footer__link::before {
5945
+ content: "";
5946
+ position: absolute;
5947
+ left: 0;
5948
+ bottom: 0;
5949
+ width: 0;
5950
+ height: 2px;
5951
+ background-color: var(--atomix-primary);
5952
+ transition: width 0.3s ease;
5953
+ }
5954
+ .c-footer__link:hover, .c-footer__link:focus {
5955
+ color: var(--atomix-primary);
5956
+ text-decoration: underline;
5957
+ }
5958
+ .c-footer__link:hover::before, .c-footer__link:focus::before {
5959
+ width: 100%;
5960
+ }
5961
+ .c-footer__link:focus-visible {
5962
+ outline: 2px solid var(--atomix-primary);
5963
+ outline-offset: 2px;
5964
+ }
5965
+ .c-footer__link--active {
5966
+ color: var(--atomix-primary);
5967
+ font-weight: 500;
5968
+ }
5969
+ .c-footer__link--active::before {
5970
+ width: 100%;
5971
+ }
5972
+ .c-footer__link--disabled {
5973
+ color: var(--atomix-text-disabled);
5974
+ cursor: not-allowed;
5975
+ pointer-events: none;
5976
+ opacity: 0.6;
5977
+ }
5978
+ .c-footer__link-icon {
5979
+ display: flex;
5980
+ align-items: center;
5981
+ font-size: 0.875em;
5982
+ transition: transform 0.2s ease;
5983
+ }
5984
+ .c-footer__link:hover .c-footer__link-icon {
5985
+ transform: translateX(2px);
5986
+ }
5987
+ .c-footer__link-text {
5988
+ flex: 1 1;
5989
+ }
5990
+ .c-footer__link-external {
5991
+ font-size: 0.75em;
5992
+ opacity: 0.7;
5993
+ margin-left: auto;
5994
+ }
5995
+ .c-footer__social {
5996
+ display: flex;
5997
+ flex-wrap: wrap;
5998
+ gap: var(--atomix-footer-social-gap);
5999
+ margin-top: 1rem;
6000
+ }
6001
+ .c-footer__social-link {
6002
+ display: flex;
6003
+ align-items: center;
6004
+ justify-content: center;
6005
+ width: 2.5rem;
6006
+ height: 2.5rem;
6007
+ background-color: var(--atomix-surface-variant);
6008
+ color: var(--atomix-text);
6009
+ border-radius: 50%;
6010
+ text-decoration: none;
6011
+ transition: all 0.15s ease-in-out;
6012
+ position: relative;
6013
+ overflow: hidden;
6014
+ }
6015
+ .c-footer__social-link::before {
6016
+ content: "";
6017
+ position: absolute;
6018
+ inset: 0;
6019
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
6020
+ transform: translateX(-100%);
6021
+ transition: transform 0.6s ease;
6022
+ }
6023
+ .c-footer__social-link:hover, .c-footer__social-link:focus {
6024
+ background-color: var(--atomix-primary);
6025
+ color: var(--atomix-primary-contrast);
6026
+ transform: translateY(-3px) scale(1.05);
6027
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
6028
+ }
6029
+ .c-footer__social-link:hover::before, .c-footer__social-link:focus::before {
6030
+ transform: translateX(100%);
6031
+ }
6032
+ .c-footer__social-link:focus-visible {
6033
+ outline: 2px solid var(--atomix-primary);
6034
+ outline-offset: 2px;
6035
+ }
6036
+ .c-footer__social-link--sm {
6037
+ width: 2rem;
6038
+ height: 2rem;
6039
+ }
6040
+ .c-footer__social-link--lg {
6041
+ width: 3rem;
6042
+ height: 3rem;
6043
+ }
6044
+ .c-footer__social-link--disabled {
6045
+ opacity: 0.5;
6046
+ cursor: not-allowed;
6047
+ pointer-events: none;
6048
+ }
6049
+ .c-footer__social-link-icon {
6050
+ font-size: 1.25em;
6051
+ z-index: 1;
6052
+ }
6053
+ .c-footer__social-link-label {
6054
+ position: absolute;
6055
+ width: 1px;
6056
+ height: 1px;
6057
+ padding: 0;
6058
+ margin: -1px;
6059
+ overflow: hidden;
6060
+ clip: rect(0, 0, 0, 0);
6061
+ white-space: nowrap;
6062
+ border: 0;
6063
+ }
6064
+ .c-footer__social-link--facebook:hover {
6065
+ background: linear-gradient(135deg, #1877f2, #42a5f5);
6066
+ }
6067
+ .c-footer__social-link--twitter:hover {
6068
+ background: linear-gradient(135deg, #1da1f2, #64b5f6);
6069
+ }
6070
+ .c-footer__social-link--instagram:hover {
6071
+ background: linear-gradient(135deg, #e4405f, #f06292, #ba68c8);
6072
+ }
6073
+ .c-footer__social-link--linkedin:hover {
6074
+ background: linear-gradient(135deg, #0077b5, #42a5f5);
6075
+ }
6076
+ .c-footer__social-link--youtube:hover {
6077
+ background: linear-gradient(135deg, #ff0000, #ff5722);
6078
+ }
6079
+ .c-footer__social-link--github:hover {
6080
+ background: linear-gradient(135deg, #333, #666);
6081
+ }
6082
+ .c-footer__social-link--discord:hover {
6083
+ background: linear-gradient(135deg, #5865f2, #7289da);
6084
+ }
6085
+ .c-footer__social-link--tiktok:hover {
6086
+ background: linear-gradient(135deg, #000, #ff0050);
6087
+ }
6088
+ .c-footer__social-link--whatsapp:hover {
6089
+ background: linear-gradient(135deg, #25d366, #66bb6a);
6090
+ }
6091
+ .c-footer__newsletter {
6092
+ background-color: linear-gradient(135deg, var(--atomix-surface-variant), rgba(var(--atomix-surface-variant), 0.8));
6093
+ padding: 1.5rem;
6094
+ border-radius: 0.5rem;
6095
+ border: 1px solid var(--atomix-border-subtle);
6096
+ position: relative;
6097
+ overflow: hidden;
6098
+ }
6099
+ .c-footer__newsletter::before {
6100
+ content: "";
6101
+ position: absolute;
6102
+ top: 0;
6103
+ left: 0;
6104
+ right: 0;
6105
+ height: 1px;
6106
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
6107
+ }
6108
+ .c-footer__newsletter-title {
6109
+ margin: 0 0 0.5rem 0;
6110
+ font-size: clamp(1.125rem, 2vw, 1.125rem);
6111
+ font-weight: 600;
6112
+ color: var(--atomix-text-emphasis);
6113
+ line-height: 1.3;
6114
+ }
6115
+ .c-footer__newsletter-description {
6116
+ margin: 0 0 1rem 0;
6117
+ font-size: 0.875rem;
6118
+ color: var(--atomix-text-muted);
6119
+ line-height: 1.6;
6120
+ max-width: 45ch;
6121
+ }
6122
+ .c-footer__newsletter-form {
6123
+ display: flex;
6124
+ gap: 0.75rem;
6125
+ align-items: flex-end;
6126
+ }
6127
+ @media (max-width: 575.98px) {
6128
+ .c-footer__newsletter-form {
6129
+ flex-direction: column;
6130
+ align-items: stretch;
6131
+ }
6132
+ }
6133
+ .c-footer__newsletter-input-group {
6134
+ display: flex;
6135
+ flex: 1 1;
6136
+ gap: 0.75rem;
6137
+ position: relative;
6138
+ }
6139
+ @media (max-width: 575.98px) {
6140
+ .c-footer__newsletter-input-group {
6141
+ flex-direction: column;
6142
+ }
6143
+ }
6144
+ .c-footer__newsletter-input {
6145
+ flex: 1 1;
6146
+ padding: 0.75rem 1rem;
6147
+ font-size: 0.875rem;
6148
+ background-color: var(--atomix-surface);
6149
+ color: var(--atomix-text);
6150
+ border: 1px solid var(--atomix-border);
6151
+ border-radius: 0.375rem;
6152
+ outline: none;
6153
+ transition: all 0.3s ease;
6154
+ }
6155
+ .c-footer__newsletter-input:focus {
6156
+ border-color: var(--atomix-primary);
6157
+ box-shadow: 0 0 0 0.125rem rgba(var(--atomix-primary-rgb), 0.25);
6158
+ transform: translateY(-1px);
6159
+ }
6160
+ .c-footer__newsletter-input::-moz-placeholder {
6161
+ color: var(--atomix-text-muted);
6162
+ -moz-transition: opacity 0.3s ease;
6163
+ transition: opacity 0.3s ease;
6164
+ }
6165
+ .c-footer__newsletter-input::placeholder {
6166
+ color: var(--atomix-text-muted);
6167
+ transition: opacity 0.3s ease;
6168
+ }
6169
+ .c-footer__newsletter-input:focus::-moz-placeholder {
6170
+ opacity: 0.7;
6171
+ }
6172
+ .c-footer__newsletter-input:focus::placeholder {
6173
+ opacity: 0.7;
6174
+ }
6175
+ .c-footer__newsletter-button {
6176
+ padding: 0.75rem 1.5rem;
6177
+ background-color: var(--atomix-primary);
6178
+ color: var(--atomix-primary-contrast);
6179
+ border: none;
6180
+ border-radius: 0.375rem;
6181
+ font-weight: 500;
6182
+ cursor: pointer;
6183
+ transition: background-color 0.15s ease-in-out;
6184
+ white-space: nowrap;
6185
+ position: relative;
6186
+ overflow: hidden;
6187
+ }
6188
+ .c-footer__newsletter-button::before {
6189
+ content: "";
6190
+ position: absolute;
6191
+ inset: 0;
6192
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
6193
+ transform: translateX(-100%);
6194
+ transition: transform 0.6s ease;
6195
+ }
6196
+ .c-footer__newsletter-button:hover, .c-footer__newsletter-button:focus {
6197
+ background-color: var(--atomix-primary-hover);
6198
+ transform: translateY(-2px);
6199
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
6200
+ }
6201
+ .c-footer__newsletter-button:hover::before, .c-footer__newsletter-button:focus::before {
6202
+ transform: translateX(100%);
6203
+ }
6204
+ .c-footer__newsletter-button:focus-visible {
6205
+ outline: 2px solid var(--atomix-primary);
6206
+ outline-offset: 2px;
6207
+ }
6208
+ .c-footer__bottom {
6209
+ display: flex;
6210
+ align-items: center;
6211
+ justify-content: space-between;
6212
+ padding-top: var(--atomix-footer-bottom-padding-top);
6213
+ border-top: 1px solid var(--atomix-border);
6214
+ position: relative;
6215
+ }
6216
+ @media (max-width: 575.98px) {
6217
+ .c-footer__bottom {
6218
+ flex-direction: column;
6219
+ gap: 1.5rem;
6220
+ text-align: center;
6221
+ }
6222
+ }
6223
+ .c-footer__copyright {
6224
+ font-size: 0.875rem;
6225
+ color: var(--atomix-text-muted);
6226
+ line-height: 1.5;
6227
+ }
6228
+ .c-footer__copyright a {
6229
+ color: inherit;
6230
+ text-decoration: underline;
6231
+ text-decoration-color: transparent;
6232
+ transition: text-decoration-color 0.3s ease;
6233
+ }
6234
+ .c-footer__copyright a:hover, .c-footer__copyright a:focus {
6235
+ text-decoration-color: currentColor;
6236
+ }
6237
+ .c-footer__back-to-top {
6238
+ display: flex;
6239
+ align-items: center;
6240
+ gap: 0.5rem;
6241
+ padding: 0.75rem 1.25rem;
6242
+ background-color: var(--atomix-surface-variant);
6243
+ border: 1px solid var(--atomix-border-subtle);
6244
+ color: var(--atomix-text);
6245
+ font-size: 0.875rem;
6246
+ font-weight: 500;
6247
+ cursor: pointer;
6248
+ transition: color 0.15s ease-in-out;
6249
+ border-radius: 2rem;
6250
+ position: relative;
6251
+ overflow: hidden;
6252
+ }
6253
+ .c-footer__back-to-top::before {
6254
+ content: "";
6255
+ position: absolute;
6256
+ inset: 0;
6257
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
6258
+ transform: translateX(-100%);
6259
+ transition: transform 0.6s ease;
6260
+ }
6261
+ .c-footer__back-to-top:hover, .c-footer__back-to-top:focus {
6262
+ color: var(--atomix-primary);
6263
+ background-color: var(--atomix-primary);
6264
+ border-color: var(--atomix-primary);
6265
+ transform: translateY(-2px);
6266
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
6267
+ }
6268
+ .c-footer__back-to-top:hover::before, .c-footer__back-to-top:focus::before {
6269
+ transform: translateX(100%);
6270
+ }
6271
+ .c-footer__back-to-top:hover .c-footer__back-to-top-icon, .c-footer__back-to-top:focus .c-footer__back-to-top-icon {
6272
+ transform: translateY(-2px);
6273
+ }
6274
+ .c-footer__back-to-top:focus-visible {
6275
+ outline: 2px solid var(--atomix-primary);
6276
+ outline-offset: 2px;
6277
+ }
6278
+ .c-footer__back-to-top-icon {
6279
+ font-size: 1.25em;
6280
+ font-weight: bold;
6281
+ transition: transform 0.3s ease;
6282
+ }
6283
+ @media (max-width: 575.98px) {
6284
+ .c-footer__back-to-top-text {
6285
+ display: none;
6286
+ }
6287
+ }
6288
+ .c-footer__divider {
6289
+ margin: 2rem 0;
6290
+ border: none;
6291
+ height: 1px;
6292
+ background: linear-gradient(90deg, transparent, 1px solid var(--atomix-border), transparent);
6293
+ opacity: 0.5;
6294
+ }
6295
+ @media (min-width: 768px) {
6296
+ .c-footer--columns .c-footer__sections {
6297
+ display: grid;
6298
+ grid-template-columns: minmax(300px, 1fr) 2fr minmax(250px, 1fr);
6299
+ grid-gap: clamp(2rem, 5vw, 4rem);
6300
+ gap: clamp(2rem, 5vw, 4rem);
6301
+ align-items: start;
6302
+ }
6303
+ }
6304
+ @media (min-width: 992px) {
6305
+ .c-footer--columns .c-footer__sections {
6306
+ grid-template-columns: minmax(350px, 1fr) 3fr minmax(300px, 1fr);
6307
+ }
6308
+ }
6309
+ .c-footer--centered {
6310
+ text-align: center;
6311
+ }
6312
+ .c-footer--centered .c-footer__sections {
6313
+ justify-content: center;
6314
+ align-items: center;
6315
+ }
6316
+ .c-footer--centered .c-footer__social {
6317
+ justify-content: center;
6318
+ }
6319
+ .c-footer--centered .c-footer__brand-description {
6320
+ margin-left: auto;
6321
+ margin-right: auto;
6322
+ }
6323
+ .c-footer--minimal {
6324
+ --atomix-footer-padding-y: 2rem;
6325
+ }
6326
+ .c-footer--minimal .c-footer__sections {
6327
+ margin-bottom: 1rem;
6328
+ gap: 1.5rem;
6329
+ }
6330
+ .c-footer--minimal .c-footer__section {
6331
+ margin-bottom: 1rem;
6332
+ }
6333
+ .c-footer--minimal .c-footer__newsletter {
6334
+ padding: 1.5rem;
6335
+ }
6336
+ .c-footer--stacked .c-footer__sections {
6337
+ display: flex;
6338
+ flex-direction: column;
6339
+ align-items: center;
6340
+ text-align: center;
6341
+ gap: clamp(1.5rem, 4vw, 2.5rem);
6342
+ max-width: 600px;
6343
+ margin-left: auto;
6344
+ margin-right: auto;
6345
+ }
6346
+ .c-footer--sm {
6347
+ --atomix-footer-padding-y: 2rem;
6348
+ --atomix-footer-section-margin-bottom: 1.5rem;
6349
+ --atomix-footer-brand-margin-bottom: 1rem;
6350
+ --atomix-footer-social-gap: 0.75rem;
6351
+ }
6352
+ .c-footer--md {
6353
+ --atomix-footer-padding-y: 3rem;
6354
+ --atomix-footer-section-margin-bottom: 2rem;
6355
+ }
6356
+ .c-footer--lg {
6357
+ --atomix-footer-padding-y: 4rem;
6358
+ --atomix-footer-section-margin-bottom: 2.5rem;
6359
+ --atomix-footer-brand-margin-bottom: 2rem;
6360
+ --atomix-footer-social-gap: 1.25rem;
6361
+ }
6362
+ .c-footer--lg .c-footer__sections {
6363
+ gap: clamp(2.5rem, 5vw, 4rem);
6364
+ }
6365
+ .c-footer--primary {
6366
+ --atomix-footer-bg: var(--atomix-primary-bg-subtle);
6367
+ --atomix-footer-border-color: var(--atomix-primary-border-subtle);
6368
+ --atomix-footer-color: var(--atomix-primary-text);
6369
+ }
6370
+ .c-footer--primary .c-footer__brand-name h3,
6371
+ .c-footer--primary .c-footer__section-title {
6372
+ color: var(--atomix-primary-text-emphasis);
6373
+ }
6374
+ .c-footer--primary .c-footer__brand-description,
6375
+ .c-footer--primary .c-footer__copyright {
6376
+ color: var(--atomix-primary-text-muted);
6377
+ }
6378
+ .c-footer--primary .c-footer__link {
6379
+ color: var(--atomix-primary-text);
6380
+ }
6381
+ .c-footer--primary .c-footer__link:hover, .c-footer--primary .c-footer__link:focus {
6382
+ color: var(--atomix-primary);
6383
+ }
6384
+ .c-footer--primary .c-footer__link::before {
6385
+ background-color: var(--atomix-primary);
6386
+ }
6387
+ .c-footer--primary .c-footer__newsletter {
6388
+ background: linear-gradient(135deg, var(--atomix-primary-bg), rgba(var(--atomix-primary-bg-rgb), 0.8));
6389
+ border-color: var(--atomix-primary-border);
6390
+ }
6391
+ .c-footer--primary .c-footer__newsletter::before {
6392
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
6393
+ }
6394
+ .c-footer--secondary {
6395
+ --atomix-footer-bg: var(--atomix-secondary-bg-subtle);
6396
+ --atomix-footer-border-color: var(--atomix-secondary-border-subtle);
6397
+ --atomix-footer-color: var(--atomix-secondary-text);
6398
+ }
6399
+ .c-footer--secondary .c-footer__brand-name h3,
6400
+ .c-footer--secondary .c-footer__section-title {
6401
+ color: var(--atomix-secondary-text-emphasis);
6402
+ }
6403
+ .c-footer--secondary .c-footer__brand-description,
6404
+ .c-footer--secondary .c-footer__copyright {
6405
+ color: var(--atomix-secondary-text-muted);
6406
+ }
6407
+ .c-footer--secondary .c-footer__link {
6408
+ color: var(--atomix-secondary-text);
6409
+ }
6410
+ .c-footer--secondary .c-footer__link:hover, .c-footer--secondary .c-footer__link:focus {
6411
+ color: var(--atomix-secondary);
6412
+ }
6413
+ .c-footer--secondary .c-footer__link::before {
6414
+ background-color: var(--atomix-secondary);
6415
+ }
6416
+ .c-footer--secondary .c-footer__newsletter {
6417
+ background: linear-gradient(135deg, var(--atomix-secondary-bg), rgba(var(--atomix-secondary-bg-rgb), 0.8));
6418
+ border-color: var(--atomix-secondary-border);
6419
+ }
6420
+ .c-footer--secondary .c-footer__newsletter::before {
6421
+ background: linear-gradient(90deg, transparent, var(--atomix-secondary), transparent);
6422
+ }
6423
+ .c-footer--tertiary {
6424
+ --atomix-footer-bg: var(--atomix-tertiary-bg-subtle);
6425
+ --atomix-footer-border-color: var(--atomix-tertiary-border-subtle);
6426
+ --atomix-footer-color: var(--atomix-tertiary-text);
6427
+ }
6428
+ .c-footer--tertiary .c-footer__brand-name h3,
6429
+ .c-footer--tertiary .c-footer__section-title {
6430
+ color: var(--atomix-tertiary-text-emphasis);
6431
+ }
6432
+ .c-footer--tertiary .c-footer__brand-description,
6433
+ .c-footer--tertiary .c-footer__copyright {
6434
+ color: var(--atomix-tertiary-text-muted);
6435
+ }
6436
+ .c-footer--tertiary .c-footer__link {
6437
+ color: var(--atomix-tertiary-text);
6438
+ }
6439
+ .c-footer--tertiary .c-footer__link:hover, .c-footer--tertiary .c-footer__link:focus {
6440
+ color: var(--atomix-tertiary);
6441
+ }
6442
+ .c-footer--tertiary .c-footer__link::before {
6443
+ background-color: var(--atomix-tertiary);
6444
+ }
6445
+ .c-footer--tertiary .c-footer__newsletter {
6446
+ background: linear-gradient(135deg, var(--atomix-tertiary-bg), rgba(var(--atomix-tertiary-bg-rgb), 0.8));
6447
+ border-color: var(--atomix-tertiary-border);
6448
+ }
6449
+ .c-footer--tertiary .c-footer__newsletter::before {
6450
+ background: linear-gradient(90deg, transparent, var(--atomix-tertiary), transparent);
6451
+ }
6452
+ .c-footer--invert {
6453
+ --atomix-footer-bg: var(--atomix-invert-bg-subtle);
6454
+ --atomix-footer-border-color: var(--atomix-invert-border-subtle);
6455
+ --atomix-footer-color: var(--atomix-invert-text);
6456
+ }
6457
+ .c-footer--invert .c-footer__brand-name h3,
6458
+ .c-footer--invert .c-footer__section-title {
6459
+ color: var(--atomix-invert-text-emphasis);
6460
+ }
6461
+ .c-footer--invert .c-footer__brand-description,
6462
+ .c-footer--invert .c-footer__copyright {
6463
+ color: var(--atomix-invert-text-muted);
6464
+ }
6465
+ .c-footer--invert .c-footer__link {
6466
+ color: var(--atomix-invert-text);
6467
+ }
6468
+ .c-footer--invert .c-footer__link:hover, .c-footer--invert .c-footer__link:focus {
6469
+ color: var(--atomix-invert);
6470
+ }
6471
+ .c-footer--invert .c-footer__link::before {
6472
+ background-color: var(--atomix-invert);
6473
+ }
6474
+ .c-footer--invert .c-footer__newsletter {
6475
+ background: linear-gradient(135deg, var(--atomix-invert-bg), rgba(var(--atomix-invert-bg-rgb), 0.8));
6476
+ border-color: var(--atomix-invert-border);
6477
+ }
6478
+ .c-footer--invert .c-footer__newsletter::before {
6479
+ background: linear-gradient(90deg, transparent, var(--atomix-invert), transparent);
6480
+ }
6481
+ .c-footer--brand {
6482
+ --atomix-footer-bg: var(--atomix-brand-bg-subtle);
6483
+ --atomix-footer-border-color: var(--atomix-brand-border-subtle);
6484
+ --atomix-footer-color: var(--atomix-brand-text);
6485
+ }
6486
+ .c-footer--brand .c-footer__brand-name h3,
6487
+ .c-footer--brand .c-footer__section-title {
6488
+ color: var(--atomix-brand-text-emphasis);
6489
+ }
6490
+ .c-footer--brand .c-footer__brand-description,
6491
+ .c-footer--brand .c-footer__copyright {
6492
+ color: var(--atomix-brand-text-muted);
6493
+ }
6494
+ .c-footer--brand .c-footer__link {
6495
+ color: var(--atomix-brand-text);
6496
+ }
6497
+ .c-footer--brand .c-footer__link:hover, .c-footer--brand .c-footer__link:focus {
6498
+ color: var(--atomix-brand);
6499
+ }
6500
+ .c-footer--brand .c-footer__link::before {
6501
+ background-color: var(--atomix-brand);
6502
+ }
6503
+ .c-footer--brand .c-footer__newsletter {
6504
+ background: linear-gradient(135deg, var(--atomix-brand-bg), rgba(var(--atomix-brand-bg-rgb), 0.8));
6505
+ border-color: var(--atomix-brand-border);
6506
+ }
6507
+ .c-footer--brand .c-footer__newsletter::before {
6508
+ background: linear-gradient(90deg, transparent, var(--atomix-brand), transparent);
6509
+ }
6510
+ .c-footer--error {
6511
+ --atomix-footer-bg: var(--atomix-error-bg-subtle);
6512
+ --atomix-footer-border-color: var(--atomix-error-border-subtle);
6513
+ --atomix-footer-color: var(--atomix-error-text);
6514
+ }
6515
+ .c-footer--error .c-footer__brand-name h3,
6516
+ .c-footer--error .c-footer__section-title {
6517
+ color: var(--atomix-error-text-emphasis);
6518
+ }
6519
+ .c-footer--error .c-footer__brand-description,
6520
+ .c-footer--error .c-footer__copyright {
6521
+ color: var(--atomix-error-text-muted);
6522
+ }
6523
+ .c-footer--error .c-footer__link {
6524
+ color: var(--atomix-error-text);
6525
+ }
6526
+ .c-footer--error .c-footer__link:hover, .c-footer--error .c-footer__link:focus {
6527
+ color: var(--atomix-error);
6528
+ }
6529
+ .c-footer--error .c-footer__link::before {
6530
+ background-color: var(--atomix-error);
6531
+ }
6532
+ .c-footer--error .c-footer__newsletter {
6533
+ background: linear-gradient(135deg, var(--atomix-error-bg), rgba(var(--atomix-error-bg-rgb), 0.8));
6534
+ border-color: var(--atomix-error-border);
6535
+ }
6536
+ .c-footer--error .c-footer__newsletter::before {
6537
+ background: linear-gradient(90deg, transparent, var(--atomix-error), transparent);
6538
+ }
6539
+ .c-footer--success {
6540
+ --atomix-footer-bg: var(--atomix-success-bg-subtle);
6541
+ --atomix-footer-border-color: var(--atomix-success-border-subtle);
6542
+ --atomix-footer-color: var(--atomix-success-text);
6543
+ }
6544
+ .c-footer--success .c-footer__brand-name h3,
6545
+ .c-footer--success .c-footer__section-title {
6546
+ color: var(--atomix-success-text-emphasis);
6547
+ }
6548
+ .c-footer--success .c-footer__brand-description,
6549
+ .c-footer--success .c-footer__copyright {
6550
+ color: var(--atomix-success-text-muted);
6551
+ }
6552
+ .c-footer--success .c-footer__link {
6553
+ color: var(--atomix-success-text);
6554
+ }
6555
+ .c-footer--success .c-footer__link:hover, .c-footer--success .c-footer__link:focus {
6556
+ color: var(--atomix-success);
6557
+ }
6558
+ .c-footer--success .c-footer__link::before {
6559
+ background-color: var(--atomix-success);
6560
+ }
6561
+ .c-footer--success .c-footer__newsletter {
6562
+ background: linear-gradient(135deg, var(--atomix-success-bg), rgba(var(--atomix-success-bg-rgb), 0.8));
6563
+ border-color: var(--atomix-success-border);
6564
+ }
6565
+ .c-footer--success .c-footer__newsletter::before {
6566
+ background: linear-gradient(90deg, transparent, var(--atomix-success), transparent);
6567
+ }
6568
+ .c-footer--warning {
6569
+ --atomix-footer-bg: var(--atomix-warning-bg-subtle);
6570
+ --atomix-footer-border-color: var(--atomix-warning-border-subtle);
6571
+ --atomix-footer-color: var(--atomix-warning-text);
6572
+ }
6573
+ .c-footer--warning .c-footer__brand-name h3,
6574
+ .c-footer--warning .c-footer__section-title {
6575
+ color: var(--atomix-warning-text-emphasis);
6576
+ }
6577
+ .c-footer--warning .c-footer__brand-description,
6578
+ .c-footer--warning .c-footer__copyright {
6579
+ color: var(--atomix-warning-text-muted);
6580
+ }
6581
+ .c-footer--warning .c-footer__link {
6582
+ color: var(--atomix-warning-text);
6583
+ }
6584
+ .c-footer--warning .c-footer__link:hover, .c-footer--warning .c-footer__link:focus {
6585
+ color: var(--atomix-warning);
6586
+ }
6587
+ .c-footer--warning .c-footer__link::before {
6588
+ background-color: var(--atomix-warning);
6589
+ }
6590
+ .c-footer--warning .c-footer__newsletter {
6591
+ background: linear-gradient(135deg, var(--atomix-warning-bg), rgba(var(--atomix-warning-bg-rgb), 0.8));
6592
+ border-color: var(--atomix-warning-border);
6593
+ }
6594
+ .c-footer--warning .c-footer__newsletter::before {
6595
+ background: linear-gradient(90deg, transparent, var(--atomix-warning), transparent);
6596
+ }
6597
+ .c-footer--info {
6598
+ --atomix-footer-bg: var(--atomix-info-bg-subtle);
6599
+ --atomix-footer-border-color: var(--atomix-info-border-subtle);
6600
+ --atomix-footer-color: var(--atomix-info-text);
6601
+ }
6602
+ .c-footer--info .c-footer__brand-name h3,
6603
+ .c-footer--info .c-footer__section-title {
6604
+ color: var(--atomix-info-text-emphasis);
6605
+ }
6606
+ .c-footer--info .c-footer__brand-description,
6607
+ .c-footer--info .c-footer__copyright {
6608
+ color: var(--atomix-info-text-muted);
5447
6609
  }
5448
- .c-edge-panel__body {
5449
- padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
5450
- overflow-y: auto;
5451
- flex: 1 1;
5452
- -webkit-overflow-scrolling: touch;
6610
+ .c-footer--info .c-footer__link {
6611
+ color: var(--atomix-info-text);
5453
6612
  }
5454
- .c-edge-panel--start .c-edge-panel__container {
5455
- left: 0;
5456
- top: 0;
5457
- bottom: 0;
5458
- border-right: 1px solid var(--atomix-edge-panel-border-color);
5459
- transform: translateX(-100%);
6613
+ .c-footer--info .c-footer__link:hover, .c-footer--info .c-footer__link:focus {
6614
+ color: var(--atomix-info);
5460
6615
  }
5461
- .c-edge-panel--start .c-edge-panel__container.is-animating {
5462
- animation-name: slideInStart;
6616
+ .c-footer--info .c-footer__link::before {
6617
+ background-color: var(--atomix-info);
5463
6618
  }
5464
- .c-edge-panel--start .c-edge-panel__container.is-animating-out {
5465
- animation-name: slideOutStart;
6619
+ .c-footer--info .c-footer__newsletter {
6620
+ background: linear-gradient(135deg, var(--atomix-info-bg), rgba(var(--atomix-info-bg-rgb), 0.8));
6621
+ border-color: var(--atomix-info-border);
5466
6622
  }
5467
- .c-edge-panel--end .c-edge-panel__container {
5468
- right: 0;
5469
- top: 0;
5470
- bottom: 0;
5471
- left: auto;
5472
- border-left: 1px solid var(--atomix-edge-panel-border-color);
5473
- transform: translateX(100%);
6623
+ .c-footer--info .c-footer__newsletter::before {
6624
+ background: linear-gradient(90deg, transparent, var(--atomix-info), transparent);
5474
6625
  }
5475
- .c-edge-panel--end .c-edge-panel__container.is-animating {
5476
- animation-name: slideInEnd;
6626
+ .c-footer--light {
6627
+ --atomix-footer-bg: var(--atomix-light-bg-subtle);
6628
+ --atomix-footer-border-color: var(--atomix-light-border-subtle);
6629
+ --atomix-footer-color: var(--atomix-light-text);
5477
6630
  }
5478
- .c-edge-panel--end .c-edge-panel__container.is-animating-out {
5479
- animation-name: slideOutEnd;
6631
+ .c-footer--light .c-footer__brand-name h3,
6632
+ .c-footer--light .c-footer__section-title {
6633
+ color: var(--atomix-light-text-emphasis);
5480
6634
  }
5481
- .c-edge-panel--top .c-edge-panel__container {
5482
- left: 0;
5483
- right: 0;
5484
- top: 0;
5485
- bottom: auto;
5486
- width: 100%;
5487
- height: var(--atomix-edge-panel-height);
5488
- transform: translateY(-100%);
5489
- border-bottom: 1px solid var(--atomix-edge-panel-border-color);
6635
+ .c-footer--light .c-footer__brand-description,
6636
+ .c-footer--light .c-footer__copyright {
6637
+ color: var(--atomix-light-text-muted);
5490
6638
  }
5491
- .c-edge-panel--top .c-edge-panel__container.is-animating {
5492
- animation-name: slideInTop;
6639
+ .c-footer--light .c-footer__link {
6640
+ color: var(--atomix-light-text);
5493
6641
  }
5494
- .c-edge-panel--top .c-edge-panel__container.is-animating-out {
5495
- animation-name: slideOutTop;
6642
+ .c-footer--light .c-footer__link:hover, .c-footer--light .c-footer__link:focus {
6643
+ color: var(--atomix-light);
5496
6644
  }
5497
- .c-edge-panel--bottom .c-edge-panel__container {
5498
- left: 0;
5499
- right: 0;
5500
- bottom: 0;
5501
- top: auto;
5502
- width: 100%;
5503
- height: var(--atomix-edge-panel-height);
5504
- transform: translateY(100%);
5505
- border-top: 1px solid var(--atomix-edge-panel-border-color);
6645
+ .c-footer--light .c-footer__link::before {
6646
+ background-color: var(--atomix-light);
5506
6647
  }
5507
- .c-edge-panel--bottom .c-edge-panel__container.is-animating {
5508
- animation-name: slideInBottom;
6648
+ .c-footer--light .c-footer__newsletter {
6649
+ background: linear-gradient(135deg, var(--atomix-light-bg), rgba(var(--atomix-light-bg-rgb), 0.8));
6650
+ border-color: var(--atomix-light-border);
5509
6651
  }
5510
- .c-edge-panel--bottom .c-edge-panel__container.is-animating-out {
5511
- animation-name: slideOutBottom;
6652
+ .c-footer--light .c-footer__newsletter::before {
6653
+ background: linear-gradient(90deg, transparent, var(--atomix-light), transparent);
5512
6654
  }
5513
- .c-edge-panel.is-open .c-edge-panel__backdrop {
5514
- opacity: var(--atomix-edge-panel-backdrop-opacity);
6655
+ .c-footer--dark {
6656
+ --atomix-footer-bg: var(--atomix-dark-bg-subtle);
6657
+ --atomix-footer-border-color: var(--atomix-dark-border-subtle);
6658
+ --atomix-footer-color: var(--atomix-dark-text);
5515
6659
  }
5516
- .c-edge-panel.is-open .c-edge-panel__container {
5517
- transform: translateX(0) translateY(0);
6660
+ .c-footer--dark .c-footer__brand-name h3,
6661
+ .c-footer--dark .c-footer__section-title {
6662
+ color: var(--atomix-dark-text-emphasis);
5518
6663
  }
5519
- .c-edge-panel[data-mode=none] .c-edge-panel__container {
5520
- transition: none !important;
5521
- animation: none !important;
6664
+ .c-footer--dark .c-footer__brand-description,
6665
+ .c-footer--dark .c-footer__copyright {
6666
+ color: var(--atomix-dark-text-muted);
5522
6667
  }
5523
- .c-edge-panel[data-mode=none] .c-edge-panel__container.is-animating, .c-edge-panel[data-mode=none] .c-edge-panel__container.is-animating-out {
5524
- animation: none !important;
6668
+ .c-footer--dark .c-footer__link {
6669
+ color: var(--atomix-dark-text);
5525
6670
  }
5526
- .c-edge-panel[data-mode=none] .c-edge-panel__backdrop {
5527
- transition: none !important;
5528
- animation: none !important;
6671
+ .c-footer--dark .c-footer__link:hover, .c-footer--dark .c-footer__link:focus {
6672
+ color: var(--atomix-dark);
5529
6673
  }
5530
- .c-edge-panel[data-mode=none] .c-edge-panel__backdrop.is-animating, .c-edge-panel[data-mode=none] .c-edge-panel__backdrop.is-animating-out {
5531
- animation: none !important;
6674
+ .c-footer--dark .c-footer__link::before {
6675
+ background-color: var(--atomix-dark);
5532
6676
  }
5533
- .is-edgepanel-open {
5534
- --atomix-edge-panel-animation-duration: 300ms;
5535
- overflow: hidden;
6677
+ .c-footer--dark .c-footer__newsletter {
6678
+ background: linear-gradient(135deg, var(--atomix-dark-bg), rgba(var(--atomix-dark-bg-rgb), 0.8));
6679
+ border-color: var(--atomix-dark-border);
5536
6680
  }
5537
- .is-edgepanel-open.is-pushed {
5538
- transition: padding-left var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-right var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-top var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1), padding-bottom var(--atomix-edge-panel-animation-duration) cubic-bezier(0.16, 1, 0.3, 1);
5539
- position: fixed;
5540
- width: 100%;
5541
- height: 100%;
6681
+ .c-footer--dark .c-footer__newsletter::before {
6682
+ background: linear-gradient(90deg, transparent, var(--atomix-dark), transparent);
5542
6683
  }
5543
- .is-edgepanel-open:not(.is-pushed) {
5544
- position: fixed;
5545
- width: 100%;
5546
- height: 100%;
6684
+ .c-footer--sticky {
6685
+ position: sticky;
6686
+ bottom: 0;
6687
+ z-index: 10;
6688
+ box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
6689
+ -webkit-backdrop-filter: blur(10px);
6690
+ backdrop-filter: blur(10px);
6691
+ background-color: rgba(var(--atomix-footer-bg-rgb), 0.95);
5547
6692
  }
5548
- @keyframes fadeIn {
5549
- from {
5550
- opacity: 0;
5551
- }
5552
- to {
5553
- opacity: var(--atomix-edge-panel-backdrop-opacity);
6693
+ @media (prefers-color-scheme: dark) {
6694
+ .c-footer {
6695
+ --atomix-footer-bg: var(--atomix-surface-dark);
6696
+ --atomix-footer-color: var(--atomix-text-dark);
6697
+ --atomix-footer-border-color: var(--atomix-border-dark);
5554
6698
  }
5555
6699
  }
5556
- @keyframes fadeOut {
5557
- from {
5558
- opacity: var(--atomix-edge-panel-backdrop-opacity);
5559
- }
5560
- to {
5561
- opacity: 0;
5562
- }
6700
+ .dark-mode .c-footer {
6701
+ --atomix-footer-bg: var(--atomix-surface-dark);
6702
+ --atomix-footer-color: var(--atomix-text-dark);
6703
+ --atomix-footer-border-color: var(--atomix-border-dark);
5563
6704
  }
5564
- @keyframes slideInStart {
5565
- from {
5566
- transform: translateX(-100%);
5567
- }
5568
- to {
5569
- transform: translateX(0);
5570
- }
6705
+ .dark-mode .c-footer .c-footer__newsletter {
6706
+ background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
6707
+ border-color: rgba(255, 255, 255, 0.1);
5571
6708
  }
5572
- @keyframes slideOutStart {
5573
- from {
5574
- transform: translateX(0);
5575
- }
5576
- to {
5577
- transform: translateX(-100%);
5578
- }
6709
+ .dark-mode .c-footer .c-footer__social-link {
6710
+ background-color: rgba(255, 255, 255, 0.1);
5579
6711
  }
5580
- @keyframes slideInEnd {
5581
- from {
5582
- transform: translateX(100%);
5583
- }
5584
- to {
5585
- transform: translateX(0);
5586
- }
6712
+ .dark-mode .c-footer .c-footer__social-link:hover {
6713
+ background-color: rgba(255, 255, 255, 0.2);
5587
6714
  }
5588
- @keyframes slideOutEnd {
5589
- from {
5590
- transform: translateX(0);
5591
- }
5592
- to {
5593
- transform: translateX(100%);
6715
+ @media (prefers-reduced-motion: reduce) {
6716
+ .c-footer *,
6717
+ .c-footer *::before,
6718
+ .c-footer *::after {
6719
+ animation-duration: 0.01ms !important;
6720
+ animation-iteration-count: 1 !important;
6721
+ transition-duration: 0.01ms !important;
6722
+ scroll-behavior: auto !important;
6723
+ }
6724
+ .c-footer .c-footer__social-link:hover,
6725
+ .c-footer .c-footer__back-to-top:hover,
6726
+ .c-footer .c-footer__newsletter-button:hover {
6727
+ transform: none;
5594
6728
  }
5595
6729
  }
5596
- @keyframes slideInTop {
5597
- from {
5598
- transform: translateY(-100%);
5599
- }
5600
- to {
5601
- transform: translateY(0);
6730
+ @media (prefers-contrast: high) {
6731
+ .c-footer .c-footer__link,
6732
+ .c-footer .c-footer__social-link,
6733
+ .c-footer .c-footer__back-to-top {
6734
+ border: 2px solid currentColor;
5602
6735
  }
5603
6736
  }
5604
- @keyframes slideOutTop {
5605
- from {
5606
- transform: translateY(0);
6737
+ @media print {
6738
+ .c-footer {
6739
+ background: white !important;
6740
+ color: black !important;
6741
+ box-shadow: none !important;
5607
6742
  }
5608
- to {
5609
- transform: translateY(-100%);
6743
+ .c-footer .c-footer__back-to-top,
6744
+ .c-footer .c-footer__newsletter,
6745
+ .c-footer .c-footer__section-toggle {
6746
+ display: none !important;
5610
6747
  }
5611
- }
5612
- @keyframes slideInBottom {
5613
- from {
5614
- transform: translateY(100%);
6748
+ .c-footer .c-footer__social-link::after {
6749
+ content: " (" attr(href) ")";
6750
+ font-size: 0.8em;
6751
+ color: inherit;
5615
6752
  }
5616
- to {
5617
- transform: translateY(0);
6753
+ .c-footer .c-footer__section--collapsible .c-footer__section-content {
6754
+ max-height: none !important;
6755
+ overflow: visible !important;
5618
6756
  }
5619
6757
  }
5620
- @keyframes slideOutBottom {
5621
- from {
5622
- transform: translateY(0);
6758
+ @container (min-width: 768px) {
6759
+ .c-footer .c-footer__sections {
6760
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
5623
6761
  }
5624
- to {
5625
- transform: translateY(100%);
6762
+ }
6763
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
6764
+ .c-footer .c-footer__brand-logo img {
6765
+ image-rendering: -webkit-optimize-contrast;
6766
+ image-rendering: crisp-edges;
5626
6767
  }
5627
6768
  }
5628
6769
  .c-form {
@@ -5654,7 +6795,7 @@ a, a:hover {
5654
6795
  --atomix-hero-subtitle-font-weight: 400;
5655
6796
  --atomix-hero-title-font-weight: 700;
5656
6797
  --atomix-hero-text-font-weight: 400;
5657
- --atomix-hero-subtitle-margin-bottom: 12px;
6798
+ --atomix-hero-subtitle-margin-bottom: 0.75rem;
5658
6799
  --atomix-hero-text-margin-top: 0.75rem;
5659
6800
  --atomix-hero-actions-margin-top: 1.5rem;
5660
6801
  --atomix-hero-actions-inner-gap: 0.75rem;
@@ -5687,13 +6828,12 @@ a, a:hover {
5687
6828
  .c-hero__overlay {
5688
6829
  position: absolute;
5689
6830
  inset: 0;
5690
- background: var(--atomix-hero-overlay);
6831
+ background-color: var(--atomix-hero-overlay);
5691
6832
  opacity: var(--atomix-hero-overlay-opacity);
5692
- z-index: 1;
6833
+ z-index: 0;
5693
6834
  }
5694
6835
  .c-hero__container {
5695
6836
  position: relative;
5696
- z-index: 2;
5697
6837
  }
5698
6838
  .c-hero__grid {
5699
6839
  --atomix-gutter-x: var(--atomix-hero-grid-gutter);
@@ -5808,7 +6948,7 @@ a, a:hover {
5808
6948
  --atomix-input-padding-x: 0.75rem;
5809
6949
  --atomix-input-padding-y: 0.5rem;
5810
6950
  --atomix-input-border-color: var(--atomix-primary-border-subtle);
5811
- --atomix-input-border-width: 1px;
6951
+ --atomix-input-border-width: var(--atomix-border-width);
5812
6952
  --atomix-input-border-radius: 6px;
5813
6953
  --atomix-input-bg: var(--atomix-light);
5814
6954
  --atomix-input-textarea-height: 100px;
@@ -5893,6 +7033,21 @@ a, a:hover {
5893
7033
  --atomix-input-bg: var(--atomix-secondary-bg-subtle);
5894
7034
  pointer-events: none;
5895
7035
  }
7036
+ .c-input--glass {
7037
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
7038
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
7039
+ }
7040
+ .c-input--glass:focus, .c-input--glass:hover {
7041
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
7042
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 0 2px rgba(var(--atomix-primary-rgb, 122, 255, 215), 0.3);
7043
+ }
7044
+ .c-input--glass.c-input--textarea {
7045
+ resize: vertical;
7046
+ }
7047
+ .c-input--glass:disabled, .c-input--glass.is-disabled {
7048
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
7049
+ opacity: 0.6;
7050
+ }
5896
7051
  .c-list-group {
5897
7052
  --atomix-list-group-width: 100%;
5898
7053
  --atomix-list-group-bg: ;
@@ -5902,7 +7057,7 @@ a, a:hover {
5902
7057
  --atomix-list-group-item-color: var(--atomix-body-color);
5903
7058
  --atomix-list-group-item-disabled-color: var(--atomix-disabled-text-emphasis);
5904
7059
  --atomix-list-group-item-border-color: var(--atomix-primary-border-subtle);
5905
- --atomix-list-group-item-border-width: 1px;
7060
+ --atomix-list-group-item-border-width: var(--atomix-border-width);
5906
7061
  --atomix-list-group-item-bg: var(--atomix-body-bg);
5907
7062
  display: flex;
5908
7063
  flex-direction: column;
@@ -5911,14 +7066,14 @@ a, a:hover {
5911
7066
  list-style: none;
5912
7067
  width: 100%;
5913
7068
  max-width: var(--atomix-list-group-width);
5914
- background: var(--atomix-list-group-bg);
7069
+ background-color: var(--atomix-list-group-bg);
5915
7070
  }
5916
7071
  .c-list-group__item {
5917
7072
  padding: var(--atomix-list-group-item-padding-y) var(--atomix-list-group-item-padding-x);
5918
7073
  font-size: var(--atomix-list-group-item-font-size);
5919
7074
  color: var(--atomix-list-group-item-color);
5920
7075
  border-bottom: var(--atomix-list-group-item-border-width) solid var(--atomix-list-group-item-border-color);
5921
- background: var(--atomix-list-group-item-bg);
7076
+ background-color: var(--atomix-list-group-item-bg);
5922
7077
  }
5923
7078
  .c-list-group__item--primary {
5924
7079
  --atomix-list-group-item-bg: var(--atomix-brand-bg-subtle);
@@ -5983,7 +7138,7 @@ a, a:hover {
5983
7138
  left: 0;
5984
7139
  width: var(--atomix-list-item-dash-width);
5985
7140
  height: var(--atomix-list-item-dash-height);
5986
- background: var(--atomix-list-color);
7141
+ background-color: var(--atomix-list-color);
5987
7142
  transform: translateY(-50%);
5988
7143
  }
5989
7144
  .c-list--number {
@@ -6000,17 +7155,17 @@ a, a:hover {
6000
7155
  --atomix-menu-bg: var(--atomix-body-bg);
6001
7156
  --atomix-menu-border-radius: 1.25rem;
6002
7157
  --atomix-menu-box-shadow: var(--atomix-box-shadow);
6003
- --atomix-menu-items-gap: 4px;
6004
- --atomix-menu-item-padding-x: 8px;
6005
- --atomix-menu-item-padding-y: 8px;
6006
- --atomix-menu-item-inner-gap: 8px;
7158
+ --atomix-menu-items-gap: 0.25rem;
7159
+ --atomix-menu-item-padding-x: 0.5rem;
7160
+ --atomix-menu-item-padding-y: 0.5rem;
7161
+ --atomix-menu-item-inner-gap: 0.5rem;
6007
7162
  --atomix-menu-item-color: var(--atomix-primary-text-emphasis);
6008
7163
  --atomix-menu-item-font-size: 1rem;
6009
7164
  --atomix-menu-item-font-weight: 700;
6010
7165
  --atomix-menu-item-bg: var(--atomix-body-bg);
6011
7166
  --atomix-menu-item-bg-hover: var(--atomix-secondary-bg-subtle);
6012
7167
  --atomix-menu-item-bg-active: var(--atomix-brand-bg-subtle);
6013
- --atomix-menu-item-icon-size: 20px;
7168
+ --atomix-menu-item-icon-size: 1.25rem;
6014
7169
  --atomix-menu-subitem-color: var(--atomix-secondary-text-emphasis);
6015
7170
  --atomix-menu-subitem-color-active: var(--atomix-brand-text-emphasis);
6016
7171
  --atomix-menu-subitem-font-weight: 400;
@@ -6218,12 +7373,12 @@ a, a:hover {
6218
7373
  --atomix-messages-text-font-size: 0.875rem;
6219
7374
  --atomix-messages-text-bg: var(--atomix-tertiary-bg-subtle);
6220
7375
  --atomix-messages-text-border-radius: 1.25rem;
6221
- --atomix-messages-file-padding-x: 12px;
6222
- --atomix-messages-file-padding-y: 12px;
7376
+ --atomix-messages-file-padding-x: 0.75rem;
7377
+ --atomix-messages-file-padding-y: 0.75rem;
6223
7378
  --atomix-messages-file-text-font-size: 0.875rem;
6224
7379
  --atomix-messages-file-text-color: var(--atomix-body-color);
6225
7380
  --atomix-messages-file-icon-size: 2.5rem;
6226
- --atomix-messages-file-icon-margin-right: 8px;
7381
+ --atomix-messages-file-icon-margin-right: 0.5rem;
6227
7382
  --atomix-messages-file-icon-bg: #cce0ff;
6228
7383
  --atomix-messages-file-info-font-size: 0.75rem;
6229
7384
  --atomix-messages-file-info-color: var(--atomix-tertiary-text-emphasis);
@@ -6243,7 +7398,7 @@ a, a:hover {
6243
7398
  --atomix-messages-input-border-width: 1px;
6244
7399
  --atomix-messages-input-border-color: var(--atomix-secondary-border-subtle);
6245
7400
  --atomix-messages-input-border-radius: 1rem;
6246
- --atomix-messages-input-options-icons-size: 24px;
7401
+ --atomix-messages-input-options-icons-size: 1.5rem;
6247
7402
  --atomix-messages-input-options-row-gap: 0.5rem;
6248
7403
  --atomix-messages-body-height: calc(100vh - 600px);
6249
7404
  width: 100%;
@@ -6310,7 +7465,7 @@ a, a:hover {
6310
7465
  flex-wrap: wrap;
6311
7466
  padding: var(--atomix-messages-file-padding-y) var(--atomix-messages-file-padding-x);
6312
7467
  border-radius: 0.25rem var(--atomix-messages-file-border-radius) var(--atomix-messages-file-border-radius) 0.25rem;
6313
- background: var(--atomix-messages-file-bg);
7468
+ background-color: var(--atomix-messages-file-bg);
6314
7469
  }
6315
7470
  .c-messages__file-icon {
6316
7471
  display: grid !important;
@@ -6468,7 +7623,7 @@ a, a:hover {
6468
7623
  --atomix-modal-sub-margin-top: 0.25rem;
6469
7624
  --atomix-modal-sub-color: var(--atomix-gray-7);
6470
7625
  --atomix-modal-sub-font-size: 0.875rem;
6471
- --atomix-modal-footer-items-gap: 0.5rem;
7626
+ --atomix-modal-footer-items-gap: 2rem;
6472
7627
  --atomix-modal-backdrop-bg: var(--atomix-black);
6473
7628
  --atomix-modal-backdrop-opacity: 0.6;
6474
7629
  --atomix-modal-backdrop-blur: 10px;
@@ -6686,14 +7841,14 @@ a, a:hover {
6686
7841
  left: 50%;
6687
7842
  transform: translateX(-50%);
6688
7843
  z-index: 1000;
6689
- background: var(--atomix-body-bg);
7844
+ background-color: var(--atomix-body-bg);
6690
7845
  border: 1px solid var(--atomix-border-color);
6691
7846
  border-radius: 50rem;
6692
7847
  box-shadow: var(--atomix-box-shadow-lg);
6693
7848
  padding: 0.5rem 1rem;
6694
7849
  -webkit-backdrop-filter: blur(10px);
6695
7850
  backdrop-filter: blur(10px);
6696
- background: rgba(var(--atomix-body-bg-rgb), 0.95);
7851
+ background-color: rgba(var(--atomix-body-bg-rgb), 0.95);
6697
7852
  }
6698
7853
  .c-nav--float-top-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-top-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item {
6699
7854
  margin-left: 0.25rem;
@@ -6719,7 +7874,7 @@ a, a:hover {
6719
7874
  --atomix-navbar-border-width: 0;
6720
7875
  --atomix-navbar-border-color: var(--atomix-primary-border-subtle);
6721
7876
  --atomix-navbar-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
6722
- --atomix-navbar-brand-margin-end: 1.875rem;
7877
+ --atomix-navbar-brand-margin-end: ;
6723
7878
  --atomix-navbar-brand-font-size: 1.25rem;
6724
7879
  --atomix-navbar-brand-font-weight: 700;
6725
7880
  --atomix-navbar-brand-color: var(--atomix-primary);
@@ -6727,7 +7882,7 @@ a, a:hover {
6727
7882
  --atomix-navbar-toggler-color: var(--atomix-primary);
6728
7883
  --atomix-navbar-toggler-bg: transparent;
6729
7884
  --atomix-navbar-toggler-border: 0;
6730
- --atomix-navbar-toggler-border-radius: 4px;
7885
+ --atomix-navbar-toggler-border-radius: 0.25rem;
6731
7886
  --atomix-navbar-toggler-focus-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6732
7887
  --atomix-navbar-collapse-padding-top: 0.5rem;
6733
7888
  --atomix-navbar-collapse-transition: all 0.3s ease-in-out;
@@ -7074,23 +8229,23 @@ a, a:hover {
7074
8229
  --atomix-callout-padding-y: 1rem;
7075
8230
  --atomix-callout-tost-padding-x: 1rem;
7076
8231
  --atomix-callout-tost-padding-y: 1rem;
7077
- --atomix-callout-bg: #ffffff;
8232
+ --atomix-callout-bg: var(--atomix-body-bg);
7078
8233
  --atomix-callout-border-radius: 6px;
7079
- --atomix-callout-border-color: #e9ecef;
8234
+ --atomix-callout-border-color: var(--atomix-border-color);
7080
8235
  --atomix-callout-border-witdh: var(--atomix-border-width);
7081
8236
  --atomix-callout-title-font-size: 1rem;
7082
8237
  --atomix-callout-title-font-weight: 600;
7083
- --atomix-callout-title-color: #343a40;
8238
+ --atomix-callout-title-color: var(--atomix-body-color);
7084
8239
  --atomix-callout-text-font-size: ;
7085
8240
  --atomix-callout-text-font-weight: 400;
7086
- --atomix-callout-text-color: #868e96;
8241
+ --atomix-callout-text-color: var(--atomix-body-color);
7087
8242
  --atomix-callout-message-spacer: 0.75rem;
7088
8243
  --atomix-callout-icon-size: 1.25rem;
7089
- --atomix-callout-icon-color: #040dbf;
8244
+ --atomix-callout-icon-color: var(--atomix-primary);
7090
8245
  --atomix-callout-close-btn-size: 1.25rem;
7091
8246
  --atomix-callout-actions-spacer: 0.5rem;
7092
8247
  --atomix-callout-actions-spacer-y: 0.75rem;
7093
- --atomix-callout-toast-bg: #ffffff;
8248
+ --atomix-callout-toast-bg: var(--atomix-body-bg);
7094
8249
  --atomix-callout-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
7095
8250
  --atomix-callout-transition-duration: 0.3s;
7096
8251
  --atomix-callout-transition-timing: cubic-bezier(0.16, 1, 0.3, 1);
@@ -7101,7 +8256,7 @@ a, a:hover {
7101
8256
  max-width: var(--atomix-callout-width);
7102
8257
  gap: var(--atomix-callout-actions-spacer);
7103
8258
  padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
7104
- background: var(--atomix-callout-bg);
8259
+ background-color: var(--atomix-callout-bg);
7105
8260
  border-radius: var(--atomix-callout-border-radius);
7106
8261
  border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
7107
8262
  transition: opacity var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing), transform var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing);
@@ -7140,9 +8295,9 @@ a, a:hover {
7140
8295
  .c-callout__actions {
7141
8296
  display: flex;
7142
8297
  align-items: center;
7143
- flex-wrap: wrap;
7144
8298
  gap: var(--atomix-callout-actions-spacer);
7145
8299
  margin-left: auto;
8300
+ margin-right: 10px;
7146
8301
  }
7147
8302
  .c-callout__close-btn {
7148
8303
  display: inline-flex;
@@ -7244,9 +8399,35 @@ a, a:hover {
7244
8399
  --atomix-callout-title-color: var(--atomix-light);
7245
8400
  --atomix-callout-text-color: #dee2e6;
7246
8401
  --atomix-callout-bg: var(--atomix-dark);
7247
- --atomix-callout-border-color: var(--atomix-primary-border-subtle);
8402
+ --atomix-callout-border-color: var(--atomix-dark-border-subtle);
7248
8403
  --atomix-callout-icon-color: var(--atomix-light);
7249
8404
  }
8405
+ .c-callout--glass {
8406
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
8407
+ padding: 0;
8408
+ border: none;
8409
+ display: block;
8410
+ }
8411
+ .c-callout--glass .c-callout__glass-content {
8412
+ display: flex;
8413
+ justify-content: center;
8414
+ align-items: center;
8415
+ padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
8416
+ border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
8417
+ max-width: var(--atomix-callout-width);
8418
+ border-radius: var(--atomix-callout-border-radius);
8419
+ width: 100%;
8420
+ }
8421
+ .c-callout--glass .c-callout__title {
8422
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
8423
+ }
8424
+ .c-callout--glass .c-callout__text {
8425
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
8426
+ }
8427
+ .c-callout--glass.c-callout--toast {
8428
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
8429
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
8430
+ }
7250
8431
  .c-callout.is-hide {
7251
8432
  opacity: 0;
7252
8433
  transform: translateY(-10px);
@@ -7324,7 +8505,7 @@ a, a:hover {
7324
8505
  --atomix-pagination-color: var(--atomix-gray-8);
7325
8506
  --atomix-pagination-bg: var(--atomix-body-bg);
7326
8507
  --atomix-pagination-focus-border-color: var(--atomix-brand-border-subtle);
7327
- --atomix-pagination-focus-border-width: 2px;
8508
+ --atomix-pagination-focus-border-width: calc(var(--atomix-border-width) * 2);
7328
8509
  --atomix-pagination-hover-color: var(--atomix-primary);
7329
8510
  --atomix-pagination-hover-bg: var(--atomix-primary-1);
7330
8511
  --atomix-pagination-active-color: var(--atomix-light);
@@ -7471,7 +8652,7 @@ a, a:hover {
7471
8652
  flex-direction: column;
7472
8653
  gap: var(--atomix-popover-inner-gap-y) var(--atomix-popover-inner-gap-x);
7473
8654
  padding: var(--atomix-popover-padding-y) var(--atomix-popover-padding-x);
7474
- background: var(--atomix-popover-bg);
8655
+ background-color: var(--atomix-popover-bg);
7475
8656
  border-radius: var(--atomix-popover-border-radius);
7476
8657
  box-shadow: var(--atomix-popover-box-shadow);
7477
8658
  }
@@ -7479,7 +8660,7 @@ a, a:hover {
7479
8660
  position: absolute;
7480
8661
  width: var(--atomix-popover-arrow-size);
7481
8662
  height: var(--atomix-popover-arrow-size);
7482
- background: var(--atomix-popover-bg);
8663
+ background-color: var(--atomix-popover-bg);
7483
8664
  box-shadow: var(--atomix-popover-box-shadow);
7484
8665
  z-index: 1;
7485
8666
  transform-origin: center;
@@ -7772,11 +8953,11 @@ a, a:hover {
7772
8953
  font-size: var(--atomix-rating-value-font-size);
7773
8954
  }
7774
8955
  .c-rating--sm {
7775
- --atomix-rating-star-size: 16px;
8956
+ --atomix-rating-star-size: 1rem;
7776
8957
  --atomix-rating-stars-gap: 0.0625rem;
7777
8958
  }
7778
8959
  .c-rating--lg {
7779
- --atomix-rating-star-size: 48px;
8960
+ --atomix-rating-star-size: 3rem;
7780
8961
  --atomix-rating-stars-gap: 0.25rem;
7781
8962
  }
7782
8963
  .c-rating-container {
@@ -7864,7 +9045,7 @@ a, a:hover {
7864
9045
  .c-river__overlay {
7865
9046
  position: absolute;
7866
9047
  inset: 0;
7867
- background: var(--atomix-river-overlay);
9048
+ background-color: var(--atomix-river-overlay);
7868
9049
  opacity: var(--atomix-river-overlay-opacity);
7869
9050
  border-radius: var(--atomix-river-border-radius);
7870
9051
  }
@@ -8003,7 +9184,7 @@ a, a:hover {
8003
9184
  --atomix-sectionintro-text-font-weight: 400;
8004
9185
  --atomix-sectionintro-label-margin-bottom: 0.75rem;
8005
9186
  --atomix-sectionintro-text-margin-top: 0.75rem;
8006
- --atomix-sectionintro-actions-margin-top: 1.4375rem;
9187
+ --atomix-sectionintro-actions-margin-top: 0.75rem;
8007
9188
  --atomix-sectionintro-actions-inner-gap: 0.75rem;
8008
9189
  --atomix-sectionintro-width: 40.5rem;
8009
9190
  --atomix-sectionintro-image-margin-top: 1.5rem;
@@ -8246,7 +9427,7 @@ a, a:hover {
8246
9427
  --atomix-side-menu-padding-y: 1.5rem;
8247
9428
  --atomix-side-menu-bg: var(--atomix-body-bg);
8248
9429
  --atomix-side-menu-border-radius: 1rem;
8249
- --atomix-side-menu-border-width: 1px;
9430
+ --atomix-side-menu-border-width: var(--atomix-border-width);
8250
9431
  --atomix-side-menu-border-color: var(--atomix-border-color);
8251
9432
  --atomix-side-menu-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
8252
9433
  --atomix-side-menu-title-font-size: 1rem;
@@ -8280,14 +9461,14 @@ a, a:hover {
8280
9461
  --atomix-side-menu-inner-padding-top: 1.25rem;
8281
9462
  width: 100%;
8282
9463
  padding: var(--atomix-side-menu-padding-y) var(--atomix-side-menu-padding-x);
8283
- background: var(--atomix-side-menu-bg);
9464
+ background-color: var(--atomix-side-menu-bg);
8284
9465
  border-radius: var(--atomix-side-menu-border-radius);
8285
9466
  border: var(--atomix-side-menu-border-width) solid var(--atomix-side-menu-border-color);
8286
9467
  box-shadow: var(--atomix-side-menu-box-shadow);
8287
9468
  }
8288
9469
  @media (max-width: 991.98px) {
8289
9470
  .c-side-menu {
8290
- padding: 0.75rem 1rem;
9471
+ padding: 1rem 1rem;
8291
9472
  }
8292
9473
  }
8293
9474
  @media (max-width: 991.98px) {
@@ -8318,7 +9499,7 @@ a, a:hover {
8318
9499
  justify-content: space-between;
8319
9500
  width: 100%;
8320
9501
  padding: var(--atomix-side-menu-toggler-padding-y) var(--atomix-side-menu-toggler-padding-x);
8321
- background: var(--atomix-side-menu-toggler-bg);
9502
+ background-color: var(--atomix-side-menu-toggler-bg);
8322
9503
  border: none;
8323
9504
  border-radius: var(--atomix-side-menu-toggler-border-radius);
8324
9505
  cursor: pointer;
@@ -8334,7 +9515,7 @@ a, a:hover {
8334
9515
  }
8335
9516
  }
8336
9517
  .c-side-menu__toggler:hover {
8337
- background: var(--atomix-side-menu-toggler-hover-bg);
9518
+ background-color: var(--atomix-side-menu-toggler-hover-bg);
8338
9519
  }
8339
9520
  .c-side-menu__toggler:focus {
8340
9521
  outline: 2px solid var(--atomix-focus-ring-color);
@@ -8372,7 +9553,7 @@ a, a:hover {
8372
9553
  color: var(--atomix-side-menu-item-color);
8373
9554
  font-size: var(--atomix-side-menu-item-font-size);
8374
9555
  font-weight: var(--atomix-side-menu-item-font-weight);
8375
- background: var(--atomix-side-menu-item-bg);
9556
+ background-color: var(--atomix-side-menu-item-bg);
8376
9557
  border: none;
8377
9558
  border-radius: var(--atomix-side-menu-item-border-radius);
8378
9559
  text-decoration: none;
@@ -8381,7 +9562,7 @@ a, a:hover {
8381
9562
  }
8382
9563
  .c-side-menu__link:hover {
8383
9564
  color: var(--atomix-side-menu-item-hover-color);
8384
- background: var(--atomix-side-menu-item-hover-bg);
9565
+ background-color: var(--atomix-side-menu-item-hover-bg);
8385
9566
  text-decoration: none;
8386
9567
  }
8387
9568
  .c-side-menu__link:focus {
@@ -8393,12 +9574,12 @@ a, a:hover {
8393
9574
  }
8394
9575
  .c-side-menu__link.is-active {
8395
9576
  color: var(--atomix-side-menu-item-active-color);
8396
- background: var(--atomix-side-menu-item-active-bg);
9577
+ background-color: var(--atomix-side-menu-item-active-bg);
8397
9578
  font-weight: 500;
8398
9579
  }
8399
9580
  .c-side-menu__link.is-disabled, .c-side-menu__link[aria-disabled=true] {
8400
9581
  color: var(--atomix-side-menu-item-disabled-color);
8401
- background: var(--atomix-side-menu-item-disabled-bg);
9582
+ background-color: var(--atomix-side-menu-item-disabled-bg);
8402
9583
  cursor: not-allowed;
8403
9584
  pointer-events: none;
8404
9585
  opacity: 0.6;
@@ -8442,7 +9623,7 @@ a, a:hover {
8442
9623
  display: inline-block;
8443
9624
  width: var(--atomix-skeleton-width);
8444
9625
  min-height: var(--atomix-skeleton-height);
8445
- background: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
9626
+ background-color: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
8446
9627
  background-size: 400% 100%;
8447
9628
  border-radius: var(--atomix-skeleton-border-radius);
8448
9629
  animation-name: atomix--skeleton-loading;
@@ -8538,7 +9719,7 @@ a, a:hover {
8538
9719
  display: flex;
8539
9720
  align-items: center;
8540
9721
  justify-content: center;
8541
- background: var(--atomix-secondary-bg-subtle);
9722
+ background-color: var(--atomix-secondary-bg-subtle);
8542
9723
  border: 2px dashed var(--atomix-primary-border-subtle);
8543
9724
  border-radius: 0.5rem;
8544
9725
  }
@@ -8578,7 +9759,7 @@ a, a:hover {
8578
9759
  height: var(--atomix-slider-nav-size);
8579
9760
  border: none;
8580
9761
  border-radius: 50rem;
8581
- background: var(--atomix-primary-bg-subtle);
9762
+ background-color: var(--atomix-primary-bg-subtle);
8582
9763
  color: var(--atomix-primary-text);
8583
9764
  cursor: pointer;
8584
9765
  pointer-events: auto;
@@ -8591,7 +9772,7 @@ a, a:hover {
8591
9772
  }
8592
9773
  .c-slider__navigation-prev:hover,
8593
9774
  .c-slider__navigation-next:hover {
8594
- background: var(--atomix-secondary-bg-subtle);
9775
+ background-color: var(--atomix-secondary-bg-subtle);
8595
9776
  transform: translateY(-50%) scale(1.05);
8596
9777
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
8597
9778
  }
@@ -8643,20 +9824,20 @@ a, a:hover {
8643
9824
  height: 0.5rem;
8644
9825
  border-radius: 50rem;
8645
9826
  border: none;
8646
- background: var(--atomix-tertiary-bg-subtle);
9827
+ background-color: var(--atomix-tertiary-bg-subtle);
8647
9828
  cursor: pointer;
8648
9829
  pointer-events: auto;
8649
9830
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
8650
9831
  }
8651
9832
  .c-slider__pagination-bullet:hover {
8652
- background: var(--atomix-secondary-bg-subtle);
9833
+ background-color: var(--atomix-secondary-bg-subtle);
8653
9834
  transform: scale(1.2);
8654
9835
  }
8655
9836
  .c-slider__pagination-bullet:active {
8656
9837
  transform: scale(1.1);
8657
9838
  }
8658
9839
  .c-slider__pagination-bullet--active {
8659
- background: var(--atomix-primary);
9840
+ background-color: var(--atomix-primary);
8660
9841
  transform: scale(1.2);
8661
9842
  }
8662
9843
  .c-slider__empty-message {
@@ -8864,7 +10045,7 @@ a, a:hover {
8864
10045
  --atomix-tabs-nav-btn-bg-active: var(--atomix-body-bg);
8865
10046
  --atomix-tabs-nav-btn-bg-disabled: var(--atomix-body-bg);
8866
10047
  --atomix-tabs-nav-btn-border-radius: 0px;
8867
- --atomix-tabs-nav-btn-border-width: 2px;
10048
+ --atomix-tabs-nav-btn-border-width: calc(var(--atomix-border-width) * 2);
8868
10049
  --atomix-tabs-nav-btn-border-color: transparent;
8869
10050
  --atomix-tabs-nav-btn-border-active-color: var(--atomix-primary);
8870
10051
  --atomix-tabs-nav-btn-border-disabled-color: var(--atomix-primary-border-subtle);
@@ -8954,7 +10135,7 @@ a, a:hover {
8954
10135
  --atomix-testimonial-width: 100%;
8955
10136
  --atomix-testimonial-padding-x: 0rem;
8956
10137
  --atomix-testimonial-padding-y: 0rem;
8957
- --atomix-testimonial-inner-spacer: 1.25rem;
10138
+ --atomix-testimonial-inner-spacer: 5rem;
8958
10139
  --atomix-testimonial-bg: ;
8959
10140
  --atomix-testimonial-quote-font-size: 1.5rem;
8960
10141
  --atomix-testimonial-quote-font-size-sm: 1.125rem;
@@ -8965,11 +10146,11 @@ a, a:hover {
8965
10146
  --atomix-testimonial-author-color: var(--atomix-body-color);
8966
10147
  --atomix-testimonial-author-role-font-size: 0.75rem;
8967
10148
  --atomix-testimonial-author-role-color: var(--atomix-tertiary-text-emphasis);
8968
- --atomix-testimonial-author-inner-spacer: 12px;
10149
+ --atomix-testimonial-author-inner-spacer: 3rem;
8969
10150
  width: 100%;
8970
10151
  max-width: var(--atomix-testimonial-width);
8971
10152
  padding: var(--atomix-testimonial-padding-y) var(--atomix-testimonial-padding-x);
8972
- background: var(--atomix-testimonial-bg);
10153
+ background-color: var(--atomix-testimonial-bg);
8973
10154
  }
8974
10155
  .c-testimonial__quote {
8975
10156
  color: var(--atomix-testimonial-quote-color);
@@ -9160,7 +10341,7 @@ a, a:hover {
9160
10341
  width: var(--atomix-toggle-switch-handle-width);
9161
10342
  height: var(--atomix-toggle-switch-handle-height);
9162
10343
  margin: var(--atomix-toggle-switch-handle-margin);
9163
- background: var(--atomix-toggle-switch-handle-bg);
10344
+ background-color: var(--atomix-toggle-switch-handle-bg);
9164
10345
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
9165
10346
  transition-property: all;
9166
10347
  transition-duration: 0.2s;
@@ -9181,7 +10362,7 @@ a, a:hover {
9181
10362
  pointer-events: none;
9182
10363
  }
9183
10364
  .c-toggle.is-disabled:not(.is-on) .c-toggle__switch {
9184
- background: var(--atomix-toggle-switch-disabled-bg);
10365
+ background-color: var(--atomix-toggle-switch-disabled-bg);
9185
10366
  }
9186
10367
  .c-toggle.is-disabled.is-on {
9187
10368
  pointer-events: none;
@@ -9190,7 +10371,7 @@ a, a:hover {
9190
10371
  content: "";
9191
10372
  position: absolute;
9192
10373
  inset: 0;
9193
- background: rgba(173, 181, 189, 0.6);
10374
+ background-color: rgba(173, 181, 189, 0.6);
9194
10375
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
9195
10376
  }
9196
10377
  .c-tooltip {
@@ -9310,12 +10491,12 @@ a, a:hover {
9310
10491
  --atomix-upload-inner-padding-x: 0.75rem;
9311
10492
  --atomix-upload-inner-padding-y: 0.75rem;
9312
10493
  --atomix-upload-border-radius: 0.5rem;
9313
- --atomix-upload-border-width: 0.0625rem;
10494
+ --atomix-upload-border-width: var(--atomix-border-width);
9314
10495
  --atomix-upload-border-color: var(--atomix-primary-border-subtle);
9315
10496
  --atomix-upload-bg: var(--atomix-body-bg);
9316
10497
  --atomix-upload-hover-bg: ;
9317
- --atomix-upload-icon-size: 32px;
9318
- --atomix-upload-icon-padding: 0px;
10498
+ --atomix-upload-icon-size: 2rem;
10499
+ --atomix-upload-icon-padding: 0rem;
9319
10500
  --atomix-upload-icon-bg: var(--atomix-body-bg);
9320
10501
  --atomix-upload-title-font-size: 1.25rem;
9321
10502
  --atomix-upload-title-font-weight: 700;
@@ -9324,7 +10505,7 @@ a, a:hover {
9324
10505
  --atomix-upload-text-font-size: 0.875rem;
9325
10506
  --atomix-upload-text-font-weight: 400;
9326
10507
  --atomix-upload-text-color: var(--atomix-body-color);
9327
- --atomix-upload-text-margin-top: 0.25rem;
10508
+ --atomix-upload-text-margin-top: 1rem;
9328
10509
  --atomix-upload-btn-margin-top: 1.25rem;
9329
10510
  --atomix-upload-btn-margin-left: 1rem;
9330
10511
  --atomix-upload-helper-text-font-size: 0.875rem;
@@ -9334,9 +10515,9 @@ a, a:hover {
9334
10515
  --atomix-upload-loader-padding-x: 0.75rem;
9335
10516
  --atomix-upload-loader-padding-y: 0.75rem;
9336
10517
  --atomix-upload-loader-border-radius: 0.5rem;
9337
- --atomix-upload-loader-border-width: 1px;
10518
+ --atomix-upload-loader-border-width: var(--atomix-border-width);
9338
10519
  --atomix-upload-loader-border-color: var(--atomix-primary-border-subtle);
9339
- --atomix-upload-loader-margin-top: 20px;
10520
+ --atomix-upload-loader-margin-top: 1.25rem;
9340
10521
  --atomix-upload-loader-title-color: var(--atomix-body-color);
9341
10522
  --atomix-upload-loader-title-font-size: 0.875rem;
9342
10523
  --atomix-upload-loader-title-font-weight: 400;
@@ -9350,7 +10531,7 @@ a, a:hover {
9350
10531
  --atomix-upload-loader-progress: 39%;
9351
10532
  --atomix-upload-content-margin-left: 1rem;
9352
10533
  --atomix-upload-disabled-opacity: 0.5;
9353
- --atomix-upload-loader-control-icon-size: 20px;
10534
+ --atomix-upload-loader-control-icon-size: 1.25rem;
9354
10535
  --atomix-upload-loader-contorl-color: var(--atomix-body-color);
9355
10536
  width: 100%;
9356
10537
  max-width: var(--atomix-upload-width);
@@ -9478,7 +10659,7 @@ a, a:hover {
9478
10659
  .c-upload--large {
9479
10660
  --atomix-upload-width: 43.75rem;
9480
10661
  --atomix-upload-inner-padding-x: 1.25rem;
9481
- --atomix-upload-inner-padding-y: 1.375rem;
10662
+ --atomix-upload-inner-padding-y: ;
9482
10663
  --atomix-upload-title-margin-top: 0;
9483
10664
  --atomix-upload-btn-margin-top: 0;
9484
10665
  --atomix-upload-helper-text-margin-top: 0;
@@ -9514,34 +10695,34 @@ a, a:hover {
9514
10695
  pointer-events: none;
9515
10696
  }
9516
10697
  .c-video-player {
9517
- --atomix-video-player-bg: #000;
9518
- --atomix-video-player-border-radius: 12px;
9519
- --atomix-video-player-controls-padding: 20px 16px 16px;
9520
- --atomix-video-player-progress-height: 4px;
9521
- --atomix-video-player-button-size: 40px;
9522
- --atomix-video-player-font-size: 14px;
9523
- --atomix-video-player-transition: all 0.3s ease;
9524
- --atomix-video-player-volume-width: 80px;
9525
- --atomix-video-player-volume-width-mobile: 60px;
9526
- --atomix-video-player-volume-height: 4px;
9527
- --atomix-video-player-volume-height-hover: 6px;
9528
- --atomix-video-player-volume-thumb-size: 12px;
9529
- --atomix-video-player-volume-bg: rgba(255, 255, 255, 0.3);
9530
- --atomix-video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
9531
- --atomix-video-player-volume-fill: var(--atomix-primary);
9532
- --atomix-video-player-volume-fill-hover: var(--atomix-primary-7);
9533
- --atomix-video-player-volume-fill-active: var(--atomix-primary-8);
9534
- --atomix-video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
9535
- --atomix-video-player-subtitle-color: #ffffff;
9536
- --atomix-video-player-subtitle-font-size: 18px;
9537
- --atomix-video-player-subtitle-font-weight: 500;
9538
- --atomix-video-player-subtitle-line-height: 1.5;
9539
- --atomix-video-player-subtitle-border-radius: 6px;
9540
- --atomix-video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
9541
- --atomix-video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
10698
+ --atomix--video-player-bg: #000;
10699
+ --atomix--video-player-border-radius: 12px;
10700
+ --atomix--video-player-controls-padding: 20px 16px 16px;
10701
+ --atomix--video-player-progress-height: 4px;
10702
+ --atomix--video-player-button-size: 40px;
10703
+ --atomix--video-player-font-size: 14px;
10704
+ --atomix--video-player-transition: all 0.3s ease;
10705
+ --atomix--video-player-volume-width: 80px;
10706
+ --atomix--video-player-volume-width-mobile: 60px;
10707
+ --atomix--video-player-volume-height: 4px;
10708
+ --atomix--video-player-volume-height-hover: 6px;
10709
+ --atomix--video-player-volume-thumb-size: 12px;
10710
+ --atomix--video-player-volume-bg: rgba(255, 255, 255, 0.3);
10711
+ --atomix--video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
10712
+ --atomix--video-player-volume-fill: var(--atomix-primary);
10713
+ --atomix--video-player-volume-fill-hover: var(--atomix-primary-7);
10714
+ --atomix--video-player-volume-fill-active: var(--atomix-primary-8);
10715
+ --atomix--video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
10716
+ --atomix--video-player-subtitle-color: #ffffff;
10717
+ --atomix--video-player-subtitle-font-size: 18px;
10718
+ --atomix--video-player-subtitle-font-weight: 500;
10719
+ --atomix--video-player-subtitle-line-height: 1.5;
10720
+ --atomix--video-player-subtitle-border-radius: 6px;
10721
+ --atomix--video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
10722
+ --atomix--video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
9542
10723
  position: relative;
9543
10724
  width: 100%;
9544
- background: var(--atomix--video-player-bg, #000);
10725
+ background-color: var(--atomix--video-player-bg, #000);
9545
10726
  border-radius: var(--atomix--video-player-border-radius, 0.5rem);
9546
10727
  overflow: hidden;
9547
10728
  font-family: var(--atomix--font-family-base);
@@ -9795,7 +10976,7 @@ a, a:hover {
9795
10976
  bottom: 3.125rem;
9796
10977
  right: 0;
9797
10978
  min-width: 12.5rem;
9798
- background: rgba(var(--atomix-primary-rgb), 0.7);
10979
+ background-color: rgba(var(--atomix-primary-rgb), 0.7);
9799
10980
  border-radius: 0.5rem;
9800
10981
  padding: 0.5rem;
9801
10982
  -webkit-backdrop-filter: blur(10px);
@@ -9991,6 +11172,24 @@ a, a:hover {
9991
11172
  .c-video-player--ambient .c-video-player__ambient-canvas {
9992
11173
  display: block;
9993
11174
  }
11175
+ .c-video-player--glass {
11176
+ position: relative;
11177
+ }
11178
+ .c-video-player__glass-overlay {
11179
+ overflow: hidden;
11180
+ position: absolute;
11181
+ top: 0;
11182
+ left: 0;
11183
+ border-radius: var(--atomix--video-player-border-radius, 0.5rem);
11184
+ }
11185
+ .c-video-player__glass-content {
11186
+ position: absolute;
11187
+ top: 0;
11188
+ left: 0;
11189
+ right: 0;
11190
+ bottom: 0;
11191
+ pointer-events: auto;
11192
+ }
9994
11193
  .c-video-player__subtitles {
9995
11194
  position: absolute;
9996
11195
  bottom: 5rem;
@@ -10045,7 +11244,7 @@ a, a:hover {
10045
11244
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
10046
11245
  }
10047
11246
  .c-photo-viewer__container {
10048
- background: var(--atomix-body-bg);
11247
+ background-color: var(--atomix-body-bg);
10049
11248
  border: 1px solid var(--atomix-primary-border-subtle);
10050
11249
  border-radius: 0.75rem;
10051
11250
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
@@ -10099,7 +11298,7 @@ a, a:hover {
10099
11298
  border: 2px solid transparent;
10100
11299
  border-radius: 0.5rem;
10101
11300
  padding: 0;
10102
- background: transparent;
11301
+ background-color: transparent;
10103
11302
  cursor: pointer;
10104
11303
  overflow: hidden;
10105
11304
  position: relative;
@@ -10157,7 +11356,7 @@ body.is-open-photoviewer {
10157
11356
  width: 100vw;
10158
11357
  height: 100vh;
10159
11358
  z-index: 1000;
10160
- background: transparent;
11359
+ background-color: transparent;
10161
11360
  opacity: 1;
10162
11361
  transition-property: opacity;
10163
11362
  }
@@ -11726,13 +12925,13 @@ body.is-open-photoviewer {
11726
12925
  .u-m-1 {
11727
12926
  margin: 0.25rem;
11728
12927
  }
11729
- .u-m-1\.5 {
12928
+ .u-m-2 {
11730
12929
  margin: 0.375rem;
11731
12930
  }
11732
12931
  .u-m-2 {
11733
12932
  margin: 0.5rem;
11734
12933
  }
11735
- .u-m-2\.5 {
12934
+ .u-m-3 {
11736
12935
  margin: 0.625rem;
11737
12936
  }
11738
12937
  .u-m-3 {
@@ -11800,7 +12999,7 @@ body.is-open-photoviewer {
11800
12999
  margin-right: 0.25rem;
11801
13000
  margin-left: 0.25rem;
11802
13001
  }
11803
- .u-mx-1\.5 {
13002
+ .u-mx-2 {
11804
13003
  margin-right: 0.375rem;
11805
13004
  margin-left: 0.375rem;
11806
13005
  }
@@ -11808,7 +13007,7 @@ body.is-open-photoviewer {
11808
13007
  margin-right: 0.5rem;
11809
13008
  margin-left: 0.5rem;
11810
13009
  }
11811
- .u-mx-2\.5 {
13010
+ .u-mx-3 {
11812
13011
  margin-right: 0.625rem;
11813
13012
  margin-left: 0.625rem;
11814
13013
  }
@@ -11896,7 +13095,7 @@ body.is-open-photoviewer {
11896
13095
  margin-top: 0.25rem;
11897
13096
  margin-bottom: 0.25rem;
11898
13097
  }
11899
- .u-my-1\.5 {
13098
+ .u-my-2 {
11900
13099
  margin-top: 0.375rem;
11901
13100
  margin-bottom: 0.375rem;
11902
13101
  }
@@ -11904,7 +13103,7 @@ body.is-open-photoviewer {
11904
13103
  margin-top: 0.5rem;
11905
13104
  margin-bottom: 0.5rem;
11906
13105
  }
11907
- .u-my-2\.5 {
13106
+ .u-my-3 {
11908
13107
  margin-top: 0.625rem;
11909
13108
  margin-bottom: 0.625rem;
11910
13109
  }
@@ -11990,13 +13189,13 @@ body.is-open-photoviewer {
11990
13189
  .u-mt-1 {
11991
13190
  margin-top: 0.25rem;
11992
13191
  }
11993
- .u-mt-1\.5 {
13192
+ .u-mt-2 {
11994
13193
  margin-top: 0.375rem;
11995
13194
  }
11996
13195
  .u-mt-2 {
11997
13196
  margin-top: 0.5rem;
11998
13197
  }
11999
- .u-mt-2\.5 {
13198
+ .u-mt-3 {
12000
13199
  margin-top: 0.625rem;
12001
13200
  }
12002
13201
  .u-mt-3 {
@@ -12062,13 +13261,13 @@ body.is-open-photoviewer {
12062
13261
  .u-me-1 {
12063
13262
  margin-right: 0.25rem;
12064
13263
  }
12065
- .u-me-1\.5 {
13264
+ .u-me-2 {
12066
13265
  margin-right: 0.375rem;
12067
13266
  }
12068
13267
  .u-me-2 {
12069
13268
  margin-right: 0.5rem;
12070
13269
  }
12071
- .u-me-2\.5 {
13270
+ .u-me-3 {
12072
13271
  margin-right: 0.625rem;
12073
13272
  }
12074
13273
  .u-me-3 {
@@ -12134,13 +13333,13 @@ body.is-open-photoviewer {
12134
13333
  .u-mb-1 {
12135
13334
  margin-bottom: 0.25rem;
12136
13335
  }
12137
- .u-mb-1\.5 {
13336
+ .u-mb-2 {
12138
13337
  margin-bottom: 0.375rem;
12139
13338
  }
12140
13339
  .u-mb-2 {
12141
13340
  margin-bottom: 0.5rem;
12142
13341
  }
12143
- .u-mb-2\.5 {
13342
+ .u-mb-3 {
12144
13343
  margin-bottom: 0.625rem;
12145
13344
  }
12146
13345
  .u-mb-3 {
@@ -12206,13 +13405,13 @@ body.is-open-photoviewer {
12206
13405
  .u-ms-1 {
12207
13406
  margin-left: 0.25rem;
12208
13407
  }
12209
- .u-ms-1\.5 {
13408
+ .u-ms-2 {
12210
13409
  margin-left: 0.375rem;
12211
13410
  }
12212
13411
  .u-ms-2 {
12213
13412
  margin-left: 0.5rem;
12214
13413
  }
12215
- .u-ms-2\.5 {
13414
+ .u-ms-3 {
12216
13415
  margin-left: 0.625rem;
12217
13416
  }
12218
13417
  .u-ms-3 {
@@ -12278,13 +13477,13 @@ body.is-open-photoviewer {
12278
13477
  .u-p-1 {
12279
13478
  padding: 0.25rem;
12280
13479
  }
12281
- .u-p-1\.5 {
13480
+ .u-p-2 {
12282
13481
  padding: 0.375rem;
12283
13482
  }
12284
13483
  .u-p-2 {
12285
13484
  padding: 0.5rem;
12286
13485
  }
12287
- .u-p-2\.5 {
13486
+ .u-p-3 {
12288
13487
  padding: 0.625rem;
12289
13488
  }
12290
13489
  .u-p-3 {
@@ -12349,7 +13548,7 @@ body.is-open-photoviewer {
12349
13548
  padding-right: 0.25rem;
12350
13549
  padding-left: 0.25rem;
12351
13550
  }
12352
- .u-px-1\.5 {
13551
+ .u-px-2 {
12353
13552
  padding-right: 0.375rem;
12354
13553
  padding-left: 0.375rem;
12355
13554
  }
@@ -12357,7 +13556,7 @@ body.is-open-photoviewer {
12357
13556
  padding-right: 0.5rem;
12358
13557
  padding-left: 0.5rem;
12359
13558
  }
12360
- .u-px-2\.5 {
13559
+ .u-px-3 {
12361
13560
  padding-right: 0.625rem;
12362
13561
  padding-left: 0.625rem;
12363
13562
  }
@@ -12441,7 +13640,7 @@ body.is-open-photoviewer {
12441
13640
  padding-top: 0.25rem;
12442
13641
  padding-bottom: 0.25rem;
12443
13642
  }
12444
- .u-py-1\.5 {
13643
+ .u-py-2 {
12445
13644
  padding-top: 0.375rem;
12446
13645
  padding-bottom: 0.375rem;
12447
13646
  }
@@ -12449,7 +13648,7 @@ body.is-open-photoviewer {
12449
13648
  padding-top: 0.5rem;
12450
13649
  padding-bottom: 0.5rem;
12451
13650
  }
12452
- .u-py-2\.5 {
13651
+ .u-py-3 {
12453
13652
  padding-top: 0.625rem;
12454
13653
  padding-bottom: 0.625rem;
12455
13654
  }
@@ -12531,13 +13730,13 @@ body.is-open-photoviewer {
12531
13730
  .u-pt-1 {
12532
13731
  padding-top: 0.25rem;
12533
13732
  }
12534
- .u-pt-1\.5 {
13733
+ .u-pt-2 {
12535
13734
  padding-top: 0.375rem;
12536
13735
  }
12537
13736
  .u-pt-2 {
12538
13737
  padding-top: 0.5rem;
12539
13738
  }
12540
- .u-pt-2\.5 {
13739
+ .u-pt-3 {
12541
13740
  padding-top: 0.625rem;
12542
13741
  }
12543
13742
  .u-pt-3 {
@@ -12600,13 +13799,13 @@ body.is-open-photoviewer {
12600
13799
  .u-pe-1 {
12601
13800
  padding-right: 0.25rem;
12602
13801
  }
12603
- .u-pe-1\.5 {
13802
+ .u-pe-2 {
12604
13803
  padding-right: 0.375rem;
12605
13804
  }
12606
13805
  .u-pe-2 {
12607
13806
  padding-right: 0.5rem;
12608
13807
  }
12609
- .u-pe-2\.5 {
13808
+ .u-pe-3 {
12610
13809
  padding-right: 0.625rem;
12611
13810
  }
12612
13811
  .u-pe-3 {
@@ -12669,13 +13868,13 @@ body.is-open-photoviewer {
12669
13868
  .u-pb-1 {
12670
13869
  padding-bottom: 0.25rem;
12671
13870
  }
12672
- .u-pb-1\.5 {
13871
+ .u-pb-2 {
12673
13872
  padding-bottom: 0.375rem;
12674
13873
  }
12675
13874
  .u-pb-2 {
12676
13875
  padding-bottom: 0.5rem;
12677
13876
  }
12678
- .u-pb-2\.5 {
13877
+ .u-pb-3 {
12679
13878
  padding-bottom: 0.625rem;
12680
13879
  }
12681
13880
  .u-pb-3 {
@@ -12738,13 +13937,13 @@ body.is-open-photoviewer {
12738
13937
  .u-ps-1 {
12739
13938
  padding-left: 0.25rem;
12740
13939
  }
12741
- .u-ps-1\.5 {
13940
+ .u-ps-2 {
12742
13941
  padding-left: 0.375rem;
12743
13942
  }
12744
13943
  .u-ps-2 {
12745
13944
  padding-left: 0.5rem;
12746
13945
  }
12747
- .u-ps-2\.5 {
13946
+ .u-ps-3 {
12748
13947
  padding-left: 0.625rem;
12749
13948
  }
12750
13949
  .u-ps-3 {
@@ -12807,13 +14006,13 @@ body.is-open-photoviewer {
12807
14006
  .u-gap-1 {
12808
14007
  gap: 0.25rem;
12809
14008
  }
12810
- .u-gap-1\.5 {
14009
+ .u-gap-2 {
12811
14010
  gap: 0.375rem;
12812
14011
  }
12813
14012
  .u-gap-2 {
12814
14013
  gap: 0.5rem;
12815
14014
  }
12816
- .u-gap-2\.5 {
14015
+ .u-gap-3 {
12817
14016
  gap: 0.625rem;
12818
14017
  }
12819
14018
  .u-gap-3 {
@@ -12876,13 +14075,13 @@ body.is-open-photoviewer {
12876
14075
  .u-row-gap-1 {
12877
14076
  row-gap: 0.25rem;
12878
14077
  }
12879
- .u-row-gap-1\.5 {
14078
+ .u-row-gap-2 {
12880
14079
  row-gap: 0.375rem;
12881
14080
  }
12882
14081
  .u-row-gap-2 {
12883
14082
  row-gap: 0.5rem;
12884
14083
  }
12885
- .u-row-gap-2\.5 {
14084
+ .u-row-gap-3 {
12886
14085
  row-gap: 0.625rem;
12887
14086
  }
12888
14087
  .u-row-gap-3 {
@@ -12947,7 +14146,7 @@ body.is-open-photoviewer {
12947
14146
  -moz-column-gap: 0.25rem;
12948
14147
  column-gap: 0.25rem;
12949
14148
  }
12950
- .u-column-gap-1\.5 {
14149
+ .u-column-gap-2 {
12951
14150
  -moz-column-gap: 0.375rem;
12952
14151
  column-gap: 0.375rem;
12953
14152
  }
@@ -12955,7 +14154,7 @@ body.is-open-photoviewer {
12955
14154
  -moz-column-gap: 0.5rem;
12956
14155
  column-gap: 0.5rem;
12957
14156
  }
12958
- .u-column-gap-2\.5 {
14157
+ .u-column-gap-3 {
12959
14158
  -moz-column-gap: 0.625rem;
12960
14159
  column-gap: 0.625rem;
12961
14160
  }