@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
@@ -20,6 +20,23 @@
20
20
  background-position: 0 50%;
21
21
  }
22
22
  }
23
+ @keyframes backgroundMoving {
24
+ 0% {
25
+ background-position: 0 0%;
26
+ }
27
+ 250% {
28
+ background-position: 100% 100%;
29
+ }
30
+ 50% {
31
+ background-position: 100% 0%;
32
+ }
33
+ 75% {
34
+ background-position: 0% 100%;
35
+ }
36
+ 100% {
37
+ background-position: 100% 100%;
38
+ }
39
+ }
23
40
  @keyframes component-spin {
24
41
  0% {
25
42
  transform: rotate(0deg);
@@ -695,9 +712,17 @@ summary {
695
712
  --atomix-success-hover: #15803d;
696
713
  --atomix-warning-hover: #b45309;
697
714
  --atomix-info-hover: #1d4ed8;
715
+ --atomix-primary-gradient: linear-gradient(135deg, #d1fae5, #a7f3d0, #6ee7b7);
716
+ --atomix-secondary-gradient: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);
717
+ --atomix-light-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
718
+ --atomix-dark-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
719
+ --atomix-success-gradient: linear-gradient(135deg, #dcfce7, #86efac, #4ade80);
720
+ --atomix-info-gradient: linear-gradient(135deg, #dbeafe, #bfdbfe, #60a5fa);
721
+ --atomix-warning-gradient: linear-gradient(135deg, #fef3c7, #fde68a, #fbbf24);
722
+ --atomix-error-gradient: linear-gradient(135deg, #fef2f2, #fee2e2, #fecaca);
723
+ --atomix-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
698
724
  --atomix-font-sans-serif: "Roboto", sans-serif;
699
725
  --atomix-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
700
- --atomix-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
701
726
  --atomix-body-font-family: "Roboto", sans-serif;
702
727
  --atomix-body-font-size: 1rem;
703
728
  --atomix-body-font-weight: 400;
@@ -791,6 +816,15 @@ summary {
791
816
  --atomix-success-hover: #86efac;
792
817
  --atomix-warning-hover: #fbbf24;
793
818
  --atomix-info-hover: #93c5fd;
819
+ --atomix-primary-gradient: linear-gradient(135deg, #064e3b, #065f46, #047857);
820
+ --atomix-secondary-gradient: linear-gradient(135deg, #374151, #6b7280, #d1d5db);
821
+ --atomix-light-gradient: linear-gradient(135deg, #9ca3af, #6b7280, #9ca3af);
822
+ --atomix-dark-gradient: linear-gradient(135deg, #000000, #4b5563, #1f2937);
823
+ --atomix-success-gradient: linear-gradient(135deg, #14532d, #16a34a, #166534);
824
+ --atomix-info-gradient: linear-gradient(135deg, #1e3a8a, #1d4ed8, #1e40af);
825
+ --atomix-warning-gradient: linear-gradient(135deg, #78350f, #b45309, #92400e);
826
+ --atomix-error-gradient: linear-gradient(135deg, #7f1d1d, #dc2626, #7f1d1d);
827
+ --atomix-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
794
828
  --atomix-box-shadow: 0px 8px 40px -8px rgba(30, 30, 30, 0.7), 0px 4px 20px 0px rgba(30, 30, 30, 0.8);
795
829
  --atomix-box-shadow-xs: 0px 1px 2px 0px rgba(30, 30, 30, 0.5), 0px 2px 4px 0px rgba(30, 30, 30, 0.5);
796
830
  --atomix-box-shadow-sm: 0px 2px 4px -2px rgba(30, 30, 30, 0.5), 0px 4px 8px -2px rgba(30, 30, 30, 0.5);
@@ -3268,12 +3302,12 @@ a, a:hover {
3268
3302
  --atomix-accordion-body-padding-x: 1.25rem;
3269
3303
  --atomix-accordion-body-padding-y: 0.5rem;
3270
3304
  --atomix-accordion-body-color: var(--atomix-body-color);
3271
- --atomix-accordion-body-bg: var(--atomix-secondary-bg-subtle);
3305
+ --atomix-accordion-body-bg: var(--atomix-body-bg);
3272
3306
  --atomix-accordion-header-padding-x: 1.25rem;
3273
3307
  --atomix-accordion-header-padding-y: 1rem;
3274
3308
  --atomix-accordion-header-color: var(--atomix-body-color);
3275
- --atomix-accordion-header-bg: var(--atomix-secondary-bg-subtle);
3276
- --atomix-accordion-header-bg-hover: var(--atomix-tertiary-bg-subtle);
3309
+ --atomix-accordion-header-bg: var(--atomix-body-bg);
3310
+ --atomix-accordion-header-bg-hover: var(--atomix-body-bg);
3277
3311
  --atomix-accordion-icon-size: 1.25rem;
3278
3312
  --atomix-accordion-icon-color: var(--atomix-body-color);
3279
3313
  --atomix-accordion-icon-transform: 180deg;
@@ -3289,12 +3323,17 @@ a, a:hover {
3289
3323
  display: flex;
3290
3324
  align-items: center;
3291
3325
  justify-content: space-between;
3326
+ width: 100%;
3292
3327
  color: var(--atomix-accordion-header-color);
3293
3328
  padding: var(--atomix-accordion-header-padding-y) var(--atomix-accordion-header-padding-x);
3294
- background-color: var(--atomix-accordion-header-bg);
3295
3329
  border: none;
3330
+ outline: none;
3296
3331
  cursor: pointer;
3297
- width: 100%;
3332
+ transition-property: background;
3333
+ transition-duration: 0.2s;
3334
+ transition-timing-function: ease-in-out;
3335
+ transition-delay: 0s;
3336
+ background-color: var(--atomix-accordion-header-bg);
3298
3337
  }
3299
3338
  .c-accordion__header--icon-left {
3300
3339
  flex-direction: row-reverse;
@@ -3328,8 +3367,8 @@ a, a:hover {
3328
3367
  .c-accordion__body {
3329
3368
  color: var(--atomix-accordion-body-color);
3330
3369
  padding: var(--atomix-accordion-body-padding-y) var(--atomix-accordion-body-padding-x);
3331
- background-color: var(--atomix-accordion-body-bg);
3332
3370
  border-radius: 0 0 var(--atomix-accordion-border-radius) var(--atomix-accordion-border-radius);
3371
+ background-color: var(--atomix-accordion-body-bg);
3333
3372
  }
3334
3373
  .c-accordion:focus, .c-accordion.is-focused {
3335
3374
  --atomix-accordion-border-color: var(--atomix-focus-border-color);
@@ -3346,6 +3385,15 @@ a, a:hover {
3346
3385
  --atomix-accordion-body-color: var(--atomix-accordion-disable-color);
3347
3386
  --atomix-accordion-icon-color: var(--atomix-accordion-disable-color);
3348
3387
  }
3388
+ .c-accordion--glass {
3389
+ border-color: transparent;
3390
+ }
3391
+ .c-accordion--glass .c-accordion__header {
3392
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
3393
+ }
3394
+ .c-accordion--glass .c-accordion__body {
3395
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
3396
+ }
3349
3397
  .c-avatar {
3350
3398
  --atomix-avatar-fit: cover;
3351
3399
  --atomix-avatar-size: 2.5rem;
@@ -3558,6 +3606,10 @@ a, a:hover {
3558
3606
  .c-badge--lg {
3559
3607
  --atomix-tag-padding-y: 0.5rem;
3560
3608
  }
3609
+ .c-badge--glass {
3610
+ background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 80%, transparent);
3611
+ border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 20%, transparent);
3612
+ }
3561
3613
  .c-badge--primary {
3562
3614
  --atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
3563
3615
  --atomix-tag-color: var(--atomix-brand-text-emphasis);
@@ -3585,10 +3637,16 @@ a, a:hover {
3585
3637
  .c-badge--light {
3586
3638
  --atomix-tag-bg-color: var(--atomix-light);
3587
3639
  --atomix-tag-color: var(--atomix-dark);
3640
+ border: 1px solid var(--atomix-light);
3588
3641
  }
3589
3642
  .c-badge--dark {
3590
3643
  --atomix-tag-bg-color: var(--atomix-dark);
3591
3644
  --atomix-tag-color: var(--atomix-light);
3645
+ border: 1px solid var(--atomix-dark);
3646
+ }
3647
+ .c-badge-glass {
3648
+ box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
3649
+ border-radius: 999px;
3592
3650
  }
3593
3651
  .c-breadcrumb {
3594
3652
  --atomix-breadcrumb-font-size: 0.875rem;
@@ -3987,6 +4045,12 @@ a, a:hover {
3987
4045
  border-color: var(--atomix-btn-disabled-border-color);
3988
4046
  opacity: var(--atomix-btn-disabled-opacity);
3989
4047
  }
4048
+ .c-btn--glass {
4049
+ background-color: color-mix(in srgb, var(--atomix-btn-bg) 50%, transparent);
4050
+ }
4051
+ .c-btn--glass:hover {
4052
+ background-color: color-mix(in srgb, var(--atomix-btn-hover-bg) 50%, transparent);
4053
+ }
3990
4054
  .c-datepicker {
3991
4055
  --atomix-datepicker-width: 19rem;
3992
4056
  --atomix-datepicker-padding-x: 0.5rem;
@@ -4109,6 +4173,24 @@ a, a:hover {
4109
4173
  .c-datepicker__calendar--right-end {
4110
4174
  bottom: 0;
4111
4175
  }
4176
+ .c-datepicker__calendar--glass {
4177
+ z-index: auto;
4178
+ z-index: initial;
4179
+ box-shadow: none;
4180
+ border: none;
4181
+ border-radius: 0;
4182
+ padding: 0;
4183
+ background: transparent;
4184
+ }
4185
+ .c-datepicker__glass-content {
4186
+ z-index: auto;
4187
+ z-index: initial;
4188
+ box-shadow: none;
4189
+ border: none;
4190
+ border-radius: var(--atomix-datepicker-border-radius);
4191
+ padding: var(--atomix-datepicker-padding-y) var(--atomix-datepicker-padding-x);
4192
+ background: color-mix(in srgb, var(--atomix-datepicker-bg) 50%, transparent 0%);
4193
+ }
4112
4194
  .c-datepicker--inline {
4113
4195
  --atomix-datepicker-width: calc(
4114
4196
  var(--atomix-datepicker-width) + var(--atomix-datepicker-week-width)
@@ -4417,7 +4499,7 @@ a, a:hover {
4417
4499
  --atomix-card-bg: var(--atomix-primary-bg-subtle);
4418
4500
  --atomix-card-bg-hover: var(--atomix-secondary-bg-subtle);
4419
4501
  --atomix-card-icon-size: 1.25rem;
4420
- --atomix-card-icon-padding: 0.625rem;
4502
+ --atomix-card-icon-padding: 0.375rem;
4421
4503
  --atomix-card-icon-bg: var(--atomix-brand-bg-subtle);
4422
4504
  --atomix-card-icon-color: var(--atomix-brand-text-emphasis);
4423
4505
  --atomix-card-width: 100%;
@@ -4426,11 +4508,11 @@ a, a:hover {
4426
4508
  padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
4427
4509
  border: var(--atomix-card-border-width) solid var(--atomix-card-border-color);
4428
4510
  border-radius: var(--atomix-card-border-radius);
4429
- background-color: var(--atomix-card-bg);
4430
4511
  transition-property: all;
4431
4512
  transition-duration: 0.2s;
4432
4513
  transition-timing-function: ease-in-out;
4433
4514
  transition-delay: 0s;
4515
+ background-color: var(--atomix-card-bg);
4434
4516
  }
4435
4517
  .c-card__header {
4436
4518
  margin-bottom: var(--atomix-card-header-spacer-y);
@@ -4508,6 +4590,21 @@ a, a:hover {
4508
4590
  padding: var(--atomix-card-row-spacer-y) var(--atomix-card-row-spacer-x);
4509
4591
  padding-top: 0;
4510
4592
  }
4593
+ .c-card--glass {
4594
+ background-color: transparent;
4595
+ padding: 0;
4596
+ border: none;
4597
+ display: block;
4598
+ border-radius: 0;
4599
+ }
4600
+ .c-card--glass .c-card__glass-content {
4601
+ padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
4602
+ max-width: var(--atomix-card-width);
4603
+ border-radius: var(--atomix-card-border-radius);
4604
+ width: 100%;
4605
+ background-color: color-mix(in srgb, var(--atomix-card-bg) 50%, transparent);
4606
+ background-blend-mode: overlay;
4607
+ }
4511
4608
  .is-elevated .c-card {
4512
4609
  box-shadow: var(--atomix-box-shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.175));
4513
4610
  z-index: 1;
@@ -4519,7 +4616,7 @@ a, a:hover {
4519
4616
  --atomix-chart-border-radius: 0.625rem;
4520
4617
  --atomix-chart-padding: 1rem;
4521
4618
  --atomix-chart-gap: 0.5rem;
4522
- --atomix-chart-border-width: 1px;
4619
+ --atomix-chart-border-width: var(--atomix-border-width);
4523
4620
  --atomix-chart-border-color: var(--atomix-border-color);
4524
4621
  --atomix-chart-bg: var(--atomix-body-bg);
4525
4622
  --atomix-chart-min-height: 13rem;
@@ -4552,7 +4649,7 @@ a, a:hover {
4552
4649
  border-color: var(--atomix-primary-border-subtle);
4553
4650
  }
4554
4651
  .c-chart:focus-visible {
4555
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 3px var(--atomix-primary-border-subtle);
4652
+ 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);
4556
4653
  }
4557
4654
  .c-chart--xs {
4558
4655
  --atomix-chart-min-height: 7rem;
@@ -4735,8 +4832,8 @@ a, a:hover {
4735
4832
  .c-chart__header {
4736
4833
  padding: var(--atomix-chart-padding);
4737
4834
  border-bottom: var(--atomix-chart-border-width) solid var(--atomix-brand-bg-subtle);
4738
- -webkit-backdrop-filter: blur(12px);
4739
- backdrop-filter: blur(12px);
4835
+ -webkit-backdrop-filter: blur(0.75rem);
4836
+ backdrop-filter: blur(0.75rem);
4740
4837
  position: relative;
4741
4838
  display: flex;
4742
4839
  align-items: flex-start;
@@ -4985,7 +5082,7 @@ a, a:hover {
4985
5082
  right: 0;
4986
5083
  bottom: 0;
4987
5084
  background-image: radial-gradient(circle at 1px 1px, var(--atomix-primary-border-subtle) 1px, transparent 0);
4988
- background-size: 20px 20px;
5085
+ background-size: 1.25rem 1.25rem;
4989
5086
  opacity: 0.03;
4990
5087
  pointer-events: none;
4991
5088
  z-index: 0;
@@ -5163,8 +5260,8 @@ a, a:hover {
5163
5260
  position: fixed;
5164
5261
  top: 0;
5165
5262
  left: 0;
5166
- -webkit-backdrop-filter: blur(16px);
5167
- backdrop-filter: blur(16px);
5263
+ -webkit-backdrop-filter: blur(1rem);
5264
+ backdrop-filter: blur(1rem);
5168
5265
  border-radius: 0.625rem;
5169
5266
  padding: 0.75rem 1rem;
5170
5267
  box-shadow: var(--atomix-box-shadow);
@@ -6242,7 +6339,7 @@ a, a:hover {
6242
6339
  animation: none;
6243
6340
  }
6244
6341
  }
6245
- .c-chart:focus-within__data-point:focus {
6342
+ .c-chart:focus-within .c-chart__data-point:focus {
6246
6343
  outline: 2px solid var(--atomix-primary-6);
6247
6344
  outline-offset: 2px;
6248
6345
  z-index: 10;
@@ -6319,9 +6416,9 @@ a, a:hover {
6319
6416
  flex-direction: row;
6320
6417
  }
6321
6418
  .c-checkbox {
6322
- --atomix-checkbox-width: 20px;
6323
- --atomix-checkbox-height: 20px;
6324
- --atomix-checkbox-spacer: 8px;
6419
+ --atomix-checkbox-width: 1.25rem;
6420
+ --atomix-checkbox-height: 1.25rem;
6421
+ --atomix-checkbox-spacer: 0.5rem;
6325
6422
  --atomix-checkbox-font-size: 1rem;
6326
6423
  --atomix-checkbox-text-color: var(--atomix-body-color);
6327
6424
  --atomix-checkbox-text-color-disabled: var(--atomix-tertiary-text-emphasis);
@@ -6331,7 +6428,7 @@ a, a:hover {
6331
6428
  --atomix-checkbox-checked-bg: var(--atomix-invert-bg-subtle);
6332
6429
  --atomix-checkbox-checked-bg-hover: var(--atomix-tertiary-text-emphasis);
6333
6430
  --atomix-checkbox-checked-bg-disabled: var(--atomix-disabled-text-emphasis);
6334
- --atomix-checkbox-border-width: 1px;
6431
+ --atomix-checkbox-border-width: var(--atomix-border-width);
6335
6432
  --atomix-checkbox-border-color: var(--atomix-tertiary-text-emphasis);
6336
6433
  --atomix-checkbox-border-color-hover: var(--atomix-primary-text-emphasis);
6337
6434
  --atomix-checkbox-border-color-disabled: var(--atomix-disabled-text-emphasis);
@@ -6645,7 +6742,7 @@ a, a:hover {
6645
6742
  }
6646
6743
  .c-dropdown {
6647
6744
  --atomix-dropdown-min-width: 11.25rem;
6648
- --atomix-dropdown-padding-x: 0;
6745
+ --atomix-dropdown-padding-x: 0rem;
6649
6746
  --atomix-dropdown-padding-y: 0.5rem;
6650
6747
  --atomix-dropdown-spacer: 0.25rem;
6651
6748
  --atomix-dropdown-font-size: 1rem;
@@ -6653,7 +6750,7 @@ a, a:hover {
6653
6750
  --atomix-dropdown-bg: var(--atomix-body-bg);
6654
6751
  --atomix-dropdown-border-color: var(--atomix-primary-border-subtle);
6655
6752
  --atomix-dropdown-border-radius: 0.5rem;
6656
- --atomix-dropdown-border-width: 1px;
6753
+ --atomix-dropdown-border-width: var(--atomix-border-width);
6657
6754
  --atomix-dropdown-box-shadow: var(--atomix-box-shadow);
6658
6755
  --atomix-dropdown-link-color: var(--atomix-body-color);
6659
6756
  --atomix-dropdown-link-hover-color: var(--atomix-brand-text-emphasis);
@@ -6682,7 +6779,6 @@ a, a:hover {
6682
6779
  .c-dropdown__menu-wrapper {
6683
6780
  position: absolute;
6684
6781
  left: 0;
6685
- z-index: 99;
6686
6782
  display: flex;
6687
6783
  opacity: 0;
6688
6784
  visibility: hidden;
@@ -6764,11 +6860,16 @@ a, a:hover {
6764
6860
  padding: var(--atomix-dropdown-padding-y) var(--atomix-dropdown-padding-x);
6765
6861
  list-style: none;
6766
6862
  margin-bottom: 0rem;
6863
+ border: 1px solid rgba(255, 255, 255, 0.08);
6767
6864
  background-color: var(--atomix-dropdown-bg);
6768
6865
  border-radius: var(--atomix-dropdown-border-radius);
6769
6866
  box-shadow: var(--atomix-dropdown-box-shadow);
6770
6867
  overflow: hidden;
6771
6868
  }
6869
+ .c-dropdown__menu--glass {
6870
+ background-color: color-mix(in srgb, var(--atomix-dropdown-bg) 50%, transparent);
6871
+ box-shadow: var(--atomix-dropdown-box-shadow);
6872
+ }
6772
6873
  .c-dropdown__menu-item {
6773
6874
  display: block;
6774
6875
  width: 100%;
@@ -6888,7 +6989,7 @@ a, a:hover {
6888
6989
  .c-edge-panel__backdrop {
6889
6990
  position: absolute;
6890
6991
  inset: 0;
6891
- background: var(--atomix-edge-panel-backdrop-bg);
6992
+ background-color: var(--atomix-edge-panel-backdrop-bg);
6892
6993
  -webkit-backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
6893
6994
  backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
6894
6995
  opacity: 0;
@@ -7048,84 +7149,1072 @@ a, a:hover {
7048
7149
  width: 100%;
7049
7150
  height: 100%;
7050
7151
  }
7051
- @keyframes fadeIn {
7052
- from {
7053
- opacity: 0;
7054
- }
7055
- to {
7056
- opacity: var(--atomix-edge-panel-backdrop-opacity);
7057
- }
7152
+ @keyframes fadeIn {
7153
+ from {
7154
+ opacity: 0;
7155
+ }
7156
+ to {
7157
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
7158
+ }
7159
+ }
7160
+ @keyframes fadeOut {
7161
+ from {
7162
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
7163
+ }
7164
+ to {
7165
+ opacity: 0;
7166
+ }
7167
+ }
7168
+ @keyframes slideInStart {
7169
+ from {
7170
+ transform: translateX(-100%);
7171
+ }
7172
+ to {
7173
+ transform: translateX(0);
7174
+ }
7175
+ }
7176
+ @keyframes slideOutStart {
7177
+ from {
7178
+ transform: translateX(0);
7179
+ }
7180
+ to {
7181
+ transform: translateX(-100%);
7182
+ }
7183
+ }
7184
+ @keyframes slideInEnd {
7185
+ from {
7186
+ transform: translateX(100%);
7187
+ }
7188
+ to {
7189
+ transform: translateX(0);
7190
+ }
7191
+ }
7192
+ @keyframes slideOutEnd {
7193
+ from {
7194
+ transform: translateX(0);
7195
+ }
7196
+ to {
7197
+ transform: translateX(100%);
7198
+ }
7199
+ }
7200
+ @keyframes slideInTop {
7201
+ from {
7202
+ transform: translateY(-100%);
7203
+ }
7204
+ to {
7205
+ transform: translateY(0);
7206
+ }
7207
+ }
7208
+ @keyframes slideOutTop {
7209
+ from {
7210
+ transform: translateY(0);
7211
+ }
7212
+ to {
7213
+ transform: translateY(-100%);
7214
+ }
7215
+ }
7216
+ @keyframes slideInBottom {
7217
+ from {
7218
+ transform: translateY(100%);
7219
+ }
7220
+ to {
7221
+ transform: translateY(0);
7222
+ }
7223
+ }
7224
+ @keyframes slideOutBottom {
7225
+ from {
7226
+ transform: translateY(0);
7227
+ }
7228
+ to {
7229
+ transform: translateY(100%);
7230
+ }
7231
+ }
7232
+ .c-footer {
7233
+ --atomix-footer-padding-x: 1rem;
7234
+ --atomix-footer-padding-y: 3rem;
7235
+ --atomix-footer-container-max-width: 1200px;
7236
+ --atomix-footer-bg: var(--atomix-surface);
7237
+ --atomix-footer-color: var(--atomix-text);
7238
+ --atomix-footer-border-width: 1px;
7239
+ --atomix-footer-border-color: var(--atomix-border);
7240
+ --atomix-footer-brand-margin-bottom: 1.5rem;
7241
+ --atomix-footer-section-margin-bottom: 2rem;
7242
+ --atomix-footer-social-gap: 0.75rem;
7243
+ --atomix-footer-newsletter-padding: 1.5rem;
7244
+ --atomix-footer-bottom-padding-top: 1.5rem;
7245
+ --atomix-footer-bottom-margin-top: 2rem;
7246
+ background-color: var(--atomix-footer-bg);
7247
+ color: var(--atomix-footer-color);
7248
+ border-top: var(--atomix-footer-border-width) solid var(--atomix-footer-border-color);
7249
+ padding: var(--atomix-footer-padding-y) 0;
7250
+ position: relative;
7251
+ }
7252
+ .c-footer__container {
7253
+ display: flex;
7254
+ flex-direction: column;
7255
+ width: 100%;
7256
+ max-width: var(--atomix-footer-container-max-width);
7257
+ margin: 0 auto;
7258
+ padding: 0 var(--atomix-footer-padding-x);
7259
+ }
7260
+ .c-footer__sections {
7261
+ display: grid;
7262
+ grid-gap: var(--atomix-footer-section-margin-bottom);
7263
+ gap: var(--atomix-footer-section-margin-bottom);
7264
+ margin-bottom: var(--atomix-footer-bottom-margin-top);
7265
+ grid-template-columns: 1fr;
7266
+ }
7267
+ @media (min-width: 768px) {
7268
+ .c-footer__sections {
7269
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
7270
+ gap: clamp(2rem, 4vw, 3rem);
7271
+ }
7272
+ }
7273
+ .c-footer__brand {
7274
+ margin-bottom: var(--atomix-footer-brand-margin-bottom);
7275
+ }
7276
+ .c-footer__brand-logo {
7277
+ display: inline-block;
7278
+ margin-bottom: 1rem;
7279
+ transition: opacity 0.2s ease;
7280
+ }
7281
+ .c-footer__brand-logo:hover {
7282
+ opacity: 0.8;
7283
+ }
7284
+ .c-footer__brand-logo img {
7285
+ max-width: 200px;
7286
+ max-height: 60px;
7287
+ height: auto;
7288
+ -o-object-fit: contain;
7289
+ object-fit: contain;
7290
+ }
7291
+ .c-footer__brand-name h3 {
7292
+ margin: 0;
7293
+ font-size: clamp(1.25rem, 2.5vw, 1.5rem);
7294
+ font-weight: 600;
7295
+ color: var(--atomix-text-emphasis);
7296
+ line-height: 1.2;
7297
+ }
7298
+ .c-footer__brand-description {
7299
+ margin-top: 0.5rem;
7300
+ font-size: 0.875rem;
7301
+ color: var(--atomix-text-muted);
7302
+ line-height: 1.6;
7303
+ max-width: 35ch;
7304
+ }
7305
+ .c-footer__section {
7306
+ margin-bottom: var(--atomix-footer-section-margin-bottom);
7307
+ }
7308
+ .c-footer__section-header {
7309
+ margin-bottom: 1rem;
7310
+ }
7311
+ .c-footer__section-header-content {
7312
+ display: flex;
7313
+ align-items: center;
7314
+ gap: 0.5rem;
7315
+ }
7316
+ .c-footer__section-toggle {
7317
+ display: flex;
7318
+ align-items: center;
7319
+ justify-content: space-between;
7320
+ width: 100%;
7321
+ padding: 0.75rem 0;
7322
+ background: none;
7323
+ border: none;
7324
+ cursor: pointer;
7325
+ color: inherit;
7326
+ font: inherit;
7327
+ text-align: left;
7328
+ border-radius: 0.25rem;
7329
+ transition: color 0.2s ease;
7330
+ }
7331
+ .c-footer__section-toggle:hover {
7332
+ color: var(--atomix-primary);
7333
+ }
7334
+ .c-footer__section-toggle:focus-visible {
7335
+ outline: 2px solid var(--atomix-primary);
7336
+ outline-offset: 2px;
7337
+ }
7338
+ .c-footer__section-title {
7339
+ margin: 0;
7340
+ font-size: 1.125rem;
7341
+ font-weight: 600;
7342
+ color: var(--atomix-text-emphasis);
7343
+ line-height: 1.3;
7344
+ }
7345
+ .c-footer__section-icon {
7346
+ display: flex;
7347
+ align-items: center;
7348
+ margin-right: 0.5rem;
7349
+ font-size: 1.1em;
7350
+ }
7351
+ .c-footer__section-chevron {
7352
+ font-size: 0.875rem;
7353
+ transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
7354
+ color: var(--atomix-text-muted);
7355
+ }
7356
+ .c-footer__section-content {
7357
+ display: flex;
7358
+ flex-direction: column;
7359
+ gap: 0.5rem;
7360
+ }
7361
+ @media (max-width: 767.98px) {
7362
+ .c-footer__section--collapsible .c-footer__section-content {
7363
+ overflow: hidden;
7364
+ transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
7365
+ }
7366
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-content {
7367
+ max-height: 0;
7368
+ }
7369
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-chevron {
7370
+ transform: rotate(-90deg);
7371
+ }
7372
+ .c-footer__section--collapsible:not(.c-footer__section--collapsed) .c-footer__section-content {
7373
+ max-height: 500px;
7374
+ }
7375
+ }
7376
+ @media (min-width: 768px) {
7377
+ .c-footer__section--collapsible .c-footer__section-toggle {
7378
+ pointer-events: none;
7379
+ }
7380
+ .c-footer__section--collapsible .c-footer__section-chevron {
7381
+ display: none;
7382
+ }
7383
+ }
7384
+ .c-footer__link {
7385
+ display: inline-flex;
7386
+ align-items: center;
7387
+ gap: 0.5rem;
7388
+ padding: 0.25rem 0;
7389
+ color: var(--atomix-text);
7390
+ text-decoration: none;
7391
+ transition: color 0.15s ease-in-out;
7392
+ border-radius: 0.25rem;
7393
+ position: relative;
7394
+ }
7395
+ .c-footer__link::before {
7396
+ content: "";
7397
+ position: absolute;
7398
+ left: 0;
7399
+ bottom: 0;
7400
+ width: 0;
7401
+ height: 2px;
7402
+ background-color: var(--atomix-primary);
7403
+ transition: width 0.3s ease;
7404
+ }
7405
+ .c-footer__link:hover, .c-footer__link:focus {
7406
+ color: var(--atomix-primary);
7407
+ text-decoration: underline;
7408
+ }
7409
+ .c-footer__link:hover::before, .c-footer__link:focus::before {
7410
+ width: 100%;
7411
+ }
7412
+ .c-footer__link:focus-visible {
7413
+ outline: 2px solid var(--atomix-primary);
7414
+ outline-offset: 2px;
7415
+ }
7416
+ .c-footer__link--active {
7417
+ color: var(--atomix-primary);
7418
+ font-weight: 500;
7419
+ }
7420
+ .c-footer__link--active::before {
7421
+ width: 100%;
7422
+ }
7423
+ .c-footer__link--disabled {
7424
+ color: var(--atomix-text-disabled);
7425
+ cursor: not-allowed;
7426
+ pointer-events: none;
7427
+ opacity: 0.6;
7428
+ }
7429
+ .c-footer__link-icon {
7430
+ display: flex;
7431
+ align-items: center;
7432
+ font-size: 0.875em;
7433
+ transition: transform 0.2s ease;
7434
+ }
7435
+ .c-footer__link:hover .c-footer__link-icon {
7436
+ transform: translateX(2px);
7437
+ }
7438
+ .c-footer__link-text {
7439
+ flex: 1 1;
7440
+ }
7441
+ .c-footer__link-external {
7442
+ font-size: 0.75em;
7443
+ opacity: 0.7;
7444
+ margin-left: auto;
7445
+ }
7446
+ .c-footer__social {
7447
+ display: flex;
7448
+ flex-wrap: wrap;
7449
+ gap: var(--atomix-footer-social-gap);
7450
+ margin-top: 1rem;
7451
+ }
7452
+ .c-footer__social-link {
7453
+ display: flex;
7454
+ align-items: center;
7455
+ justify-content: center;
7456
+ width: 2.5rem;
7457
+ height: 2.5rem;
7458
+ background-color: var(--atomix-surface-variant);
7459
+ color: var(--atomix-text);
7460
+ border-radius: 50%;
7461
+ text-decoration: none;
7462
+ transition: all 0.15s ease-in-out;
7463
+ position: relative;
7464
+ overflow: hidden;
7465
+ }
7466
+ .c-footer__social-link::before {
7467
+ content: "";
7468
+ position: absolute;
7469
+ inset: 0;
7470
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
7471
+ transform: translateX(-100%);
7472
+ transition: transform 0.6s ease;
7473
+ }
7474
+ .c-footer__social-link:hover, .c-footer__social-link:focus {
7475
+ background-color: var(--atomix-primary);
7476
+ color: var(--atomix-primary-contrast);
7477
+ transform: translateY(-3px) scale(1.05);
7478
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
7479
+ }
7480
+ .c-footer__social-link:hover::before, .c-footer__social-link:focus::before {
7481
+ transform: translateX(100%);
7482
+ }
7483
+ .c-footer__social-link:focus-visible {
7484
+ outline: 2px solid var(--atomix-primary);
7485
+ outline-offset: 2px;
7486
+ }
7487
+ .c-footer__social-link--sm {
7488
+ width: 2rem;
7489
+ height: 2rem;
7490
+ }
7491
+ .c-footer__social-link--lg {
7492
+ width: 3rem;
7493
+ height: 3rem;
7494
+ }
7495
+ .c-footer__social-link--disabled {
7496
+ opacity: 0.5;
7497
+ cursor: not-allowed;
7498
+ pointer-events: none;
7499
+ }
7500
+ .c-footer__social-link-icon {
7501
+ font-size: 1.25em;
7502
+ z-index: 1;
7503
+ }
7504
+ .c-footer__social-link-label {
7505
+ position: absolute;
7506
+ width: 1px;
7507
+ height: 1px;
7508
+ padding: 0;
7509
+ margin: -1px;
7510
+ overflow: hidden;
7511
+ clip: rect(0, 0, 0, 0);
7512
+ white-space: nowrap;
7513
+ border: 0;
7514
+ }
7515
+ .c-footer__social-link--facebook:hover {
7516
+ background: linear-gradient(135deg, #1877f2, #42a5f5);
7517
+ }
7518
+ .c-footer__social-link--twitter:hover {
7519
+ background: linear-gradient(135deg, #1da1f2, #64b5f6);
7520
+ }
7521
+ .c-footer__social-link--instagram:hover {
7522
+ background: linear-gradient(135deg, #e4405f, #f06292, #ba68c8);
7523
+ }
7524
+ .c-footer__social-link--linkedin:hover {
7525
+ background: linear-gradient(135deg, #0077b5, #42a5f5);
7526
+ }
7527
+ .c-footer__social-link--youtube:hover {
7528
+ background: linear-gradient(135deg, #ff0000, #ff5722);
7529
+ }
7530
+ .c-footer__social-link--github:hover {
7531
+ background: linear-gradient(135deg, #333, #666);
7532
+ }
7533
+ .c-footer__social-link--discord:hover {
7534
+ background: linear-gradient(135deg, #5865f2, #7289da);
7535
+ }
7536
+ .c-footer__social-link--tiktok:hover {
7537
+ background: linear-gradient(135deg, #000, #ff0050);
7538
+ }
7539
+ .c-footer__social-link--whatsapp:hover {
7540
+ background: linear-gradient(135deg, #25d366, #66bb6a);
7541
+ }
7542
+ .c-footer__newsletter {
7543
+ background-color: linear-gradient(135deg, var(--atomix-surface-variant), rgba(var(--atomix-surface-variant), 0.8));
7544
+ padding: 1.5rem;
7545
+ border-radius: 0.5rem;
7546
+ border: 1px solid var(--atomix-border-subtle);
7547
+ position: relative;
7548
+ overflow: hidden;
7549
+ }
7550
+ .c-footer__newsletter::before {
7551
+ content: "";
7552
+ position: absolute;
7553
+ top: 0;
7554
+ left: 0;
7555
+ right: 0;
7556
+ height: 1px;
7557
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
7558
+ }
7559
+ .c-footer__newsletter-title {
7560
+ margin: 0 0 0.5rem 0;
7561
+ font-size: clamp(1.125rem, 2vw, 1.125rem);
7562
+ font-weight: 600;
7563
+ color: var(--atomix-text-emphasis);
7564
+ line-height: 1.3;
7565
+ }
7566
+ .c-footer__newsletter-description {
7567
+ margin: 0 0 1rem 0;
7568
+ font-size: 0.875rem;
7569
+ color: var(--atomix-text-muted);
7570
+ line-height: 1.6;
7571
+ max-width: 45ch;
7572
+ }
7573
+ .c-footer__newsletter-form {
7574
+ display: flex;
7575
+ gap: 0.75rem;
7576
+ align-items: flex-end;
7577
+ }
7578
+ @media (max-width: 575.98px) {
7579
+ .c-footer__newsletter-form {
7580
+ flex-direction: column;
7581
+ align-items: stretch;
7582
+ }
7583
+ }
7584
+ .c-footer__newsletter-input-group {
7585
+ display: flex;
7586
+ flex: 1 1;
7587
+ gap: 0.75rem;
7588
+ position: relative;
7589
+ }
7590
+ @media (max-width: 575.98px) {
7591
+ .c-footer__newsletter-input-group {
7592
+ flex-direction: column;
7593
+ }
7594
+ }
7595
+ .c-footer__newsletter-input {
7596
+ flex: 1 1;
7597
+ padding: 0.75rem 1rem;
7598
+ font-size: 0.875rem;
7599
+ background-color: var(--atomix-surface);
7600
+ color: var(--atomix-text);
7601
+ border: 1px solid var(--atomix-border);
7602
+ border-radius: 0.375rem;
7603
+ outline: none;
7604
+ transition: all 0.3s ease;
7605
+ }
7606
+ .c-footer__newsletter-input:focus {
7607
+ border-color: var(--atomix-primary);
7608
+ box-shadow: 0 0 0 0.125rem rgba(var(--atomix-primary-rgb), 0.25);
7609
+ transform: translateY(-1px);
7610
+ }
7611
+ .c-footer__newsletter-input::-moz-placeholder {
7612
+ color: var(--atomix-text-muted);
7613
+ -moz-transition: opacity 0.3s ease;
7614
+ transition: opacity 0.3s ease;
7615
+ }
7616
+ .c-footer__newsletter-input::placeholder {
7617
+ color: var(--atomix-text-muted);
7618
+ transition: opacity 0.3s ease;
7619
+ }
7620
+ .c-footer__newsletter-input:focus::-moz-placeholder {
7621
+ opacity: 0.7;
7622
+ }
7623
+ .c-footer__newsletter-input:focus::placeholder {
7624
+ opacity: 0.7;
7625
+ }
7626
+ .c-footer__newsletter-button {
7627
+ padding: 0.75rem 1.5rem;
7628
+ background-color: var(--atomix-primary);
7629
+ color: var(--atomix-primary-contrast);
7630
+ border: none;
7631
+ border-radius: 0.375rem;
7632
+ font-weight: 500;
7633
+ cursor: pointer;
7634
+ transition: background-color 0.15s ease-in-out;
7635
+ white-space: nowrap;
7636
+ position: relative;
7637
+ overflow: hidden;
7638
+ }
7639
+ .c-footer__newsletter-button::before {
7640
+ content: "";
7641
+ position: absolute;
7642
+ inset: 0;
7643
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
7644
+ transform: translateX(-100%);
7645
+ transition: transform 0.6s ease;
7646
+ }
7647
+ .c-footer__newsletter-button:hover, .c-footer__newsletter-button:focus {
7648
+ background-color: var(--atomix-primary-hover);
7649
+ transform: translateY(-2px);
7650
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
7651
+ }
7652
+ .c-footer__newsletter-button:hover::before, .c-footer__newsletter-button:focus::before {
7653
+ transform: translateX(100%);
7654
+ }
7655
+ .c-footer__newsletter-button:focus-visible {
7656
+ outline: 2px solid var(--atomix-primary);
7657
+ outline-offset: 2px;
7658
+ }
7659
+ .c-footer__bottom {
7660
+ display: flex;
7661
+ align-items: center;
7662
+ justify-content: space-between;
7663
+ padding-top: var(--atomix-footer-bottom-padding-top);
7664
+ border-top: 1px solid var(--atomix-border);
7665
+ position: relative;
7666
+ }
7667
+ @media (max-width: 575.98px) {
7668
+ .c-footer__bottom {
7669
+ flex-direction: column;
7670
+ gap: 1.5rem;
7671
+ text-align: center;
7672
+ }
7673
+ }
7674
+ .c-footer__copyright {
7675
+ font-size: 0.875rem;
7676
+ color: var(--atomix-text-muted);
7677
+ line-height: 1.5;
7678
+ }
7679
+ .c-footer__copyright a {
7680
+ color: inherit;
7681
+ text-decoration: underline;
7682
+ text-decoration-color: transparent;
7683
+ transition: text-decoration-color 0.3s ease;
7684
+ }
7685
+ .c-footer__copyright a:hover, .c-footer__copyright a:focus {
7686
+ text-decoration-color: currentColor;
7687
+ }
7688
+ .c-footer__back-to-top {
7689
+ display: flex;
7690
+ align-items: center;
7691
+ gap: 0.5rem;
7692
+ padding: 0.75rem 1.25rem;
7693
+ background-color: var(--atomix-surface-variant);
7694
+ border: 1px solid var(--atomix-border-subtle);
7695
+ color: var(--atomix-text);
7696
+ font-size: 0.875rem;
7697
+ font-weight: 500;
7698
+ cursor: pointer;
7699
+ transition: color 0.15s ease-in-out;
7700
+ border-radius: 2rem;
7701
+ position: relative;
7702
+ overflow: hidden;
7703
+ }
7704
+ .c-footer__back-to-top::before {
7705
+ content: "";
7706
+ position: absolute;
7707
+ inset: 0;
7708
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
7709
+ transform: translateX(-100%);
7710
+ transition: transform 0.6s ease;
7711
+ }
7712
+ .c-footer__back-to-top:hover, .c-footer__back-to-top:focus {
7713
+ color: var(--atomix-primary);
7714
+ background-color: var(--atomix-primary);
7715
+ border-color: var(--atomix-primary);
7716
+ transform: translateY(-2px);
7717
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
7718
+ }
7719
+ .c-footer__back-to-top:hover::before, .c-footer__back-to-top:focus::before {
7720
+ transform: translateX(100%);
7721
+ }
7722
+ .c-footer__back-to-top:hover .c-footer__back-to-top-icon, .c-footer__back-to-top:focus .c-footer__back-to-top-icon {
7723
+ transform: translateY(-2px);
7724
+ }
7725
+ .c-footer__back-to-top:focus-visible {
7726
+ outline: 2px solid var(--atomix-primary);
7727
+ outline-offset: 2px;
7728
+ }
7729
+ .c-footer__back-to-top-icon {
7730
+ font-size: 1.25em;
7731
+ font-weight: bold;
7732
+ transition: transform 0.3s ease;
7733
+ }
7734
+ @media (max-width: 575.98px) {
7735
+ .c-footer__back-to-top-text {
7736
+ display: none;
7737
+ }
7738
+ }
7739
+ .c-footer__divider {
7740
+ margin: 2rem 0;
7741
+ border: none;
7742
+ height: 1px;
7743
+ background: linear-gradient(90deg, transparent, 1px solid var(--atomix-border), transparent);
7744
+ opacity: 0.5;
7745
+ }
7746
+ @media (min-width: 768px) {
7747
+ .c-footer--columns .c-footer__sections {
7748
+ display: grid;
7749
+ grid-template-columns: minmax(300px, 1fr) 2fr minmax(250px, 1fr);
7750
+ grid-gap: clamp(2rem, 5vw, 4rem);
7751
+ gap: clamp(2rem, 5vw, 4rem);
7752
+ align-items: start;
7753
+ }
7754
+ }
7755
+ @media (min-width: 992px) {
7756
+ .c-footer--columns .c-footer__sections {
7757
+ grid-template-columns: minmax(350px, 1fr) 3fr minmax(300px, 1fr);
7758
+ }
7759
+ }
7760
+ .c-footer--centered {
7761
+ text-align: center;
7762
+ }
7763
+ .c-footer--centered .c-footer__sections {
7764
+ justify-content: center;
7765
+ align-items: center;
7766
+ }
7767
+ .c-footer--centered .c-footer__social {
7768
+ justify-content: center;
7769
+ }
7770
+ .c-footer--centered .c-footer__brand-description {
7771
+ margin-left: auto;
7772
+ margin-right: auto;
7773
+ }
7774
+ .c-footer--minimal {
7775
+ --atomix-footer-padding-y: 2rem;
7776
+ }
7777
+ .c-footer--minimal .c-footer__sections {
7778
+ margin-bottom: 1rem;
7779
+ gap: 1.5rem;
7780
+ }
7781
+ .c-footer--minimal .c-footer__section {
7782
+ margin-bottom: 1rem;
7783
+ }
7784
+ .c-footer--minimal .c-footer__newsletter {
7785
+ padding: 1.5rem;
7786
+ }
7787
+ .c-footer--stacked .c-footer__sections {
7788
+ display: flex;
7789
+ flex-direction: column;
7790
+ align-items: center;
7791
+ text-align: center;
7792
+ gap: clamp(1.5rem, 4vw, 2.5rem);
7793
+ max-width: 600px;
7794
+ margin-left: auto;
7795
+ margin-right: auto;
7796
+ }
7797
+ .c-footer--sm {
7798
+ --atomix-footer-padding-y: 2rem;
7799
+ --atomix-footer-section-margin-bottom: 1.5rem;
7800
+ --atomix-footer-brand-margin-bottom: 1rem;
7801
+ --atomix-footer-social-gap: 0.75rem;
7802
+ }
7803
+ .c-footer--md {
7804
+ --atomix-footer-padding-y: 3rem;
7805
+ --atomix-footer-section-margin-bottom: 2rem;
7806
+ }
7807
+ .c-footer--lg {
7808
+ --atomix-footer-padding-y: 4rem;
7809
+ --atomix-footer-section-margin-bottom: 2.5rem;
7810
+ --atomix-footer-brand-margin-bottom: 2rem;
7811
+ --atomix-footer-social-gap: 1.25rem;
7812
+ }
7813
+ .c-footer--lg .c-footer__sections {
7814
+ gap: clamp(2.5rem, 5vw, 4rem);
7815
+ }
7816
+ .c-footer--primary {
7817
+ --atomix-footer-bg: var(--atomix-primary-bg-subtle);
7818
+ --atomix-footer-border-color: var(--atomix-primary-border-subtle);
7819
+ --atomix-footer-color: var(--atomix-primary-text);
7820
+ }
7821
+ .c-footer--primary .c-footer__brand-name h3,
7822
+ .c-footer--primary .c-footer__section-title {
7823
+ color: var(--atomix-primary-text-emphasis);
7824
+ }
7825
+ .c-footer--primary .c-footer__brand-description,
7826
+ .c-footer--primary .c-footer__copyright {
7827
+ color: var(--atomix-primary-text-muted);
7828
+ }
7829
+ .c-footer--primary .c-footer__link {
7830
+ color: var(--atomix-primary-text);
7831
+ }
7832
+ .c-footer--primary .c-footer__link:hover, .c-footer--primary .c-footer__link:focus {
7833
+ color: var(--atomix-primary);
7834
+ }
7835
+ .c-footer--primary .c-footer__link::before {
7836
+ background-color: var(--atomix-primary);
7837
+ }
7838
+ .c-footer--primary .c-footer__newsletter {
7839
+ background: linear-gradient(135deg, var(--atomix-primary-bg), rgba(var(--atomix-primary-bg-rgb), 0.8));
7840
+ border-color: var(--atomix-primary-border);
7841
+ }
7842
+ .c-footer--primary .c-footer__newsletter::before {
7843
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
7844
+ }
7845
+ .c-footer--secondary {
7846
+ --atomix-footer-bg: var(--atomix-secondary-bg-subtle);
7847
+ --atomix-footer-border-color: var(--atomix-secondary-border-subtle);
7848
+ --atomix-footer-color: var(--atomix-secondary-text);
7849
+ }
7850
+ .c-footer--secondary .c-footer__brand-name h3,
7851
+ .c-footer--secondary .c-footer__section-title {
7852
+ color: var(--atomix-secondary-text-emphasis);
7853
+ }
7854
+ .c-footer--secondary .c-footer__brand-description,
7855
+ .c-footer--secondary .c-footer__copyright {
7856
+ color: var(--atomix-secondary-text-muted);
7857
+ }
7858
+ .c-footer--secondary .c-footer__link {
7859
+ color: var(--atomix-secondary-text);
7860
+ }
7861
+ .c-footer--secondary .c-footer__link:hover, .c-footer--secondary .c-footer__link:focus {
7862
+ color: var(--atomix-secondary);
7863
+ }
7864
+ .c-footer--secondary .c-footer__link::before {
7865
+ background-color: var(--atomix-secondary);
7866
+ }
7867
+ .c-footer--secondary .c-footer__newsletter {
7868
+ background: linear-gradient(135deg, var(--atomix-secondary-bg), rgba(var(--atomix-secondary-bg-rgb), 0.8));
7869
+ border-color: var(--atomix-secondary-border);
7870
+ }
7871
+ .c-footer--secondary .c-footer__newsletter::before {
7872
+ background: linear-gradient(90deg, transparent, var(--atomix-secondary), transparent);
7873
+ }
7874
+ .c-footer--tertiary {
7875
+ --atomix-footer-bg: var(--atomix-tertiary-bg-subtle);
7876
+ --atomix-footer-border-color: var(--atomix-tertiary-border-subtle);
7877
+ --atomix-footer-color: var(--atomix-tertiary-text);
7878
+ }
7879
+ .c-footer--tertiary .c-footer__brand-name h3,
7880
+ .c-footer--tertiary .c-footer__section-title {
7881
+ color: var(--atomix-tertiary-text-emphasis);
7882
+ }
7883
+ .c-footer--tertiary .c-footer__brand-description,
7884
+ .c-footer--tertiary .c-footer__copyright {
7885
+ color: var(--atomix-tertiary-text-muted);
7886
+ }
7887
+ .c-footer--tertiary .c-footer__link {
7888
+ color: var(--atomix-tertiary-text);
7889
+ }
7890
+ .c-footer--tertiary .c-footer__link:hover, .c-footer--tertiary .c-footer__link:focus {
7891
+ color: var(--atomix-tertiary);
7892
+ }
7893
+ .c-footer--tertiary .c-footer__link::before {
7894
+ background-color: var(--atomix-tertiary);
7895
+ }
7896
+ .c-footer--tertiary .c-footer__newsletter {
7897
+ background: linear-gradient(135deg, var(--atomix-tertiary-bg), rgba(var(--atomix-tertiary-bg-rgb), 0.8));
7898
+ border-color: var(--atomix-tertiary-border);
7899
+ }
7900
+ .c-footer--tertiary .c-footer__newsletter::before {
7901
+ background: linear-gradient(90deg, transparent, var(--atomix-tertiary), transparent);
7902
+ }
7903
+ .c-footer--invert {
7904
+ --atomix-footer-bg: var(--atomix-invert-bg-subtle);
7905
+ --atomix-footer-border-color: var(--atomix-invert-border-subtle);
7906
+ --atomix-footer-color: var(--atomix-invert-text);
7907
+ }
7908
+ .c-footer--invert .c-footer__brand-name h3,
7909
+ .c-footer--invert .c-footer__section-title {
7910
+ color: var(--atomix-invert-text-emphasis);
7911
+ }
7912
+ .c-footer--invert .c-footer__brand-description,
7913
+ .c-footer--invert .c-footer__copyright {
7914
+ color: var(--atomix-invert-text-muted);
7915
+ }
7916
+ .c-footer--invert .c-footer__link {
7917
+ color: var(--atomix-invert-text);
7918
+ }
7919
+ .c-footer--invert .c-footer__link:hover, .c-footer--invert .c-footer__link:focus {
7920
+ color: var(--atomix-invert);
7921
+ }
7922
+ .c-footer--invert .c-footer__link::before {
7923
+ background-color: var(--atomix-invert);
7924
+ }
7925
+ .c-footer--invert .c-footer__newsletter {
7926
+ background: linear-gradient(135deg, var(--atomix-invert-bg), rgba(var(--atomix-invert-bg-rgb), 0.8));
7927
+ border-color: var(--atomix-invert-border);
7928
+ }
7929
+ .c-footer--invert .c-footer__newsletter::before {
7930
+ background: linear-gradient(90deg, transparent, var(--atomix-invert), transparent);
7931
+ }
7932
+ .c-footer--brand {
7933
+ --atomix-footer-bg: var(--atomix-brand-bg-subtle);
7934
+ --atomix-footer-border-color: var(--atomix-brand-border-subtle);
7935
+ --atomix-footer-color: var(--atomix-brand-text);
7936
+ }
7937
+ .c-footer--brand .c-footer__brand-name h3,
7938
+ .c-footer--brand .c-footer__section-title {
7939
+ color: var(--atomix-brand-text-emphasis);
7940
+ }
7941
+ .c-footer--brand .c-footer__brand-description,
7942
+ .c-footer--brand .c-footer__copyright {
7943
+ color: var(--atomix-brand-text-muted);
7944
+ }
7945
+ .c-footer--brand .c-footer__link {
7946
+ color: var(--atomix-brand-text);
7947
+ }
7948
+ .c-footer--brand .c-footer__link:hover, .c-footer--brand .c-footer__link:focus {
7949
+ color: var(--atomix-brand);
7950
+ }
7951
+ .c-footer--brand .c-footer__link::before {
7952
+ background-color: var(--atomix-brand);
7953
+ }
7954
+ .c-footer--brand .c-footer__newsletter {
7955
+ background: linear-gradient(135deg, var(--atomix-brand-bg), rgba(var(--atomix-brand-bg-rgb), 0.8));
7956
+ border-color: var(--atomix-brand-border);
7957
+ }
7958
+ .c-footer--brand .c-footer__newsletter::before {
7959
+ background: linear-gradient(90deg, transparent, var(--atomix-brand), transparent);
7960
+ }
7961
+ .c-footer--error {
7962
+ --atomix-footer-bg: var(--atomix-error-bg-subtle);
7963
+ --atomix-footer-border-color: var(--atomix-error-border-subtle);
7964
+ --atomix-footer-color: var(--atomix-error-text);
7965
+ }
7966
+ .c-footer--error .c-footer__brand-name h3,
7967
+ .c-footer--error .c-footer__section-title {
7968
+ color: var(--atomix-error-text-emphasis);
7969
+ }
7970
+ .c-footer--error .c-footer__brand-description,
7971
+ .c-footer--error .c-footer__copyright {
7972
+ color: var(--atomix-error-text-muted);
7973
+ }
7974
+ .c-footer--error .c-footer__link {
7975
+ color: var(--atomix-error-text);
7976
+ }
7977
+ .c-footer--error .c-footer__link:hover, .c-footer--error .c-footer__link:focus {
7978
+ color: var(--atomix-error);
7979
+ }
7980
+ .c-footer--error .c-footer__link::before {
7981
+ background-color: var(--atomix-error);
7982
+ }
7983
+ .c-footer--error .c-footer__newsletter {
7984
+ background: linear-gradient(135deg, var(--atomix-error-bg), rgba(var(--atomix-error-bg-rgb), 0.8));
7985
+ border-color: var(--atomix-error-border);
7986
+ }
7987
+ .c-footer--error .c-footer__newsletter::before {
7988
+ background: linear-gradient(90deg, transparent, var(--atomix-error), transparent);
7989
+ }
7990
+ .c-footer--success {
7991
+ --atomix-footer-bg: var(--atomix-success-bg-subtle);
7992
+ --atomix-footer-border-color: var(--atomix-success-border-subtle);
7993
+ --atomix-footer-color: var(--atomix-success-text);
7994
+ }
7995
+ .c-footer--success .c-footer__brand-name h3,
7996
+ .c-footer--success .c-footer__section-title {
7997
+ color: var(--atomix-success-text-emphasis);
7998
+ }
7999
+ .c-footer--success .c-footer__brand-description,
8000
+ .c-footer--success .c-footer__copyright {
8001
+ color: var(--atomix-success-text-muted);
8002
+ }
8003
+ .c-footer--success .c-footer__link {
8004
+ color: var(--atomix-success-text);
8005
+ }
8006
+ .c-footer--success .c-footer__link:hover, .c-footer--success .c-footer__link:focus {
8007
+ color: var(--atomix-success);
8008
+ }
8009
+ .c-footer--success .c-footer__link::before {
8010
+ background-color: var(--atomix-success);
8011
+ }
8012
+ .c-footer--success .c-footer__newsletter {
8013
+ background: linear-gradient(135deg, var(--atomix-success-bg), rgba(var(--atomix-success-bg-rgb), 0.8));
8014
+ border-color: var(--atomix-success-border);
8015
+ }
8016
+ .c-footer--success .c-footer__newsletter::before {
8017
+ background: linear-gradient(90deg, transparent, var(--atomix-success), transparent);
8018
+ }
8019
+ .c-footer--warning {
8020
+ --atomix-footer-bg: var(--atomix-warning-bg-subtle);
8021
+ --atomix-footer-border-color: var(--atomix-warning-border-subtle);
8022
+ --atomix-footer-color: var(--atomix-warning-text);
8023
+ }
8024
+ .c-footer--warning .c-footer__brand-name h3,
8025
+ .c-footer--warning .c-footer__section-title {
8026
+ color: var(--atomix-warning-text-emphasis);
8027
+ }
8028
+ .c-footer--warning .c-footer__brand-description,
8029
+ .c-footer--warning .c-footer__copyright {
8030
+ color: var(--atomix-warning-text-muted);
8031
+ }
8032
+ .c-footer--warning .c-footer__link {
8033
+ color: var(--atomix-warning-text);
8034
+ }
8035
+ .c-footer--warning .c-footer__link:hover, .c-footer--warning .c-footer__link:focus {
8036
+ color: var(--atomix-warning);
8037
+ }
8038
+ .c-footer--warning .c-footer__link::before {
8039
+ background-color: var(--atomix-warning);
8040
+ }
8041
+ .c-footer--warning .c-footer__newsletter {
8042
+ background: linear-gradient(135deg, var(--atomix-warning-bg), rgba(var(--atomix-warning-bg-rgb), 0.8));
8043
+ border-color: var(--atomix-warning-border);
8044
+ }
8045
+ .c-footer--warning .c-footer__newsletter::before {
8046
+ background: linear-gradient(90deg, transparent, var(--atomix-warning), transparent);
8047
+ }
8048
+ .c-footer--info {
8049
+ --atomix-footer-bg: var(--atomix-info-bg-subtle);
8050
+ --atomix-footer-border-color: var(--atomix-info-border-subtle);
8051
+ --atomix-footer-color: var(--atomix-info-text);
8052
+ }
8053
+ .c-footer--info .c-footer__brand-name h3,
8054
+ .c-footer--info .c-footer__section-title {
8055
+ color: var(--atomix-info-text-emphasis);
8056
+ }
8057
+ .c-footer--info .c-footer__brand-description,
8058
+ .c-footer--info .c-footer__copyright {
8059
+ color: var(--atomix-info-text-muted);
8060
+ }
8061
+ .c-footer--info .c-footer__link {
8062
+ color: var(--atomix-info-text);
8063
+ }
8064
+ .c-footer--info .c-footer__link:hover, .c-footer--info .c-footer__link:focus {
8065
+ color: var(--atomix-info);
8066
+ }
8067
+ .c-footer--info .c-footer__link::before {
8068
+ background-color: var(--atomix-info);
8069
+ }
8070
+ .c-footer--info .c-footer__newsletter {
8071
+ background: linear-gradient(135deg, var(--atomix-info-bg), rgba(var(--atomix-info-bg-rgb), 0.8));
8072
+ border-color: var(--atomix-info-border);
8073
+ }
8074
+ .c-footer--info .c-footer__newsletter::before {
8075
+ background: linear-gradient(90deg, transparent, var(--atomix-info), transparent);
8076
+ }
8077
+ .c-footer--light {
8078
+ --atomix-footer-bg: var(--atomix-light-bg-subtle);
8079
+ --atomix-footer-border-color: var(--atomix-light-border-subtle);
8080
+ --atomix-footer-color: var(--atomix-light-text);
8081
+ }
8082
+ .c-footer--light .c-footer__brand-name h3,
8083
+ .c-footer--light .c-footer__section-title {
8084
+ color: var(--atomix-light-text-emphasis);
8085
+ }
8086
+ .c-footer--light .c-footer__brand-description,
8087
+ .c-footer--light .c-footer__copyright {
8088
+ color: var(--atomix-light-text-muted);
8089
+ }
8090
+ .c-footer--light .c-footer__link {
8091
+ color: var(--atomix-light-text);
8092
+ }
8093
+ .c-footer--light .c-footer__link:hover, .c-footer--light .c-footer__link:focus {
8094
+ color: var(--atomix-light);
8095
+ }
8096
+ .c-footer--light .c-footer__link::before {
8097
+ background-color: var(--atomix-light);
8098
+ }
8099
+ .c-footer--light .c-footer__newsletter {
8100
+ background: linear-gradient(135deg, var(--atomix-light-bg), rgba(var(--atomix-light-bg-rgb), 0.8));
8101
+ border-color: var(--atomix-light-border);
8102
+ }
8103
+ .c-footer--light .c-footer__newsletter::before {
8104
+ background: linear-gradient(90deg, transparent, var(--atomix-light), transparent);
8105
+ }
8106
+ .c-footer--dark {
8107
+ --atomix-footer-bg: var(--atomix-dark-bg-subtle);
8108
+ --atomix-footer-border-color: var(--atomix-dark-border-subtle);
8109
+ --atomix-footer-color: var(--atomix-dark-text);
8110
+ }
8111
+ .c-footer--dark .c-footer__brand-name h3,
8112
+ .c-footer--dark .c-footer__section-title {
8113
+ color: var(--atomix-dark-text-emphasis);
8114
+ }
8115
+ .c-footer--dark .c-footer__brand-description,
8116
+ .c-footer--dark .c-footer__copyright {
8117
+ color: var(--atomix-dark-text-muted);
8118
+ }
8119
+ .c-footer--dark .c-footer__link {
8120
+ color: var(--atomix-dark-text);
8121
+ }
8122
+ .c-footer--dark .c-footer__link:hover, .c-footer--dark .c-footer__link:focus {
8123
+ color: var(--atomix-dark);
8124
+ }
8125
+ .c-footer--dark .c-footer__link::before {
8126
+ background-color: var(--atomix-dark);
8127
+ }
8128
+ .c-footer--dark .c-footer__newsletter {
8129
+ background: linear-gradient(135deg, var(--atomix-dark-bg), rgba(var(--atomix-dark-bg-rgb), 0.8));
8130
+ border-color: var(--atomix-dark-border);
8131
+ }
8132
+ .c-footer--dark .c-footer__newsletter::before {
8133
+ background: linear-gradient(90deg, transparent, var(--atomix-dark), transparent);
7058
8134
  }
7059
- @keyframes fadeOut {
7060
- from {
7061
- opacity: var(--atomix-edge-panel-backdrop-opacity);
7062
- }
7063
- to {
7064
- opacity: 0;
7065
- }
8135
+ .c-footer--sticky {
8136
+ position: sticky;
8137
+ bottom: 0;
8138
+ z-index: 10;
8139
+ box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
8140
+ -webkit-backdrop-filter: blur(10px);
8141
+ backdrop-filter: blur(10px);
8142
+ background-color: rgba(var(--atomix-footer-bg-rgb), 0.95);
7066
8143
  }
7067
- @keyframes slideInStart {
7068
- from {
7069
- transform: translateX(-100%);
7070
- }
7071
- to {
7072
- transform: translateX(0);
8144
+ @media (prefers-color-scheme: dark) {
8145
+ .c-footer {
8146
+ --atomix-footer-bg: var(--atomix-surface-dark);
8147
+ --atomix-footer-color: var(--atomix-text-dark);
8148
+ --atomix-footer-border-color: var(--atomix-border-dark);
7073
8149
  }
7074
8150
  }
7075
- @keyframes slideOutStart {
7076
- from {
7077
- transform: translateX(0);
7078
- }
7079
- to {
7080
- transform: translateX(-100%);
7081
- }
8151
+ .dark-mode .c-footer {
8152
+ --atomix-footer-bg: var(--atomix-surface-dark);
8153
+ --atomix-footer-color: var(--atomix-text-dark);
8154
+ --atomix-footer-border-color: var(--atomix-border-dark);
7082
8155
  }
7083
- @keyframes slideInEnd {
7084
- from {
7085
- transform: translateX(100%);
7086
- }
7087
- to {
7088
- transform: translateX(0);
7089
- }
8156
+ .dark-mode .c-footer .c-footer__newsletter {
8157
+ background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
8158
+ border-color: rgba(255, 255, 255, 0.1);
7090
8159
  }
7091
- @keyframes slideOutEnd {
7092
- from {
7093
- transform: translateX(0);
7094
- }
7095
- to {
7096
- transform: translateX(100%);
7097
- }
8160
+ .dark-mode .c-footer .c-footer__social-link {
8161
+ background-color: rgba(255, 255, 255, 0.1);
7098
8162
  }
7099
- @keyframes slideInTop {
7100
- from {
7101
- transform: translateY(-100%);
8163
+ .dark-mode .c-footer .c-footer__social-link:hover {
8164
+ background-color: rgba(255, 255, 255, 0.2);
8165
+ }
8166
+ @media (prefers-reduced-motion: reduce) {
8167
+ .c-footer *,
8168
+ .c-footer *::before,
8169
+ .c-footer *::after {
8170
+ animation-duration: 0.01ms !important;
8171
+ animation-iteration-count: 1 !important;
8172
+ transition-duration: 0.01ms !important;
8173
+ scroll-behavior: auto !important;
8174
+ }
8175
+ .c-footer .c-footer__social-link:hover,
8176
+ .c-footer .c-footer__back-to-top:hover,
8177
+ .c-footer .c-footer__newsletter-button:hover {
8178
+ transform: none;
7102
8179
  }
7103
- to {
7104
- transform: translateY(0);
8180
+ }
8181
+ @media (prefers-contrast: high) {
8182
+ .c-footer .c-footer__link,
8183
+ .c-footer .c-footer__social-link,
8184
+ .c-footer .c-footer__back-to-top {
8185
+ border: 2px solid currentColor;
7105
8186
  }
7106
8187
  }
7107
- @keyframes slideOutTop {
7108
- from {
7109
- transform: translateY(0);
8188
+ @media print {
8189
+ .c-footer {
8190
+ background: white !important;
8191
+ color: black !important;
8192
+ box-shadow: none !important;
7110
8193
  }
7111
- to {
7112
- transform: translateY(-100%);
8194
+ .c-footer .c-footer__back-to-top,
8195
+ .c-footer .c-footer__newsletter,
8196
+ .c-footer .c-footer__section-toggle {
8197
+ display: none !important;
7113
8198
  }
7114
- }
7115
- @keyframes slideInBottom {
7116
- from {
7117
- transform: translateY(100%);
8199
+ .c-footer .c-footer__social-link::after {
8200
+ content: " (" attr(href) ")";
8201
+ font-size: 0.8em;
8202
+ color: inherit;
7118
8203
  }
7119
- to {
7120
- transform: translateY(0);
8204
+ .c-footer .c-footer__section--collapsible .c-footer__section-content {
8205
+ max-height: none !important;
8206
+ overflow: visible !important;
7121
8207
  }
7122
8208
  }
7123
- @keyframes slideOutBottom {
7124
- from {
7125
- transform: translateY(0);
8209
+ @container (min-width: 768px) {
8210
+ .c-footer .c-footer__sections {
8211
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
7126
8212
  }
7127
- to {
7128
- transform: translateY(100%);
8213
+ }
8214
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
8215
+ .c-footer .c-footer__brand-logo img {
8216
+ image-rendering: -webkit-optimize-contrast;
8217
+ image-rendering: crisp-edges;
7129
8218
  }
7130
8219
  }
7131
8220
  .c-form {
@@ -7157,7 +8246,7 @@ a, a:hover {
7157
8246
  --atomix-hero-subtitle-font-weight: 400;
7158
8247
  --atomix-hero-title-font-weight: 700;
7159
8248
  --atomix-hero-text-font-weight: 400;
7160
- --atomix-hero-subtitle-margin-bottom: 12px;
8249
+ --atomix-hero-subtitle-margin-bottom: 0.75rem;
7161
8250
  --atomix-hero-text-margin-top: 0.75rem;
7162
8251
  --atomix-hero-actions-margin-top: 1.5rem;
7163
8252
  --atomix-hero-actions-inner-gap: 0.75rem;
@@ -7190,13 +8279,12 @@ a, a:hover {
7190
8279
  .c-hero__overlay {
7191
8280
  position: absolute;
7192
8281
  inset: 0;
7193
- background: var(--atomix-hero-overlay);
8282
+ background-color: var(--atomix-hero-overlay);
7194
8283
  opacity: var(--atomix-hero-overlay-opacity);
7195
- z-index: 1;
8284
+ z-index: 0;
7196
8285
  }
7197
8286
  .c-hero__container {
7198
8287
  position: relative;
7199
- z-index: 2;
7200
8288
  }
7201
8289
  .c-hero__grid {
7202
8290
  --atomix-gutter-x: var(--atomix-hero-grid-gutter);
@@ -7311,7 +8399,7 @@ a, a:hover {
7311
8399
  --atomix-input-padding-x: 0.75rem;
7312
8400
  --atomix-input-padding-y: 0.625rem;
7313
8401
  --atomix-input-border-color: var(--atomix-primary-border-subtle);
7314
- --atomix-input-border-width: 1px;
8402
+ --atomix-input-border-width: var(--atomix-border-width);
7315
8403
  --atomix-input-border-radius: 0.75rem;
7316
8404
  --atomix-input-bg: var(--atomix-body-bg);
7317
8405
  --atomix-input-textarea-height: 100px;
@@ -7396,6 +8484,21 @@ a, a:hover {
7396
8484
  --atomix-input-bg: var(--atomix-secondary-bg-subtle);
7397
8485
  pointer-events: none;
7398
8486
  }
8487
+ .c-input--glass {
8488
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
8489
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
8490
+ }
8491
+ .c-input--glass:focus, .c-input--glass:hover {
8492
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
8493
+ 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);
8494
+ }
8495
+ .c-input--glass.c-input--textarea {
8496
+ resize: vertical;
8497
+ }
8498
+ .c-input--glass:disabled, .c-input--glass.is-disabled {
8499
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
8500
+ opacity: 0.6;
8501
+ }
7399
8502
  .c-list-group {
7400
8503
  --atomix-list-group-width: 100%;
7401
8504
  --atomix-list-group-bg: ;
@@ -7405,7 +8508,7 @@ a, a:hover {
7405
8508
  --atomix-list-group-item-color: var(--atomix-body-color);
7406
8509
  --atomix-list-group-item-disabled-color: var(--atomix-disabled-text-emphasis);
7407
8510
  --atomix-list-group-item-border-color: var(--atomix-primary-border-subtle);
7408
- --atomix-list-group-item-border-width: 1px;
8511
+ --atomix-list-group-item-border-width: var(--atomix-border-width);
7409
8512
  --atomix-list-group-item-bg: var(--atomix-body-bg);
7410
8513
  display: flex;
7411
8514
  flex-direction: column;
@@ -7414,14 +8517,14 @@ a, a:hover {
7414
8517
  list-style: none;
7415
8518
  width: 100%;
7416
8519
  max-width: var(--atomix-list-group-width);
7417
- background: var(--atomix-list-group-bg);
8520
+ background-color: var(--atomix-list-group-bg);
7418
8521
  }
7419
8522
  .c-list-group__item {
7420
8523
  padding: var(--atomix-list-group-item-padding-y) var(--atomix-list-group-item-padding-x);
7421
8524
  font-size: var(--atomix-list-group-item-font-size);
7422
8525
  color: var(--atomix-list-group-item-color);
7423
8526
  border-bottom: var(--atomix-list-group-item-border-width) solid var(--atomix-list-group-item-border-color);
7424
- background: var(--atomix-list-group-item-bg);
8527
+ background-color: var(--atomix-list-group-item-bg);
7425
8528
  }
7426
8529
  .c-list-group__item--primary {
7427
8530
  --atomix-list-group-item-bg: var(--atomix-brand-bg-subtle);
@@ -7486,7 +8589,7 @@ a, a:hover {
7486
8589
  left: 0;
7487
8590
  width: var(--atomix-list-item-dash-width);
7488
8591
  height: var(--atomix-list-item-dash-height);
7489
- background: var(--atomix-list-color);
8592
+ background-color: var(--atomix-list-color);
7490
8593
  transform: translateY(-50%);
7491
8594
  }
7492
8595
  .c-list--number {
@@ -7503,17 +8606,17 @@ a, a:hover {
7503
8606
  --atomix-menu-bg: var(--atomix-body-bg);
7504
8607
  --atomix-menu-border-radius: 1rem;
7505
8608
  --atomix-menu-box-shadow: var(--atomix-box-shadow);
7506
- --atomix-menu-items-gap: 4px;
7507
- --atomix-menu-item-padding-x: 8px;
7508
- --atomix-menu-item-padding-y: 8px;
7509
- --atomix-menu-item-inner-gap: 8px;
8609
+ --atomix-menu-items-gap: 0.25rem;
8610
+ --atomix-menu-item-padding-x: 0.5rem;
8611
+ --atomix-menu-item-padding-y: 0.5rem;
8612
+ --atomix-menu-item-inner-gap: 0.5rem;
7510
8613
  --atomix-menu-item-color: var(--atomix-primary-text-emphasis);
7511
8614
  --atomix-menu-item-font-size: 1rem;
7512
8615
  --atomix-menu-item-font-weight: 700;
7513
8616
  --atomix-menu-item-bg: var(--atomix-body-bg);
7514
8617
  --atomix-menu-item-bg-hover: var(--atomix-secondary-bg-subtle);
7515
8618
  --atomix-menu-item-bg-active: var(--atomix-brand-bg-subtle);
7516
- --atomix-menu-item-icon-size: 20px;
8619
+ --atomix-menu-item-icon-size: 1.25rem;
7517
8620
  --atomix-menu-subitem-color: var(--atomix-secondary-text-emphasis);
7518
8621
  --atomix-menu-subitem-color-active: var(--atomix-brand-text-emphasis);
7519
8622
  --atomix-menu-subitem-font-weight: 400;
@@ -7721,12 +8824,12 @@ a, a:hover {
7721
8824
  --atomix-messages-text-font-size: 0.875rem;
7722
8825
  --atomix-messages-text-bg: var(--atomix-tertiary-bg-subtle);
7723
8826
  --atomix-messages-text-border-radius: 1rem;
7724
- --atomix-messages-file-padding-x: 12px;
7725
- --atomix-messages-file-padding-y: 12px;
8827
+ --atomix-messages-file-padding-x: 0.75rem;
8828
+ --atomix-messages-file-padding-y: 0.75rem;
7726
8829
  --atomix-messages-file-text-font-size: 0.875rem;
7727
8830
  --atomix-messages-file-text-color: var(--atomix-body-color);
7728
8831
  --atomix-messages-file-icon-size: 2.5rem;
7729
- --atomix-messages-file-icon-margin-right: 8px;
8832
+ --atomix-messages-file-icon-margin-right: 0.5rem;
7730
8833
  --atomix-messages-file-icon-bg: #d1fae5;
7731
8834
  --atomix-messages-file-info-font-size: 0.75rem;
7732
8835
  --atomix-messages-file-info-color: var(--atomix-tertiary-text-emphasis);
@@ -7746,7 +8849,7 @@ a, a:hover {
7746
8849
  --atomix-messages-input-border-width: 1px;
7747
8850
  --atomix-messages-input-border-color: var(--atomix-secondary-border-subtle);
7748
8851
  --atomix-messages-input-border-radius: 0.75rem;
7749
- --atomix-messages-input-options-icons-size: 24px;
8852
+ --atomix-messages-input-options-icons-size: 1.5rem;
7750
8853
  --atomix-messages-input-options-row-gap: 0.5rem;
7751
8854
  --atomix-messages-body-height: calc(100vh - 600px);
7752
8855
  width: 100%;
@@ -7813,7 +8916,7 @@ a, a:hover {
7813
8916
  flex-wrap: wrap;
7814
8917
  padding: var(--atomix-messages-file-padding-y) var(--atomix-messages-file-padding-x);
7815
8918
  border-radius: 0.25rem var(--atomix-messages-file-border-radius) var(--atomix-messages-file-border-radius) 0.25rem;
7816
- background: var(--atomix-messages-file-bg);
8919
+ background-color: var(--atomix-messages-file-bg);
7817
8920
  }
7818
8921
  .c-messages__file-icon {
7819
8922
  display: grid !important;
@@ -7971,7 +9074,7 @@ a, a:hover {
7971
9074
  --atomix-modal-sub-margin-top: 0.25rem;
7972
9075
  --atomix-modal-sub-color: var(--atomix-tertiary-text-emphasis);
7973
9076
  --atomix-modal-sub-font-size: 0.875rem;
7974
- --atomix-modal-footer-items-gap: 0.5rem;
9077
+ --atomix-modal-footer-items-gap: 2rem;
7975
9078
  --atomix-modal-backdrop-bg: var(--atomix-invert-bg-subtle);
7976
9079
  --atomix-modal-backdrop-opacity: 0.5;
7977
9080
  --atomix-modal-backdrop-blur: 10px;
@@ -8189,14 +9292,14 @@ a, a:hover {
8189
9292
  left: 50%;
8190
9293
  transform: translateX(-50%);
8191
9294
  z-index: 1000;
8192
- background: var(--atomix-body-bg);
9295
+ background-color: var(--atomix-body-bg);
8193
9296
  border: 1px solid var(--atomix-border-color);
8194
9297
  border-radius: 50rem;
8195
9298
  box-shadow: var(--atomix-box-shadow-lg);
8196
9299
  padding: 0.5rem 1rem;
8197
9300
  -webkit-backdrop-filter: blur(10px);
8198
9301
  backdrop-filter: blur(10px);
8199
- background: rgba(var(--atomix-body-bg-rgb), 0.95);
9302
+ background-color: rgba(var(--atomix-body-bg-rgb), 0.95);
8200
9303
  }
8201
9304
  .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 {
8202
9305
  margin-left: 0.25rem;
@@ -8219,7 +9322,7 @@ a, a:hover {
8219
9322
  --atomix-navbar-padding-y: 0.5rem;
8220
9323
  --atomix-navbar-container-max-width: 1600px;
8221
9324
  --atomix-navbar-bg: var(--atomix-body-bg);
8222
- --atomix-navbar-border-width: 1px;
9325
+ --atomix-navbar-border-width: var(--atomix-border-width);
8223
9326
  --atomix-navbar-border-color: var(--atomix-primary-border-subtle);
8224
9327
  --atomix-navbar-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
8225
9328
  --atomix-navbar-brand-margin-end: 1.875rem;
@@ -8230,7 +9333,7 @@ a, a:hover {
8230
9333
  --atomix-navbar-toggler-color: var(--atomix-body-color);
8231
9334
  --atomix-navbar-toggler-bg: transparent;
8232
9335
  --atomix-navbar-toggler-border: 0;
8233
- --atomix-navbar-toggler-border-radius: 4px;
9336
+ --atomix-navbar-toggler-border-radius: 0.25rem;
8234
9337
  --atomix-navbar-toggler-focus-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8235
9338
  --atomix-navbar-collapse-padding-top: 0.5rem;
8236
9339
  --atomix-navbar-collapse-transition: all 0.3s ease-in-out;
@@ -8577,24 +9680,24 @@ a, a:hover {
8577
9680
  --atomix-callout-padding-y: 1rem;
8578
9681
  --atomix-callout-tost-padding-x: 1rem;
8579
9682
  --atomix-callout-tost-padding-y: 1rem;
8580
- --atomix-callout-bg: #ffffff;
9683
+ --atomix-callout-bg: var(--atomix-body-bg);
8581
9684
  --atomix-callout-border-radius: 0.5rem;
8582
- --atomix-callout-border-color: #e5e7eb;
9685
+ --atomix-callout-border-color: var(--atomix-border-color);
8583
9686
  --atomix-callout-border-witdh: var(--atomix-border-width);
8584
9687
  --atomix-callout-title-font-size: 1rem;
8585
9688
  --atomix-callout-title-font-weight: 600;
8586
- --atomix-callout-title-color: #1f2937;
9689
+ --atomix-callout-title-color: var(--atomix-body-color);
8587
9690
  --atomix-callout-text-font-size: 0.875rem;
8588
9691
  --atomix-callout-text-font-weight: 400;
8589
- --atomix-callout-text-color: #4b5563;
9692
+ --atomix-callout-text-color: var(--atomix-body-color);
8590
9693
  --atomix-callout-message-spacer: 0.75rem;
8591
9694
  --atomix-callout-icon-size: 1.25rem;
8592
- --atomix-callout-icon-color: #10b981;
9695
+ --atomix-callout-icon-color: var(--atomix-primary);
8593
9696
  --atomix-callout-close-btn-size: 1.25rem;
8594
9697
  --atomix-callout-actions-spacer: 0.5rem;
8595
9698
  --atomix-callout-actions-spacer-y: 0.75rem;
8596
- --atomix-callout-toast-bg: #ffffff;
8597
- --atomix-callout-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
9699
+ --atomix-callout-toast-bg: var(--atomix-body-bg);
9700
+ --atomix-callout-box-shadow: var(--atomix-box-shadow);
8598
9701
  --atomix-callout-transition-duration: 0.3s;
8599
9702
  --atomix-callout-transition-timing: cubic-bezier(0.16, 1, 0.3, 1);
8600
9703
  display: inline-flex;
@@ -8604,7 +9707,7 @@ a, a:hover {
8604
9707
  max-width: var(--atomix-callout-width);
8605
9708
  gap: var(--atomix-callout-actions-spacer);
8606
9709
  padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
8607
- background: var(--atomix-callout-bg);
9710
+ background-color: var(--atomix-callout-bg);
8608
9711
  border-radius: var(--atomix-callout-border-radius);
8609
9712
  border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
8610
9713
  transition: opacity var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing), transform var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing);
@@ -8643,9 +9746,9 @@ a, a:hover {
8643
9746
  .c-callout__actions {
8644
9747
  display: flex;
8645
9748
  align-items: center;
8646
- flex-wrap: wrap;
8647
9749
  gap: var(--atomix-callout-actions-spacer);
8648
9750
  margin-left: auto;
9751
+ margin-right: 10px;
8649
9752
  }
8650
9753
  .c-callout__close-btn {
8651
9754
  display: inline-flex;
@@ -8747,9 +9850,35 @@ a, a:hover {
8747
9850
  --atomix-callout-title-color: var(--atomix-light);
8748
9851
  --atomix-callout-text-color: #d1d5db;
8749
9852
  --atomix-callout-bg: var(--atomix-dark);
8750
- --atomix-callout-border-color: var(--atomix-primary-border-subtle);
9853
+ --atomix-callout-border-color: var(--atomix-dark-border-subtle);
8751
9854
  --atomix-callout-icon-color: var(--atomix-light);
8752
9855
  }
9856
+ .c-callout--glass {
9857
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
9858
+ padding: 0;
9859
+ border: none;
9860
+ display: block;
9861
+ }
9862
+ .c-callout--glass .c-callout__glass-content {
9863
+ display: flex;
9864
+ justify-content: center;
9865
+ align-items: center;
9866
+ padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
9867
+ border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
9868
+ max-width: var(--atomix-callout-width);
9869
+ border-radius: var(--atomix-callout-border-radius);
9870
+ width: 100%;
9871
+ }
9872
+ .c-callout--glass .c-callout__title {
9873
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
9874
+ }
9875
+ .c-callout--glass .c-callout__text {
9876
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
9877
+ }
9878
+ .c-callout--glass.c-callout--toast {
9879
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
9880
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
9881
+ }
8753
9882
  .c-callout.is-hide {
8754
9883
  opacity: 0;
8755
9884
  transform: translateY(-10px);
@@ -8827,7 +9956,7 @@ a, a:hover {
8827
9956
  --atomix-pagination-color: var(--atomix-secondary-text-emphasis);
8828
9957
  --atomix-pagination-bg: var(--atomix-body-bg);
8829
9958
  --atomix-pagination-focus-border-color: var(--atomix-brand-border-subtle);
8830
- --atomix-pagination-focus-border-width: 2px;
9959
+ --atomix-pagination-focus-border-width: calc(var(--atomix-border-width) * 2);
8831
9960
  --atomix-pagination-hover-color: var(--atomix-body-color);
8832
9961
  --atomix-pagination-hover-bg: var(--atomix-secondary-bg-subtle);
8833
9962
  --atomix-pagination-active-color: var(--atomix-body-color);
@@ -8974,7 +10103,7 @@ a, a:hover {
8974
10103
  flex-direction: column;
8975
10104
  gap: var(--atomix-popover-inner-gap-y) var(--atomix-popover-inner-gap-x);
8976
10105
  padding: var(--atomix-popover-padding-y) var(--atomix-popover-padding-x);
8977
- background: var(--atomix-popover-bg);
10106
+ background-color: var(--atomix-popover-bg);
8978
10107
  border-radius: var(--atomix-popover-border-radius);
8979
10108
  box-shadow: var(--atomix-popover-box-shadow);
8980
10109
  }
@@ -8982,7 +10111,7 @@ a, a:hover {
8982
10111
  position: absolute;
8983
10112
  width: var(--atomix-popover-arrow-size);
8984
10113
  height: var(--atomix-popover-arrow-size);
8985
- background: var(--atomix-popover-bg);
10114
+ background-color: var(--atomix-popover-bg);
8986
10115
  box-shadow: var(--atomix-popover-box-shadow);
8987
10116
  z-index: 1;
8988
10117
  transform-origin: center;
@@ -9169,7 +10298,7 @@ a, a:hover {
9169
10298
  --atomix-progress-bar-bg: var(--atomix-dark);
9170
10299
  }
9171
10300
  .c-rating {
9172
- --atomix-rating-star-size: 32px;
10301
+ --atomix-rating-star-size: 2rem;
9173
10302
  --atomix-rating-star-bg: var(--atomix-primary);
9174
10303
  --atomix-rating-star-half-bg: var(--atomix-primary);
9175
10304
  --atomix-rating-stars-gap: 0.125rem;
@@ -9275,11 +10404,11 @@ a, a:hover {
9275
10404
  font-size: var(--atomix-rating-value-font-size);
9276
10405
  }
9277
10406
  .c-rating--sm {
9278
- --atomix-rating-star-size: 16px;
10407
+ --atomix-rating-star-size: 1rem;
9279
10408
  --atomix-rating-stars-gap: 0.0625rem;
9280
10409
  }
9281
10410
  .c-rating--lg {
9282
- --atomix-rating-star-size: 48px;
10411
+ --atomix-rating-star-size: 3rem;
9283
10412
  --atomix-rating-stars-gap: 0.25rem;
9284
10413
  }
9285
10414
  .c-rating-container {
@@ -9367,7 +10496,7 @@ a, a:hover {
9367
10496
  .c-river__overlay {
9368
10497
  position: absolute;
9369
10498
  inset: 0;
9370
- background: var(--atomix-river-overlay);
10499
+ background-color: var(--atomix-river-overlay);
9371
10500
  opacity: var(--atomix-river-overlay-opacity);
9372
10501
  border-radius: var(--atomix-river-border-radius);
9373
10502
  }
@@ -9506,7 +10635,7 @@ a, a:hover {
9506
10635
  --atomix-sectionintro-text-font-weight: 400;
9507
10636
  --atomix-sectionintro-label-margin-bottom: 0.75rem;
9508
10637
  --atomix-sectionintro-text-margin-top: 0.75rem;
9509
- --atomix-sectionintro-actions-margin-top: 1.4375rem;
10638
+ --atomix-sectionintro-actions-margin-top: 0.75rem;
9510
10639
  --atomix-sectionintro-actions-inner-gap: 0.75rem;
9511
10640
  --atomix-sectionintro-width: 40.5rem;
9512
10641
  --atomix-sectionintro-image-margin-top: 1.5rem;
@@ -9749,7 +10878,7 @@ a, a:hover {
9749
10878
  --atomix-side-menu-padding-y: 1.5rem;
9750
10879
  --atomix-side-menu-bg: var(--atomix-body-bg);
9751
10880
  --atomix-side-menu-border-radius: 0.75rem;
9752
- --atomix-side-menu-border-width: 1px;
10881
+ --atomix-side-menu-border-width: var(--atomix-border-width);
9753
10882
  --atomix-side-menu-border-color: var(--atomix-border-color);
9754
10883
  --atomix-side-menu-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
9755
10884
  --atomix-side-menu-title-font-size: 1rem;
@@ -9783,14 +10912,14 @@ a, a:hover {
9783
10912
  --atomix-side-menu-inner-padding-top: 1.25rem;
9784
10913
  width: 100%;
9785
10914
  padding: var(--atomix-side-menu-padding-y) var(--atomix-side-menu-padding-x);
9786
- background: var(--atomix-side-menu-bg);
10915
+ background-color: var(--atomix-side-menu-bg);
9787
10916
  border-radius: var(--atomix-side-menu-border-radius);
9788
10917
  border: var(--atomix-side-menu-border-width) solid var(--atomix-side-menu-border-color);
9789
10918
  box-shadow: var(--atomix-side-menu-box-shadow);
9790
10919
  }
9791
10920
  @media (max-width: 991.98px) {
9792
10921
  .c-side-menu {
9793
- padding: 0.75rem 1rem;
10922
+ padding: 1rem 1rem;
9794
10923
  }
9795
10924
  }
9796
10925
  @media (max-width: 991.98px) {
@@ -9821,7 +10950,7 @@ a, a:hover {
9821
10950
  justify-content: space-between;
9822
10951
  width: 100%;
9823
10952
  padding: var(--atomix-side-menu-toggler-padding-y) var(--atomix-side-menu-toggler-padding-x);
9824
- background: var(--atomix-side-menu-toggler-bg);
10953
+ background-color: var(--atomix-side-menu-toggler-bg);
9825
10954
  border: none;
9826
10955
  border-radius: var(--atomix-side-menu-toggler-border-radius);
9827
10956
  cursor: pointer;
@@ -9837,7 +10966,7 @@ a, a:hover {
9837
10966
  }
9838
10967
  }
9839
10968
  .c-side-menu__toggler:hover {
9840
- background: var(--atomix-side-menu-toggler-hover-bg);
10969
+ background-color: var(--atomix-side-menu-toggler-hover-bg);
9841
10970
  }
9842
10971
  .c-side-menu__toggler:focus {
9843
10972
  outline: 2px solid var(--atomix-focus-ring-color);
@@ -9875,7 +11004,7 @@ a, a:hover {
9875
11004
  color: var(--atomix-side-menu-item-color);
9876
11005
  font-size: var(--atomix-side-menu-item-font-size);
9877
11006
  font-weight: var(--atomix-side-menu-item-font-weight);
9878
- background: var(--atomix-side-menu-item-bg);
11007
+ background-color: var(--atomix-side-menu-item-bg);
9879
11008
  border: none;
9880
11009
  border-radius: var(--atomix-side-menu-item-border-radius);
9881
11010
  text-decoration: none;
@@ -9884,7 +11013,7 @@ a, a:hover {
9884
11013
  }
9885
11014
  .c-side-menu__link:hover {
9886
11015
  color: var(--atomix-side-menu-item-hover-color);
9887
- background: var(--atomix-side-menu-item-hover-bg);
11016
+ background-color: var(--atomix-side-menu-item-hover-bg);
9888
11017
  text-decoration: none;
9889
11018
  }
9890
11019
  .c-side-menu__link:focus {
@@ -9896,12 +11025,12 @@ a, a:hover {
9896
11025
  }
9897
11026
  .c-side-menu__link.is-active {
9898
11027
  color: var(--atomix-side-menu-item-active-color);
9899
- background: var(--atomix-side-menu-item-active-bg);
11028
+ background-color: var(--atomix-side-menu-item-active-bg);
9900
11029
  font-weight: 500;
9901
11030
  }
9902
11031
  .c-side-menu__link.is-disabled, .c-side-menu__link[aria-disabled=true] {
9903
11032
  color: var(--atomix-side-menu-item-disabled-color);
9904
- background: var(--atomix-side-menu-item-disabled-bg);
11033
+ background-color: var(--atomix-side-menu-item-disabled-bg);
9905
11034
  cursor: not-allowed;
9906
11035
  pointer-events: none;
9907
11036
  opacity: 0.6;
@@ -9945,7 +11074,7 @@ a, a:hover {
9945
11074
  display: inline-block;
9946
11075
  width: var(--atomix-skeleton-width);
9947
11076
  min-height: var(--atomix-skeleton-height);
9948
- 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%);
11077
+ 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%);
9949
11078
  background-size: 400% 100%;
9950
11079
  border-radius: var(--atomix-skeleton-border-radius);
9951
11080
  animation-name: atomix--skeleton-loading;
@@ -10041,7 +11170,7 @@ a, a:hover {
10041
11170
  display: flex;
10042
11171
  align-items: center;
10043
11172
  justify-content: center;
10044
- background: var(--atomix-secondary-bg-subtle);
11173
+ background-color: var(--atomix-secondary-bg-subtle);
10045
11174
  border: 2px dashed var(--atomix-primary-border-subtle);
10046
11175
  border-radius: 0.25rem;
10047
11176
  }
@@ -10081,7 +11210,7 @@ a, a:hover {
10081
11210
  height: var(--atomix-slider-nav-size);
10082
11211
  border: none;
10083
11212
  border-radius: 50rem;
10084
- background: var(--atomix-primary-bg-subtle);
11213
+ background-color: var(--atomix-primary-bg-subtle);
10085
11214
  color: var(--atomix-primary-text);
10086
11215
  cursor: pointer;
10087
11216
  pointer-events: auto;
@@ -10094,7 +11223,7 @@ a, a:hover {
10094
11223
  }
10095
11224
  .c-slider__navigation-prev:hover,
10096
11225
  .c-slider__navigation-next:hover {
10097
- background: var(--atomix-secondary-bg-subtle);
11226
+ background-color: var(--atomix-secondary-bg-subtle);
10098
11227
  transform: translateY(-50%) scale(1.05);
10099
11228
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
10100
11229
  }
@@ -10146,20 +11275,20 @@ a, a:hover {
10146
11275
  height: 0.5rem;
10147
11276
  border-radius: 50rem;
10148
11277
  border: none;
10149
- background: var(--atomix-tertiary-bg-subtle);
11278
+ background-color: var(--atomix-tertiary-bg-subtle);
10150
11279
  cursor: pointer;
10151
11280
  pointer-events: auto;
10152
11281
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
10153
11282
  }
10154
11283
  .c-slider__pagination-bullet:hover {
10155
- background: var(--atomix-secondary-bg-subtle);
11284
+ background-color: var(--atomix-secondary-bg-subtle);
10156
11285
  transform: scale(1.2);
10157
11286
  }
10158
11287
  .c-slider__pagination-bullet:active {
10159
11288
  transform: scale(1.1);
10160
11289
  }
10161
11290
  .c-slider__pagination-bullet--active {
10162
- background: var(--atomix-primary);
11291
+ background-color: var(--atomix-primary);
10163
11292
  transform: scale(1.2);
10164
11293
  }
10165
11294
  .c-slider__empty-message {
@@ -10277,7 +11406,7 @@ a, a:hover {
10277
11406
  --atomix-steps-item-number-bg: var(--atomix-secondary-bg-subtle);
10278
11407
  --atomix-steps-item-number-color: var(--atomix-tertiary-text-emphasis);
10279
11408
  --atomix-steps-item-number-active-color: var(--atomix-gray-1);
10280
- --atomix-steps-item-number-size: 28px;
11409
+ --atomix-steps-item-number-size: 1.75rem;
10281
11410
  --atomix-steps-item-number-font-size: 0.875rem;
10282
11411
  --atomix-steps-item-number-border-radius: 50rem;
10283
11412
  --atomix-steps-item-font-size: 0.875rem;
@@ -10367,7 +11496,7 @@ a, a:hover {
10367
11496
  --atomix-tabs-nav-btn-bg-active: var(--atomix-body-bg);
10368
11497
  --atomix-tabs-nav-btn-bg-disabled: var(--atomix-body-bg);
10369
11498
  --atomix-tabs-nav-btn-border-radius: 0px;
10370
- --atomix-tabs-nav-btn-border-width: 2px;
11499
+ --atomix-tabs-nav-btn-border-width: calc(var(--atomix-border-width) * 2);
10371
11500
  --atomix-tabs-nav-btn-border-color: transparent;
10372
11501
  --atomix-tabs-nav-btn-border-active-color: var(--atomix-brand-border-subtle);
10373
11502
  --atomix-tabs-nav-btn-border-disabled-color: var(--atomix-primary-border-subtle);
@@ -10457,7 +11586,7 @@ a, a:hover {
10457
11586
  --atomix-testimonial-width: 100%;
10458
11587
  --atomix-testimonial-padding-x: 0rem;
10459
11588
  --atomix-testimonial-padding-y: 0rem;
10460
- --atomix-testimonial-inner-spacer: 1.25rem;
11589
+ --atomix-testimonial-inner-spacer: 5rem;
10461
11590
  --atomix-testimonial-bg: ;
10462
11591
  --atomix-testimonial-quote-font-size: 1.5rem;
10463
11592
  --atomix-testimonial-quote-font-size-sm: 1.125rem;
@@ -10468,11 +11597,11 @@ a, a:hover {
10468
11597
  --atomix-testimonial-author-color: var(--atomix-body-color);
10469
11598
  --atomix-testimonial-author-role-font-size: 0.75rem;
10470
11599
  --atomix-testimonial-author-role-color: var(--atomix-tertiary-text-emphasis);
10471
- --atomix-testimonial-author-inner-spacer: 12px;
11600
+ --atomix-testimonial-author-inner-spacer: 3rem;
10472
11601
  width: 100%;
10473
11602
  max-width: var(--atomix-testimonial-width);
10474
11603
  padding: var(--atomix-testimonial-padding-y) var(--atomix-testimonial-padding-x);
10475
- background: var(--atomix-testimonial-bg);
11604
+ background-color: var(--atomix-testimonial-bg);
10476
11605
  }
10477
11606
  .c-testimonial__quote {
10478
11607
  color: var(--atomix-testimonial-quote-color);
@@ -10663,7 +11792,7 @@ a, a:hover {
10663
11792
  width: var(--atomix-toggle-switch-handle-width);
10664
11793
  height: var(--atomix-toggle-switch-handle-height);
10665
11794
  margin: var(--atomix-toggle-switch-handle-margin);
10666
- background: var(--atomix-toggle-switch-handle-bg);
11795
+ background-color: var(--atomix-toggle-switch-handle-bg);
10667
11796
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
10668
11797
  transition-property: all;
10669
11798
  transition-duration: 0.2s;
@@ -10684,7 +11813,7 @@ a, a:hover {
10684
11813
  pointer-events: none;
10685
11814
  }
10686
11815
  .c-toggle.is-disabled:not(.is-on) .c-toggle__switch {
10687
- background: var(--atomix-toggle-switch-disabled-bg);
11816
+ background-color: var(--atomix-toggle-switch-disabled-bg);
10688
11817
  }
10689
11818
  .c-toggle.is-disabled.is-on {
10690
11819
  pointer-events: none;
@@ -10693,7 +11822,7 @@ a, a:hover {
10693
11822
  content: "";
10694
11823
  position: absolute;
10695
11824
  inset: 0;
10696
- background: rgba(107, 114, 128, 0.6);
11825
+ background-color: rgba(107, 114, 128, 0.6);
10697
11826
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
10698
11827
  }
10699
11828
  .c-tooltip {
@@ -10813,12 +11942,12 @@ a, a:hover {
10813
11942
  --atomix-upload-inner-padding-x: 0.75rem;
10814
11943
  --atomix-upload-inner-padding-y: 0.75rem;
10815
11944
  --atomix-upload-border-radius: 0.5rem;
10816
- --atomix-upload-border-width: 0.0625rem;
11945
+ --atomix-upload-border-width: var(--atomix-border-width);
10817
11946
  --atomix-upload-border-color: var(--atomix-primary-border-subtle);
10818
11947
  --atomix-upload-bg: var(--atomix-body-bg);
10819
11948
  --atomix-upload-hover-bg: ;
10820
- --atomix-upload-icon-size: 32px;
10821
- --atomix-upload-icon-padding: 0px;
11949
+ --atomix-upload-icon-size: 2rem;
11950
+ --atomix-upload-icon-padding: 0rem;
10822
11951
  --atomix-upload-icon-bg: var(--atomix-body-bg);
10823
11952
  --atomix-upload-title-font-size: 1.25rem;
10824
11953
  --atomix-upload-title-font-weight: 700;
@@ -10827,7 +11956,7 @@ a, a:hover {
10827
11956
  --atomix-upload-text-font-size: 0.875rem;
10828
11957
  --atomix-upload-text-font-weight: 400;
10829
11958
  --atomix-upload-text-color: var(--atomix-body-color);
10830
- --atomix-upload-text-margin-top: 0.25rem;
11959
+ --atomix-upload-text-margin-top: 1rem;
10831
11960
  --atomix-upload-btn-margin-top: 1.25rem;
10832
11961
  --atomix-upload-btn-margin-left: 1rem;
10833
11962
  --atomix-upload-helper-text-font-size: 0.875rem;
@@ -10837,9 +11966,9 @@ a, a:hover {
10837
11966
  --atomix-upload-loader-padding-x: 0.75rem;
10838
11967
  --atomix-upload-loader-padding-y: 0.75rem;
10839
11968
  --atomix-upload-loader-border-radius: 0.5rem;
10840
- --atomix-upload-loader-border-width: 1px;
11969
+ --atomix-upload-loader-border-width: var(--atomix-border-width);
10841
11970
  --atomix-upload-loader-border-color: var(--atomix-primary-border-subtle);
10842
- --atomix-upload-loader-margin-top: 20px;
11971
+ --atomix-upload-loader-margin-top: 1.25rem;
10843
11972
  --atomix-upload-loader-title-color: var(--atomix-body-color);
10844
11973
  --atomix-upload-loader-title-font-size: 0.875rem;
10845
11974
  --atomix-upload-loader-title-font-weight: 400;
@@ -10853,7 +11982,7 @@ a, a:hover {
10853
11982
  --atomix-upload-loader-progress: 39%;
10854
11983
  --atomix-upload-content-margin-left: 1rem;
10855
11984
  --atomix-upload-disabled-opacity: 0.5;
10856
- --atomix-upload-loader-control-icon-size: 20px;
11985
+ --atomix-upload-loader-control-icon-size: 1.25rem;
10857
11986
  --atomix-upload-loader-contorl-color: var(--atomix-body-color);
10858
11987
  width: 100%;
10859
11988
  max-width: var(--atomix-upload-width);
@@ -11017,34 +12146,34 @@ a, a:hover {
11017
12146
  pointer-events: none;
11018
12147
  }
11019
12148
  .c-video-player {
11020
- --atomix-video-player-bg: #000;
11021
- --atomix-video-player-border-radius: 8px;
11022
- --atomix-video-player-controls-padding: 20px 16px 16px;
11023
- --atomix-video-player-progress-height: 4px;
11024
- --atomix-video-player-button-size: 40px;
11025
- --atomix-video-player-font-size: 14px;
11026
- --atomix-video-player-transition: all 0.3s ease;
11027
- --atomix-video-player-volume-width: 80px;
11028
- --atomix-video-player-volume-width-mobile: 60px;
11029
- --atomix-video-player-volume-height: 4px;
11030
- --atomix-video-player-volume-height-hover: 6px;
11031
- --atomix-video-player-volume-thumb-size: 12px;
11032
- --atomix-video-player-volume-bg: rgba(255, 255, 255, 0.3);
11033
- --atomix-video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
11034
- --atomix-video-player-volume-fill: var(--atomix-color-primary);
11035
- --atomix-video-player-volume-fill-hover: var(--atomix-color-primary-light);
11036
- --atomix-video-player-volume-fill-active: var(--atomix-color-primary-dark);
11037
- --atomix-video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
11038
- --atomix-video-player-subtitle-color: #ffffff;
11039
- --atomix-video-player-subtitle-font-size: 18px;
11040
- --atomix-video-player-subtitle-font-weight: 500;
11041
- --atomix-video-player-subtitle-line-height: 1.5;
11042
- --atomix-video-player-subtitle-border-radius: 6px;
11043
- --atomix-video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
11044
- --atomix-video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
12149
+ --atomix--video-player-bg: #000;
12150
+ --atomix--video-player-border-radius: 8px;
12151
+ --atomix--video-player-controls-padding: 20px 16px 16px;
12152
+ --atomix--video-player-progress-height: 4px;
12153
+ --atomix--video-player-button-size: 40px;
12154
+ --atomix--video-player-font-size: 14px;
12155
+ --atomix--video-player-transition: all 0.3s ease;
12156
+ --atomix--video-player-volume-width: 80px;
12157
+ --atomix--video-player-volume-width-mobile: 60px;
12158
+ --atomix--video-player-volume-height: 4px;
12159
+ --atomix--video-player-volume-height-hover: 6px;
12160
+ --atomix--video-player-volume-thumb-size: 12px;
12161
+ --atomix--video-player-volume-bg: rgba(255, 255, 255, 0.3);
12162
+ --atomix--video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
12163
+ --atomix--video-player-volume-fill: var(--atomix-color-primary);
12164
+ --atomix--video-player-volume-fill-hover: var(--atomix-color-primary-light);
12165
+ --atomix--video-player-volume-fill-active: var(--atomix-color-primary-dark);
12166
+ --atomix--video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
12167
+ --atomix--video-player-subtitle-color: #ffffff;
12168
+ --atomix--video-player-subtitle-font-size: 18px;
12169
+ --atomix--video-player-subtitle-font-weight: 500;
12170
+ --atomix--video-player-subtitle-line-height: 1.5;
12171
+ --atomix--video-player-subtitle-border-radius: 6px;
12172
+ --atomix--video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
12173
+ --atomix--video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
11045
12174
  position: relative;
11046
12175
  width: 100%;
11047
- background: var(--atomix--video-player-bg, #000);
12176
+ background-color: var(--atomix--video-player-bg, #000);
11048
12177
  border-radius: var(--atomix--video-player-border-radius, 0.5rem);
11049
12178
  overflow: hidden;
11050
12179
  font-family: var(--atomix--font-family-base);
@@ -11298,7 +12427,7 @@ a, a:hover {
11298
12427
  bottom: 3.125rem;
11299
12428
  right: 0;
11300
12429
  min-width: 12.5rem;
11301
- background: rgba(var(--atomix-primary-rgb), 0.7);
12430
+ background-color: rgba(var(--atomix-primary-rgb), 0.7);
11302
12431
  border-radius: 0.5rem;
11303
12432
  padding: 0.5rem;
11304
12433
  -webkit-backdrop-filter: blur(10px);
@@ -11494,6 +12623,24 @@ a, a:hover {
11494
12623
  .c-video-player--ambient .c-video-player__ambient-canvas {
11495
12624
  display: block;
11496
12625
  }
12626
+ .c-video-player--glass {
12627
+ position: relative;
12628
+ }
12629
+ .c-video-player__glass-overlay {
12630
+ overflow: hidden;
12631
+ position: absolute;
12632
+ top: 0;
12633
+ left: 0;
12634
+ border-radius: var(--atomix--video-player-border-radius, 0.5rem);
12635
+ }
12636
+ .c-video-player__glass-content {
12637
+ position: absolute;
12638
+ top: 0;
12639
+ left: 0;
12640
+ right: 0;
12641
+ bottom: 0;
12642
+ pointer-events: auto;
12643
+ }
11497
12644
  .c-video-player__subtitles {
11498
12645
  position: absolute;
11499
12646
  bottom: 5rem;
@@ -11548,7 +12695,7 @@ a, a:hover {
11548
12695
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
11549
12696
  }
11550
12697
  .c-photo-viewer__container {
11551
- background: var(--atomix-body-bg);
12698
+ background-color: var(--atomix-body-bg);
11552
12699
  border: 1px solid var(--atomix-primary-border-subtle);
11553
12700
  border-radius: 0.625rem;
11554
12701
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
@@ -11602,7 +12749,7 @@ a, a:hover {
11602
12749
  border: 2px solid transparent;
11603
12750
  border-radius: 0.5rem;
11604
12751
  padding: 0;
11605
- background: transparent;
12752
+ background-color: transparent;
11606
12753
  cursor: pointer;
11607
12754
  overflow: hidden;
11608
12755
  position: relative;
@@ -11660,7 +12807,7 @@ body.is-open-photoviewer {
11660
12807
  width: 100vw;
11661
12808
  height: 100vh;
11662
12809
  z-index: 1000;
11663
- background: transparent;
12810
+ background-color: transparent;
11664
12811
  opacity: 1;
11665
12812
  transition-property: opacity;
11666
12813
  }
@@ -13225,19 +14372,19 @@ body.is-open-photoviewer {
13225
14372
  .u-m-1 {
13226
14373
  margin: 0.25rem;
13227
14374
  }
13228
- .u-m-1\.5 {
14375
+ .u-m-2 {
13229
14376
  margin: 0.375rem;
13230
14377
  }
13231
14378
  .u-m-2 {
13232
14379
  margin: 0.5rem;
13233
14380
  }
13234
- .u-m-2\.5 {
14381
+ .u-m-3 {
13235
14382
  margin: 0.625rem;
13236
14383
  }
13237
14384
  .u-m-3 {
13238
14385
  margin: 0.75rem;
13239
14386
  }
13240
- .u-m-3\.5 {
14387
+ .u-m-4 {
13241
14388
  margin: 0.875rem;
13242
14389
  }
13243
14390
  .u-m-4 {
@@ -13246,12 +14393,18 @@ body.is-open-photoviewer {
13246
14393
  .u-m-5 {
13247
14394
  margin: 1.25rem;
13248
14395
  }
14396
+ .u-m-6 {
14397
+ margin: 1.375rem;
14398
+ }
13249
14399
  .u-m-6 {
13250
14400
  margin: 1.5rem;
13251
14401
  }
13252
14402
  .u-m-7 {
13253
14403
  margin: 1.75rem;
13254
14404
  }
14405
+ .u-m-8 {
14406
+ margin: 1.875rem;
14407
+ }
13255
14408
  .u-m-8 {
13256
14409
  margin: 2rem;
13257
14410
  }
@@ -13332,7 +14485,7 @@ body.is-open-photoviewer {
13332
14485
  margin-right: 0.25rem;
13333
14486
  margin-left: 0.25rem;
13334
14487
  }
13335
- .u-mx-1\.5 {
14488
+ .u-mx-2 {
13336
14489
  margin-right: 0.375rem;
13337
14490
  margin-left: 0.375rem;
13338
14491
  }
@@ -13340,7 +14493,7 @@ body.is-open-photoviewer {
13340
14493
  margin-right: 0.5rem;
13341
14494
  margin-left: 0.5rem;
13342
14495
  }
13343
- .u-mx-2\.5 {
14496
+ .u-mx-3 {
13344
14497
  margin-right: 0.625rem;
13345
14498
  margin-left: 0.625rem;
13346
14499
  }
@@ -13348,7 +14501,7 @@ body.is-open-photoviewer {
13348
14501
  margin-right: 0.75rem;
13349
14502
  margin-left: 0.75rem;
13350
14503
  }
13351
- .u-mx-3\.5 {
14504
+ .u-mx-4 {
13352
14505
  margin-right: 0.875rem;
13353
14506
  margin-left: 0.875rem;
13354
14507
  }
@@ -13360,6 +14513,10 @@ body.is-open-photoviewer {
13360
14513
  margin-right: 1.25rem;
13361
14514
  margin-left: 1.25rem;
13362
14515
  }
14516
+ .u-mx-6 {
14517
+ margin-right: 1.375rem;
14518
+ margin-left: 1.375rem;
14519
+ }
13363
14520
  .u-mx-6 {
13364
14521
  margin-right: 1.5rem;
13365
14522
  margin-left: 1.5rem;
@@ -13368,6 +14525,10 @@ body.is-open-photoviewer {
13368
14525
  margin-right: 1.75rem;
13369
14526
  margin-left: 1.75rem;
13370
14527
  }
14528
+ .u-mx-8 {
14529
+ margin-right: 1.875rem;
14530
+ margin-left: 1.875rem;
14531
+ }
13371
14532
  .u-mx-8 {
13372
14533
  margin-right: 2rem;
13373
14534
  margin-left: 2rem;
@@ -13472,7 +14633,7 @@ body.is-open-photoviewer {
13472
14633
  margin-top: 0.25rem;
13473
14634
  margin-bottom: 0.25rem;
13474
14635
  }
13475
- .u-my-1\.5 {
14636
+ .u-my-2 {
13476
14637
  margin-top: 0.375rem;
13477
14638
  margin-bottom: 0.375rem;
13478
14639
  }
@@ -13480,7 +14641,7 @@ body.is-open-photoviewer {
13480
14641
  margin-top: 0.5rem;
13481
14642
  margin-bottom: 0.5rem;
13482
14643
  }
13483
- .u-my-2\.5 {
14644
+ .u-my-3 {
13484
14645
  margin-top: 0.625rem;
13485
14646
  margin-bottom: 0.625rem;
13486
14647
  }
@@ -13488,7 +14649,7 @@ body.is-open-photoviewer {
13488
14649
  margin-top: 0.75rem;
13489
14650
  margin-bottom: 0.75rem;
13490
14651
  }
13491
- .u-my-3\.5 {
14652
+ .u-my-4 {
13492
14653
  margin-top: 0.875rem;
13493
14654
  margin-bottom: 0.875rem;
13494
14655
  }
@@ -13500,6 +14661,10 @@ body.is-open-photoviewer {
13500
14661
  margin-top: 1.25rem;
13501
14662
  margin-bottom: 1.25rem;
13502
14663
  }
14664
+ .u-my-6 {
14665
+ margin-top: 1.375rem;
14666
+ margin-bottom: 1.375rem;
14667
+ }
13503
14668
  .u-my-6 {
13504
14669
  margin-top: 1.5rem;
13505
14670
  margin-bottom: 1.5rem;
@@ -13508,6 +14673,10 @@ body.is-open-photoviewer {
13508
14673
  margin-top: 1.75rem;
13509
14674
  margin-bottom: 1.75rem;
13510
14675
  }
14676
+ .u-my-8 {
14677
+ margin-top: 1.875rem;
14678
+ margin-bottom: 1.875rem;
14679
+ }
13511
14680
  .u-my-8 {
13512
14681
  margin-top: 2rem;
13513
14682
  margin-bottom: 2rem;
@@ -13610,19 +14779,19 @@ body.is-open-photoviewer {
13610
14779
  .u-mt-1 {
13611
14780
  margin-top: 0.25rem;
13612
14781
  }
13613
- .u-mt-1\.5 {
14782
+ .u-mt-2 {
13614
14783
  margin-top: 0.375rem;
13615
14784
  }
13616
14785
  .u-mt-2 {
13617
14786
  margin-top: 0.5rem;
13618
14787
  }
13619
- .u-mt-2\.5 {
14788
+ .u-mt-3 {
13620
14789
  margin-top: 0.625rem;
13621
14790
  }
13622
14791
  .u-mt-3 {
13623
14792
  margin-top: 0.75rem;
13624
14793
  }
13625
- .u-mt-3\.5 {
14794
+ .u-mt-4 {
13626
14795
  margin-top: 0.875rem;
13627
14796
  }
13628
14797
  .u-mt-4 {
@@ -13631,12 +14800,18 @@ body.is-open-photoviewer {
13631
14800
  .u-mt-5 {
13632
14801
  margin-top: 1.25rem;
13633
14802
  }
14803
+ .u-mt-6 {
14804
+ margin-top: 1.375rem;
14805
+ }
13634
14806
  .u-mt-6 {
13635
14807
  margin-top: 1.5rem;
13636
14808
  }
13637
14809
  .u-mt-7 {
13638
14810
  margin-top: 1.75rem;
13639
14811
  }
14812
+ .u-mt-8 {
14813
+ margin-top: 1.875rem;
14814
+ }
13640
14815
  .u-mt-8 {
13641
14816
  margin-top: 2rem;
13642
14817
  }
@@ -13715,19 +14890,19 @@ body.is-open-photoviewer {
13715
14890
  .u-me-1 {
13716
14891
  margin-right: 0.25rem;
13717
14892
  }
13718
- .u-me-1\.5 {
14893
+ .u-me-2 {
13719
14894
  margin-right: 0.375rem;
13720
14895
  }
13721
14896
  .u-me-2 {
13722
14897
  margin-right: 0.5rem;
13723
14898
  }
13724
- .u-me-2\.5 {
14899
+ .u-me-3 {
13725
14900
  margin-right: 0.625rem;
13726
14901
  }
13727
14902
  .u-me-3 {
13728
14903
  margin-right: 0.75rem;
13729
14904
  }
13730
- .u-me-3\.5 {
14905
+ .u-me-4 {
13731
14906
  margin-right: 0.875rem;
13732
14907
  }
13733
14908
  .u-me-4 {
@@ -13736,12 +14911,18 @@ body.is-open-photoviewer {
13736
14911
  .u-me-5 {
13737
14912
  margin-right: 1.25rem;
13738
14913
  }
14914
+ .u-me-6 {
14915
+ margin-right: 1.375rem;
14916
+ }
13739
14917
  .u-me-6 {
13740
14918
  margin-right: 1.5rem;
13741
14919
  }
13742
14920
  .u-me-7 {
13743
14921
  margin-right: 1.75rem;
13744
14922
  }
14923
+ .u-me-8 {
14924
+ margin-right: 1.875rem;
14925
+ }
13745
14926
  .u-me-8 {
13746
14927
  margin-right: 2rem;
13747
14928
  }
@@ -13820,19 +15001,19 @@ body.is-open-photoviewer {
13820
15001
  .u-mb-1 {
13821
15002
  margin-bottom: 0.25rem;
13822
15003
  }
13823
- .u-mb-1\.5 {
15004
+ .u-mb-2 {
13824
15005
  margin-bottom: 0.375rem;
13825
15006
  }
13826
15007
  .u-mb-2 {
13827
15008
  margin-bottom: 0.5rem;
13828
15009
  }
13829
- .u-mb-2\.5 {
15010
+ .u-mb-3 {
13830
15011
  margin-bottom: 0.625rem;
13831
15012
  }
13832
15013
  .u-mb-3 {
13833
15014
  margin-bottom: 0.75rem;
13834
15015
  }
13835
- .u-mb-3\.5 {
15016
+ .u-mb-4 {
13836
15017
  margin-bottom: 0.875rem;
13837
15018
  }
13838
15019
  .u-mb-4 {
@@ -13841,12 +15022,18 @@ body.is-open-photoviewer {
13841
15022
  .u-mb-5 {
13842
15023
  margin-bottom: 1.25rem;
13843
15024
  }
15025
+ .u-mb-6 {
15026
+ margin-bottom: 1.375rem;
15027
+ }
13844
15028
  .u-mb-6 {
13845
15029
  margin-bottom: 1.5rem;
13846
15030
  }
13847
15031
  .u-mb-7 {
13848
15032
  margin-bottom: 1.75rem;
13849
15033
  }
15034
+ .u-mb-8 {
15035
+ margin-bottom: 1.875rem;
15036
+ }
13850
15037
  .u-mb-8 {
13851
15038
  margin-bottom: 2rem;
13852
15039
  }
@@ -13925,19 +15112,19 @@ body.is-open-photoviewer {
13925
15112
  .u-ms-1 {
13926
15113
  margin-left: 0.25rem;
13927
15114
  }
13928
- .u-ms-1\.5 {
15115
+ .u-ms-2 {
13929
15116
  margin-left: 0.375rem;
13930
15117
  }
13931
15118
  .u-ms-2 {
13932
15119
  margin-left: 0.5rem;
13933
15120
  }
13934
- .u-ms-2\.5 {
15121
+ .u-ms-3 {
13935
15122
  margin-left: 0.625rem;
13936
15123
  }
13937
15124
  .u-ms-3 {
13938
15125
  margin-left: 0.75rem;
13939
15126
  }
13940
- .u-ms-3\.5 {
15127
+ .u-ms-4 {
13941
15128
  margin-left: 0.875rem;
13942
15129
  }
13943
15130
  .u-ms-4 {
@@ -13946,12 +15133,18 @@ body.is-open-photoviewer {
13946
15133
  .u-ms-5 {
13947
15134
  margin-left: 1.25rem;
13948
15135
  }
15136
+ .u-ms-6 {
15137
+ margin-left: 1.375rem;
15138
+ }
13949
15139
  .u-ms-6 {
13950
15140
  margin-left: 1.5rem;
13951
15141
  }
13952
15142
  .u-ms-7 {
13953
15143
  margin-left: 1.75rem;
13954
15144
  }
15145
+ .u-ms-8 {
15146
+ margin-left: 1.875rem;
15147
+ }
13955
15148
  .u-ms-8 {
13956
15149
  margin-left: 2rem;
13957
15150
  }
@@ -14030,19 +15223,19 @@ body.is-open-photoviewer {
14030
15223
  .u-p-1 {
14031
15224
  padding: 0.25rem;
14032
15225
  }
14033
- .u-p-1\.5 {
15226
+ .u-p-2 {
14034
15227
  padding: 0.375rem;
14035
15228
  }
14036
15229
  .u-p-2 {
14037
15230
  padding: 0.5rem;
14038
15231
  }
14039
- .u-p-2\.5 {
15232
+ .u-p-3 {
14040
15233
  padding: 0.625rem;
14041
15234
  }
14042
15235
  .u-p-3 {
14043
15236
  padding: 0.75rem;
14044
15237
  }
14045
- .u-p-3\.5 {
15238
+ .u-p-4 {
14046
15239
  padding: 0.875rem;
14047
15240
  }
14048
15241
  .u-p-4 {
@@ -14051,12 +15244,18 @@ body.is-open-photoviewer {
14051
15244
  .u-p-5 {
14052
15245
  padding: 1.25rem;
14053
15246
  }
15247
+ .u-p-6 {
15248
+ padding: 1.375rem;
15249
+ }
14054
15250
  .u-p-6 {
14055
15251
  padding: 1.5rem;
14056
15252
  }
14057
15253
  .u-p-7 {
14058
15254
  padding: 1.75rem;
14059
15255
  }
15256
+ .u-p-8 {
15257
+ padding: 1.875rem;
15258
+ }
14060
15259
  .u-p-8 {
14061
15260
  padding: 2rem;
14062
15261
  }
@@ -14134,7 +15333,7 @@ body.is-open-photoviewer {
14134
15333
  padding-right: 0.25rem;
14135
15334
  padding-left: 0.25rem;
14136
15335
  }
14137
- .u-px-1\.5 {
15336
+ .u-px-2 {
14138
15337
  padding-right: 0.375rem;
14139
15338
  padding-left: 0.375rem;
14140
15339
  }
@@ -14142,7 +15341,7 @@ body.is-open-photoviewer {
14142
15341
  padding-right: 0.5rem;
14143
15342
  padding-left: 0.5rem;
14144
15343
  }
14145
- .u-px-2\.5 {
15344
+ .u-px-3 {
14146
15345
  padding-right: 0.625rem;
14147
15346
  padding-left: 0.625rem;
14148
15347
  }
@@ -14150,7 +15349,7 @@ body.is-open-photoviewer {
14150
15349
  padding-right: 0.75rem;
14151
15350
  padding-left: 0.75rem;
14152
15351
  }
14153
- .u-px-3\.5 {
15352
+ .u-px-4 {
14154
15353
  padding-right: 0.875rem;
14155
15354
  padding-left: 0.875rem;
14156
15355
  }
@@ -14162,6 +15361,10 @@ body.is-open-photoviewer {
14162
15361
  padding-right: 1.25rem;
14163
15362
  padding-left: 1.25rem;
14164
15363
  }
15364
+ .u-px-6 {
15365
+ padding-right: 1.375rem;
15366
+ padding-left: 1.375rem;
15367
+ }
14165
15368
  .u-px-6 {
14166
15369
  padding-right: 1.5rem;
14167
15370
  padding-left: 1.5rem;
@@ -14170,6 +15373,10 @@ body.is-open-photoviewer {
14170
15373
  padding-right: 1.75rem;
14171
15374
  padding-left: 1.75rem;
14172
15375
  }
15376
+ .u-px-8 {
15377
+ padding-right: 1.875rem;
15378
+ padding-left: 1.875rem;
15379
+ }
14173
15380
  .u-px-8 {
14174
15381
  padding-right: 2rem;
14175
15382
  padding-left: 2rem;
@@ -14270,7 +15477,7 @@ body.is-open-photoviewer {
14270
15477
  padding-top: 0.25rem;
14271
15478
  padding-bottom: 0.25rem;
14272
15479
  }
14273
- .u-py-1\.5 {
15480
+ .u-py-2 {
14274
15481
  padding-top: 0.375rem;
14275
15482
  padding-bottom: 0.375rem;
14276
15483
  }
@@ -14278,7 +15485,7 @@ body.is-open-photoviewer {
14278
15485
  padding-top: 0.5rem;
14279
15486
  padding-bottom: 0.5rem;
14280
15487
  }
14281
- .u-py-2\.5 {
15488
+ .u-py-3 {
14282
15489
  padding-top: 0.625rem;
14283
15490
  padding-bottom: 0.625rem;
14284
15491
  }
@@ -14286,7 +15493,7 @@ body.is-open-photoviewer {
14286
15493
  padding-top: 0.75rem;
14287
15494
  padding-bottom: 0.75rem;
14288
15495
  }
14289
- .u-py-3\.5 {
15496
+ .u-py-4 {
14290
15497
  padding-top: 0.875rem;
14291
15498
  padding-bottom: 0.875rem;
14292
15499
  }
@@ -14298,6 +15505,10 @@ body.is-open-photoviewer {
14298
15505
  padding-top: 1.25rem;
14299
15506
  padding-bottom: 1.25rem;
14300
15507
  }
15508
+ .u-py-6 {
15509
+ padding-top: 1.375rem;
15510
+ padding-bottom: 1.375rem;
15511
+ }
14301
15512
  .u-py-6 {
14302
15513
  padding-top: 1.5rem;
14303
15514
  padding-bottom: 1.5rem;
@@ -14306,6 +15517,10 @@ body.is-open-photoviewer {
14306
15517
  padding-top: 1.75rem;
14307
15518
  padding-bottom: 1.75rem;
14308
15519
  }
15520
+ .u-py-8 {
15521
+ padding-top: 1.875rem;
15522
+ padding-bottom: 1.875rem;
15523
+ }
14309
15524
  .u-py-8 {
14310
15525
  padding-top: 2rem;
14311
15526
  padding-bottom: 2rem;
@@ -14404,19 +15619,19 @@ body.is-open-photoviewer {
14404
15619
  .u-pt-1 {
14405
15620
  padding-top: 0.25rem;
14406
15621
  }
14407
- .u-pt-1\.5 {
15622
+ .u-pt-2 {
14408
15623
  padding-top: 0.375rem;
14409
15624
  }
14410
15625
  .u-pt-2 {
14411
15626
  padding-top: 0.5rem;
14412
15627
  }
14413
- .u-pt-2\.5 {
15628
+ .u-pt-3 {
14414
15629
  padding-top: 0.625rem;
14415
15630
  }
14416
15631
  .u-pt-3 {
14417
15632
  padding-top: 0.75rem;
14418
15633
  }
14419
- .u-pt-3\.5 {
15634
+ .u-pt-4 {
14420
15635
  padding-top: 0.875rem;
14421
15636
  }
14422
15637
  .u-pt-4 {
@@ -14425,12 +15640,18 @@ body.is-open-photoviewer {
14425
15640
  .u-pt-5 {
14426
15641
  padding-top: 1.25rem;
14427
15642
  }
15643
+ .u-pt-6 {
15644
+ padding-top: 1.375rem;
15645
+ }
14428
15646
  .u-pt-6 {
14429
15647
  padding-top: 1.5rem;
14430
15648
  }
14431
15649
  .u-pt-7 {
14432
15650
  padding-top: 1.75rem;
14433
15651
  }
15652
+ .u-pt-8 {
15653
+ padding-top: 1.875rem;
15654
+ }
14434
15655
  .u-pt-8 {
14435
15656
  padding-top: 2rem;
14436
15657
  }
@@ -14506,19 +15727,19 @@ body.is-open-photoviewer {
14506
15727
  .u-pe-1 {
14507
15728
  padding-right: 0.25rem;
14508
15729
  }
14509
- .u-pe-1\.5 {
15730
+ .u-pe-2 {
14510
15731
  padding-right: 0.375rem;
14511
15732
  }
14512
15733
  .u-pe-2 {
14513
15734
  padding-right: 0.5rem;
14514
15735
  }
14515
- .u-pe-2\.5 {
15736
+ .u-pe-3 {
14516
15737
  padding-right: 0.625rem;
14517
15738
  }
14518
15739
  .u-pe-3 {
14519
15740
  padding-right: 0.75rem;
14520
15741
  }
14521
- .u-pe-3\.5 {
15742
+ .u-pe-4 {
14522
15743
  padding-right: 0.875rem;
14523
15744
  }
14524
15745
  .u-pe-4 {
@@ -14527,12 +15748,18 @@ body.is-open-photoviewer {
14527
15748
  .u-pe-5 {
14528
15749
  padding-right: 1.25rem;
14529
15750
  }
15751
+ .u-pe-6 {
15752
+ padding-right: 1.375rem;
15753
+ }
14530
15754
  .u-pe-6 {
14531
15755
  padding-right: 1.5rem;
14532
15756
  }
14533
15757
  .u-pe-7 {
14534
15758
  padding-right: 1.75rem;
14535
15759
  }
15760
+ .u-pe-8 {
15761
+ padding-right: 1.875rem;
15762
+ }
14536
15763
  .u-pe-8 {
14537
15764
  padding-right: 2rem;
14538
15765
  }
@@ -14608,19 +15835,19 @@ body.is-open-photoviewer {
14608
15835
  .u-pb-1 {
14609
15836
  padding-bottom: 0.25rem;
14610
15837
  }
14611
- .u-pb-1\.5 {
15838
+ .u-pb-2 {
14612
15839
  padding-bottom: 0.375rem;
14613
15840
  }
14614
15841
  .u-pb-2 {
14615
15842
  padding-bottom: 0.5rem;
14616
15843
  }
14617
- .u-pb-2\.5 {
15844
+ .u-pb-3 {
14618
15845
  padding-bottom: 0.625rem;
14619
15846
  }
14620
15847
  .u-pb-3 {
14621
15848
  padding-bottom: 0.75rem;
14622
15849
  }
14623
- .u-pb-3\.5 {
15850
+ .u-pb-4 {
14624
15851
  padding-bottom: 0.875rem;
14625
15852
  }
14626
15853
  .u-pb-4 {
@@ -14629,12 +15856,18 @@ body.is-open-photoviewer {
14629
15856
  .u-pb-5 {
14630
15857
  padding-bottom: 1.25rem;
14631
15858
  }
15859
+ .u-pb-6 {
15860
+ padding-bottom: 1.375rem;
15861
+ }
14632
15862
  .u-pb-6 {
14633
15863
  padding-bottom: 1.5rem;
14634
15864
  }
14635
15865
  .u-pb-7 {
14636
15866
  padding-bottom: 1.75rem;
14637
15867
  }
15868
+ .u-pb-8 {
15869
+ padding-bottom: 1.875rem;
15870
+ }
14638
15871
  .u-pb-8 {
14639
15872
  padding-bottom: 2rem;
14640
15873
  }
@@ -14710,19 +15943,19 @@ body.is-open-photoviewer {
14710
15943
  .u-ps-1 {
14711
15944
  padding-left: 0.25rem;
14712
15945
  }
14713
- .u-ps-1\.5 {
15946
+ .u-ps-2 {
14714
15947
  padding-left: 0.375rem;
14715
15948
  }
14716
15949
  .u-ps-2 {
14717
15950
  padding-left: 0.5rem;
14718
15951
  }
14719
- .u-ps-2\.5 {
15952
+ .u-ps-3 {
14720
15953
  padding-left: 0.625rem;
14721
15954
  }
14722
15955
  .u-ps-3 {
14723
15956
  padding-left: 0.75rem;
14724
15957
  }
14725
- .u-ps-3\.5 {
15958
+ .u-ps-4 {
14726
15959
  padding-left: 0.875rem;
14727
15960
  }
14728
15961
  .u-ps-4 {
@@ -14731,12 +15964,18 @@ body.is-open-photoviewer {
14731
15964
  .u-ps-5 {
14732
15965
  padding-left: 1.25rem;
14733
15966
  }
15967
+ .u-ps-6 {
15968
+ padding-left: 1.375rem;
15969
+ }
14734
15970
  .u-ps-6 {
14735
15971
  padding-left: 1.5rem;
14736
15972
  }
14737
15973
  .u-ps-7 {
14738
15974
  padding-left: 1.75rem;
14739
15975
  }
15976
+ .u-ps-8 {
15977
+ padding-left: 1.875rem;
15978
+ }
14740
15979
  .u-ps-8 {
14741
15980
  padding-left: 2rem;
14742
15981
  }
@@ -14812,19 +16051,19 @@ body.is-open-photoviewer {
14812
16051
  .u-gap-1 {
14813
16052
  gap: 0.25rem;
14814
16053
  }
14815
- .u-gap-1\.5 {
16054
+ .u-gap-2 {
14816
16055
  gap: 0.375rem;
14817
16056
  }
14818
16057
  .u-gap-2 {
14819
16058
  gap: 0.5rem;
14820
16059
  }
14821
- .u-gap-2\.5 {
16060
+ .u-gap-3 {
14822
16061
  gap: 0.625rem;
14823
16062
  }
14824
16063
  .u-gap-3 {
14825
16064
  gap: 0.75rem;
14826
16065
  }
14827
- .u-gap-3\.5 {
16066
+ .u-gap-4 {
14828
16067
  gap: 0.875rem;
14829
16068
  }
14830
16069
  .u-gap-4 {
@@ -14833,12 +16072,18 @@ body.is-open-photoviewer {
14833
16072
  .u-gap-5 {
14834
16073
  gap: 1.25rem;
14835
16074
  }
16075
+ .u-gap-6 {
16076
+ gap: 1.375rem;
16077
+ }
14836
16078
  .u-gap-6 {
14837
16079
  gap: 1.5rem;
14838
16080
  }
14839
16081
  .u-gap-7 {
14840
16082
  gap: 1.75rem;
14841
16083
  }
16084
+ .u-gap-8 {
16085
+ gap: 1.875rem;
16086
+ }
14842
16087
  .u-gap-8 {
14843
16088
  gap: 2rem;
14844
16089
  }
@@ -14914,19 +16159,19 @@ body.is-open-photoviewer {
14914
16159
  .u-row-gap-1 {
14915
16160
  row-gap: 0.25rem;
14916
16161
  }
14917
- .u-row-gap-1\.5 {
16162
+ .u-row-gap-2 {
14918
16163
  row-gap: 0.375rem;
14919
16164
  }
14920
16165
  .u-row-gap-2 {
14921
16166
  row-gap: 0.5rem;
14922
16167
  }
14923
- .u-row-gap-2\.5 {
16168
+ .u-row-gap-3 {
14924
16169
  row-gap: 0.625rem;
14925
16170
  }
14926
16171
  .u-row-gap-3 {
14927
16172
  row-gap: 0.75rem;
14928
16173
  }
14929
- .u-row-gap-3\.5 {
16174
+ .u-row-gap-4 {
14930
16175
  row-gap: 0.875rem;
14931
16176
  }
14932
16177
  .u-row-gap-4 {
@@ -14935,12 +16180,18 @@ body.is-open-photoviewer {
14935
16180
  .u-row-gap-5 {
14936
16181
  row-gap: 1.25rem;
14937
16182
  }
16183
+ .u-row-gap-6 {
16184
+ row-gap: 1.375rem;
16185
+ }
14938
16186
  .u-row-gap-6 {
14939
16187
  row-gap: 1.5rem;
14940
16188
  }
14941
16189
  .u-row-gap-7 {
14942
16190
  row-gap: 1.75rem;
14943
16191
  }
16192
+ .u-row-gap-8 {
16193
+ row-gap: 1.875rem;
16194
+ }
14944
16195
  .u-row-gap-8 {
14945
16196
  row-gap: 2rem;
14946
16197
  }
@@ -15018,7 +16269,7 @@ body.is-open-photoviewer {
15018
16269
  -moz-column-gap: 0.25rem;
15019
16270
  column-gap: 0.25rem;
15020
16271
  }
15021
- .u-column-gap-1\.5 {
16272
+ .u-column-gap-2 {
15022
16273
  -moz-column-gap: 0.375rem;
15023
16274
  column-gap: 0.375rem;
15024
16275
  }
@@ -15026,7 +16277,7 @@ body.is-open-photoviewer {
15026
16277
  -moz-column-gap: 0.5rem;
15027
16278
  column-gap: 0.5rem;
15028
16279
  }
15029
- .u-column-gap-2\.5 {
16280
+ .u-column-gap-3 {
15030
16281
  -moz-column-gap: 0.625rem;
15031
16282
  column-gap: 0.625rem;
15032
16283
  }
@@ -15034,7 +16285,7 @@ body.is-open-photoviewer {
15034
16285
  -moz-column-gap: 0.75rem;
15035
16286
  column-gap: 0.75rem;
15036
16287
  }
15037
- .u-column-gap-3\.5 {
16288
+ .u-column-gap-4 {
15038
16289
  -moz-column-gap: 0.875rem;
15039
16290
  column-gap: 0.875rem;
15040
16291
  }
@@ -15046,6 +16297,10 @@ body.is-open-photoviewer {
15046
16297
  -moz-column-gap: 1.25rem;
15047
16298
  column-gap: 1.25rem;
15048
16299
  }
16300
+ .u-column-gap-6 {
16301
+ -moz-column-gap: 1.375rem;
16302
+ column-gap: 1.375rem;
16303
+ }
15049
16304
  .u-column-gap-6 {
15050
16305
  -moz-column-gap: 1.5rem;
15051
16306
  column-gap: 1.5rem;
@@ -15054,6 +16309,10 @@ body.is-open-photoviewer {
15054
16309
  -moz-column-gap: 1.75rem;
15055
16310
  column-gap: 1.75rem;
15056
16311
  }
16312
+ .u-column-gap-8 {
16313
+ -moz-column-gap: 1.875rem;
16314
+ column-gap: 1.875rem;
16315
+ }
15057
16316
  .u-column-gap-8 {
15058
16317
  -moz-column-gap: 2rem;
15059
16318
  column-gap: 2rem;