@digigov/css 2.0.0-rc.7 → 2.0.2

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 (145) hide show
  1. package/dist/base/index.css +3 -3
  2. package/dist/base.js +1 -1
  3. package/dist/components.js +1 -1
  4. package/dist/digigov.css +5 -5
  5. package/dist/utilities/index.css +1 -1
  6. package/dist/utilities.js +1 -1
  7. package/index.js +99 -69
  8. package/package.json +20 -20
  9. package/postcss.config.js +4 -3
  10. package/src/base/index.css +1 -0
  11. package/src/base/index.native.css +0 -0
  12. package/src/base/postcss.config.js +11 -10
  13. package/src/base/tailwind.config.js +4 -11
  14. package/src/components/accordion.common.css +29 -0
  15. package/src/components/accordion.css +39 -12
  16. package/src/components/accordion.native.css +27 -0
  17. package/src/components/admin-header.css +1 -19
  18. package/src/components/admin-layout.css +6 -15
  19. package/src/components/autocomplete.css +7 -5
  20. package/src/components/blockquote.common.css +14 -0
  21. package/src/components/blockquote.css +9 -0
  22. package/src/components/blockquote.native.css +14 -0
  23. package/src/components/breadcrumbs.css +9 -2
  24. package/src/components/button.common.css +62 -0
  25. package/src/components/button.css +13 -28
  26. package/src/components/button.native.css +55 -0
  27. package/src/components/card.common.css +33 -0
  28. package/src/components/card.css +36 -15
  29. package/src/components/card.native.css +29 -0
  30. package/src/components/checkboxes.common.css +16 -0
  31. package/src/components/checkboxes.css +6 -8
  32. package/src/components/checkboxes.native.css +27 -0
  33. package/src/components/chip.common.css +19 -0
  34. package/src/components/chip.css +5 -4
  35. package/src/components/chip.native.css +15 -0
  36. package/src/components/code.css +129 -0
  37. package/src/components/copy-to-clipboard.css +1 -1
  38. package/src/components/copy-to-clipboard.native.css +26 -0
  39. package/src/components/details.common.css +26 -0
  40. package/src/components/details.css +10 -9
  41. package/src/components/details.native.css +34 -0
  42. package/src/components/drawer.css +21 -4
  43. package/src/components/dropdown.common.css +23 -0
  44. package/src/components/dropdown.css +7 -9
  45. package/src/components/dropdown.native.css +27 -0
  46. package/src/components/fillable.css +1 -1
  47. package/src/components/filter.css +72 -29
  48. package/src/components/footer.css +8 -7
  49. package/src/components/form.common.css +81 -0
  50. package/src/components/form.css +65 -33
  51. package/src/components/form.native.css +182 -0
  52. package/src/components/header.common.css +35 -0
  53. package/src/components/header.css +29 -20
  54. package/src/components/header.native.css +29 -0
  55. package/src/components/hidden.css +11 -11
  56. package/src/components/index.css +34 -31
  57. package/src/components/kitchensink.css +2 -2
  58. package/src/components/layout.common.css +36 -0
  59. package/src/components/layout.css +12 -11
  60. package/src/components/layout.native.css +40 -0
  61. package/src/components/loader.common.css +7 -0
  62. package/src/components/loader.css +3 -1
  63. package/src/components/loader.native.css +5 -0
  64. package/src/components/masthead.css +1 -1
  65. package/src/components/misc.css +25 -1
  66. package/src/components/modal.common.css +16 -0
  67. package/src/components/modal.css +27 -14
  68. package/src/components/modal.native.css +18 -0
  69. package/src/components/nav.common.css +22 -0
  70. package/src/components/nav.css +8 -7
  71. package/src/components/nav.native.css +39 -0
  72. package/src/components/notification-banner.common.css +46 -0
  73. package/src/components/notification-banner.css +27 -7
  74. package/src/components/notification-banner.native.css +42 -0
  75. package/src/components/pagination.css +19 -3
  76. package/src/components/panel.common.css +30 -0
  77. package/src/components/panel.css +6 -15
  78. package/src/components/panel.native.css +26 -0
  79. package/src/components/phase-banner.common.css +23 -0
  80. package/src/components/phase-banner.css +7 -6
  81. package/src/components/phase-banner.native.css +30 -0
  82. package/src/components/postcss.config.js +7 -6
  83. package/src/components/radios.common.css +16 -0
  84. package/src/components/radios.css +5 -11
  85. package/src/components/radios.native.css +23 -0
  86. package/src/components/skeleton.common.css +20 -0
  87. package/src/components/skeleton.css +82 -0
  88. package/src/components/skeleton.native.css +53 -0
  89. package/src/components/stack.common.css +67 -0
  90. package/src/components/stack.css +25 -23
  91. package/src/components/stack.native.css +68 -0
  92. package/src/components/stepnav.css +2 -2
  93. package/src/components/summary-list.common.css +102 -0
  94. package/src/components/summary-list.css +103 -20
  95. package/src/components/summary-list.native.css +97 -0
  96. package/src/components/svg-icons.common.css +56 -0
  97. package/src/components/svg-icons.css +1 -1
  98. package/src/components/svg-icons.native.css +54 -0
  99. package/src/components/table.css +63 -19
  100. package/src/components/tabs.css +47 -62
  101. package/src/components/task-list.css +12 -7
  102. package/src/components/test.css +7 -0
  103. package/src/components/timeline.css +8 -7
  104. package/src/components/typography.common.css +135 -0
  105. package/src/components/typography.css +51 -108
  106. package/src/components/typography.native.css +128 -0
  107. package/src/components/warning-text.common.css +23 -0
  108. package/src/components/warning-text.css +10 -7
  109. package/src/components/warning-text.native.css +22 -0
  110. package/src/index.native.css +26 -0
  111. package/src/utilities/gap.css +141 -0
  112. package/src/utilities/index.css +6 -1655
  113. package/src/utilities/index.native.css +6 -0
  114. package/src/utilities/layout.css +231 -0
  115. package/src/utilities/layout.native.css +278 -0
  116. package/src/utilities/margin.css +4299 -0
  117. package/src/utilities/padding.css +4299 -0
  118. package/src/utilities/postcss.config.js +7 -6
  119. package/src/utilities/print.css +11 -0
  120. package/src/utilities/utilities.css +3 -1661
  121. package/tailwind.config.js +102 -105
  122. package/theming.js +121 -0
  123. package/defaultTheme/accordion.json +0 -16
  124. package/defaultTheme/back-to-top.json +0 -27
  125. package/defaultTheme/brandConfig.json +0 -145
  126. package/defaultTheme/breadcrumbs.json +0 -8
  127. package/defaultTheme/button.json +0 -90
  128. package/defaultTheme/card.json +0 -23
  129. package/defaultTheme/form.json +0 -30
  130. package/defaultTheme/globals.json +0 -81
  131. package/defaultTheme/index.js +0 -27
  132. package/defaultTheme/layout.json +0 -55
  133. package/defaultTheme/misc.json +0 -68
  134. package/defaultTheme/panel.json +0 -48
  135. package/defaultTheme/phase-banner.json +0 -8
  136. package/defaultTheme/radios.json +0 -8
  137. package/defaultTheme/summary-list.json +0 -8
  138. package/defaultTheme/typography.json +0 -295
  139. package/src/pages/admin-filtering-data.js +0 -160
  140. package/src/pages/admin.js +0 -61
  141. package/src/pages/dropdown.js +0 -249
  142. package/src/pages/form.js +0 -400
  143. package/src/pages/pagination.js +0 -124
  144. package/src/pages/table.js +0 -308
  145. package/themes.plugin.js +0 -148
@@ -1 +1 @@
1
- .ds-m-0{margin:0!important}.ds-m-1{margin:.25rem!important}.ds-m-2{margin:.5rem!important}.ds-m-3{margin:.75rem!important}.ds-m-4{margin:1rem!important}.ds-m-5{margin:1.25rem!important}.ds-m-6{margin:1.5rem!important}.ds-m-7{margin:1.75rem!important}.ds-m-8{margin:2rem!important}.ds-m-9{margin:2.25rem!important}.ds-m-10{margin:2.5rem!important}.ds-m-11{margin:2.75rem!important}.ds-m-12{margin:3rem!important}.ds-m-14{margin:3.5rem!important}.ds-m-16{margin:4rem!important}.ds-m-20{margin:5rem!important}.ds-m-24{margin:6rem!important}.ds-m-28{margin:7rem!important}.ds-m-32{margin:8rem!important}.ds-m-36{margin:9rem!important}.ds-m-40{margin:10rem!important}.ds-m-44{margin:11rem!important}.ds-m-48{margin:12rem!important}.ds-m-52{margin:13rem!important}.ds-m-56{margin:14rem!important}.ds-m-60{margin:15rem!important}.ds-m-64{margin:16rem!important}.ds-m-72{margin:18rem!important}.ds-m-80{margin:20rem!important}.ds-m-96{margin:24rem!important}.ds-m-px{margin:1px!important}.ds-m-0\.5{margin:.125rem!important}.ds-m-1\.5{margin:.375rem!important}.ds-m-2\.5{margin:.625rem!important}.ds-m-3\.5{margin:.875rem!important}.ds-mt-0{margin-top:0!important}.ds-mt-1{margin-top:.25rem!important}.ds-mt-2{margin-top:.5rem!important}.ds-mt-3{margin-top:.75rem!important}.ds-mt-4{margin-top:1rem!important}.ds-mt-5{margin-top:1.25rem!important}.ds-mt-6{margin-top:1.5rem!important}.ds-mt-7{margin-top:1.75rem!important}.ds-mt-8{margin-top:2rem!important}.ds-mt-9{margin-top:2.25rem!important}.ds-mt-10{margin-top:2.5rem!important}.ds-mt-11{margin-top:2.75rem!important}.ds-mt-12{margin-top:3rem!important}.ds-mt-14{margin-top:3.5rem!important}.ds-mt-16{margin-top:4rem!important}.ds-mt-20{margin-top:5rem!important}.ds-mt-24{margin-top:6rem!important}.ds-mt-28{margin-top:7rem!important}.ds-mt-32{margin-top:8rem!important}.ds-mt-36{margin-top:9rem!important}.ds-mt-40{margin-top:10rem!important}.ds-mt-44{margin-top:11rem!important}.ds-mt-48{margin-top:12rem!important}.ds-mt-52{margin-top:13rem!important}.ds-mt-56{margin-top:14rem!important}.ds-mt-60{margin-top:15rem!important}.ds-mt-64{margin-top:16rem!important}.ds-mt-72{margin-top:18rem!important}.ds-mt-80{margin-top:20rem!important}.ds-mt-96{margin-top:24rem!important}.ds-mt-px{margin-top:1px!important}.ds-mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mt-0\.5{margin-top:.125rem!important}.ds-mt-1\.5{margin-top:.375rem!important}.ds-mt-2\.5{margin-top:.625rem!important}.ds-mt-3\.5{margin-top:.875rem!important}.ds-mr-0{margin-right:0!important}.ds-mr-1{margin-right:.25rem!important}.ds-mr-2{margin-right:.5rem!important}.ds-mr-3{margin-right:.75rem!important}.ds-mr-4{margin-right:1rem!important}.ds-mr-5{margin-right:1.25rem!important}.ds-mr-6{margin-right:1.5rem!important}.ds-mr-7{margin-right:1.75rem!important}.ds-mr-8{margin-right:2rem!important}.ds-mr-9{margin-right:2.25rem!important}.ds-mr-10{margin-right:2.5rem!important}.ds-mr-11{margin-right:2.75rem!important}.ds-mr-12{margin-right:3rem!important}.ds-mr-14{margin-right:3.5rem!important}.ds-mr-16{margin-right:4rem!important}.ds-mr-20{margin-right:5rem!important}.ds-mr-24{margin-right:6rem!important}.ds-mr-28{margin-right:7rem!important}.ds-mr-32{margin-right:8rem!important}.ds-mr-36{margin-right:9rem!important}.ds-mr-40{margin-right:10rem!important}.ds-mr-44{margin-right:11rem!important}.ds-mr-48{margin-right:12rem!important}.ds-mr-52{margin-right:13rem!important}.ds-mr-56{margin-right:14rem!important}.ds-mr-60{margin-right:15rem!important}.ds-mr-64{margin-right:16rem!important}.ds-mr-72{margin-right:18rem!important}.ds-mr-80{margin-right:20rem!important}.ds-mr-96{margin-right:24rem!important}.ds-mr-px{margin-right:1px!important}.ds-mr-0\.5{margin-right:.125rem!important}.ds-mr-1\.5{margin-right:.375rem!important}.ds-mr-2\.5{margin-right:.625rem!important}.ds-mr-3\.5{margin-right:.875rem!important}.ds-ml-0{margin-left:0!important}.ds-ml-1{margin-left:.25rem!important}.ds-ml-2{margin-left:.5rem!important}.ds-ml-3{margin-left:.75rem!important}.ds-ml-4{margin-left:1rem!important}.ds-ml-5{margin-left:1.25rem!important}.ds-ml-6{margin-left:1.5rem!important}.ds-ml-7{margin-left:1.75rem!important}.ds-ml-8{margin-left:2rem!important}.ds-ml-9{margin-left:2.25rem!important}.ds-ml-10{margin-left:2.5rem!important}.ds-ml-11{margin-left:2.75rem!important}.ds-ml-12{margin-left:3rem!important}.ds-ml-14{margin-left:3.5rem!important}.ds-ml-16{margin-left:4rem!important}.ds-ml-20{margin-left:5rem!important}.ds-ml-24{margin-left:6rem!important}.ds-ml-28{margin-left:7rem!important}.ds-ml-32{margin-left:8rem!important}.ds-ml-36{margin-left:9rem!important}.ds-ml-40{margin-left:10rem!important}.ds-ml-44{margin-left:11rem!important}.ds-ml-48{margin-left:12rem!important}.ds-ml-52{margin-left:13rem!important}.ds-ml-56{margin-left:14rem!important}.ds-ml-60{margin-left:15rem!important}.ds-ml-64{margin-left:16rem!important}.ds-ml-72{margin-left:18rem!important}.ds-ml-80{margin-left:20rem!important}.ds-ml-96{margin-left:24rem!important}.ds-ml-px{margin-left:1px!important}.ds-ml-0\.5{margin-left:.125rem!important}.ds-ml-1\.5{margin-left:.375rem!important}.ds-ml-2\.5{margin-left:.625rem!important}.ds-ml-3\.5{margin-left:.875rem!important}.ds-mb-0{margin-bottom:0!important}.ds-mb-1{margin-bottom:.25rem!important}.ds-mb-2{margin-bottom:.5rem!important}.ds-mb-3{margin-bottom:.75rem!important}.ds-mb-4{margin-bottom:1rem!important}.ds-mb-5{margin-bottom:1.25rem!important}.ds-mb-6{margin-bottom:1.5rem!important}.ds-mb-7{margin-bottom:1.75rem!important}.ds-mb-8{margin-bottom:2rem!important}.ds-mb-9{margin-bottom:2.25rem!important}.ds-mb-10{margin-bottom:2.5rem!important}.ds-mb-11{margin-bottom:2.75rem!important}.ds-mb-12{margin-bottom:3rem!important}.ds-mb-14{margin-bottom:3.5rem!important}.ds-mb-16{margin-bottom:4rem!important}.ds-mb-20{margin-bottom:5rem!important}.ds-mb-24{margin-bottom:6rem!important}.ds-mb-28{margin-bottom:7rem!important}.ds-mb-32{margin-bottom:8rem!important}.ds-mb-36{margin-bottom:9rem!important}.ds-mb-40{margin-bottom:10rem!important}.ds-mb-44{margin-bottom:11rem!important}.ds-mb-48{margin-bottom:12rem!important}.ds-mb-52{margin-bottom:13rem!important}.ds-mb-56{margin-bottom:14rem!important}.ds-mb-60{margin-bottom:15rem!important}.ds-mb-64{margin-bottom:16rem!important}.ds-mb-72{margin-bottom:18rem!important}.ds-mb-80{margin-bottom:20rem!important}.ds-mb-96{margin-bottom:24rem!important}.ds-mb-px{margin-bottom:1px!important}.ds-mb-0\.5{margin-bottom:.125rem!important}.ds-mb-1\.5{margin-bottom:.375rem!important}.ds-mb-2\.5{margin-bottom:.625rem!important}.ds-mb-3\.5{margin-bottom:.875rem!important}.ds-mx-0{margin-left:0!important;margin-right:0!important}.ds-mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-0{margin-top:0!important;margin-bottom:0!important}.ds-my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-my-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-p-0{padding:0!important}.ds-p-1{padding:.25rem!important}.ds-p-2{padding:.5rem!important}.ds-p-3{padding:.75rem!important}.ds-p-4{padding:1rem!important}.ds-p-5{padding:1.25rem!important}.ds-p-6{padding:1.5rem!important}.ds-p-7{padding:1.75rem!important}.ds-p-8{padding:2rem!important}.ds-p-9{padding:2.25rem!important}.ds-p-10{padding:2.5rem!important}.ds-p-11{padding:2.75rem!important}.ds-p-12{padding:3rem!important}.ds-p-14{padding:3.5rem!important}.ds-p-16{padding:4rem!important}.ds-p-20{padding:5rem!important}.ds-p-24{padding:6rem!important}.ds-p-28{padding:7rem!important}.ds-p-32{padding:8rem!important}.ds-p-36{padding:9rem!important}.ds-p-40{padding:10rem!important}.ds-p-44{padding:11rem!important}.ds-p-48{padding:12rem!important}.ds-p-52{padding:13rem!important}.ds-p-56{padding:14rem!important}.ds-p-60{padding:15rem!important}.ds-p-64{padding:16rem!important}.ds-p-72{padding:18rem!important}.ds-p-80{padding:20rem!important}.ds-p-96{padding:24rem!important}.ds-p-px{padding:1px!important}.ds-p-0\.5{padding:.125rem!important}.ds-p-1\.5{padding:.375rem!important}.ds-p-2\.5{padding:.625rem!important}.ds-p-3\.5{padding:.875rem!important}.ds-pt-0{padding-top:0!important}.ds-pt-1{padding-top:.25rem!important}.ds-pt-2{padding-top:.5rem!important}.ds-pt-3{padding-top:.75rem!important}.ds-pt-4{padding-top:1rem!important}.ds-pt-5{padding-top:1.25rem!important}.ds-pt-6{padding-top:1.5rem!important}.ds-pt-7{padding-top:1.75rem!important}.ds-pt-8{padding-top:2rem!important}.ds-pt-9{padding-top:2.25rem!important}.ds-pt-10{padding-top:2.5rem!important}.ds-pt-11{padding-top:2.75rem!important}.ds-pt-12{padding-top:3rem!important}.ds-pt-14{padding-top:3.5rem!important}.ds-pt-16{padding-top:4rem!important}.ds-pt-20{padding-top:5rem!important}.ds-pt-24{padding-top:6rem!important}.ds-pt-28{padding-top:7rem!important}.ds-pt-32{padding-top:8rem!important}.ds-pt-36{padding-top:9rem!important}.ds-pt-40{padding-top:10rem!important}.ds-pt-44{padding-top:11rem!important}.ds-pt-48{padding-top:12rem!important}.ds-pt-52{padding-top:13rem!important}.ds-pt-56{padding-top:14rem!important}.ds-pt-60{padding-top:15rem!important}.ds-pt-64{padding-top:16rem!important}.ds-pt-72{padding-top:18rem!important}.ds-pt-80{padding-top:20rem!important}.ds-pt-96{padding-top:24rem!important}.ds-pt-px{padding-top:1px!important}.ds-pt-0\.5{padding-top:.125rem!important}.ds-pt-1\.5{padding-top:.375rem!important}.ds-pt-2\.5{padding-top:.625rem!important}.ds-pt-3\.5{padding-top:.875rem!important}.ds-pr-0{padding-right:0!important}.ds-pr-1{padding-right:.25rem!important}.ds-pr-2{padding-right:.5rem!important}.ds-pr-3{padding-right:.75rem!important}.ds-pr-4{padding-right:1rem!important}.ds-pr-5{padding-right:1.25rem!important}.ds-pr-6{padding-right:1.5rem!important}.ds-pr-7{padding-right:1.75rem!important}.ds-pr-8{padding-right:2rem!important}.ds-pr-9{padding-right:2.25rem!important}.ds-pr-10{padding-right:2.5rem!important}.ds-pr-11{padding-right:2.75rem!important}.ds-pr-12{padding-right:3rem!important}.ds-pr-14{padding-right:3.5rem!important}.ds-pr-16{padding-right:4rem!important}.ds-pr-20{padding-right:5rem!important}.ds-pr-24{padding-right:6rem!important}.ds-pr-28{padding-right:7rem!important}.ds-pr-32{padding-right:8rem!important}.ds-pr-36{padding-right:9rem!important}.ds-pr-40{padding-right:10rem!important}.ds-pr-44{padding-right:11rem!important}.ds-pr-48{padding-right:12rem!important}.ds-pr-52{padding-right:13rem!important}.ds-pr-56{padding-right:14rem!important}.ds-pr-60{padding-right:15rem!important}.ds-pr-64{padding-right:16rem!important}.ds-pr-72{padding-right:18rem!important}.ds-pr-80{padding-right:20rem!important}.ds-pr-96{padding-right:24rem!important}.ds-pr-px{padding-right:1px!important}.ds-pr-0\.5{padding-right:.125rem!important}.ds-pr-1\.5{padding-right:.375rem!important}.ds-pr-2\.5{padding-right:.625rem!important}.ds-pr-3\.5{padding-right:.875rem!important}.ds-pl-0{padding-left:0!important}.ds-pl-1{padding-left:.25rem!important}.ds-pl-2{padding-left:.5rem!important}.ds-pl-3{padding-left:.75rem!important}.ds-pl-4{padding-left:1rem!important}.ds-pl-5{padding-left:1.25rem!important}.ds-pl-6{padding-left:1.5rem!important}.ds-pl-7{padding-left:1.75rem!important}.ds-pl-8{padding-left:2rem!important}.ds-pl-9{padding-left:2.25rem!important}.ds-pl-10{padding-left:2.5rem!important}.ds-pl-11{padding-left:2.75rem!important}.ds-pl-12{padding-left:3rem!important}.ds-pl-14{padding-left:3.5rem!important}.ds-pl-16{padding-left:4rem!important}.ds-pl-20{padding-left:5rem!important}.ds-pl-24{padding-left:6rem!important}.ds-pl-28{padding-left:7rem!important}.ds-pl-32{padding-left:8rem!important}.ds-pl-36{padding-left:9rem!important}.ds-pl-40{padding-left:10rem!important}.ds-pl-44{padding-left:11rem!important}.ds-pl-48{padding-left:12rem!important}.ds-pl-52{padding-left:13rem!important}.ds-pl-56{padding-left:14rem!important}.ds-pl-60{padding-left:15rem!important}.ds-pl-64{padding-left:16rem!important}.ds-pl-72{padding-left:18rem!important}.ds-pl-80{padding-left:20rem!important}.ds-pl-96{padding-left:24rem!important}.ds-pl-px{padding-left:1px!important}.ds-pl-0\.5{padding-left:.125rem!important}.ds-pl-1\.5{padding-left:.375rem!important}.ds-pl-2\.5{padding-left:.625rem!important}.ds-pl-3\.5{padding-left:.875rem!important}.ds-pb-0{padding-bottom:0!important}.ds-pb-1{padding-bottom:.25rem!important}.ds-pb-2{padding-bottom:.5rem!important}.ds-pb-3{padding-bottom:.75rem!important}.ds-pb-4{padding-bottom:1rem!important}.ds-pb-5{padding-bottom:1.25rem!important}.ds-pb-6{padding-bottom:1.5rem!important}.ds-pb-7{padding-bottom:1.75rem!important}.ds-pb-8{padding-bottom:2rem!important}.ds-pb-9{padding-bottom:2.25rem!important}.ds-pb-10{padding-bottom:2.5rem!important}.ds-pb-11{padding-bottom:2.75rem!important}.ds-pb-12{padding-bottom:3rem!important}.ds-pb-14{padding-bottom:3.5rem!important}.ds-pb-16{padding-bottom:4rem!important}.ds-pb-20{padding-bottom:5rem!important}.ds-pb-24{padding-bottom:6rem!important}.ds-pb-28{padding-bottom:7rem!important}.ds-pb-32{padding-bottom:8rem!important}.ds-pb-36{padding-bottom:9rem!important}.ds-pb-40{padding-bottom:10rem!important}.ds-pb-44{padding-bottom:11rem!important}.ds-pb-48{padding-bottom:12rem!important}.ds-pb-52{padding-bottom:13rem!important}.ds-pb-56{padding-bottom:14rem!important}.ds-pb-60{padding-bottom:15rem!important}.ds-pb-64{padding-bottom:16rem!important}.ds-pb-72{padding-bottom:18rem!important}.ds-pb-80{padding-bottom:20rem!important}.ds-pb-96{padding-bottom:24rem!important}.ds-pb-px{padding-bottom:1px!important}.ds-pb-0\.5{padding-bottom:.125rem!important}.ds-pb-1\.5{padding-bottom:.375rem!important}.ds-pb-2\.5{padding-bottom:.625rem!important}.ds-pb-3\.5{padding-bottom:.875rem!important}.ds-px-0{padding-left:0!important;padding-right:0!important}.ds-px-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-96{padding-left:24rem!important;padding-right:24rem!important}.ds-px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-py-0{padding-top:0!important;padding-bottom:0!important}.ds-py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-96{padding-top:24rem!important;padding-bottom:24rem!important}.ds-py-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr))}.ds-grid-inline{display:inline-grid}.ds-grid__col-auto{grid-column:auto}.ds-grid__col-span-1{grid-column:span 1/span 1}.ds-grid__col-span-2{grid-column:span 2/span 2}.ds-grid__col-span-3{grid-column:span 3/span 3}.ds-grid__col-span-4{grid-column:span 4/span 4}.ds-grid__col-span-5{grid-column:span 5/span 5}.ds-grid__col-span-6{grid-column:span 6/span 6}.ds-grid__col-span-7{grid-column:span 7/span 7}.ds-grid__col-span-8{grid-column:span 8/span 8}.ds-grid__col-span-9{grid-column:span 9/span 9}.ds-grid__col-span-10{grid-column:span 10/span 10}.ds-grid__col-span-11{grid-column:span 11/span 11}.ds-grid__col-span-12{grid-column:span 12/span 12}@media print{.ds-print-hidden{display:none!important}.ds-print-visible-block{display:block!important}.ds-print-visible-inline{display:inline!important}}.ds-gap-1{gap:.25rem}.ds-gap-2{gap:.5rem}.ds-gap-4{gap:1rem}.ds-gap-6{gap:1.5rem}.ds-gap-8{gap:2rem}.ds-gap-10{gap:2.5rem}.ds-gap-12{gap:3rem}.ds-gap-xs-1{gap:.25rem}.ds-gap-xs-2{gap:.5rem}.ds-gap-xs-4{gap:1rem}.ds-gap-xs-5{gap:1.25rem}.ds-gap-xs-6{gap:1.5rem}.ds-gap-xs-8{gap:2rem}.ds-gap-xs-10{gap:2.5rem}.ds-gap-xs-12{gap:3rem}@media (min-width:640px){.ds-gap-sm-1{gap:.25rem}.ds-gap-sm-2{gap:.5rem}.ds-gap-sm-4{gap:1rem}.ds-gap-sm-5{gap:1.25rem}.ds-gap-sm-6{gap:1.5rem}.ds-gap-sm-8{gap:2rem}.ds-gap-sm-10{gap:2.5rem}.ds-gap-sm-12{gap:3rem}}@media (min-width:768px){.ds-gap-md-1{gap:.25rem}.ds-gap-md-2{gap:.5rem}.ds-gap-md-4{gap:1rem}.ds-gap-md-5{gap:1.25rem}.ds-gap-md-6{gap:1.5rem}.ds-gap-md-8{gap:2rem}.ds-gap-md-10{gap:2.5rem}.ds-gap-md-12{gap:3rem}}@media (min-width:1024px){.ds-gap-lg-1{gap:.25rem}.ds-gap-lg-2{gap:.5rem}.ds-gap-lg-4{gap:1rem}.ds-gap-lg-5{gap:1.25rem}.ds-gap-lg-6{gap:1.5rem}.ds-gap-lg-8{gap:2rem}.ds-gap-lg-10{gap:2.5rem}.ds-gap-lg-12{gap:3rem}}@media (min-width:1280px){.ds-gap-xl-1{gap:.25rem}.ds-gap-xl-2{gap:.5rem}.ds-gap-xl-4{gap:1rem}.ds-gap-xl-5{gap:1.25rem}.ds-gap-xl-6{gap:1.5rem}.ds-gap-xl-8{gap:2rem}.ds-gap-xl-10{gap:2.5rem}.ds-gap-xl-12{gap:3rem}}
1
+ .ds-display-flex{display:flex!important}.ds-display-block{display:block!important}.ds-display-none{display:none!important}.ds-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr))}.ds-grid-inline{display:inline-grid}.ds-grid__col-auto{grid-column:auto}.ds-grid__col-span-1,.xs\:ds-grid__col-span-1{grid-column:span 1/span 1}.ds-grid__col-span-2,.xs\:ds-grid__col-span-2{grid-column:span 2/span 2}.ds-grid__col-span-3,.xs\:ds-grid__col-span-3{grid-column:span 3/span 3}.ds-grid__col-span-4,.xs\:ds-grid__col-span-4{grid-column:span 4/span 4}.ds-grid__col-span-5,.xs\:ds-grid__col-span-5{grid-column:span 5/span 5}.ds-grid__col-span-6,.xs\:ds-grid__col-span-6{grid-column:span 6/span 6}.ds-grid__col-span-7,.xs\:ds-grid__col-span-7{grid-column:span 7/span 7}.ds-grid__col-span-8,.xs\:ds-grid__col-span-8{grid-column:span 8/span 8}.ds-grid__col-span-9,.xs\:ds-grid__col-span-9{grid-column:span 9/span 9}.ds-grid__col-span-10,.xs\:ds-grid__col-span-10{grid-column:span 10/span 10}.ds-grid__col-span-11,.xs\:ds-grid__col-span-11{grid-column:span 11/span 11}.ds-grid__col-span-12,.xs\:ds-grid__col-span-12{grid-column:span 12/span 12}.ds-gap-1{gap:.25rem}.ds-gap-2{gap:.5rem}.ds-gap-4{gap:1rem}.ds-gap-6{gap:1.5rem}.ds-gap-8{gap:2rem}.ds-gap-10{gap:2.5rem}.ds-gap-12{gap:3rem}.ds-gap-xs-1{gap:.25rem}.ds-gap-xs-2{gap:.5rem}.ds-gap-xs-4{gap:1rem}.ds-gap-xs-5{gap:1.25rem}.ds-gap-xs-6{gap:1.5rem}.ds-gap-xs-8{gap:2rem}.ds-gap-xs-10{gap:2.5rem}.ds-gap-xs-12{gap:3rem}.ds-m-0{margin:0!important}.ds-m-1{margin:.25rem!important}.ds-m-2{margin:.5rem!important}.ds-m-3{margin:.75rem!important}.ds-m-4{margin:1rem!important}.ds-m-5{margin:1.25rem!important}.ds-m-6{margin:1.5rem!important}.ds-m-7{margin:1.75rem!important}.ds-m-8{margin:2rem!important}.ds-m-9{margin:2.25rem!important}.ds-m-10{margin:2.5rem!important}.ds-m-11{margin:2.75rem!important}.ds-m-12{margin:3rem!important}.ds-m-14{margin:3.5rem!important}.ds-m-16{margin:4rem!important}.ds-m-20{margin:5rem!important}.ds-m-24{margin:6rem!important}.ds-m-28{margin:7rem!important}.ds-m-32{margin:8rem!important}.ds-m-36{margin:9rem!important}.ds-m-40{margin:10rem!important}.ds-m-44{margin:11rem!important}.ds-m-48{margin:12rem!important}.ds-m-52{margin:13rem!important}.ds-m-56{margin:14rem!important}.ds-m-60{margin:15rem!important}.ds-m-64{margin:16rem!important}.ds-m-72{margin:18rem!important}.ds-m-80{margin:20rem!important}.ds-m-96{margin:24rem!important}.ds-m-px{margin:1px!important}.ds-m-0\.5{margin:.125rem!important}.ds-m-1\.5{margin:.375rem!important}.ds-m-2\.5{margin:.625rem!important}.ds-m-3\.5{margin:.875rem!important}.ds-mt-0{margin-top:0!important}.ds-mt-1{margin-top:.25rem!important}.ds-mt-2{margin-top:.5rem!important}.ds-mt-3{margin-top:.75rem!important}.ds-mt-4{margin-top:1rem!important}.ds-mt-5{margin-top:1.25rem!important}.ds-mt-6{margin-top:1.5rem!important}.ds-mt-7{margin-top:1.75rem!important}.ds-mt-8{margin-top:2rem!important}.ds-mt-9{margin-top:2.25rem!important}.ds-mt-10{margin-top:2.5rem!important}.ds-mt-11{margin-top:2.75rem!important}.ds-mt-12{margin-top:3rem!important}.ds-mt-14{margin-top:3.5rem!important}.ds-mt-16{margin-top:4rem!important}.ds-mt-20{margin-top:5rem!important}.ds-mt-24{margin-top:6rem!important}.ds-mt-28{margin-top:7rem!important}.ds-mt-32{margin-top:8rem!important}.ds-mt-36{margin-top:9rem!important}.ds-mt-40{margin-top:10rem!important}.ds-mt-44{margin-top:11rem!important}.ds-mt-48{margin-top:12rem!important}.ds-mt-52{margin-top:13rem!important}.ds-mt-56{margin-top:14rem!important}.ds-mt-60{margin-top:15rem!important}.ds-mt-64{margin-top:16rem!important}.ds-mt-72{margin-top:18rem!important}.ds-mt-80{margin-top:20rem!important}.ds-mt-96{margin-top:24rem!important}.ds-mt-px{margin-top:1px!important}.ds-mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mt-0\.5{margin-top:.125rem!important}.ds-mt-1\.5{margin-top:.375rem!important}.ds-mt-2\.5{margin-top:.625rem!important}.ds-mt-3\.5{margin-top:.875rem!important}.ds-mr-0{margin-right:0!important}.ds-mr-1{margin-right:.25rem!important}.ds-mr-2{margin-right:.5rem!important}.ds-mr-3{margin-right:.75rem!important}.ds-mr-4{margin-right:1rem!important}.ds-mr-5{margin-right:1.25rem!important}.ds-mr-6{margin-right:1.5rem!important}.ds-mr-7{margin-right:1.75rem!important}.ds-mr-8{margin-right:2rem!important}.ds-mr-9{margin-right:2.25rem!important}.ds-mr-10{margin-right:2.5rem!important}.ds-mr-11{margin-right:2.75rem!important}.ds-mr-12{margin-right:3rem!important}.ds-mr-14{margin-right:3.5rem!important}.ds-mr-16{margin-right:4rem!important}.ds-mr-20{margin-right:5rem!important}.ds-mr-24{margin-right:6rem!important}.ds-mr-28{margin-right:7rem!important}.ds-mr-32{margin-right:8rem!important}.ds-mr-36{margin-right:9rem!important}.ds-mr-40{margin-right:10rem!important}.ds-mr-44{margin-right:11rem!important}.ds-mr-48{margin-right:12rem!important}.ds-mr-52{margin-right:13rem!important}.ds-mr-56{margin-right:14rem!important}.ds-mr-60{margin-right:15rem!important}.ds-mr-64{margin-right:16rem!important}.ds-mr-72{margin-right:18rem!important}.ds-mr-80{margin-right:20rem!important}.ds-mr-96{margin-right:24rem!important}.ds-mr-px{margin-right:1px!important}.ds-mr-0\.5{margin-right:.125rem!important}.ds-mr-1\.5{margin-right:.375rem!important}.ds-mr-2\.5{margin-right:.625rem!important}.ds-mr-3\.5{margin-right:.875rem!important}.ds-ml-0{margin-left:0!important}.ds-ml-1{margin-left:.25rem!important}.ds-ml-2{margin-left:.5rem!important}.ds-ml-3{margin-left:.75rem!important}.ds-ml-4{margin-left:1rem!important}.ds-ml-5{margin-left:1.25rem!important}.ds-ml-6{margin-left:1.5rem!important}.ds-ml-7{margin-left:1.75rem!important}.ds-ml-8{margin-left:2rem!important}.ds-ml-9{margin-left:2.25rem!important}.ds-ml-10{margin-left:2.5rem!important}.ds-ml-11{margin-left:2.75rem!important}.ds-ml-12{margin-left:3rem!important}.ds-ml-14{margin-left:3.5rem!important}.ds-ml-16{margin-left:4rem!important}.ds-ml-20{margin-left:5rem!important}.ds-ml-24{margin-left:6rem!important}.ds-ml-28{margin-left:7rem!important}.ds-ml-32{margin-left:8rem!important}.ds-ml-36{margin-left:9rem!important}.ds-ml-40{margin-left:10rem!important}.ds-ml-44{margin-left:11rem!important}.ds-ml-48{margin-left:12rem!important}.ds-ml-52{margin-left:13rem!important}.ds-ml-56{margin-left:14rem!important}.ds-ml-60{margin-left:15rem!important}.ds-ml-64{margin-left:16rem!important}.ds-ml-72{margin-left:18rem!important}.ds-ml-80{margin-left:20rem!important}.ds-ml-96{margin-left:24rem!important}.ds-ml-px{margin-left:1px!important}.ds-ml-0\.5{margin-left:.125rem!important}.ds-ml-1\.5{margin-left:.375rem!important}.ds-ml-2\.5{margin-left:.625rem!important}.ds-ml-3\.5{margin-left:.875rem!important}.ds-mb-0{margin-bottom:0!important}.ds-mb-1{margin-bottom:.25rem!important}.ds-mb-2{margin-bottom:.5rem!important}.ds-mb-3{margin-bottom:.75rem!important}.ds-mb-4{margin-bottom:1rem!important}.ds-mb-5{margin-bottom:1.25rem!important}.ds-mb-6{margin-bottom:1.5rem!important}.ds-mb-7{margin-bottom:1.75rem!important}.ds-mb-8{margin-bottom:2rem!important}.ds-mb-9{margin-bottom:2.25rem!important}.ds-mb-10{margin-bottom:2.5rem!important}.ds-mb-11{margin-bottom:2.75rem!important}.ds-mb-12{margin-bottom:3rem!important}.ds-mb-14{margin-bottom:3.5rem!important}.ds-mb-16{margin-bottom:4rem!important}.ds-mb-20{margin-bottom:5rem!important}.ds-mb-24{margin-bottom:6rem!important}.ds-mb-28{margin-bottom:7rem!important}.ds-mb-32{margin-bottom:8rem!important}.ds-mb-36{margin-bottom:9rem!important}.ds-mb-40{margin-bottom:10rem!important}.ds-mb-44{margin-bottom:11rem!important}.ds-mb-48{margin-bottom:12rem!important}.ds-mb-52{margin-bottom:13rem!important}.ds-mb-56{margin-bottom:14rem!important}.ds-mb-60{margin-bottom:15rem!important}.ds-mb-64{margin-bottom:16rem!important}.ds-mb-72{margin-bottom:18rem!important}.ds-mb-80{margin-bottom:20rem!important}.ds-mb-96{margin-bottom:24rem!important}.ds-mb-px{margin-bottom:1px!important}.ds-mb-0\.5{margin-bottom:.125rem!important}.ds-mb-1\.5{margin-bottom:.375rem!important}.ds-mb-2\.5{margin-bottom:.625rem!important}.ds-mb-3\.5{margin-bottom:.875rem!important}.ds-mx-0{margin-left:0!important;margin-right:0!important}.ds-mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-0{margin-top:0!important;margin-bottom:0!important}.ds-my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-my-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-m-xs-0{margin:0}.ds-m-xs-0\.5{margin:.125rem}.ds-m-xs-1{margin:.25rem}.ds-m-xs-1\.5{margin:.375rem}.ds-m-xs-2{margin:.5rem}.ds-m-xs-2\.5{margin:.625rem}.ds-m-xs-3{margin:.75rem}.ds-m-xs-3\.5{margin:.875rem}.ds-m-xs-4{margin:1rem}.ds-m-xs-5{margin:1.25rem}.ds-m-xs-6{margin:1.5rem}.ds-m-xs-7{margin:1.75rem}.ds-m-xs-8{margin:2rem}.ds-m-xs-9{margin:2.25rem}.ds-m-xs-10{margin:2.5rem}.ds-m-xs-11{margin:2.75rem}.ds-m-xs-12{margin:3rem}.ds-m-xs-14{margin:3.5rem}.ds-m-xs-16{margin:4rem}.ds-m-xs-20{margin:5rem}.ds-m-xs-24{margin:6rem}.ds-m-xs-28{margin:7rem}.ds-m-xs-32{margin:8rem}.ds-m-xs-36{margin:9rem}.ds-m-xs-40{margin:10rem}.ds-m-xs-44{margin:11rem}.ds-m-xs-48{margin:12rem}.ds-m-xs-52{margin:13rem}.ds-m-xs-56{margin:14rem}.ds-m-xs-60{margin:15rem}.ds-m-xs-64{margin:16rem}.ds-m-xs-72{margin:18rem}.ds-m-xs-80{margin:20rem}.ds-m-xs-96{margin:24rem}.ds-mt-xs-0{margin-top:0}.ds-mt-xs-0\.5{margin-top:.125rem}.ds-mt-xs-1{margin-top:.25rem}.ds-mt-xs-1\.5{margin-top:.375rem}.ds-mt-xs-2{margin-top:.5rem}.ds-mt-xs-2\.5{margin-top:.625rem}.ds-mt-xs-3{margin-top:.75rem}.ds-mt-xs-3\.5{margin-top:.875rem}.ds-mt-xs-4{margin-top:1rem}.ds-mt-xs-5{margin-top:1.25rem}.ds-mt-xs-6{margin-top:1.5rem}.ds-mt-xs-7{margin-top:1.75rem}.ds-mt-xs-8{margin-top:2rem}.ds-mt-xs-9{margin-top:2.25rem}.ds-mt-xs-10{margin-top:2.5rem}.ds-mt-xs-11{margin-top:2.75rem}.ds-mt-xs-12{margin-top:3rem}.ds-mt-xs-14{margin-top:3.5rem}.ds-mt-xs-16{margin-top:4rem}.ds-mt-xs-20{margin-top:5rem}.ds-mt-xs-24{margin-top:6rem}.ds-mt-xs-28{margin-top:7rem}.ds-mt-xs-32{margin-top:8rem}.ds-mt-xs-36{margin-top:9rem}.ds-mt-xs-40{margin-top:10rem}.ds-mt-xs-44{margin-top:11rem}.ds-mt-xs-48{margin-top:12rem}.ds-mt-xs-52{margin-top:13rem}.ds-mt-xs-56{margin-top:14rem}.ds-mt-xs-60{margin-top:15rem}.ds-mt-xs-64{margin-top:16rem}.ds-mt-xs-72{margin-top:18rem}.ds-mt-xs-80{margin-top:20rem}.ds-mt-xs-96{margin-top:24rem}.ds-mr-xs-0{margin-right:0}.ds-mr-xs-0\.5{margin-right:.125rem}.ds-mr-xs-1{margin-right:.25rem}.ds-mr-xs-1\.5{margin-right:.375rem}.ds-mr-xs-2{margin-right:.5rem}.ds-mr-xs-2\.5{margin-right:.625rem}.ds-mr-xs-3{margin-right:.75rem}.ds-mr-xs-3\.5{margin-right:.875rem}.ds-mr-xs-4{margin-right:1rem}.ds-mr-xs-5{margin-right:1.25rem}.ds-mr-xs-6{margin-right:1.5rem}.ds-mr-xs-7{margin-right:1.75rem}.ds-mr-xs-8{margin-right:2rem}.ds-mr-xs-9{margin-right:2.25rem}.ds-mr-xs-10{margin-right:2.5rem}.ds-mr-xs-11{margin-right:2.75rem}.ds-mr-xs-12{margin-right:3rem}.ds-mr-xs-14{margin-right:3.5rem}.ds-mr-xs-16{margin-right:4rem}.ds-mr-xs-20{margin-right:5rem}.ds-mr-xs-24{margin-right:6rem}.ds-mr-xs-28{margin-right:7rem}.ds-mr-xs-32{margin-right:8rem}.ds-mr-xs-36{margin-right:9rem}.ds-mr-xs-40{margin-right:10rem}.ds-mr-xs-44{margin-right:11rem}.ds-mr-xs-48{margin-right:12rem}.ds-mr-xs-52{margin-right:13rem}.ds-mr-xs-56{margin-right:14rem}.ds-mr-xs-60{margin-right:15rem}.ds-mr-xs-64{margin-right:16rem}.ds-mr-xs-72{margin-right:18rem}.ds-mr-xs-80{margin-right:20rem}.ds-mr-xs-96{margin-right:24rem}.ds-mb-xs-0{margin-bottom:0}.ds-mb-xs-0\.5{margin-bottom:.125rem}.ds-mb-xs-1{margin-bottom:.25rem}.ds-mb-xs-1\.5{margin-bottom:.375rem}.ds-mb-xs-2{margin-bottom:.5rem}.ds-mb-xs-2\.5{margin-bottom:.625rem}.ds-mb-xs-3{margin-bottom:.75rem}.ds-mb-xs-3\.5{margin-bottom:.875rem}.ds-mb-xs-4{margin-bottom:1rem}.ds-mb-xs-5{margin-bottom:1.25rem}.ds-mb-xs-6{margin-bottom:1.5rem}.ds-mb-xs-7{margin-bottom:1.75rem}.ds-mb-xs-8{margin-bottom:2rem}.ds-mb-xs-9{margin-bottom:2.25rem}.ds-mb-xs-10{margin-bottom:2.5rem}.ds-mb-xs-11{margin-bottom:2.75rem}.ds-mb-xs-12{margin-bottom:3rem}.ds-mb-xs-14{margin-bottom:3.5rem}.ds-mb-xs-16{margin-bottom:4rem}.ds-mb-xs-20{margin-bottom:5rem}.ds-mb-xs-24{margin-bottom:6rem}.ds-mb-xs-28{margin-bottom:7rem}.ds-mb-xs-32{margin-bottom:8rem}.ds-mb-xs-36{margin-bottom:9rem}.ds-mb-xs-40{margin-bottom:10rem}.ds-mb-xs-44{margin-bottom:11rem}.ds-mb-xs-48{margin-bottom:12rem}.ds-mb-xs-52{margin-bottom:13rem}.ds-mb-xs-56{margin-bottom:14rem}.ds-mb-xs-60{margin-bottom:15rem}.ds-mb-xs-64{margin-bottom:16rem}.ds-mb-xs-72{margin-bottom:18rem}.ds-mb-xs-80{margin-bottom:20rem}.ds-mb-xs-96{margin-bottom:24rem}.ds-ml-xs-0{margin-left:0}.ds-ml-xs-0\.5{margin-left:.125rem}.ds-ml-xs-1{margin-left:.25rem}.ds-ml-xs-1\.5{margin-left:.375rem}.ds-ml-xs-2{margin-left:.5rem}.ds-ml-xs-2\.5{margin-left:.625rem}.ds-ml-xs-3{margin-left:.75rem}.ds-ml-xs-3\.5{margin-left:.875rem}.ds-ml-xs-4{margin-left:1rem}.ds-ml-xs-5{margin-left:1.25rem}.ds-ml-xs-6{margin-left:1.5rem}.ds-ml-xs-7{margin-left:1.75rem}.ds-ml-xs-8{margin-left:2rem}.ds-ml-xs-9{margin-left:2.25rem}.ds-ml-xs-10{margin-left:2.5rem}.ds-ml-xs-11{margin-left:2.75rem}.ds-ml-xs-12{margin-left:3rem}.ds-ml-xs-14{margin-left:3.5rem}.ds-ml-xs-16{margin-left:4rem}.ds-ml-xs-20{margin-left:5rem}.ds-ml-xs-24{margin-left:6rem}.ds-ml-xs-28{margin-left:7rem}.ds-ml-xs-32{margin-left:8rem}.ds-ml-xs-36{margin-left:9rem}.ds-ml-xs-40{margin-left:10rem}.ds-ml-xs-44{margin-left:11rem}.ds-ml-xs-48{margin-left:12rem}.ds-ml-xs-52{margin-left:13rem}.ds-ml-xs-56{margin-left:14rem}.ds-ml-xs-60{margin-left:15rem}.ds-ml-xs-64{margin-left:16rem}.ds-ml-xs-72{margin-left:18rem}.ds-ml-xs-80{margin-left:20rem}.ds-ml-xs-96{margin-left:24rem}.ds-mx-xs-0{margin-left:0;margin-right:0}.ds-mx-xs-0\.5{margin-left:.125rem;margin-right:.125rem}.ds-mx-xs-1{margin-left:.25rem;margin-right:.25rem}.ds-mx-xs-1\.5{margin-left:.375rem;margin-right:.375rem}.ds-mx-xs-2{margin-left:.5rem;margin-right:.5rem}.ds-mx-xs-2\.5{margin-left:.625rem;margin-right:.625rem}.ds-mx-xs-3{margin-left:.75rem;margin-right:.75rem}.ds-mx-xs-3\.5{margin-left:.875rem;margin-right:.875rem}.ds-mx-xs-4{margin-left:1rem;margin-right:1rem}.ds-mx-xs-5{margin-left:1.25rem;margin-right:1.25rem}.ds-mx-xs-6{margin-left:1.5rem;margin-right:1.5rem}.ds-mx-xs-7{margin-left:1.75rem;margin-right:1.75rem}.ds-mx-xs-8{margin-left:2rem;margin-right:2rem}.ds-mx-xs-9{margin-left:2.25rem;margin-right:2.25rem}.ds-mx-xs-10{margin-left:2.5rem;margin-right:2.5rem}.ds-mx-xs-11{margin-left:2.75rem;margin-right:2.75rem}.ds-mx-xs-12{margin-left:3rem;margin-right:3rem}.ds-mx-xs-14{margin-left:3.5rem;margin-right:3.5rem}.ds-mx-xs-16{margin-left:4rem;margin-right:4rem}.ds-mx-xs-20{margin-left:5rem;margin-right:5rem}.ds-mx-xs-24{margin-left:6rem;margin-right:6rem}.ds-mx-xs-28{margin-left:7rem;margin-right:7rem}.ds-mx-xs-32{margin-left:8rem;margin-right:8rem}.ds-mx-xs-36{margin-left:9rem;margin-right:9rem}.ds-mx-xs-40{margin-left:10rem;margin-right:10rem}.ds-mx-xs-44{margin-left:11rem;margin-right:11rem}.ds-mx-xs-48{margin-left:12rem;margin-right:12rem}.ds-mx-xs-52{margin-left:13rem;margin-right:13rem}.ds-mx-xs-56{margin-left:14rem;margin-right:14rem}.ds-mx-xs-60{margin-left:15rem;margin-right:15rem}.ds-mx-xs-64{margin-left:16rem;margin-right:16rem}.ds-mx-xs-72{margin-left:18rem;margin-right:18rem}.ds-mx-xs-80{margin-left:20rem;margin-right:20rem}.ds-mx-xs-96{margin-left:24rem;margin-right:24rem}.ds-my-xs-0{margin-top:0;margin-bottom:0}.ds-my-xs-0\.5{margin-top:.125rem;margin-bottom:.125rem}.ds-my-xs-1{margin-top:.25rem;margin-bottom:.25rem}.ds-my-xs-1\.5{margin-top:.375rem;margin-bottom:.375rem}.ds-my-xs-2{margin-top:.5rem;margin-bottom:.5rem}.ds-my-xs-2\.5{margin-top:.625rem;margin-bottom:.625rem}.ds-my-xs-3{margin-top:.75rem;margin-bottom:.75rem}.ds-my-xs-3\.5{margin-top:.875rem;margin-bottom:.875rem}.ds-my-xs-4{margin-top:1rem;margin-bottom:1rem}.ds-my-xs-5{margin-top:1.25rem;margin-bottom:1.25rem}.ds-my-xs-6{margin-top:1.5rem;margin-bottom:1.5rem}.ds-my-xs-7{margin-top:1.75rem;margin-bottom:1.75rem}.ds-my-xs-8{margin-top:2rem;margin-bottom:2rem}.ds-my-xs-9{margin-top:2.25rem;margin-bottom:2.25rem}.ds-my-xs-10{margin-top:2.5rem;margin-bottom:2.5rem}.ds-my-xs-11{margin-top:2.75rem;margin-bottom:2.75rem}.ds-my-xs-12{margin-top:3rem;margin-bottom:3rem}.ds-my-xs-14{margin-top:3.5rem;margin-bottom:3.5rem}.ds-my-xs-16{margin-top:4rem;margin-bottom:4rem}.ds-my-xs-20{margin-top:5rem;margin-bottom:5rem}.ds-my-xs-24{margin-top:6rem;margin-bottom:6rem}.ds-my-xs-28{margin-top:7rem;margin-bottom:7rem}.ds-my-xs-32{margin-top:8rem;margin-bottom:8rem}.ds-my-xs-36{margin-top:9rem;margin-bottom:9rem}.ds-my-xs-40{margin-top:10rem;margin-bottom:10rem}.ds-my-xs-44{margin-top:11rem;margin-bottom:11rem}.ds-my-xs-48{margin-top:12rem;margin-bottom:12rem}.ds-my-xs-52{margin-top:13rem;margin-bottom:13rem}.ds-my-xs-56{margin-top:14rem;margin-bottom:14rem}.ds-my-xs-60{margin-top:15rem;margin-bottom:15rem}.ds-my-xs-64{margin-top:16rem;margin-bottom:16rem}.ds-my-xs-72{margin-top:18rem;margin-bottom:18rem}.ds-my-xs-80{margin-top:20rem;margin-bottom:20rem}.ds-my-xs-96{margin-top:24rem;margin-bottom:24rem}.ds-p-0{padding:0!important}.ds-p-1{padding:.25rem!important}.ds-p-2{padding:.5rem!important}.ds-p-3{padding:.75rem!important}.ds-p-4{padding:1rem!important}.ds-p-5{padding:1.25rem!important}.ds-p-6{padding:1.5rem!important}.ds-p-7{padding:1.75rem!important}.ds-p-8{padding:2rem!important}.ds-p-9{padding:2.25rem!important}.ds-p-10{padding:2.5rem!important}.ds-p-11{padding:2.75rem!important}.ds-p-12{padding:3rem!important}.ds-p-14{padding:3.5rem!important}.ds-p-16{padding:4rem!important}.ds-p-20{padding:5rem!important}.ds-p-24{padding:6rem!important}.ds-p-28{padding:7rem!important}.ds-p-32{padding:8rem!important}.ds-p-36{padding:9rem!important}.ds-p-40{padding:10rem!important}.ds-p-44{padding:11rem!important}.ds-p-48{padding:12rem!important}.ds-p-52{padding:13rem!important}.ds-p-56{padding:14rem!important}.ds-p-60{padding:15rem!important}.ds-p-64{padding:16rem!important}.ds-p-72{padding:18rem!important}.ds-p-80{padding:20rem!important}.ds-p-96{padding:24rem!important}.ds-p-px{padding:1px!important}.ds-p-0\.5{padding:.125rem!important}.ds-p-1\.5{padding:.375rem!important}.ds-p-2\.5{padding:.625rem!important}.ds-p-3\.5{padding:.875rem!important}.ds-pt-0{padding-top:0!important}.ds-pt-1{padding-top:.25rem!important}.ds-pt-2{padding-top:.5rem!important}.ds-pt-3{padding-top:.75rem!important}.ds-pt-4{padding-top:1rem!important}.ds-pt-5{padding-top:1.25rem!important}.ds-pt-6{padding-top:1.5rem!important}.ds-pt-7{padding-top:1.75rem!important}.ds-pt-8{padding-top:2rem!important}.ds-pt-9{padding-top:2.25rem!important}.ds-pt-10{padding-top:2.5rem!important}.ds-pt-11{padding-top:2.75rem!important}.ds-pt-12{padding-top:3rem!important}.ds-pt-14{padding-top:3.5rem!important}.ds-pt-16{padding-top:4rem!important}.ds-pt-20{padding-top:5rem!important}.ds-pt-24{padding-top:6rem!important}.ds-pt-28{padding-top:7rem!important}.ds-pt-32{padding-top:8rem!important}.ds-pt-36{padding-top:9rem!important}.ds-pt-40{padding-top:10rem!important}.ds-pt-44{padding-top:11rem!important}.ds-pt-48{padding-top:12rem!important}.ds-pt-52{padding-top:13rem!important}.ds-pt-56{padding-top:14rem!important}.ds-pt-60{padding-top:15rem!important}.ds-pt-64{padding-top:16rem!important}.ds-pt-72{padding-top:18rem!important}.ds-pt-80{padding-top:20rem!important}.ds-pt-96{padding-top:24rem!important}.ds-pt-px{padding-top:1px!important}.ds-pt-0\.5{padding-top:.125rem!important}.ds-pt-1\.5{padding-top:.375rem!important}.ds-pt-2\.5{padding-top:.625rem!important}.ds-pt-3\.5{padding-top:.875rem!important}.ds-pr-0{padding-right:0!important}.ds-pr-1{padding-right:.25rem!important}.ds-pr-2{padding-right:.5rem!important}.ds-pr-3{padding-right:.75rem!important}.ds-pr-4{padding-right:1rem!important}.ds-pr-5{padding-right:1.25rem!important}.ds-pr-6{padding-right:1.5rem!important}.ds-pr-7{padding-right:1.75rem!important}.ds-pr-8{padding-right:2rem!important}.ds-pr-9{padding-right:2.25rem!important}.ds-pr-10{padding-right:2.5rem!important}.ds-pr-11{padding-right:2.75rem!important}.ds-pr-12{padding-right:3rem!important}.ds-pr-14{padding-right:3.5rem!important}.ds-pr-16{padding-right:4rem!important}.ds-pr-20{padding-right:5rem!important}.ds-pr-24{padding-right:6rem!important}.ds-pr-28{padding-right:7rem!important}.ds-pr-32{padding-right:8rem!important}.ds-pr-36{padding-right:9rem!important}.ds-pr-40{padding-right:10rem!important}.ds-pr-44{padding-right:11rem!important}.ds-pr-48{padding-right:12rem!important}.ds-pr-52{padding-right:13rem!important}.ds-pr-56{padding-right:14rem!important}.ds-pr-60{padding-right:15rem!important}.ds-pr-64{padding-right:16rem!important}.ds-pr-72{padding-right:18rem!important}.ds-pr-80{padding-right:20rem!important}.ds-pr-96{padding-right:24rem!important}.ds-pr-px{padding-right:1px!important}.ds-pr-0\.5{padding-right:.125rem!important}.ds-pr-1\.5{padding-right:.375rem!important}.ds-pr-2\.5{padding-right:.625rem!important}.ds-pr-3\.5{padding-right:.875rem!important}.ds-pl-0{padding-left:0!important}.ds-pl-1{padding-left:.25rem!important}.ds-pl-2{padding-left:.5rem!important}.ds-pl-3{padding-left:.75rem!important}.ds-pl-4{padding-left:1rem!important}.ds-pl-5{padding-left:1.25rem!important}.ds-pl-6{padding-left:1.5rem!important}.ds-pl-7{padding-left:1.75rem!important}.ds-pl-8{padding-left:2rem!important}.ds-pl-9{padding-left:2.25rem!important}.ds-pl-10{padding-left:2.5rem!important}.ds-pl-11{padding-left:2.75rem!important}.ds-pl-12{padding-left:3rem!important}.ds-pl-14{padding-left:3.5rem!important}.ds-pl-16{padding-left:4rem!important}.ds-pl-20{padding-left:5rem!important}.ds-pl-24{padding-left:6rem!important}.ds-pl-28{padding-left:7rem!important}.ds-pl-32{padding-left:8rem!important}.ds-pl-36{padding-left:9rem!important}.ds-pl-40{padding-left:10rem!important}.ds-pl-44{padding-left:11rem!important}.ds-pl-48{padding-left:12rem!important}.ds-pl-52{padding-left:13rem!important}.ds-pl-56{padding-left:14rem!important}.ds-pl-60{padding-left:15rem!important}.ds-pl-64{padding-left:16rem!important}.ds-pl-72{padding-left:18rem!important}.ds-pl-80{padding-left:20rem!important}.ds-pl-96{padding-left:24rem!important}.ds-pl-px{padding-left:1px!important}.ds-pl-0\.5{padding-left:.125rem!important}.ds-pl-1\.5{padding-left:.375rem!important}.ds-pl-2\.5{padding-left:.625rem!important}.ds-pl-3\.5{padding-left:.875rem!important}.ds-pb-0{padding-bottom:0!important}.ds-pb-1{padding-bottom:.25rem!important}.ds-pb-2{padding-bottom:.5rem!important}.ds-pb-3{padding-bottom:.75rem!important}.ds-pb-4{padding-bottom:1rem!important}.ds-pb-5{padding-bottom:1.25rem!important}.ds-pb-6{padding-bottom:1.5rem!important}.ds-pb-7{padding-bottom:1.75rem!important}.ds-pb-8{padding-bottom:2rem!important}.ds-pb-9{padding-bottom:2.25rem!important}.ds-pb-10{padding-bottom:2.5rem!important}.ds-pb-11{padding-bottom:2.75rem!important}.ds-pb-12{padding-bottom:3rem!important}.ds-pb-14{padding-bottom:3.5rem!important}.ds-pb-16{padding-bottom:4rem!important}.ds-pb-20{padding-bottom:5rem!important}.ds-pb-24{padding-bottom:6rem!important}.ds-pb-28{padding-bottom:7rem!important}.ds-pb-32{padding-bottom:8rem!important}.ds-pb-36{padding-bottom:9rem!important}.ds-pb-40{padding-bottom:10rem!important}.ds-pb-44{padding-bottom:11rem!important}.ds-pb-48{padding-bottom:12rem!important}.ds-pb-52{padding-bottom:13rem!important}.ds-pb-56{padding-bottom:14rem!important}.ds-pb-60{padding-bottom:15rem!important}.ds-pb-64{padding-bottom:16rem!important}.ds-pb-72{padding-bottom:18rem!important}.ds-pb-80{padding-bottom:20rem!important}.ds-pb-96{padding-bottom:24rem!important}.ds-pb-px{padding-bottom:1px!important}.ds-pb-0\.5{padding-bottom:.125rem!important}.ds-pb-1\.5{padding-bottom:.375rem!important}.ds-pb-2\.5{padding-bottom:.625rem!important}.ds-pb-3\.5{padding-bottom:.875rem!important}.ds-px-0{padding-left:0!important;padding-right:0!important}.ds-px-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-96{padding-left:24rem!important;padding-right:24rem!important}.ds-px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-py-0{padding-top:0!important;padding-bottom:0!important}.ds-py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-96{padding-top:24rem!important;padding-bottom:24rem!important}.ds-py-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-p-xs-0{padding:0}.ds-p-xs-0\.5{padding:.125rem}.ds-p-xs-1{padding:.25rem}.ds-p-xs-1\.5{padding:.375rem}.ds-p-xs-2{padding:.5rem}.ds-p-xs-2\.5{padding:.625rem}.ds-p-xs-3{padding:.75rem}.ds-p-xs-3\.5{padding:.875rem}.ds-p-xs-4{padding:1rem}.ds-p-xs-5{padding:1.25rem}.ds-p-xs-6{padding:1.5rem}.ds-p-xs-7{padding:1.75rem}.ds-p-xs-8{padding:2rem}.ds-p-xs-9{padding:2.25rem}.ds-p-xs-10{padding:2.5rem}.ds-p-xs-11{padding:2.75rem}.ds-p-xs-12{padding:3rem}.ds-p-xs-14{padding:3.5rem}.ds-p-xs-16{padding:4rem}.ds-p-xs-20{padding:5rem}.ds-p-xs-24{padding:6rem}.ds-p-xs-28{padding:7rem}.ds-p-xs-32{padding:8rem}.ds-p-xs-36{padding:9rem}.ds-p-xs-40{padding:10rem}.ds-p-xs-44{padding:11rem}.ds-p-xs-48{padding:12rem}.ds-p-xs-52{padding:13rem}.ds-p-xs-56{padding:14rem}.ds-p-xs-60{padding:15rem}.ds-p-xs-64{padding:16rem}.ds-p-xs-72{padding:18rem}.ds-p-xs-80{padding:20rem}.ds-p-xs-96{padding:24rem}.ds-pt-xs-0{padding-top:0}.ds-pt-xs-0\.5{padding-top:.125rem}.ds-pt-xs-1{padding-top:.25rem}.ds-pt-xs-1\.5{padding-top:.375rem}.ds-pt-xs-2{padding-top:.5rem}.ds-pt-xs-2\.5{padding-top:.625rem}.ds-pt-xs-3{padding-top:.75rem}.ds-pt-xs-3\.5{padding-top:.875rem}.ds-pt-xs-4{padding-top:1rem}.ds-pt-xs-5{padding-top:1.25rem}.ds-pt-xs-6{padding-top:1.5rem}.ds-pt-xs-7{padding-top:1.75rem}.ds-pt-xs-8{padding-top:2rem}.ds-pt-xs-9{padding-top:2.25rem}.ds-pt-xs-10{padding-top:2.5rem}.ds-pt-xs-11{padding-top:2.75rem}.ds-pt-xs-12{padding-top:3rem}.ds-pt-xs-14{padding-top:3.5rem}.ds-pt-xs-16{padding-top:4rem}.ds-pt-xs-20{padding-top:5rem}.ds-pt-xs-24{padding-top:6rem}.ds-pt-xs-28{padding-top:7rem}.ds-pt-xs-32{padding-top:8rem}.ds-pt-xs-36{padding-top:9rem}.ds-pt-xs-40{padding-top:10rem}.ds-pt-xs-44{padding-top:11rem}.ds-pt-xs-48{padding-top:12rem}.ds-pt-xs-52{padding-top:13rem}.ds-pt-xs-56{padding-top:14rem}.ds-pt-xs-60{padding-top:15rem}.ds-pt-xs-64{padding-top:16rem}.ds-pt-xs-72{padding-top:18rem}.ds-pt-xs-80{padding-top:20rem}.ds-pt-xs-96{padding-top:24rem}.ds-pr-xs-0{padding-right:0}.ds-pr-xs-0\.5{padding-right:.125rem}.ds-pr-xs-1{padding-right:.25rem}.ds-pr-xs-1\.5{padding-right:.375rem}.ds-pr-xs-2{padding-right:.5rem}.ds-pr-xs-2\.5{padding-right:.625rem}.ds-pr-xs-3{padding-right:.75rem}.ds-pr-xs-3\.5{padding-right:.875rem}.ds-pr-xs-4{padding-right:1rem}.ds-pr-xs-5{padding-right:1.25rem}.ds-pr-xs-6{padding-right:1.5rem}.ds-pr-xs-7{padding-right:1.75rem}.ds-pr-xs-8{padding-right:2rem}.ds-pr-xs-9{padding-right:2.25rem}.ds-pr-xs-10{padding-right:2.5rem}.ds-pr-xs-11{padding-right:2.75rem}.ds-pr-xs-12{padding-right:3rem}.ds-pr-xs-14{padding-right:3.5rem}.ds-pr-xs-16{padding-right:4rem}.ds-pr-xs-20{padding-right:5rem}.ds-pr-xs-24{padding-right:6rem}.ds-pr-xs-28{padding-right:7rem}.ds-pr-xs-32{padding-right:8rem}.ds-pr-xs-36{padding-right:9rem}.ds-pr-xs-40{padding-right:10rem}.ds-pr-xs-44{padding-right:11rem}.ds-pr-xs-48{padding-right:12rem}.ds-pr-xs-52{padding-right:13rem}.ds-pr-xs-56{padding-right:14rem}.ds-pr-xs-60{padding-right:15rem}.ds-pr-xs-64{padding-right:16rem}.ds-pr-xs-72{padding-right:18rem}.ds-pr-xs-80{padding-right:20rem}.ds-pr-xs-96{padding-right:24rem}.ds-pb-xs-0{padding-bottom:0}.ds-pb-xs-0\.5{padding-bottom:.125rem}.ds-pb-xs-1{padding-bottom:.25rem}.ds-pb-xs-1\.5{padding-bottom:.375rem}.ds-pb-xs-2{padding-bottom:.5rem}.ds-pb-xs-2\.5{padding-bottom:.625rem}.ds-pb-xs-3{padding-bottom:.75rem}.ds-pb-xs-3\.5{padding-bottom:.875rem}.ds-pb-xs-4{padding-bottom:1rem}.ds-pb-xs-5{padding-bottom:1.25rem}.ds-pb-xs-6{padding-bottom:1.5rem}.ds-pb-xs-7{padding-bottom:1.75rem}.ds-pb-xs-8{padding-bottom:2rem}.ds-pb-xs-9{padding-bottom:2.25rem}.ds-pb-xs-10{padding-bottom:2.5rem}.ds-pb-xs-11{padding-bottom:2.75rem}.ds-pb-xs-12{padding-bottom:3rem}.ds-pb-xs-14{padding-bottom:3.5rem}.ds-pb-xs-16{padding-bottom:4rem}.ds-pb-xs-20{padding-bottom:5rem}.ds-pb-xs-24{padding-bottom:6rem}.ds-pb-xs-28{padding-bottom:7rem}.ds-pb-xs-32{padding-bottom:8rem}.ds-pb-xs-36{padding-bottom:9rem}.ds-pb-xs-40{padding-bottom:10rem}.ds-pb-xs-44{padding-bottom:11rem}.ds-pb-xs-48{padding-bottom:12rem}.ds-pb-xs-52{padding-bottom:13rem}.ds-pb-xs-56{padding-bottom:14rem}.ds-pb-xs-60{padding-bottom:15rem}.ds-pb-xs-64{padding-bottom:16rem}.ds-pb-xs-72{padding-bottom:18rem}.ds-pb-xs-80{padding-bottom:20rem}.ds-pb-xs-96{padding-bottom:24rem}.ds-pl-xs-0{padding-left:0}.ds-pl-xs-0\.5{padding-left:.125rem}.ds-pl-xs-1{padding-left:.25rem}.ds-pl-xs-1\.5{padding-left:.375rem}.ds-pl-xs-2{padding-left:.5rem}.ds-pl-xs-2\.5{padding-left:.625rem}.ds-pl-xs-3{padding-left:.75rem}.ds-pl-xs-3\.5{padding-left:.875rem}.ds-pl-xs-4{padding-left:1rem}.ds-pl-xs-5{padding-left:1.25rem}.ds-pl-xs-6{padding-left:1.5rem}.ds-pl-xs-7{padding-left:1.75rem}.ds-pl-xs-8{padding-left:2rem}.ds-pl-xs-9{padding-left:2.25rem}.ds-pl-xs-10{padding-left:2.5rem}.ds-pl-xs-11{padding-left:2.75rem}.ds-pl-xs-12{padding-left:3rem}.ds-pl-xs-14{padding-left:3.5rem}.ds-pl-xs-16{padding-left:4rem}.ds-pl-xs-20{padding-left:5rem}.ds-pl-xs-24{padding-left:6rem}.ds-pl-xs-28{padding-left:7rem}.ds-pl-xs-32{padding-left:8rem}.ds-pl-xs-36{padding-left:9rem}.ds-pl-xs-40{padding-left:10rem}.ds-pl-xs-44{padding-left:11rem}.ds-pl-xs-48{padding-left:12rem}.ds-pl-xs-52{padding-left:13rem}.ds-pl-xs-56{padding-left:14rem}.ds-pl-xs-60{padding-left:15rem}.ds-pl-xs-64{padding-left:16rem}.ds-pl-xs-72{padding-left:18rem}.ds-pl-xs-80{padding-left:20rem}.ds-pl-xs-96{padding-left:24rem}.ds-px-xs-0{padding-left:0;padding-right:0}.ds-px-xs-0\.5{padding-left:.125rem;padding-right:.125rem}.ds-px-xs-1{padding-left:.25rem;padding-right:.25rem}.ds-px-xs-1\.5{padding-left:.375rem;padding-right:.375rem}.ds-px-xs-2{padding-left:.5rem;padding-right:.5rem}.ds-px-xs-2\.5{padding-left:.625rem;padding-right:.625rem}.ds-px-xs-3{padding-left:.75rem;padding-right:.75rem}.ds-px-xs-3\.5{padding-left:.875rem;padding-right:.875rem}.ds-px-xs-4{padding-left:1rem;padding-right:1rem}.ds-px-xs-5{padding-left:1.25rem;padding-right:1.25rem}.ds-px-xs-6{padding-left:1.5rem;padding-right:1.5rem}.ds-px-xs-7{padding-left:1.75rem;padding-right:1.75rem}.ds-px-xs-8{padding-left:2rem;padding-right:2rem}.ds-px-xs-9{padding-left:2.25rem;padding-right:2.25rem}.ds-px-xs-10{padding-left:2.5rem;padding-right:2.5rem}.ds-px-xs-11{padding-left:2.75rem;padding-right:2.75rem}.ds-px-xs-12{padding-left:3rem;padding-right:3rem}.ds-px-xs-14{padding-left:3.5rem;padding-right:3.5rem}.ds-px-xs-16{padding-left:4rem;padding-right:4rem}.ds-px-xs-20{padding-left:5rem;padding-right:5rem}.ds-px-xs-24{padding-left:6rem;padding-right:6rem}.ds-px-xs-28{padding-left:7rem;padding-right:7rem}.ds-px-xs-32{padding-left:8rem;padding-right:8rem}.ds-px-xs-36{padding-left:9rem;padding-right:9rem}.ds-px-xs-40{padding-left:10rem;padding-right:10rem}.ds-px-xs-44{padding-left:11rem;padding-right:11rem}.ds-px-xs-48{padding-left:12rem;padding-right:12rem}.ds-px-xs-52{padding-left:13rem;padding-right:13rem}.ds-px-xs-56{padding-left:14rem;padding-right:14rem}.ds-px-xs-60{padding-left:15rem;padding-right:15rem}.ds-px-xs-64{padding-left:16rem;padding-right:16rem}.ds-px-xs-72{padding-left:18rem;padding-right:18rem}.ds-px-xs-80{padding-left:20rem;padding-right:20rem}.ds-px-xs-96{padding-left:24rem;padding-right:24rem}.ds-py-xs-0{padding-top:0;padding-bottom:0}.ds-py-xs-0\.5{padding-top:.125rem;padding-bottom:.125rem}.ds-py-xs-1{padding-top:.25rem;padding-bottom:.25rem}.ds-py-xs-1\.5{padding-top:.375rem;padding-bottom:.375rem}.ds-py-xs-2{padding-top:.5rem;padding-bottom:.5rem}.ds-py-xs-2\.5{padding-top:.625rem;padding-bottom:.625rem}.ds-py-xs-3{padding-top:.75rem;padding-bottom:.75rem}.ds-py-xs-3\.5{padding-top:.875rem;padding-bottom:.875rem}.ds-py-xs-4{padding-top:1rem;padding-bottom:1rem}.ds-py-xs-5{padding-top:1.25rem;padding-bottom:1.25rem}.ds-py-xs-6{padding-top:1.5rem;padding-bottom:1.5rem}.ds-py-xs-7{padding-top:1.75rem;padding-bottom:1.75rem}.ds-py-xs-8{padding-top:2rem;padding-bottom:2rem}.ds-py-xs-9{padding-top:2.25rem;padding-bottom:2.25rem}.ds-py-xs-10{padding-top:2.5rem;padding-bottom:2.5rem}.ds-py-xs-11{padding-top:2.75rem;padding-bottom:2.75rem}.ds-py-xs-12{padding-top:3rem;padding-bottom:3rem}.ds-py-xs-14{padding-top:3.5rem;padding-bottom:3.5rem}.ds-py-xs-16{padding-top:4rem;padding-bottom:4rem}.ds-py-xs-20{padding-top:5rem;padding-bottom:5rem}.ds-py-xs-24{padding-top:6rem;padding-bottom:6rem}.ds-py-xs-28{padding-top:7rem;padding-bottom:7rem}.ds-py-xs-32{padding-top:8rem;padding-bottom:8rem}.ds-py-xs-36{padding-top:9rem;padding-bottom:9rem}.ds-py-xs-40{padding-top:10rem;padding-bottom:10rem}.ds-py-xs-44{padding-top:11rem;padding-bottom:11rem}.ds-py-xs-48{padding-top:12rem;padding-bottom:12rem}.ds-py-xs-52{padding-top:13rem;padding-bottom:13rem}.ds-py-xs-56{padding-top:14rem;padding-bottom:14rem}.ds-py-xs-60{padding-top:15rem;padding-bottom:15rem}.ds-py-xs-64{padding-top:16rem;padding-bottom:16rem}.ds-py-xs-72{padding-top:18rem;padding-bottom:18rem}.ds-py-xs-80{padding-top:20rem;padding-bottom:20rem}.ds-py-xs-96{padding-top:24rem;padding-bottom:24rem}@media (min-width:640px){.sm\:ds-grid__col-span-1{grid-column:span 1/span 1}.sm\:ds-grid__col-span-2{grid-column:span 2/span 2}.sm\:ds-grid__col-span-3{grid-column:span 3/span 3}.sm\:ds-grid__col-span-4{grid-column:span 4/span 4}.sm\:ds-grid__col-span-5{grid-column:span 5/span 5}.sm\:ds-grid__col-span-6{grid-column:span 6/span 6}.sm\:ds-grid__col-span-7{grid-column:span 7/span 7}.sm\:ds-grid__col-span-8{grid-column:span 8/span 8}.sm\:ds-grid__col-span-9{grid-column:span 9/span 9}.sm\:ds-grid__col-span-10{grid-column:span 10/span 10}.sm\:ds-grid__col-span-11{grid-column:span 11/span 11}.sm\:ds-grid__col-span-12{grid-column:span 12/span 12}.ds-gap-sm-1{gap:.25rem}.ds-gap-sm-2{gap:.5rem}.ds-gap-sm-4{gap:1rem}.ds-gap-sm-5{gap:1.25rem}.ds-gap-sm-6{gap:1.5rem}.ds-gap-sm-8{gap:2rem}.ds-gap-sm-10{gap:2.5rem}.ds-gap-sm-12{gap:3rem}.ds-m-sm-0{margin:0!important}.ds-m-sm-0\.5{margin:.125rem!important}.ds-m-sm-1{margin:.25rem!important}.ds-m-sm-1\.5{margin:.375rem!important}.ds-m-sm-2{margin:.5rem!important}.ds-m-sm-2\.5{margin:.625rem!important}.ds-m-sm-3{margin:.75rem!important}.ds-m-sm-3\.5{margin:.875rem!important}.ds-m-sm-4{margin:1rem!important}.ds-m-sm-5{margin:1.25rem!important}.ds-m-sm-6{margin:1.5rem!important}.ds-m-sm-7{margin:1.75rem!important}.ds-m-sm-8{margin:2rem!important}.ds-m-sm-9{margin:2.25rem!important}.ds-m-sm-10{margin:2.5rem!important}.ds-m-sm-11{margin:2.75rem!important}.ds-m-sm-12{margin:3rem!important}.ds-m-sm-14{margin:3.5rem!important}.ds-m-sm-16{margin:4rem!important}.ds-m-sm-20{margin:5rem!important}.ds-m-sm-24{margin:6rem!important}.ds-m-sm-28{margin:7rem!important}.ds-m-sm-32{margin:8rem!important}.ds-m-sm-36{margin:9rem!important}.ds-m-sm-40{margin:10rem!important}.ds-m-sm-44{margin:11rem!important}.ds-m-sm-48{margin:12rem!important}.ds-m-sm-52{margin:13rem!important}.ds-m-sm-56{margin:14rem!important}.ds-m-sm-60{margin:15rem!important}.ds-m-sm-64{margin:16rem!important}.ds-m-sm-72{margin:18rem!important}.ds-m-sm-80{margin:20rem!important}.ds-m-sm-96{margin:24rem!important}.ds-mt-sm-0{margin-top:0!important}.ds-mt-sm-0\.5{margin-top:.125rem!important}.ds-mt-sm-1{margin-top:.25rem!important}.ds-mt-sm-1\.5{margin-top:.375rem!important}.ds-mt-sm-2{margin-top:.5rem!important}.ds-mt-sm-2\.5{margin-top:.625rem!important}.ds-mt-sm-3{margin-top:.75rem!important}.ds-mt-sm-3\.5{margin-top:.875rem!important}.ds-mt-sm-4{margin-top:1rem!important}.ds-mt-sm-5{margin-top:1.25rem!important}.ds-mt-sm-6{margin-top:1.5rem!important}.ds-mt-sm-7{margin-top:1.75rem!important}.ds-mt-sm-8{margin-top:2rem!important}.ds-mt-sm-9{margin-top:2.25rem!important}.ds-mt-sm-10{margin-top:2.5rem!important}.ds-mt-sm-11{margin-top:2.75rem!important}.ds-mt-sm-12{margin-top:3rem!important}.ds-mt-sm-14{margin-top:3.5rem!important}.ds-mt-sm-16{margin-top:4rem!important}.ds-mt-sm-20{margin-top:5rem!important}.ds-mt-sm-24{margin-top:6rem!important}.ds-mt-sm-28{margin-top:7rem!important}.ds-mt-sm-32{margin-top:8rem!important}.ds-mt-sm-36{margin-top:9rem!important}.ds-mt-sm-40{margin-top:10rem!important}.ds-mt-sm-44{margin-top:11rem!important}.ds-mt-sm-48{margin-top:12rem!important}.ds-mt-sm-52{margin-top:13rem!important}.ds-mt-sm-56{margin-top:14rem!important}.ds-mt-sm-60{margin-top:15rem!important}.ds-mt-sm-64{margin-top:16rem!important}.ds-mt-sm-72{margin-top:18rem!important}.ds-mt-sm-80{margin-top:20rem!important}.ds-mt-sm-96{margin-top:24rem!important}.ds-mr-sm-0{margin-right:0!important}.ds-mr-sm-0\.5{margin-right:.125rem!important}.ds-mr-sm-1{margin-right:.25rem!important}.ds-mr-sm-1\.5{margin-right:.375rem!important}.ds-mr-sm-2{margin-right:.5rem!important}.ds-mr-sm-2\.5{margin-right:.625rem!important}.ds-mr-sm-3{margin-right:.75rem!important}.ds-mr-sm-3\.5{margin-right:.875rem!important}.ds-mr-sm-4{margin-right:1rem!important}.ds-mr-sm-5{margin-right:1.25rem!important}.ds-mr-sm-6{margin-right:1.5rem!important}.ds-mr-sm-7{margin-right:1.75rem!important}.ds-mr-sm-8{margin-right:2rem!important}.ds-mr-sm-9{margin-right:2.25rem!important}.ds-mr-sm-10{margin-right:2.5rem!important}.ds-mr-sm-11{margin-right:2.75rem!important}.ds-mr-sm-12{margin-right:3rem!important}.ds-mr-sm-14{margin-right:3.5rem!important}.ds-mr-sm-16{margin-right:4rem!important}.ds-mr-sm-20{margin-right:5rem!important}.ds-mr-sm-24{margin-right:6rem!important}.ds-mr-sm-28{margin-right:7rem!important}.ds-mr-sm-32{margin-right:8rem!important}.ds-mr-sm-36{margin-right:9rem!important}.ds-mr-sm-40{margin-right:10rem!important}.ds-mr-sm-44{margin-right:11rem!important}.ds-mr-sm-48{margin-right:12rem!important}.ds-mr-sm-52{margin-right:13rem!important}.ds-mr-sm-56{margin-right:14rem!important}.ds-mr-sm-60{margin-right:15rem!important}.ds-mr-sm-64{margin-right:16rem!important}.ds-mr-sm-72{margin-right:18rem!important}.ds-mr-sm-80{margin-right:20rem!important}.ds-mr-sm-96{margin-right:24rem!important}.ds-mb-sm-0{margin-bottom:0!important}.ds-mb-sm-0\.5{margin-bottom:.125rem!important}.ds-mb-sm-1{margin-bottom:.25rem!important}.ds-mb-sm-1\.5{margin-bottom:.375rem!important}.ds-mb-sm-2{margin-bottom:.5rem!important}.ds-mb-sm-2\.5{margin-bottom:.625rem!important}.ds-mb-sm-3{margin-bottom:.75rem!important}.ds-mb-sm-3\.5{margin-bottom:.875rem!important}.ds-mb-sm-4{margin-bottom:1rem!important}.ds-mb-sm-5{margin-bottom:1.25rem!important}.ds-mb-sm-6{margin-bottom:1.5rem!important}.ds-mb-sm-7{margin-bottom:1.75rem!important}.ds-mb-sm-8{margin-bottom:2rem!important}.ds-mb-sm-9{margin-bottom:2.25rem!important}.ds-mb-sm-10{margin-bottom:2.5rem!important}.ds-mb-sm-11{margin-bottom:2.75rem!important}.ds-mb-sm-12{margin-bottom:3rem!important}.ds-mb-sm-14{margin-bottom:3.5rem!important}.ds-mb-sm-16{margin-bottom:4rem!important}.ds-mb-sm-20{margin-bottom:5rem!important}.ds-mb-sm-24{margin-bottom:6rem!important}.ds-mb-sm-28{margin-bottom:7rem!important}.ds-mb-sm-32{margin-bottom:8rem!important}.ds-mb-sm-36{margin-bottom:9rem!important}.ds-mb-sm-40{margin-bottom:10rem!important}.ds-mb-sm-44{margin-bottom:11rem!important}.ds-mb-sm-48{margin-bottom:12rem!important}.ds-mb-sm-52{margin-bottom:13rem!important}.ds-mb-sm-56{margin-bottom:14rem!important}.ds-mb-sm-60{margin-bottom:15rem!important}.ds-mb-sm-64{margin-bottom:16rem!important}.ds-mb-sm-72{margin-bottom:18rem!important}.ds-mb-sm-80{margin-bottom:20rem!important}.ds-mb-sm-96{margin-bottom:24rem!important}.ds-ml-sm-0{margin-left:0!important}.ds-ml-sm-0\.5{margin-left:.125rem!important}.ds-ml-sm-1{margin-left:.25rem!important}.ds-ml-sm-1\.5{margin-left:.375rem!important}.ds-ml-sm-2{margin-left:.5rem!important}.ds-ml-sm-2\.5{margin-left:.625rem!important}.ds-ml-sm-3{margin-left:.75rem!important}.ds-ml-sm-3\.5{margin-left:.875rem!important}.ds-ml-sm-4{margin-left:1rem!important}.ds-ml-sm-5{margin-left:1.25rem!important}.ds-ml-sm-6{margin-left:1.5rem!important}.ds-ml-sm-7{margin-left:1.75rem!important}.ds-ml-sm-8{margin-left:2rem!important}.ds-ml-sm-9{margin-left:2.25rem!important}.ds-ml-sm-10{margin-left:2.5rem!important}.ds-ml-sm-11{margin-left:2.75rem!important}.ds-ml-sm-12{margin-left:3rem!important}.ds-ml-sm-14{margin-left:3.5rem!important}.ds-ml-sm-16{margin-left:4rem!important}.ds-ml-sm-20{margin-left:5rem!important}.ds-ml-sm-24{margin-left:6rem!important}.ds-ml-sm-28{margin-left:7rem!important}.ds-ml-sm-32{margin-left:8rem!important}.ds-ml-sm-36{margin-left:9rem!important}.ds-ml-sm-40{margin-left:10rem!important}.ds-ml-sm-44{margin-left:11rem!important}.ds-ml-sm-48{margin-left:12rem!important}.ds-ml-sm-52{margin-left:13rem!important}.ds-ml-sm-56{margin-left:14rem!important}.ds-ml-sm-60{margin-left:15rem!important}.ds-ml-sm-64{margin-left:16rem!important}.ds-ml-sm-72{margin-left:18rem!important}.ds-ml-sm-80{margin-left:20rem!important}.ds-ml-sm-96{margin-left:24rem!important}.ds-mx-sm-0{margin-left:0!important;margin-right:0!important}.ds-mx-sm-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-sm-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-sm-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-sm-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-sm-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mx-sm-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-sm-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-sm-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-sm-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-sm-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-sm-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-sm-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-sm-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-sm-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-sm-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-sm-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-sm-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-sm-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-sm-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-sm-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-sm-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-sm-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-sm-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-sm-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-sm-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-sm-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-sm-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-sm-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-sm-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-sm-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-sm-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-sm-0{margin-top:0!important;margin-bottom:0!important}.ds-my-sm-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-sm-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-sm-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-sm-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-sm-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-my-sm-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-sm-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-sm-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-sm-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-sm-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-sm-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-sm-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-sm-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-sm-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-sm-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-sm-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-sm-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-sm-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-sm-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-sm-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-sm-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-sm-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-sm-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-sm-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-sm-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-sm-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-sm-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-sm-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-sm-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-sm-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-sm-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-p-sm-0{padding:0!important}.ds-p-sm-0\.5{padding:.125rem!important}.ds-p-sm-1{padding:.25rem!important}.ds-p-sm-1\.5{padding:.375rem!important}.ds-p-sm-2{padding:.5rem!important}.ds-p-sm-2\.5{padding:.625rem!important}.ds-p-sm-3{padding:.75rem!important}.ds-p-sm-3\.5{padding:.875rem!important}.ds-p-sm-4{padding:1rem!important}.ds-p-sm-5{padding:1.25rem!important}.ds-p-sm-6{padding:1.5rem!important}.ds-p-sm-7{padding:1.75rem!important}.ds-p-sm-8{padding:2rem!important}.ds-p-sm-9{padding:2.25rem!important}.ds-p-sm-10{padding:2.5rem!important}.ds-p-sm-11{padding:2.75rem!important}.ds-p-sm-12{padding:3rem!important}.ds-p-sm-14{padding:3.5rem!important}.ds-p-sm-16{padding:4rem!important}.ds-p-sm-20{padding:5rem!important}.ds-p-sm-24{padding:6rem!important}.ds-p-sm-28{padding:7rem!important}.ds-p-sm-32{padding:8rem!important}.ds-p-sm-36{padding:9rem!important}.ds-p-sm-40{padding:10rem!important}.ds-p-sm-44{padding:11rem!important}.ds-p-sm-48{padding:12rem!important}.ds-p-sm-52{padding:13rem!important}.ds-p-sm-56{padding:14rem!important}.ds-p-sm-60{padding:15rem!important}.ds-p-sm-64{padding:16rem!important}.ds-p-sm-72{padding:18rem!important}.ds-p-sm-80{padding:20rem!important}.ds-p-sm-96{padding:24rem!important}.ds-pt-sm-0{padding-top:0!important}.ds-pt-sm-0\.5{padding-top:.125rem!important}.ds-pt-sm-1{padding-top:.25rem!important}.ds-pt-sm-1\.5{padding-top:.375rem!important}.ds-pt-sm-2{padding-top:.5rem!important}.ds-pt-sm-2\.5{padding-top:.625rem!important}.ds-pt-sm-3{padding-top:.75rem!important}.ds-pt-sm-3\.5{padding-top:.875rem!important}.ds-pt-sm-4{padding-top:1rem!important}.ds-pt-sm-5{padding-top:1.25rem!important}.ds-pt-sm-6{padding-top:1.5rem!important}.ds-pt-sm-7{padding-top:1.75rem!important}.ds-pt-sm-8{padding-top:2rem!important}.ds-pt-sm-9{padding-top:2.25rem!important}.ds-pt-sm-10{padding-top:2.5rem!important}.ds-pt-sm-11{padding-top:2.75rem!important}.ds-pt-sm-12{padding-top:3rem!important}.ds-pt-sm-14{padding-top:3.5rem!important}.ds-pt-sm-16{padding-top:4rem!important}.ds-pt-sm-20{padding-top:5rem!important}.ds-pt-sm-24{padding-top:6rem!important}.ds-pt-sm-28{padding-top:7rem!important}.ds-pt-sm-32{padding-top:8rem!important}.ds-pt-sm-36{padding-top:9rem!important}.ds-pt-sm-40{padding-top:10rem!important}.ds-pt-sm-44{padding-top:11rem!important}.ds-pt-sm-48{padding-top:12rem!important}.ds-pt-sm-52{padding-top:13rem!important}.ds-pt-sm-56{padding-top:14rem!important}.ds-pt-sm-60{padding-top:15rem!important}.ds-pt-sm-64{padding-top:16rem!important}.ds-pt-sm-72{padding-top:18rem!important}.ds-pt-sm-80{padding-top:20rem!important}.ds-pt-sm-96{padding-top:24rem!important}.ds-pr-sm-0{padding-right:0!important}.ds-pr-sm-0\.5{padding-right:.125rem!important}.ds-pr-sm-1{padding-right:.25rem!important}.ds-pr-sm-1\.5{padding-right:.375rem!important}.ds-pr-sm-2{padding-right:.5rem!important}.ds-pr-sm-2\.5{padding-right:.625rem!important}.ds-pr-sm-3{padding-right:.75rem!important}.ds-pr-sm-3\.5{padding-right:.875rem!important}.ds-pr-sm-4{padding-right:1rem!important}.ds-pr-sm-5{padding-right:1.25rem!important}.ds-pr-sm-6{padding-right:1.5rem!important}.ds-pr-sm-7{padding-right:1.75rem!important}.ds-pr-sm-8{padding-right:2rem!important}.ds-pr-sm-9{padding-right:2.25rem!important}.ds-pr-sm-10{padding-right:2.5rem!important}.ds-pr-sm-11{padding-right:2.75rem!important}.ds-pr-sm-12{padding-right:3rem!important}.ds-pr-sm-14{padding-right:3.5rem!important}.ds-pr-sm-16{padding-right:4rem!important}.ds-pr-sm-20{padding-right:5rem!important}.ds-pr-sm-24{padding-right:6rem!important}.ds-pr-sm-28{padding-right:7rem!important}.ds-pr-sm-32{padding-right:8rem!important}.ds-pr-sm-36{padding-right:9rem!important}.ds-pr-sm-40{padding-right:10rem!important}.ds-pr-sm-44{padding-right:11rem!important}.ds-pr-sm-48{padding-right:12rem!important}.ds-pr-sm-52{padding-right:13rem!important}.ds-pr-sm-56{padding-right:14rem!important}.ds-pr-sm-60{padding-right:15rem!important}.ds-pr-sm-64{padding-right:16rem!important}.ds-pr-sm-72{padding-right:18rem!important}.ds-pr-sm-80{padding-right:20rem!important}.ds-pr-sm-96{padding-right:24rem!important}.ds-pb-sm-0{padding-bottom:0!important}.ds-pb-sm-0\.5{padding-bottom:.125rem!important}.ds-pb-sm-1{padding-bottom:.25rem!important}.ds-pb-sm-1\.5{padding-bottom:.375rem!important}.ds-pb-sm-2{padding-bottom:.5rem!important}.ds-pb-sm-2\.5{padding-bottom:.625rem!important}.ds-pb-sm-3{padding-bottom:.75rem!important}.ds-pb-sm-3\.5{padding-bottom:.875rem!important}.ds-pb-sm-4{padding-bottom:1rem!important}.ds-pb-sm-5{padding-bottom:1.25rem!important}.ds-pb-sm-6{padding-bottom:1.5rem!important}.ds-pb-sm-7{padding-bottom:1.75rem!important}.ds-pb-sm-8{padding-bottom:2rem!important}.ds-pb-sm-9{padding-bottom:2.25rem!important}.ds-pb-sm-10{padding-bottom:2.5rem!important}.ds-pb-sm-11{padding-bottom:2.75rem!important}.ds-pb-sm-12{padding-bottom:3rem!important}.ds-pb-sm-14{padding-bottom:3.5rem!important}.ds-pb-sm-16{padding-bottom:4rem!important}.ds-pb-sm-20{padding-bottom:5rem!important}.ds-pb-sm-24{padding-bottom:6rem!important}.ds-pb-sm-28{padding-bottom:7rem!important}.ds-pb-sm-32{padding-bottom:8rem!important}.ds-pb-sm-36{padding-bottom:9rem!important}.ds-pb-sm-40{padding-bottom:10rem!important}.ds-pb-sm-44{padding-bottom:11rem!important}.ds-pb-sm-48{padding-bottom:12rem!important}.ds-pb-sm-52{padding-bottom:13rem!important}.ds-pb-sm-56{padding-bottom:14rem!important}.ds-pb-sm-60{padding-bottom:15rem!important}.ds-pb-sm-64{padding-bottom:16rem!important}.ds-pb-sm-72{padding-bottom:18rem!important}.ds-pb-sm-80{padding-bottom:20rem!important}.ds-pb-sm-96{padding-bottom:24rem!important}.ds-pl-sm-0{padding-left:0!important}.ds-pl-sm-0\.5{padding-left:.125rem!important}.ds-pl-sm-1{padding-left:.25rem!important}.ds-pl-sm-1\.5{padding-left:.375rem!important}.ds-pl-sm-2{padding-left:.5rem!important}.ds-pl-sm-2\.5{padding-left:.625rem!important}.ds-pl-sm-3{padding-left:.75rem!important}.ds-pl-sm-3\.5{padding-left:.875rem!important}.ds-pl-sm-4{padding-left:1rem!important}.ds-pl-sm-5{padding-left:1.25rem!important}.ds-pl-sm-6{padding-left:1.5rem!important}.ds-pl-sm-7{padding-left:1.75rem!important}.ds-pl-sm-8{padding-left:2rem!important}.ds-pl-sm-9{padding-left:2.25rem!important}.ds-pl-sm-10{padding-left:2.5rem!important}.ds-pl-sm-11{padding-left:2.75rem!important}.ds-pl-sm-12{padding-left:3rem!important}.ds-pl-sm-14{padding-left:3.5rem!important}.ds-pl-sm-16{padding-left:4rem!important}.ds-pl-sm-20{padding-left:5rem!important}.ds-pl-sm-24{padding-left:6rem!important}.ds-pl-sm-28{padding-left:7rem!important}.ds-pl-sm-32{padding-left:8rem!important}.ds-pl-sm-36{padding-left:9rem!important}.ds-pl-sm-40{padding-left:10rem!important}.ds-pl-sm-44{padding-left:11rem!important}.ds-pl-sm-48{padding-left:12rem!important}.ds-pl-sm-52{padding-left:13rem!important}.ds-pl-sm-56{padding-left:14rem!important}.ds-pl-sm-60{padding-left:15rem!important}.ds-pl-sm-64{padding-left:16rem!important}.ds-pl-sm-72{padding-left:18rem!important}.ds-pl-sm-80{padding-left:20rem!important}.ds-pl-sm-96{padding-left:24rem!important}.ds-px-sm-0{padding-left:0!important;padding-right:0!important}.ds-px-sm-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-sm-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-sm-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-sm-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-sm-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-px-sm-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-sm-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-sm-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-sm-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-sm-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-sm-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-sm-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-sm-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-sm-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-sm-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-sm-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-sm-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-sm-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-sm-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-sm-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-sm-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-sm-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-sm-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-sm-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-sm-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-sm-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-sm-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-sm-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-sm-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-sm-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-sm-96{padding-left:24rem!important;padding-right:24rem!important}.ds-py-sm-0{padding-top:0!important;padding-bottom:0!important}.ds-py-sm-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-sm-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-sm-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-sm-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-sm-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-py-sm-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-sm-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-sm-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-sm-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-sm-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-sm-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-sm-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-sm-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-sm-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-sm-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-sm-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-sm-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-sm-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-sm-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-sm-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-sm-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-sm-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-sm-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-sm-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-sm-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-sm-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-sm-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-sm-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-sm-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-sm-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-sm-96{padding-top:24rem!important;padding-bottom:24rem!important}}@media (min-width:768px){.md\:ds-grid__col-span-1{grid-column:span 1/span 1}.md\:ds-grid__col-span-2{grid-column:span 2/span 2}.md\:ds-grid__col-span-3{grid-column:span 3/span 3}.md\:ds-grid__col-span-4{grid-column:span 4/span 4}.md\:ds-grid__col-span-5{grid-column:span 5/span 5}.md\:ds-grid__col-span-6{grid-column:span 6/span 6}.md\:ds-grid__col-span-7{grid-column:span 7/span 7}.md\:ds-grid__col-span-8{grid-column:span 8/span 8}.md\:ds-grid__col-span-9{grid-column:span 9/span 9}.md\:ds-grid__col-span-10{grid-column:span 10/span 10}.md\:ds-grid__col-span-11{grid-column:span 11/span 11}.md\:ds-grid__col-span-12{grid-column:span 12/span 12}.ds-gap-md-1{gap:.25rem}.ds-gap-md-2{gap:.5rem}.ds-gap-md-4{gap:1rem}.ds-gap-md-5{gap:1.25rem}.ds-gap-md-6{gap:1.5rem}.ds-gap-md-8{gap:2rem}.ds-gap-md-10{gap:2.5rem}.ds-gap-md-12{gap:3rem}.ds-m-md-0{margin:0!important}.ds-m-md-0\.5{margin:.125rem!important}.ds-m-md-1{margin:.25rem!important}.ds-m-md-1\.5{margin:.375rem!important}.ds-m-md-2{margin:.5rem!important}.ds-m-md-2\.5{margin:.625rem!important}.ds-m-md-3{margin:.75rem!important}.ds-m-md-3\.5{margin:.875rem!important}.ds-m-md-4{margin:1rem!important}.ds-m-md-5{margin:1.25rem!important}.ds-m-md-6{margin:1.5rem!important}.ds-m-md-7{margin:1.75rem!important}.ds-m-md-8{margin:2rem!important}.ds-m-md-9{margin:2.25rem!important}.ds-m-md-10{margin:2.5rem!important}.ds-m-md-11{margin:2.75rem!important}.ds-m-md-12{margin:3rem!important}.ds-m-md-14{margin:3.5rem!important}.ds-m-md-16{margin:4rem!important}.ds-m-md-20{margin:5rem!important}.ds-m-md-24{margin:6rem!important}.ds-m-md-28{margin:7rem!important}.ds-m-md-32{margin:8rem!important}.ds-m-md-36{margin:9rem!important}.ds-m-md-40{margin:10rem!important}.ds-m-md-44{margin:11rem!important}.ds-m-md-48{margin:12rem!important}.ds-m-md-52{margin:13rem!important}.ds-m-md-56{margin:14rem!important}.ds-m-md-60{margin:15rem!important}.ds-m-md-64{margin:16rem!important}.ds-m-md-72{margin:18rem!important}.ds-m-md-80{margin:20rem!important}.ds-m-md-96{margin:24rem!important}.ds-mt-md-0{margin-top:0!important}.ds-mt-md-0\.5{margin-top:.125rem!important}.ds-mt-md-1{margin-top:.25rem!important}.ds-mt-md-1\.5{margin-top:.375rem!important}.ds-mt-md-2{margin-top:.5rem!important}.ds-mt-md-2\.5{margin-top:.625rem!important}.ds-mt-md-3{margin-top:.75rem!important}.ds-mt-md-3\.5{margin-top:.875rem!important}.ds-mt-md-4{margin-top:1rem!important}.ds-mt-md-5{margin-top:1.25rem!important}.ds-mt-md-6{margin-top:1.5rem!important}.ds-mt-md-7{margin-top:1.75rem!important}.ds-mt-md-8{margin-top:2rem!important}.ds-mt-md-9{margin-top:2.25rem!important}.ds-mt-md-10{margin-top:2.5rem!important}.ds-mt-md-11{margin-top:2.75rem!important}.ds-mt-md-12{margin-top:3rem!important}.ds-mt-md-14{margin-top:3.5rem!important}.ds-mt-md-16{margin-top:4rem!important}.ds-mt-md-20{margin-top:5rem!important}.ds-mt-md-24{margin-top:6rem!important}.ds-mt-md-28{margin-top:7rem!important}.ds-mt-md-32{margin-top:8rem!important}.ds-mt-md-36{margin-top:9rem!important}.ds-mt-md-40{margin-top:10rem!important}.ds-mt-md-44{margin-top:11rem!important}.ds-mt-md-48{margin-top:12rem!important}.ds-mt-md-52{margin-top:13rem!important}.ds-mt-md-56{margin-top:14rem!important}.ds-mt-md-60{margin-top:15rem!important}.ds-mt-md-64{margin-top:16rem!important}.ds-mt-md-72{margin-top:18rem!important}.ds-mt-md-80{margin-top:20rem!important}.ds-mt-md-96{margin-top:24rem!important}.ds-mr-md-0{margin-right:0!important}.ds-mr-md-0\.5{margin-right:.125rem!important}.ds-mr-md-1{margin-right:.25rem!important}.ds-mr-md-1\.5{margin-right:.375rem!important}.ds-mr-md-2{margin-right:.5rem!important}.ds-mr-md-2\.5{margin-right:.625rem!important}.ds-mr-md-3{margin-right:.75rem!important}.ds-mr-md-3\.5{margin-right:.875rem!important}.ds-mr-md-4{margin-right:1rem!important}.ds-mr-md-5{margin-right:1.25rem!important}.ds-mr-md-6{margin-right:1.5rem!important}.ds-mr-md-7{margin-right:1.75rem!important}.ds-mr-md-8{margin-right:2rem!important}.ds-mr-md-9{margin-right:2.25rem!important}.ds-mr-md-10{margin-right:2.5rem!important}.ds-mr-md-11{margin-right:2.75rem!important}.ds-mr-md-12{margin-right:3rem!important}.ds-mr-md-14{margin-right:3.5rem!important}.ds-mr-md-16{margin-right:4rem!important}.ds-mr-md-20{margin-right:5rem!important}.ds-mr-md-24{margin-right:6rem!important}.ds-mr-md-28{margin-right:7rem!important}.ds-mr-md-32{margin-right:8rem!important}.ds-mr-md-36{margin-right:9rem!important}.ds-mr-md-40{margin-right:10rem!important}.ds-mr-md-44{margin-right:11rem!important}.ds-mr-md-48{margin-right:12rem!important}.ds-mr-md-52{margin-right:13rem!important}.ds-mr-md-56{margin-right:14rem!important}.ds-mr-md-60{margin-right:15rem!important}.ds-mr-md-64{margin-right:16rem!important}.ds-mr-md-72{margin-right:18rem!important}.ds-mr-md-80{margin-right:20rem!important}.ds-mr-md-96{margin-right:24rem!important}.ds-mb-md-0{margin-bottom:0!important}.ds-mb-md-0\.5{margin-bottom:.125rem!important}.ds-mb-md-1{margin-bottom:.25rem!important}.ds-mb-md-1\.5{margin-bottom:.375rem!important}.ds-mb-md-2{margin-bottom:.5rem!important}.ds-mb-md-2\.5{margin-bottom:.625rem!important}.ds-mb-md-3{margin-bottom:.75rem!important}.ds-mb-md-3\.5{margin-bottom:.875rem!important}.ds-mb-md-4{margin-bottom:1rem!important}.ds-mb-md-5{margin-bottom:1.25rem!important}.ds-mb-md-6{margin-bottom:1.5rem!important}.ds-mb-md-7{margin-bottom:1.75rem!important}.ds-mb-md-8{margin-bottom:2rem!important}.ds-mb-md-9{margin-bottom:2.25rem!important}.ds-mb-md-10{margin-bottom:2.5rem!important}.ds-mb-md-11{margin-bottom:2.75rem!important}.ds-mb-md-12{margin-bottom:3rem!important}.ds-mb-md-14{margin-bottom:3.5rem!important}.ds-mb-md-16{margin-bottom:4rem!important}.ds-mb-md-20{margin-bottom:5rem!important}.ds-mb-md-24{margin-bottom:6rem!important}.ds-mb-md-28{margin-bottom:7rem!important}.ds-mb-md-32{margin-bottom:8rem!important}.ds-mb-md-36{margin-bottom:9rem!important}.ds-mb-md-40{margin-bottom:10rem!important}.ds-mb-md-44{margin-bottom:11rem!important}.ds-mb-md-48{margin-bottom:12rem!important}.ds-mb-md-52{margin-bottom:13rem!important}.ds-mb-md-56{margin-bottom:14rem!important}.ds-mb-md-60{margin-bottom:15rem!important}.ds-mb-md-64{margin-bottom:16rem!important}.ds-mb-md-72{margin-bottom:18rem!important}.ds-mb-md-80{margin-bottom:20rem!important}.ds-mb-md-96{margin-bottom:24rem!important}.ds-ml-md-0{margin-left:0!important}.ds-ml-md-0\.5{margin-left:.125rem!important}.ds-ml-md-1{margin-left:.25rem!important}.ds-ml-md-1\.5{margin-left:.375rem!important}.ds-ml-md-2{margin-left:.5rem!important}.ds-ml-md-2\.5{margin-left:.625rem!important}.ds-ml-md-3{margin-left:.75rem!important}.ds-ml-md-3\.5{margin-left:.875rem!important}.ds-ml-md-4{margin-left:1rem!important}.ds-ml-md-5{margin-left:1.25rem!important}.ds-ml-md-6{margin-left:1.5rem!important}.ds-ml-md-7{margin-left:1.75rem!important}.ds-ml-md-8{margin-left:2rem!important}.ds-ml-md-9{margin-left:2.25rem!important}.ds-ml-md-10{margin-left:2.5rem!important}.ds-ml-md-11{margin-left:2.75rem!important}.ds-ml-md-12{margin-left:3rem!important}.ds-ml-md-14{margin-left:3.5rem!important}.ds-ml-md-16{margin-left:4rem!important}.ds-ml-md-20{margin-left:5rem!important}.ds-ml-md-24{margin-left:6rem!important}.ds-ml-md-28{margin-left:7rem!important}.ds-ml-md-32{margin-left:8rem!important}.ds-ml-md-36{margin-left:9rem!important}.ds-ml-md-40{margin-left:10rem!important}.ds-ml-md-44{margin-left:11rem!important}.ds-ml-md-48{margin-left:12rem!important}.ds-ml-md-52{margin-left:13rem!important}.ds-ml-md-56{margin-left:14rem!important}.ds-ml-md-60{margin-left:15rem!important}.ds-ml-md-64{margin-left:16rem!important}.ds-ml-md-72{margin-left:18rem!important}.ds-ml-md-80{margin-left:20rem!important}.ds-ml-md-96{margin-left:24rem!important}.ds-mx-md-0{margin-left:0!important;margin-right:0!important}.ds-mx-md-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-md-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-md-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-md-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-md-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mx-md-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-md-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-md-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-md-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-md-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-md-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-md-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-md-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-md-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-md-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-md-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-md-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-md-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-md-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-md-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-md-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-md-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-md-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-md-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-md-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-md-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-md-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-md-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-md-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-md-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-md-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-md-0{margin-top:0!important;margin-bottom:0!important}.ds-my-md-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-md-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-md-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-md-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-md-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-my-md-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-md-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-md-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-md-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-md-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-md-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-md-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-md-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-md-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-md-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-md-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-md-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-md-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-md-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-md-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-md-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-md-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-md-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-md-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-md-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-md-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-md-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-md-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-md-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-md-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-md-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-p-md-0{padding:0!important}.ds-p-md-0\.5{padding:.125rem!important}.ds-p-md-1{padding:.25rem!important}.ds-p-md-1\.5{padding:.375rem!important}.ds-p-md-2{padding:.5rem!important}.ds-p-md-2\.5{padding:.625rem!important}.ds-p-md-3{padding:.75rem!important}.ds-p-md-3\.5{padding:.875rem!important}.ds-p-md-4{padding:1rem!important}.ds-p-md-5{padding:1.25rem!important}.ds-p-md-6{padding:1.5rem!important}.ds-p-md-7{padding:1.75rem!important}.ds-p-md-8{padding:2rem!important}.ds-p-md-9{padding:2.25rem!important}.ds-p-md-10{padding:2.5rem!important}.ds-p-md-11{padding:2.75rem!important}.ds-p-md-12{padding:3rem!important}.ds-p-md-14{padding:3.5rem!important}.ds-p-md-16{padding:4rem!important}.ds-p-md-20{padding:5rem!important}.ds-p-md-24{padding:6rem!important}.ds-p-md-28{padding:7rem!important}.ds-p-md-32{padding:8rem!important}.ds-p-md-36{padding:9rem!important}.ds-p-md-40{padding:10rem!important}.ds-p-md-44{padding:11rem!important}.ds-p-md-48{padding:12rem!important}.ds-p-md-52{padding:13rem!important}.ds-p-md-56{padding:14rem!important}.ds-p-md-60{padding:15rem!important}.ds-p-md-64{padding:16rem!important}.ds-p-md-72{padding:18rem!important}.ds-p-md-80{padding:20rem!important}.ds-p-md-96{padding:24rem!important}.ds-pt-md-0{padding-top:0!important}.ds-pt-md-0\.5{padding-top:.125rem!important}.ds-pt-md-1{padding-top:.25rem!important}.ds-pt-md-1\.5{padding-top:.375rem!important}.ds-pt-md-2{padding-top:.5rem!important}.ds-pt-md-2\.5{padding-top:.625rem!important}.ds-pt-md-3{padding-top:.75rem!important}.ds-pt-md-3\.5{padding-top:.875rem!important}.ds-pt-md-4{padding-top:1rem!important}.ds-pt-md-5{padding-top:1.25rem!important}.ds-pt-md-6{padding-top:1.5rem!important}.ds-pt-md-7{padding-top:1.75rem!important}.ds-pt-md-8{padding-top:2rem!important}.ds-pt-md-9{padding-top:2.25rem!important}.ds-pt-md-10{padding-top:2.5rem!important}.ds-pt-md-11{padding-top:2.75rem!important}.ds-pt-md-12{padding-top:3rem!important}.ds-pt-md-14{padding-top:3.5rem!important}.ds-pt-md-16{padding-top:4rem!important}.ds-pt-md-20{padding-top:5rem!important}.ds-pt-md-24{padding-top:6rem!important}.ds-pt-md-28{padding-top:7rem!important}.ds-pt-md-32{padding-top:8rem!important}.ds-pt-md-36{padding-top:9rem!important}.ds-pt-md-40{padding-top:10rem!important}.ds-pt-md-44{padding-top:11rem!important}.ds-pt-md-48{padding-top:12rem!important}.ds-pt-md-52{padding-top:13rem!important}.ds-pt-md-56{padding-top:14rem!important}.ds-pt-md-60{padding-top:15rem!important}.ds-pt-md-64{padding-top:16rem!important}.ds-pt-md-72{padding-top:18rem!important}.ds-pt-md-80{padding-top:20rem!important}.ds-pt-md-96{padding-top:24rem!important}.ds-pr-md-0{padding-right:0!important}.ds-pr-md-0\.5{padding-right:.125rem!important}.ds-pr-md-1{padding-right:.25rem!important}.ds-pr-md-1\.5{padding-right:.375rem!important}.ds-pr-md-2{padding-right:.5rem!important}.ds-pr-md-2\.5{padding-right:.625rem!important}.ds-pr-md-3{padding-right:.75rem!important}.ds-pr-md-3\.5{padding-right:.875rem!important}.ds-pr-md-4{padding-right:1rem!important}.ds-pr-md-5{padding-right:1.25rem!important}.ds-pr-md-6{padding-right:1.5rem!important}.ds-pr-md-7{padding-right:1.75rem!important}.ds-pr-md-8{padding-right:2rem!important}.ds-pr-md-9{padding-right:2.25rem!important}.ds-pr-md-10{padding-right:2.5rem!important}.ds-pr-md-11{padding-right:2.75rem!important}.ds-pr-md-12{padding-right:3rem!important}.ds-pr-md-14{padding-right:3.5rem!important}.ds-pr-md-16{padding-right:4rem!important}.ds-pr-md-20{padding-right:5rem!important}.ds-pr-md-24{padding-right:6rem!important}.ds-pr-md-28{padding-right:7rem!important}.ds-pr-md-32{padding-right:8rem!important}.ds-pr-md-36{padding-right:9rem!important}.ds-pr-md-40{padding-right:10rem!important}.ds-pr-md-44{padding-right:11rem!important}.ds-pr-md-48{padding-right:12rem!important}.ds-pr-md-52{padding-right:13rem!important}.ds-pr-md-56{padding-right:14rem!important}.ds-pr-md-60{padding-right:15rem!important}.ds-pr-md-64{padding-right:16rem!important}.ds-pr-md-72{padding-right:18rem!important}.ds-pr-md-80{padding-right:20rem!important}.ds-pr-md-96{padding-right:24rem!important}.ds-pb-md-0{padding-bottom:0!important}.ds-pb-md-0\.5{padding-bottom:.125rem!important}.ds-pb-md-1{padding-bottom:.25rem!important}.ds-pb-md-1\.5{padding-bottom:.375rem!important}.ds-pb-md-2{padding-bottom:.5rem!important}.ds-pb-md-2\.5{padding-bottom:.625rem!important}.ds-pb-md-3{padding-bottom:.75rem!important}.ds-pb-md-3\.5{padding-bottom:.875rem!important}.ds-pb-md-4{padding-bottom:1rem!important}.ds-pb-md-5{padding-bottom:1.25rem!important}.ds-pb-md-6{padding-bottom:1.5rem!important}.ds-pb-md-7{padding-bottom:1.75rem!important}.ds-pb-md-8{padding-bottom:2rem!important}.ds-pb-md-9{padding-bottom:2.25rem!important}.ds-pb-md-10{padding-bottom:2.5rem!important}.ds-pb-md-11{padding-bottom:2.75rem!important}.ds-pb-md-12{padding-bottom:3rem!important}.ds-pb-md-14{padding-bottom:3.5rem!important}.ds-pb-md-16{padding-bottom:4rem!important}.ds-pb-md-20{padding-bottom:5rem!important}.ds-pb-md-24{padding-bottom:6rem!important}.ds-pb-md-28{padding-bottom:7rem!important}.ds-pb-md-32{padding-bottom:8rem!important}.ds-pb-md-36{padding-bottom:9rem!important}.ds-pb-md-40{padding-bottom:10rem!important}.ds-pb-md-44{padding-bottom:11rem!important}.ds-pb-md-48{padding-bottom:12rem!important}.ds-pb-md-52{padding-bottom:13rem!important}.ds-pb-md-56{padding-bottom:14rem!important}.ds-pb-md-60{padding-bottom:15rem!important}.ds-pb-md-64{padding-bottom:16rem!important}.ds-pb-md-72{padding-bottom:18rem!important}.ds-pb-md-80{padding-bottom:20rem!important}.ds-pb-md-96{padding-bottom:24rem!important}.ds-pl-md-0{padding-left:0!important}.ds-pl-md-0\.5{padding-left:.125rem!important}.ds-pl-md-1{padding-left:.25rem!important}.ds-pl-md-1\.5{padding-left:.375rem!important}.ds-pl-md-2{padding-left:.5rem!important}.ds-pl-md-2\.5{padding-left:.625rem!important}.ds-pl-md-3{padding-left:.75rem!important}.ds-pl-md-3\.5{padding-left:.875rem!important}.ds-pl-md-4{padding-left:1rem!important}.ds-pl-md-5{padding-left:1.25rem!important}.ds-pl-md-6{padding-left:1.5rem!important}.ds-pl-md-7{padding-left:1.75rem!important}.ds-pl-md-8{padding-left:2rem!important}.ds-pl-md-9{padding-left:2.25rem!important}.ds-pl-md-10{padding-left:2.5rem!important}.ds-pl-md-11{padding-left:2.75rem!important}.ds-pl-md-12{padding-left:3rem!important}.ds-pl-md-14{padding-left:3.5rem!important}.ds-pl-md-16{padding-left:4rem!important}.ds-pl-md-20{padding-left:5rem!important}.ds-pl-md-24{padding-left:6rem!important}.ds-pl-md-28{padding-left:7rem!important}.ds-pl-md-32{padding-left:8rem!important}.ds-pl-md-36{padding-left:9rem!important}.ds-pl-md-40{padding-left:10rem!important}.ds-pl-md-44{padding-left:11rem!important}.ds-pl-md-48{padding-left:12rem!important}.ds-pl-md-52{padding-left:13rem!important}.ds-pl-md-56{padding-left:14rem!important}.ds-pl-md-60{padding-left:15rem!important}.ds-pl-md-64{padding-left:16rem!important}.ds-pl-md-72{padding-left:18rem!important}.ds-pl-md-80{padding-left:20rem!important}.ds-pl-md-96{padding-left:24rem!important}.ds-px-md-0{padding-left:0!important;padding-right:0!important}.ds-px-md-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-md-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-md-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-md-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-md-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-px-md-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-md-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-md-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-md-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-md-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-md-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-md-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-md-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-md-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-md-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-md-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-md-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-md-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-md-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-md-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-md-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-md-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-md-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-md-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-md-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-md-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-md-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-md-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-md-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-md-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-md-96{padding-left:24rem!important;padding-right:24rem!important}.ds-py-md-0{padding-top:0!important;padding-bottom:0!important}.ds-py-md-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-md-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-md-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-md-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-md-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-py-md-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-md-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-md-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-md-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-md-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-md-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-md-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-md-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-md-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-md-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-md-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-md-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-md-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-md-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-md-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-md-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-md-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-md-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-md-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-md-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-md-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-md-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-md-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-md-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-md-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-md-96{padding-top:24rem!important;padding-bottom:24rem!important}}@media (min-width:1024px){.lg\:ds-grid__col-span-1{grid-column:span 1/span 1}.lg\:ds-grid__col-span-2{grid-column:span 2/span 2}.lg\:ds-grid__col-span-3{grid-column:span 3/span 3}.lg\:ds-grid__col-span-4{grid-column:span 4/span 4}.lg\:ds-grid__col-span-5{grid-column:span 5/span 5}.lg\:ds-grid__col-span-6{grid-column:span 6/span 6}.lg\:ds-grid__col-span-7{grid-column:span 7/span 7}.lg\:ds-grid__col-span-8{grid-column:span 8/span 8}.lg\:ds-grid__col-span-9{grid-column:span 9/span 9}.lg\:ds-grid__col-span-10{grid-column:span 10/span 10}.lg\:ds-grid__col-span-11{grid-column:span 11/span 11}.lg\:ds-grid__col-span-12{grid-column:span 12/span 12}.ds-gap-lg-1{gap:.25rem}.ds-gap-lg-2{gap:.5rem}.ds-gap-lg-4{gap:1rem}.ds-gap-lg-5{gap:1.25rem}.ds-gap-lg-6{gap:1.5rem}.ds-gap-lg-8{gap:2rem}.ds-gap-lg-10{gap:2.5rem}.ds-gap-lg-12{gap:3rem}.ds-m-lg-0{margin:0!important}.ds-m-lg-0\.5{margin:.125rem!important}.ds-m-lg-1{margin:.25rem!important}.ds-m-lg-1\.5{margin:.375rem!important}.ds-m-lg-2{margin:.5rem!important}.ds-m-lg-2\.5{margin:.625rem!important}.ds-m-lg-3{margin:.75rem!important}.ds-m-lg-3\.5{margin:.875rem!important}.ds-m-lg-4{margin:1rem!important}.ds-m-lg-5{margin:1.25rem!important}.ds-m-lg-6{margin:1.5rem!important}.ds-m-lg-7{margin:1.75rem!important}.ds-m-lg-8{margin:2rem!important}.ds-m-lg-9{margin:2.25rem!important}.ds-m-lg-10{margin:2.5rem!important}.ds-m-lg-11{margin:2.75rem!important}.ds-m-lg-12{margin:3rem!important}.ds-m-lg-14{margin:3.5rem!important}.ds-m-lg-16{margin:4rem!important}.ds-m-lg-20{margin:5rem!important}.ds-m-lg-24{margin:6rem!important}.ds-m-lg-28{margin:7rem!important}.ds-m-lg-32{margin:8rem!important}.ds-m-lg-36{margin:9rem!important}.ds-m-lg-40{margin:10rem!important}.ds-m-lg-44{margin:11rem!important}.ds-m-lg-48{margin:12rem!important}.ds-m-lg-52{margin:13rem!important}.ds-m-lg-56{margin:14rem!important}.ds-m-lg-60{margin:15rem!important}.ds-m-lg-64{margin:16rem!important}.ds-m-lg-72{margin:18rem!important}.ds-m-lg-80{margin:20rem!important}.ds-m-lg-96{margin:24rem!important}.ds-mt-lg-0{margin-top:0!important}.ds-mt-lg-0\.5{margin-top:.125rem!important}.ds-mt-lg-1{margin-top:.25rem!important}.ds-mt-lg-1\.5{margin-top:.375rem!important}.ds-mt-lg-2{margin-top:.5rem!important}.ds-mt-lg-2\.5{margin-top:.625rem!important}.ds-mt-lg-3{margin-top:.75rem!important}.ds-mt-lg-3\.5{margin-top:.875rem!important}.ds-mt-lg-4{margin-top:1rem!important}.ds-mt-lg-5{margin-top:1.25rem!important}.ds-mt-lg-6{margin-top:1.5rem!important}.ds-mt-lg-7{margin-top:1.75rem!important}.ds-mt-lg-8{margin-top:2rem!important}.ds-mt-lg-9{margin-top:2.25rem!important}.ds-mt-lg-10{margin-top:2.5rem!important}.ds-mt-lg-11{margin-top:2.75rem!important}.ds-mt-lg-12{margin-top:3rem!important}.ds-mt-lg-14{margin-top:3.5rem!important}.ds-mt-lg-16{margin-top:4rem!important}.ds-mt-lg-20{margin-top:5rem!important}.ds-mt-lg-24{margin-top:6rem!important}.ds-mt-lg-28{margin-top:7rem!important}.ds-mt-lg-32{margin-top:8rem!important}.ds-mt-lg-36{margin-top:9rem!important}.ds-mt-lg-40{margin-top:10rem!important}.ds-mt-lg-44{margin-top:11rem!important}.ds-mt-lg-48{margin-top:12rem!important}.ds-mt-lg-52{margin-top:13rem!important}.ds-mt-lg-56{margin-top:14rem!important}.ds-mt-lg-60{margin-top:15rem!important}.ds-mt-lg-64{margin-top:16rem!important}.ds-mt-lg-72{margin-top:18rem!important}.ds-mt-lg-80{margin-top:20rem!important}.ds-mt-lg-96{margin-top:24rem!important}.ds-mr-lg-0{margin-right:0!important}.ds-mr-lg-0\.5{margin-right:.125rem!important}.ds-mr-lg-1{margin-right:.25rem!important}.ds-mr-lg-1\.5{margin-right:.375rem!important}.ds-mr-lg-2{margin-right:.5rem!important}.ds-mr-lg-2\.5{margin-right:.625rem!important}.ds-mr-lg-3{margin-right:.75rem!important}.ds-mr-lg-3\.5{margin-right:.875rem!important}.ds-mr-lg-4{margin-right:1rem!important}.ds-mr-lg-5{margin-right:1.25rem!important}.ds-mr-lg-6{margin-right:1.5rem!important}.ds-mr-lg-7{margin-right:1.75rem!important}.ds-mr-lg-8{margin-right:2rem!important}.ds-mr-lg-9{margin-right:2.25rem!important}.ds-mr-lg-10{margin-right:2.5rem!important}.ds-mr-lg-11{margin-right:2.75rem!important}.ds-mr-lg-12{margin-right:3rem!important}.ds-mr-lg-14{margin-right:3.5rem!important}.ds-mr-lg-16{margin-right:4rem!important}.ds-mr-lg-20{margin-right:5rem!important}.ds-mr-lg-24{margin-right:6rem!important}.ds-mr-lg-28{margin-right:7rem!important}.ds-mr-lg-32{margin-right:8rem!important}.ds-mr-lg-36{margin-right:9rem!important}.ds-mr-lg-40{margin-right:10rem!important}.ds-mr-lg-44{margin-right:11rem!important}.ds-mr-lg-48{margin-right:12rem!important}.ds-mr-lg-52{margin-right:13rem!important}.ds-mr-lg-56{margin-right:14rem!important}.ds-mr-lg-60{margin-right:15rem!important}.ds-mr-lg-64{margin-right:16rem!important}.ds-mr-lg-72{margin-right:18rem!important}.ds-mr-lg-80{margin-right:20rem!important}.ds-mr-lg-96{margin-right:24rem!important}.ds-mb-lg-0{margin-bottom:0!important}.ds-mb-lg-0\.5{margin-bottom:.125rem!important}.ds-mb-lg-1{margin-bottom:.25rem!important}.ds-mb-lg-1\.5{margin-bottom:.375rem!important}.ds-mb-lg-2{margin-bottom:.5rem!important}.ds-mb-lg-2\.5{margin-bottom:.625rem!important}.ds-mb-lg-3{margin-bottom:.75rem!important}.ds-mb-lg-3\.5{margin-bottom:.875rem!important}.ds-mb-lg-4{margin-bottom:1rem!important}.ds-mb-lg-5{margin-bottom:1.25rem!important}.ds-mb-lg-6{margin-bottom:1.5rem!important}.ds-mb-lg-7{margin-bottom:1.75rem!important}.ds-mb-lg-8{margin-bottom:2rem!important}.ds-mb-lg-9{margin-bottom:2.25rem!important}.ds-mb-lg-10{margin-bottom:2.5rem!important}.ds-mb-lg-11{margin-bottom:2.75rem!important}.ds-mb-lg-12{margin-bottom:3rem!important}.ds-mb-lg-14{margin-bottom:3.5rem!important}.ds-mb-lg-16{margin-bottom:4rem!important}.ds-mb-lg-20{margin-bottom:5rem!important}.ds-mb-lg-24{margin-bottom:6rem!important}.ds-mb-lg-28{margin-bottom:7rem!important}.ds-mb-lg-32{margin-bottom:8rem!important}.ds-mb-lg-36{margin-bottom:9rem!important}.ds-mb-lg-40{margin-bottom:10rem!important}.ds-mb-lg-44{margin-bottom:11rem!important}.ds-mb-lg-48{margin-bottom:12rem!important}.ds-mb-lg-52{margin-bottom:13rem!important}.ds-mb-lg-56{margin-bottom:14rem!important}.ds-mb-lg-60{margin-bottom:15rem!important}.ds-mb-lg-64{margin-bottom:16rem!important}.ds-mb-lg-72{margin-bottom:18rem!important}.ds-mb-lg-80{margin-bottom:20rem!important}.ds-mb-lg-96{margin-bottom:24rem!important}.ds-ml-lg-0{margin-left:0!important}.ds-ml-lg-0\.5{margin-left:.125rem!important}.ds-ml-lg-1{margin-left:.25rem!important}.ds-ml-lg-1\.5{margin-left:.375rem!important}.ds-ml-lg-2{margin-left:.5rem!important}.ds-ml-lg-2\.5{margin-left:.625rem!important}.ds-ml-lg-3{margin-left:.75rem!important}.ds-ml-lg-3\.5{margin-left:.875rem!important}.ds-ml-lg-4{margin-left:1rem!important}.ds-ml-lg-5{margin-left:1.25rem!important}.ds-ml-lg-6{margin-left:1.5rem!important}.ds-ml-lg-7{margin-left:1.75rem!important}.ds-ml-lg-8{margin-left:2rem!important}.ds-ml-lg-9{margin-left:2.25rem!important}.ds-ml-lg-10{margin-left:2.5rem!important}.ds-ml-lg-11{margin-left:2.75rem!important}.ds-ml-lg-12{margin-left:3rem!important}.ds-ml-lg-14{margin-left:3.5rem!important}.ds-ml-lg-16{margin-left:4rem!important}.ds-ml-lg-20{margin-left:5rem!important}.ds-ml-lg-24{margin-left:6rem!important}.ds-ml-lg-28{margin-left:7rem!important}.ds-ml-lg-32{margin-left:8rem!important}.ds-ml-lg-36{margin-left:9rem!important}.ds-ml-lg-40{margin-left:10rem!important}.ds-ml-lg-44{margin-left:11rem!important}.ds-ml-lg-48{margin-left:12rem!important}.ds-ml-lg-52{margin-left:13rem!important}.ds-ml-lg-56{margin-left:14rem!important}.ds-ml-lg-60{margin-left:15rem!important}.ds-ml-lg-64{margin-left:16rem!important}.ds-ml-lg-72{margin-left:18rem!important}.ds-ml-lg-80{margin-left:20rem!important}.ds-ml-lg-96{margin-left:24rem!important}.ds-mx-lg-0{margin-left:0!important;margin-right:0!important}.ds-mx-lg-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-lg-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-lg-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-lg-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-lg-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mx-lg-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-lg-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-lg-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-lg-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-lg-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-lg-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-lg-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-lg-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-lg-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-lg-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-lg-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-lg-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-lg-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-lg-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-lg-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-lg-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-lg-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-lg-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-lg-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-lg-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-lg-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-lg-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-lg-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-lg-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-lg-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-lg-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-lg-0{margin-top:0!important;margin-bottom:0!important}.ds-my-lg-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-lg-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-lg-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-lg-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-lg-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-my-lg-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-lg-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-lg-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-lg-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-lg-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-lg-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-lg-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-lg-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-lg-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-lg-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-lg-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-lg-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-lg-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-lg-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-lg-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-lg-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-lg-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-lg-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-lg-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-lg-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-lg-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-lg-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-lg-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-lg-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-lg-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-lg-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-p-lg-0{padding:0!important}.ds-p-lg-0\.5{padding:.125rem!important}.ds-p-lg-1{padding:.25rem!important}.ds-p-lg-1\.5{padding:.375rem!important}.ds-p-lg-2{padding:.5rem!important}.ds-p-lg-2\.5{padding:.625rem!important}.ds-p-lg-3{padding:.75rem!important}.ds-p-lg-3\.5{padding:.875rem!important}.ds-p-lg-4{padding:1rem!important}.ds-p-lg-5{padding:1.25rem!important}.ds-p-lg-6{padding:1.5rem!important}.ds-p-lg-7{padding:1.75rem!important}.ds-p-lg-8{padding:2rem!important}.ds-p-lg-9{padding:2.25rem!important}.ds-p-lg-10{padding:2.5rem!important}.ds-p-lg-11{padding:2.75rem!important}.ds-p-lg-12{padding:3rem!important}.ds-p-lg-14{padding:3.5rem!important}.ds-p-lg-16{padding:4rem!important}.ds-p-lg-20{padding:5rem!important}.ds-p-lg-24{padding:6rem!important}.ds-p-lg-28{padding:7rem!important}.ds-p-lg-32{padding:8rem!important}.ds-p-lg-36{padding:9rem!important}.ds-p-lg-40{padding:10rem!important}.ds-p-lg-44{padding:11rem!important}.ds-p-lg-48{padding:12rem!important}.ds-p-lg-52{padding:13rem!important}.ds-p-lg-56{padding:14rem!important}.ds-p-lg-60{padding:15rem!important}.ds-p-lg-64{padding:16rem!important}.ds-p-lg-72{padding:18rem!important}.ds-p-lg-80{padding:20rem!important}.ds-p-lg-96{padding:24rem!important}.ds-pt-lg-0{padding-top:0!important}.ds-pt-lg-0\.5{padding-top:.125rem!important}.ds-pt-lg-1{padding-top:.25rem!important}.ds-pt-lg-1\.5{padding-top:.375rem!important}.ds-pt-lg-2{padding-top:.5rem!important}.ds-pt-lg-2\.5{padding-top:.625rem!important}.ds-pt-lg-3{padding-top:.75rem!important}.ds-pt-lg-3\.5{padding-top:.875rem!important}.ds-pt-lg-4{padding-top:1rem!important}.ds-pt-lg-5{padding-top:1.25rem!important}.ds-pt-lg-6{padding-top:1.5rem!important}.ds-pt-lg-7{padding-top:1.75rem!important}.ds-pt-lg-8{padding-top:2rem!important}.ds-pt-lg-9{padding-top:2.25rem!important}.ds-pt-lg-10{padding-top:2.5rem!important}.ds-pt-lg-11{padding-top:2.75rem!important}.ds-pt-lg-12{padding-top:3rem!important}.ds-pt-lg-14{padding-top:3.5rem!important}.ds-pt-lg-16{padding-top:4rem!important}.ds-pt-lg-20{padding-top:5rem!important}.ds-pt-lg-24{padding-top:6rem!important}.ds-pt-lg-28{padding-top:7rem!important}.ds-pt-lg-32{padding-top:8rem!important}.ds-pt-lg-36{padding-top:9rem!important}.ds-pt-lg-40{padding-top:10rem!important}.ds-pt-lg-44{padding-top:11rem!important}.ds-pt-lg-48{padding-top:12rem!important}.ds-pt-lg-52{padding-top:13rem!important}.ds-pt-lg-56{padding-top:14rem!important}.ds-pt-lg-60{padding-top:15rem!important}.ds-pt-lg-64{padding-top:16rem!important}.ds-pt-lg-72{padding-top:18rem!important}.ds-pt-lg-80{padding-top:20rem!important}.ds-pt-lg-96{padding-top:24rem!important}.ds-pr-lg-0{padding-right:0!important}.ds-pr-lg-0\.5{padding-right:.125rem!important}.ds-pr-lg-1{padding-right:.25rem!important}.ds-pr-lg-1\.5{padding-right:.375rem!important}.ds-pr-lg-2{padding-right:.5rem!important}.ds-pr-lg-2\.5{padding-right:.625rem!important}.ds-pr-lg-3{padding-right:.75rem!important}.ds-pr-lg-3\.5{padding-right:.875rem!important}.ds-pr-lg-4{padding-right:1rem!important}.ds-pr-lg-5{padding-right:1.25rem!important}.ds-pr-lg-6{padding-right:1.5rem!important}.ds-pr-lg-7{padding-right:1.75rem!important}.ds-pr-lg-8{padding-right:2rem!important}.ds-pr-lg-9{padding-right:2.25rem!important}.ds-pr-lg-10{padding-right:2.5rem!important}.ds-pr-lg-11{padding-right:2.75rem!important}.ds-pr-lg-12{padding-right:3rem!important}.ds-pr-lg-14{padding-right:3.5rem!important}.ds-pr-lg-16{padding-right:4rem!important}.ds-pr-lg-20{padding-right:5rem!important}.ds-pr-lg-24{padding-right:6rem!important}.ds-pr-lg-28{padding-right:7rem!important}.ds-pr-lg-32{padding-right:8rem!important}.ds-pr-lg-36{padding-right:9rem!important}.ds-pr-lg-40{padding-right:10rem!important}.ds-pr-lg-44{padding-right:11rem!important}.ds-pr-lg-48{padding-right:12rem!important}.ds-pr-lg-52{padding-right:13rem!important}.ds-pr-lg-56{padding-right:14rem!important}.ds-pr-lg-60{padding-right:15rem!important}.ds-pr-lg-64{padding-right:16rem!important}.ds-pr-lg-72{padding-right:18rem!important}.ds-pr-lg-80{padding-right:20rem!important}.ds-pr-lg-96{padding-right:24rem!important}.ds-pb-lg-0{padding-bottom:0!important}.ds-pb-lg-0\.5{padding-bottom:.125rem!important}.ds-pb-lg-1{padding-bottom:.25rem!important}.ds-pb-lg-1\.5{padding-bottom:.375rem!important}.ds-pb-lg-2{padding-bottom:.5rem!important}.ds-pb-lg-2\.5{padding-bottom:.625rem!important}.ds-pb-lg-3{padding-bottom:.75rem!important}.ds-pb-lg-3\.5{padding-bottom:.875rem!important}.ds-pb-lg-4{padding-bottom:1rem!important}.ds-pb-lg-5{padding-bottom:1.25rem!important}.ds-pb-lg-6{padding-bottom:1.5rem!important}.ds-pb-lg-7{padding-bottom:1.75rem!important}.ds-pb-lg-8{padding-bottom:2rem!important}.ds-pb-lg-9{padding-bottom:2.25rem!important}.ds-pb-lg-10{padding-bottom:2.5rem!important}.ds-pb-lg-11{padding-bottom:2.75rem!important}.ds-pb-lg-12{padding-bottom:3rem!important}.ds-pb-lg-14{padding-bottom:3.5rem!important}.ds-pb-lg-16{padding-bottom:4rem!important}.ds-pb-lg-20{padding-bottom:5rem!important}.ds-pb-lg-24{padding-bottom:6rem!important}.ds-pb-lg-28{padding-bottom:7rem!important}.ds-pb-lg-32{padding-bottom:8rem!important}.ds-pb-lg-36{padding-bottom:9rem!important}.ds-pb-lg-40{padding-bottom:10rem!important}.ds-pb-lg-44{padding-bottom:11rem!important}.ds-pb-lg-48{padding-bottom:12rem!important}.ds-pb-lg-52{padding-bottom:13rem!important}.ds-pb-lg-56{padding-bottom:14rem!important}.ds-pb-lg-60{padding-bottom:15rem!important}.ds-pb-lg-64{padding-bottom:16rem!important}.ds-pb-lg-72{padding-bottom:18rem!important}.ds-pb-lg-80{padding-bottom:20rem!important}.ds-pb-lg-96{padding-bottom:24rem!important}.ds-pl-lg-0{padding-left:0!important}.ds-pl-lg-0\.5{padding-left:.125rem!important}.ds-pl-lg-1{padding-left:.25rem!important}.ds-pl-lg-1\.5{padding-left:.375rem!important}.ds-pl-lg-2{padding-left:.5rem!important}.ds-pl-lg-2\.5{padding-left:.625rem!important}.ds-pl-lg-3{padding-left:.75rem!important}.ds-pl-lg-3\.5{padding-left:.875rem!important}.ds-pl-lg-4{padding-left:1rem!important}.ds-pl-lg-5{padding-left:1.25rem!important}.ds-pl-lg-6{padding-left:1.5rem!important}.ds-pl-lg-7{padding-left:1.75rem!important}.ds-pl-lg-8{padding-left:2rem!important}.ds-pl-lg-9{padding-left:2.25rem!important}.ds-pl-lg-10{padding-left:2.5rem!important}.ds-pl-lg-11{padding-left:2.75rem!important}.ds-pl-lg-12{padding-left:3rem!important}.ds-pl-lg-14{padding-left:3.5rem!important}.ds-pl-lg-16{padding-left:4rem!important}.ds-pl-lg-20{padding-left:5rem!important}.ds-pl-lg-24{padding-left:6rem!important}.ds-pl-lg-28{padding-left:7rem!important}.ds-pl-lg-32{padding-left:8rem!important}.ds-pl-lg-36{padding-left:9rem!important}.ds-pl-lg-40{padding-left:10rem!important}.ds-pl-lg-44{padding-left:11rem!important}.ds-pl-lg-48{padding-left:12rem!important}.ds-pl-lg-52{padding-left:13rem!important}.ds-pl-lg-56{padding-left:14rem!important}.ds-pl-lg-60{padding-left:15rem!important}.ds-pl-lg-64{padding-left:16rem!important}.ds-pl-lg-72{padding-left:18rem!important}.ds-pl-lg-80{padding-left:20rem!important}.ds-pl-lg-96{padding-left:24rem!important}.ds-px-lg-0{padding-left:0!important;padding-right:0!important}.ds-px-lg-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-lg-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-lg-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-lg-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-lg-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-px-lg-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-lg-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-lg-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-lg-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-lg-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-lg-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-lg-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-lg-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-lg-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-lg-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-lg-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-lg-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-lg-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-lg-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-lg-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-lg-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-lg-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-lg-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-lg-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-lg-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-lg-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-lg-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-lg-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-lg-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-lg-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-lg-96{padding-left:24rem!important;padding-right:24rem!important}.ds-py-lg-0{padding-top:0!important;padding-bottom:0!important}.ds-py-lg-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-lg-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-lg-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-lg-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-lg-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-py-lg-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-lg-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-lg-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-lg-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-lg-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-lg-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-lg-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-lg-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-lg-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-lg-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-lg-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-lg-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-lg-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-lg-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-lg-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-lg-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-lg-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-lg-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-lg-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-lg-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-lg-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-lg-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-lg-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-lg-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-lg-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-lg-96{padding-top:24rem!important;padding-bottom:24rem!important}}@media (min-width:1280px){.ds-gap-xl-1{gap:.25rem}.ds-gap-xl-2{gap:.5rem}.ds-gap-xl-4{gap:1rem}.ds-gap-xl-5{gap:1.25rem}.ds-gap-xl-6{gap:1.5rem}.ds-gap-xl-8{gap:2rem}.ds-gap-xl-10{gap:2.5rem}.ds-gap-xl-12{gap:3rem}.ds-m-xl-0{margin:0!important}.ds-m-xl-0\.5{margin:.125rem!important}.ds-m-xl-1{margin:.25rem!important}.ds-m-xl-1\.5{margin:.375rem!important}.ds-m-xl-2{margin:.5rem!important}.ds-m-xl-2\.5{margin:.625rem!important}.ds-m-xl-3{margin:.75rem!important}.ds-m-xl-3\.5{margin:.875rem!important}.ds-m-xl-4{margin:1rem!important}.ds-m-xl-5{margin:1.25rem!important}.ds-m-xl-6{margin:1.5rem!important}.ds-m-xl-7{margin:1.75rem!important}.ds-m-xl-8{margin:2rem!important}.ds-m-xl-9{margin:2.25rem!important}.ds-m-xl-10{margin:2.5rem!important}.ds-m-xl-11{margin:2.75rem!important}.ds-m-xl-12{margin:3rem!important}.ds-m-xl-14{margin:3.5rem!important}.ds-m-xl-16{margin:4rem!important}.ds-m-xl-20{margin:5rem!important}.ds-m-xl-24{margin:6rem!important}.ds-m-xl-28{margin:7rem!important}.ds-m-xl-32{margin:8rem!important}.ds-m-xl-36{margin:9rem!important}.ds-m-xl-40{margin:10rem!important}.ds-m-xl-44{margin:11rem!important}.ds-m-xl-48{margin:12rem!important}.ds-m-xl-52{margin:13rem!important}.ds-m-xl-56{margin:14rem!important}.ds-m-xl-60{margin:15rem!important}.ds-m-xl-64{margin:16rem!important}.ds-m-xl-72{margin:18rem!important}.ds-m-xl-80{margin:20rem!important}.ds-m-xl-96{margin:24rem!important}.ds-mt-xl-0{margin-top:0!important}.ds-mt-xl-0\.5{margin-top:.125rem!important}.ds-mt-xl-1{margin-top:.25rem!important}.ds-mt-xl-1\.5{margin-top:.375rem!important}.ds-mt-xl-2{margin-top:.5rem!important}.ds-mt-xl-2\.5{margin-top:.625rem!important}.ds-mt-xl-3{margin-top:.75rem!important}.ds-mt-xl-3\.5{margin-top:.875rem!important}.ds-mt-xl-4{margin-top:1rem!important}.ds-mt-xl-5{margin-top:1.25rem!important}.ds-mt-xl-6{margin-top:1.5rem!important}.ds-mt-xl-7{margin-top:1.75rem!important}.ds-mt-xl-8{margin-top:2rem!important}.ds-mt-xl-9{margin-top:2.25rem!important}.ds-mt-xl-10{margin-top:2.5rem!important}.ds-mt-xl-11{margin-top:2.75rem!important}.ds-mt-xl-12{margin-top:3rem!important}.ds-mt-xl-14{margin-top:3.5rem!important}.ds-mt-xl-16{margin-top:4rem!important}.ds-mt-xl-20{margin-top:5rem!important}.ds-mt-xl-24{margin-top:6rem!important}.ds-mt-xl-28{margin-top:7rem!important}.ds-mt-xl-32{margin-top:8rem!important}.ds-mt-xl-36{margin-top:9rem!important}.ds-mt-xl-40{margin-top:10rem!important}.ds-mt-xl-44{margin-top:11rem!important}.ds-mt-xl-48{margin-top:12rem!important}.ds-mt-xl-52{margin-top:13rem!important}.ds-mt-xl-56{margin-top:14rem!important}.ds-mt-xl-60{margin-top:15rem!important}.ds-mt-xl-64{margin-top:16rem!important}.ds-mt-xl-72{margin-top:18rem!important}.ds-mt-xl-80{margin-top:20rem!important}.ds-mt-xl-96{margin-top:24rem!important}.ds-mr-xl-0{margin-right:0!important}.ds-mr-xl-0\.5{margin-right:.125rem!important}.ds-mr-xl-1{margin-right:.25rem!important}.ds-mr-xl-1\.5{margin-right:.375rem!important}.ds-mr-xl-2{margin-right:.5rem!important}.ds-mr-xl-2\.5{margin-right:.625rem!important}.ds-mr-xl-3{margin-right:.75rem!important}.ds-mr-xl-3\.5{margin-right:.875rem!important}.ds-mr-xl-4{margin-right:1rem!important}.ds-mr-xl-5{margin-right:1.25rem!important}.ds-mr-xl-6{margin-right:1.5rem!important}.ds-mr-xl-7{margin-right:1.75rem!important}.ds-mr-xl-8{margin-right:2rem!important}.ds-mr-xl-9{margin-right:2.25rem!important}.ds-mr-xl-10{margin-right:2.5rem!important}.ds-mr-xl-11{margin-right:2.75rem!important}.ds-mr-xl-12{margin-right:3rem!important}.ds-mr-xl-14{margin-right:3.5rem!important}.ds-mr-xl-16{margin-right:4rem!important}.ds-mr-xl-20{margin-right:5rem!important}.ds-mr-xl-24{margin-right:6rem!important}.ds-mr-xl-28{margin-right:7rem!important}.ds-mr-xl-32{margin-right:8rem!important}.ds-mr-xl-36{margin-right:9rem!important}.ds-mr-xl-40{margin-right:10rem!important}.ds-mr-xl-44{margin-right:11rem!important}.ds-mr-xl-48{margin-right:12rem!important}.ds-mr-xl-52{margin-right:13rem!important}.ds-mr-xl-56{margin-right:14rem!important}.ds-mr-xl-60{margin-right:15rem!important}.ds-mr-xl-64{margin-right:16rem!important}.ds-mr-xl-72{margin-right:18rem!important}.ds-mr-xl-80{margin-right:20rem!important}.ds-mr-xl-96{margin-right:24rem!important}.ds-mb-xl-0{margin-bottom:0!important}.ds-mb-xl-0\.5{margin-bottom:.125rem!important}.ds-mb-xl-1{margin-bottom:.25rem!important}.ds-mb-xl-1\.5{margin-bottom:.375rem!important}.ds-mb-xl-2{margin-bottom:.5rem!important}.ds-mb-xl-2\.5{margin-bottom:.625rem!important}.ds-mb-xl-3{margin-bottom:.75rem!important}.ds-mb-xl-3\.5{margin-bottom:.875rem!important}.ds-mb-xl-4{margin-bottom:1rem!important}.ds-mb-xl-5{margin-bottom:1.25rem!important}.ds-mb-xl-6{margin-bottom:1.5rem!important}.ds-mb-xl-7{margin-bottom:1.75rem!important}.ds-mb-xl-8{margin-bottom:2rem!important}.ds-mb-xl-9{margin-bottom:2.25rem!important}.ds-mb-xl-10{margin-bottom:2.5rem!important}.ds-mb-xl-11{margin-bottom:2.75rem!important}.ds-mb-xl-12{margin-bottom:3rem!important}.ds-mb-xl-14{margin-bottom:3.5rem!important}.ds-mb-xl-16{margin-bottom:4rem!important}.ds-mb-xl-20{margin-bottom:5rem!important}.ds-mb-xl-24{margin-bottom:6rem!important}.ds-mb-xl-28{margin-bottom:7rem!important}.ds-mb-xl-32{margin-bottom:8rem!important}.ds-mb-xl-36{margin-bottom:9rem!important}.ds-mb-xl-40{margin-bottom:10rem!important}.ds-mb-xl-44{margin-bottom:11rem!important}.ds-mb-xl-48{margin-bottom:12rem!important}.ds-mb-xl-52{margin-bottom:13rem!important}.ds-mb-xl-56{margin-bottom:14rem!important}.ds-mb-xl-60{margin-bottom:15rem!important}.ds-mb-xl-64{margin-bottom:16rem!important}.ds-mb-xl-72{margin-bottom:18rem!important}.ds-mb-xl-80{margin-bottom:20rem!important}.ds-mb-xl-96{margin-bottom:24rem!important}.ds-ml-xl-0{margin-left:0!important}.ds-ml-xl-0\.5{margin-left:.125rem!important}.ds-ml-xl-1{margin-left:.25rem!important}.ds-ml-xl-1\.5{margin-left:.375rem!important}.ds-ml-xl-2{margin-left:.5rem!important}.ds-ml-xl-2\.5{margin-left:.625rem!important}.ds-ml-xl-3{margin-left:.75rem!important}.ds-ml-xl-3\.5{margin-left:.875rem!important}.ds-ml-xl-4{margin-left:1rem!important}.ds-ml-xl-5{margin-left:1.25rem!important}.ds-ml-xl-6{margin-left:1.5rem!important}.ds-ml-xl-7{margin-left:1.75rem!important}.ds-ml-xl-8{margin-left:2rem!important}.ds-ml-xl-9{margin-left:2.25rem!important}.ds-ml-xl-10{margin-left:2.5rem!important}.ds-ml-xl-11{margin-left:2.75rem!important}.ds-ml-xl-12{margin-left:3rem!important}.ds-ml-xl-14{margin-left:3.5rem!important}.ds-ml-xl-16{margin-left:4rem!important}.ds-ml-xl-20{margin-left:5rem!important}.ds-ml-xl-24{margin-left:6rem!important}.ds-ml-xl-28{margin-left:7rem!important}.ds-ml-xl-32{margin-left:8rem!important}.ds-ml-xl-36{margin-left:9rem!important}.ds-ml-xl-40{margin-left:10rem!important}.ds-ml-xl-44{margin-left:11rem!important}.ds-ml-xl-48{margin-left:12rem!important}.ds-ml-xl-52{margin-left:13rem!important}.ds-ml-xl-56{margin-left:14rem!important}.ds-ml-xl-60{margin-left:15rem!important}.ds-ml-xl-64{margin-left:16rem!important}.ds-ml-xl-72{margin-left:18rem!important}.ds-ml-xl-80{margin-left:20rem!important}.ds-ml-xl-96{margin-left:24rem!important}.ds-mx-xl-0{margin-left:0!important;margin-right:0!important}.ds-mx-xl-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-xl-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-xl-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-xl-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-xl-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mx-xl-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-xl-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-xl-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-xl-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-xl-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-xl-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-xl-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-xl-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-xl-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-xl-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-xl-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-xl-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-xl-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-xl-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-xl-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-xl-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-xl-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-xl-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-xl-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-xl-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-xl-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-xl-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-xl-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-xl-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-xl-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-xl-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-xl-0{margin-top:0!important;margin-bottom:0!important}.ds-my-xl-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-xl-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-xl-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-xl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-xl-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-my-xl-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-xl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-xl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-xl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-xl-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-xl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-xl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-xl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-xl-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-xl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-xl-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-xl-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-xl-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-xl-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-xl-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-xl-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-xl-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-xl-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-xl-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-xl-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-xl-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-xl-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-xl-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-xl-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-xl-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-xl-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-p-xl-0{padding:0!important}.ds-p-xl-0\.5{padding:.125rem!important}.ds-p-xl-1{padding:.25rem!important}.ds-p-xl-1\.5{padding:.375rem!important}.ds-p-xl-2{padding:.5rem!important}.ds-p-xl-2\.5{padding:.625rem!important}.ds-p-xl-3{padding:.75rem!important}.ds-p-xl-3\.5{padding:.875rem!important}.ds-p-xl-4{padding:1rem!important}.ds-p-xl-5{padding:1.25rem!important}.ds-p-xl-6{padding:1.5rem!important}.ds-p-xl-7{padding:1.75rem!important}.ds-p-xl-8{padding:2rem!important}.ds-p-xl-9{padding:2.25rem!important}.ds-p-xl-10{padding:2.5rem!important}.ds-p-xl-11{padding:2.75rem!important}.ds-p-xl-12{padding:3rem!important}.ds-p-xl-14{padding:3.5rem!important}.ds-p-xl-16{padding:4rem!important}.ds-p-xl-20{padding:5rem!important}.ds-p-xl-24{padding:6rem!important}.ds-p-xl-28{padding:7rem!important}.ds-p-xl-32{padding:8rem!important}.ds-p-xl-36{padding:9rem!important}.ds-p-xl-40{padding:10rem!important}.ds-p-xl-44{padding:11rem!important}.ds-p-xl-48{padding:12rem!important}.ds-p-xl-52{padding:13rem!important}.ds-p-xl-56{padding:14rem!important}.ds-p-xl-60{padding:15rem!important}.ds-p-xl-64{padding:16rem!important}.ds-p-xl-72{padding:18rem!important}.ds-p-xl-80{padding:20rem!important}.ds-p-xl-96{padding:24rem!important}.ds-pt-xl-0{padding-top:0!important}.ds-pt-xl-0\.5{padding-top:.125rem!important}.ds-pt-xl-1{padding-top:.25rem!important}.ds-pt-xl-1\.5{padding-top:.375rem!important}.ds-pt-xl-2{padding-top:.5rem!important}.ds-pt-xl-2\.5{padding-top:.625rem!important}.ds-pt-xl-3{padding-top:.75rem!important}.ds-pt-xl-3\.5{padding-top:.875rem!important}.ds-pt-xl-4{padding-top:1rem!important}.ds-pt-xl-5{padding-top:1.25rem!important}.ds-pt-xl-6{padding-top:1.5rem!important}.ds-pt-xl-7{padding-top:1.75rem!important}.ds-pt-xl-8{padding-top:2rem!important}.ds-pt-xl-9{padding-top:2.25rem!important}.ds-pt-xl-10{padding-top:2.5rem!important}.ds-pt-xl-11{padding-top:2.75rem!important}.ds-pt-xl-12{padding-top:3rem!important}.ds-pt-xl-14{padding-top:3.5rem!important}.ds-pt-xl-16{padding-top:4rem!important}.ds-pt-xl-20{padding-top:5rem!important}.ds-pt-xl-24{padding-top:6rem!important}.ds-pt-xl-28{padding-top:7rem!important}.ds-pt-xl-32{padding-top:8rem!important}.ds-pt-xl-36{padding-top:9rem!important}.ds-pt-xl-40{padding-top:10rem!important}.ds-pt-xl-44{padding-top:11rem!important}.ds-pt-xl-48{padding-top:12rem!important}.ds-pt-xl-52{padding-top:13rem!important}.ds-pt-xl-56{padding-top:14rem!important}.ds-pt-xl-60{padding-top:15rem!important}.ds-pt-xl-64{padding-top:16rem!important}.ds-pt-xl-72{padding-top:18rem!important}.ds-pt-xl-80{padding-top:20rem!important}.ds-pt-xl-96{padding-top:24rem!important}.ds-pr-xl-0{padding-right:0!important}.ds-pr-xl-0\.5{padding-right:.125rem!important}.ds-pr-xl-1{padding-right:.25rem!important}.ds-pr-xl-1\.5{padding-right:.375rem!important}.ds-pr-xl-2{padding-right:.5rem!important}.ds-pr-xl-2\.5{padding-right:.625rem!important}.ds-pr-xl-3{padding-right:.75rem!important}.ds-pr-xl-3\.5{padding-right:.875rem!important}.ds-pr-xl-4{padding-right:1rem!important}.ds-pr-xl-5{padding-right:1.25rem!important}.ds-pr-xl-6{padding-right:1.5rem!important}.ds-pr-xl-7{padding-right:1.75rem!important}.ds-pr-xl-8{padding-right:2rem!important}.ds-pr-xl-9{padding-right:2.25rem!important}.ds-pr-xl-10{padding-right:2.5rem!important}.ds-pr-xl-11{padding-right:2.75rem!important}.ds-pr-xl-12{padding-right:3rem!important}.ds-pr-xl-14{padding-right:3.5rem!important}.ds-pr-xl-16{padding-right:4rem!important}.ds-pr-xl-20{padding-right:5rem!important}.ds-pr-xl-24{padding-right:6rem!important}.ds-pr-xl-28{padding-right:7rem!important}.ds-pr-xl-32{padding-right:8rem!important}.ds-pr-xl-36{padding-right:9rem!important}.ds-pr-xl-40{padding-right:10rem!important}.ds-pr-xl-44{padding-right:11rem!important}.ds-pr-xl-48{padding-right:12rem!important}.ds-pr-xl-52{padding-right:13rem!important}.ds-pr-xl-56{padding-right:14rem!important}.ds-pr-xl-60{padding-right:15rem!important}.ds-pr-xl-64{padding-right:16rem!important}.ds-pr-xl-72{padding-right:18rem!important}.ds-pr-xl-80{padding-right:20rem!important}.ds-pr-xl-96{padding-right:24rem!important}.ds-pb-xl-0{padding-bottom:0!important}.ds-pb-xl-0\.5{padding-bottom:.125rem!important}.ds-pb-xl-1{padding-bottom:.25rem!important}.ds-pb-xl-1\.5{padding-bottom:.375rem!important}.ds-pb-xl-2{padding-bottom:.5rem!important}.ds-pb-xl-2\.5{padding-bottom:.625rem!important}.ds-pb-xl-3{padding-bottom:.75rem!important}.ds-pb-xl-3\.5{padding-bottom:.875rem!important}.ds-pb-xl-4{padding-bottom:1rem!important}.ds-pb-xl-5{padding-bottom:1.25rem!important}.ds-pb-xl-6{padding-bottom:1.5rem!important}.ds-pb-xl-7{padding-bottom:1.75rem!important}.ds-pb-xl-8{padding-bottom:2rem!important}.ds-pb-xl-9{padding-bottom:2.25rem!important}.ds-pb-xl-10{padding-bottom:2.5rem!important}.ds-pb-xl-11{padding-bottom:2.75rem!important}.ds-pb-xl-12{padding-bottom:3rem!important}.ds-pb-xl-14{padding-bottom:3.5rem!important}.ds-pb-xl-16{padding-bottom:4rem!important}.ds-pb-xl-20{padding-bottom:5rem!important}.ds-pb-xl-24{padding-bottom:6rem!important}.ds-pb-xl-28{padding-bottom:7rem!important}.ds-pb-xl-32{padding-bottom:8rem!important}.ds-pb-xl-36{padding-bottom:9rem!important}.ds-pb-xl-40{padding-bottom:10rem!important}.ds-pb-xl-44{padding-bottom:11rem!important}.ds-pb-xl-48{padding-bottom:12rem!important}.ds-pb-xl-52{padding-bottom:13rem!important}.ds-pb-xl-56{padding-bottom:14rem!important}.ds-pb-xl-60{padding-bottom:15rem!important}.ds-pb-xl-64{padding-bottom:16rem!important}.ds-pb-xl-72{padding-bottom:18rem!important}.ds-pb-xl-80{padding-bottom:20rem!important}.ds-pb-xl-96{padding-bottom:24rem!important}.ds-pl-xl-0{padding-left:0!important}.ds-pl-xl-0\.5{padding-left:.125rem!important}.ds-pl-xl-1{padding-left:.25rem!important}.ds-pl-xl-1\.5{padding-left:.375rem!important}.ds-pl-xl-2{padding-left:.5rem!important}.ds-pl-xl-2\.5{padding-left:.625rem!important}.ds-pl-xl-3{padding-left:.75rem!important}.ds-pl-xl-3\.5{padding-left:.875rem!important}.ds-pl-xl-4{padding-left:1rem!important}.ds-pl-xl-5{padding-left:1.25rem!important}.ds-pl-xl-6{padding-left:1.5rem!important}.ds-pl-xl-7{padding-left:1.75rem!important}.ds-pl-xl-8{padding-left:2rem!important}.ds-pl-xl-9{padding-left:2.25rem!important}.ds-pl-xl-10{padding-left:2.5rem!important}.ds-pl-xl-11{padding-left:2.75rem!important}.ds-pl-xl-12{padding-left:3rem!important}.ds-pl-xl-14{padding-left:3.5rem!important}.ds-pl-xl-16{padding-left:4rem!important}.ds-pl-xl-20{padding-left:5rem!important}.ds-pl-xl-24{padding-left:6rem!important}.ds-pl-xl-28{padding-left:7rem!important}.ds-pl-xl-32{padding-left:8rem!important}.ds-pl-xl-36{padding-left:9rem!important}.ds-pl-xl-40{padding-left:10rem!important}.ds-pl-xl-44{padding-left:11rem!important}.ds-pl-xl-48{padding-left:12rem!important}.ds-pl-xl-52{padding-left:13rem!important}.ds-pl-xl-56{padding-left:14rem!important}.ds-pl-xl-60{padding-left:15rem!important}.ds-pl-xl-64{padding-left:16rem!important}.ds-pl-xl-72{padding-left:18rem!important}.ds-pl-xl-80{padding-left:20rem!important}.ds-pl-xl-96{padding-left:24rem!important}.ds-px-xl-0{padding-left:0!important;padding-right:0!important}.ds-px-xl-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-xl-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-xl-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-xl-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-xl-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-px-xl-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-xl-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-xl-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-xl-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-xl-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-xl-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-xl-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-xl-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-xl-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-xl-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-xl-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-xl-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-xl-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-xl-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-xl-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-xl-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-xl-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-xl-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-xl-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-xl-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-xl-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-xl-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-xl-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-xl-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-xl-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-xl-96{padding-left:24rem!important;padding-right:24rem!important}.ds-py-xl-0{padding-top:0!important;padding-bottom:0!important}.ds-py-xl-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-xl-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-xl-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-xl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-xl-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-py-xl-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-xl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-xl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-xl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-xl-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-xl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-xl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-xl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-xl-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-xl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-xl-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-xl-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-xl-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-xl-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-xl-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-xl-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-xl-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-xl-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-xl-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-xl-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-xl-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-xl-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-xl-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-xl-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-xl-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-xl-96{padding-top:24rem!important;padding-bottom:24rem!important}}@media print{.ds-print-hidden{display:none!important}.ds-print-visible-block{display:block!important}.ds-print-visible-inline{display:inline!important}}