intergalactic 15.54.1 → 15.55.0-prerelease.0-prerelease-ed0bbc02

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 (321) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/accordion/lib/cjs/Accordion.js +7 -7
  3. package/accordion/lib/es6/Accordion.js +7 -7
  4. package/animation/lib/cjs/Animation.js +11 -11
  5. package/animation/lib/cjs/Collapse.js +28 -28
  6. package/animation/lib/cjs/FadeInOut.js +28 -28
  7. package/animation/lib/cjs/Scale.js +28 -28
  8. package/animation/lib/cjs/Slide.js +28 -28
  9. package/animation/lib/cjs/Transform.js +28 -28
  10. package/animation/lib/es6/Animation.js +11 -11
  11. package/animation/lib/es6/Collapse.js +28 -28
  12. package/animation/lib/es6/FadeInOut.js +28 -28
  13. package/animation/lib/es6/Scale.js +28 -28
  14. package/animation/lib/es6/Slide.js +28 -28
  15. package/animation/lib/es6/Transform.js +28 -28
  16. package/badge/lib/cjs/Badge.js +6 -6
  17. package/badge/lib/es6/Badge.js +6 -6
  18. package/base-trigger/lib/cjs/BaseTrigger.js +19 -20
  19. package/base-trigger/lib/cjs/BaseTrigger.js.map +1 -1
  20. package/base-trigger/lib/cjs/ButtonTrigger.js +3 -3
  21. package/base-trigger/lib/cjs/FilterTrigger.js +7 -7
  22. package/base-trigger/lib/cjs/LinkTrigger.js +12 -12
  23. package/base-trigger/lib/es6/BaseTrigger.js +20 -21
  24. package/base-trigger/lib/es6/BaseTrigger.js.map +1 -1
  25. package/base-trigger/lib/es6/ButtonTrigger.js +3 -3
  26. package/base-trigger/lib/es6/FilterTrigger.js +7 -7
  27. package/base-trigger/lib/es6/LinkTrigger.js +12 -12
  28. package/breadcrumbs/lib/cjs/Breadcrumbs.js +6 -6
  29. package/breadcrumbs/lib/es6/Breadcrumbs.js +6 -6
  30. package/button/lib/cjs/Button.js +26 -26
  31. package/button/lib/es6/Button.js +26 -26
  32. package/card/lib/cjs/Card.js +8 -8
  33. package/card/lib/es6/Card.js +8 -8
  34. package/carousel/lib/cjs/Carousel.js +22 -18
  35. package/carousel/lib/cjs/Carousel.js.map +1 -1
  36. package/carousel/lib/cjs/style/carousel.shadow.css +5 -0
  37. package/carousel/lib/es6/Carousel.js +22 -18
  38. package/carousel/lib/es6/Carousel.js.map +1 -1
  39. package/carousel/lib/es6/style/carousel.shadow.css +5 -0
  40. package/checkbox/lib/cjs/Checkbox.js +25 -20
  41. package/checkbox/lib/cjs/Checkbox.js.map +1 -1
  42. package/checkbox/lib/cjs/style/checkbox.shadow.css +21 -14
  43. package/checkbox/lib/es6/Checkbox.js +26 -21
  44. package/checkbox/lib/es6/Checkbox.js.map +1 -1
  45. package/checkbox/lib/es6/style/checkbox.shadow.css +21 -14
  46. package/color-picker/lib/cjs/ColorPicker.js +23 -23
  47. package/color-picker/lib/cjs/PaletteManager.js +23 -23
  48. package/color-picker/lib/cjs/components/InputColor.js +23 -23
  49. package/color-picker/lib/es6/ColorPicker.js +23 -23
  50. package/color-picker/lib/es6/PaletteManager.js +23 -23
  51. package/color-picker/lib/es6/components/InputColor.js +23 -23
  52. package/counter/lib/cjs/Counter.js +10 -10
  53. package/counter/lib/es6/Counter.js +10 -10
  54. package/d3-chart/lib/cjs/Area.js +11 -11
  55. package/d3-chart/lib/cjs/Axis.js +14 -14
  56. package/d3-chart/lib/cjs/Bar.js +10 -10
  57. package/d3-chart/lib/cjs/Bubble.js +12 -12
  58. package/d3-chart/lib/cjs/Donut.js +9 -9
  59. package/d3-chart/lib/cjs/Dots.js +8 -8
  60. package/d3-chart/lib/cjs/HorizontalBar.js +10 -10
  61. package/d3-chart/lib/cjs/Hover.js +3 -3
  62. package/d3-chart/lib/cjs/Line.js +9 -9
  63. package/d3-chart/lib/cjs/Plot.js +3 -3
  64. package/d3-chart/lib/cjs/Radar.js +19 -19
  65. package/d3-chart/lib/cjs/RadialTree.js +11 -11
  66. package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
  67. package/d3-chart/lib/cjs/ScatterPlot.js +9 -9
  68. package/d3-chart/lib/cjs/Tooltip.js +9 -9
  69. package/d3-chart/lib/cjs/Venn.js +9 -9
  70. package/d3-chart/lib/cjs/a11y/PlotA11yModule.js +2 -2
  71. package/d3-chart/lib/cjs/a11y/PlotA11yView.js +2 -2
  72. package/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  73. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +17 -17
  74. package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  75. package/d3-chart/lib/es6/Area.js +11 -11
  76. package/d3-chart/lib/es6/Axis.js +14 -14
  77. package/d3-chart/lib/es6/Bar.js +10 -10
  78. package/d3-chart/lib/es6/Bubble.js +12 -12
  79. package/d3-chart/lib/es6/Donut.js +9 -9
  80. package/d3-chart/lib/es6/Dots.js +8 -8
  81. package/d3-chart/lib/es6/HorizontalBar.js +10 -10
  82. package/d3-chart/lib/es6/Hover.js +3 -3
  83. package/d3-chart/lib/es6/Line.js +9 -9
  84. package/d3-chart/lib/es6/Plot.js +3 -3
  85. package/d3-chart/lib/es6/Radar.js +19 -19
  86. package/d3-chart/lib/es6/RadialTree.js +11 -11
  87. package/d3-chart/lib/es6/ReferenceLine.js +9 -9
  88. package/d3-chart/lib/es6/ScatterPlot.js +9 -9
  89. package/d3-chart/lib/es6/Tooltip.js +9 -9
  90. package/d3-chart/lib/es6/Venn.js +9 -9
  91. package/d3-chart/lib/es6/a11y/PlotA11yModule.js +2 -2
  92. package/d3-chart/lib/es6/a11y/PlotA11yView.js +2 -2
  93. package/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  94. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +17 -17
  95. package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  96. package/data-table/lib/cjs/Body.js +4 -4
  97. package/data-table/lib/cjs/DataTable.js +41 -41
  98. package/data-table/lib/cjs/Head.js +4 -4
  99. package/data-table/lib/es6/Body.js +4 -4
  100. package/data-table/lib/es6/DataTable.js +41 -41
  101. package/data-table/lib/es6/Head.js +4 -4
  102. package/date-picker/lib/cjs/components/Calendar.js +21 -21
  103. package/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +26 -26
  104. package/date-picker/lib/cjs/components/InputTrigger.js +26 -26
  105. package/date-picker/lib/cjs/components/PickerAbstract.js +26 -26
  106. package/date-picker/lib/cjs/components/RangePickerAbstract.js +26 -26
  107. package/date-picker/lib/es6/components/Calendar.js +21 -21
  108. package/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +26 -26
  109. package/date-picker/lib/es6/components/InputTrigger.js +26 -26
  110. package/date-picker/lib/es6/components/PickerAbstract.js +26 -26
  111. package/date-picker/lib/es6/components/RangePickerAbstract.js +26 -26
  112. package/divider/lib/cjs/Divider.js +9 -9
  113. package/divider/lib/es6/Divider.js +9 -9
  114. package/dot/lib/cjs/Dot.js +10 -10
  115. package/dot/lib/es6/Dot.js +10 -10
  116. package/drag-and-drop/lib/cjs/DragAndDrop.js +12 -12
  117. package/drag-and-drop/lib/es6/DragAndDrop.js +12 -12
  118. package/dropdown/lib/cjs/Dropdown.js +2 -2
  119. package/dropdown/lib/es6/Dropdown.js +2 -2
  120. package/dropdown-menu/lib/cjs/DropdownMenu.js +12 -12
  121. package/dropdown-menu/lib/cjs/styleScrollArea.js +6 -6
  122. package/dropdown-menu/lib/es6/DropdownMenu.js +12 -12
  123. package/dropdown-menu/lib/es6/styleScrollArea.js +6 -6
  124. package/ellipsis/lib/cjs/Ellipsis.js +10 -10
  125. package/ellipsis/lib/es6/Ellipsis.js +10 -10
  126. package/errors/lib/cjs/Error.js +9 -9
  127. package/errors/lib/es6/Error.js +9 -9
  128. package/feature-popover/lib/cjs/FeaturePopover.js +10 -10
  129. package/feature-popover/lib/es6/FeaturePopover.js +10 -10
  130. package/feedback-form/lib/cjs/FeedbackForm.js +20 -10
  131. package/feedback-form/lib/cjs/FeedbackForm.js.map +1 -1
  132. package/feedback-form/lib/es6/FeedbackForm.js +20 -10
  133. package/feedback-form/lib/es6/FeedbackForm.js.map +1 -1
  134. package/flags/lib/cjs/Flags.js +3 -3
  135. package/flags/lib/cjs/Flags.js.map +1 -1
  136. package/flags/lib/es6/Flags.js +3 -3
  137. package/flags/lib/es6/Flags.js.map +1 -1
  138. package/flags/lib/sprites/sprite@1x.css +256 -256
  139. package/flags/lib/sprites/sprite@2x.css +257 -257
  140. package/flex-box/index.d.ts +1 -0
  141. package/flex-box/invalid-state-box/InvalidStateBox.d.ts +4 -0
  142. package/flex-box/lib/cjs/Box/useBox.js +3 -3
  143. package/flex-box/lib/cjs/Flex/useFlex.js +3 -3
  144. package/flex-box/lib/cjs/index.js +9 -1
  145. package/flex-box/lib/cjs/index.js.map +1 -1
  146. package/flex-box/lib/cjs/invalid-state-box/InvalidStateBox.js +27 -0
  147. package/flex-box/lib/cjs/invalid-state-box/InvalidStateBox.js.map +1 -0
  148. package/flex-box/lib/cjs/invalid-state-box/invalidStateBox.shadow.css +10 -0
  149. package/flex-box/lib/es6/Box/useBox.js +3 -3
  150. package/flex-box/lib/es6/Flex/useFlex.js +3 -3
  151. package/flex-box/lib/es6/index.js +1 -0
  152. package/flex-box/lib/es6/index.js.map +1 -1
  153. package/flex-box/lib/es6/invalid-state-box/InvalidStateBox.js +19 -0
  154. package/flex-box/lib/es6/invalid-state-box/InvalidStateBox.js.map +1 -0
  155. package/flex-box/lib/es6/invalid-state-box/invalidStateBox.shadow.css +10 -0
  156. package/flex-box/lib/types/index.d.ts +1 -0
  157. package/flex-box/lib/types/invalid-state-box/InvalidStateBox.d.ts +4 -0
  158. package/format-text/lib/cjs/FormatText.js +5 -5
  159. package/format-text/lib/es6/FormatText.js +5 -5
  160. package/fullscreen-modal/lib/cjs/FullscreenModal.js +13 -13
  161. package/fullscreen-modal/lib/es6/FullscreenModal.js +13 -13
  162. package/grid/lib/cjs/Grid.js +114 -114
  163. package/grid/lib/es6/Grid.js +114 -114
  164. package/icon/color/Confluence/l/index.js +4 -4
  165. package/icon/color/Confluence/l/index.mjs +4 -4
  166. package/icon/color/Confluence/m/index.js +4 -4
  167. package/icon/color/Confluence/m/index.mjs +4 -4
  168. package/icon/color/MicrosoftOffice/l/index.js +10 -10
  169. package/icon/color/MicrosoftOffice/l/index.mjs +10 -10
  170. package/icon/color/MicrosoftOffice/m/index.js +10 -10
  171. package/icon/color/MicrosoftOffice/m/index.mjs +10 -10
  172. package/icon/lib/cjs/Icon.js +5 -5
  173. package/icon/lib/es6/Icon.js +5 -5
  174. package/icon/pay/Discover/l/index.js +1 -1
  175. package/icon/pay/Discover/l/index.mjs +1 -1
  176. package/icon/pay/Discover/m/index.js +1 -1
  177. package/icon/pay/Discover/m/index.mjs +1 -1
  178. package/icon/pay/JCB/l/index.js +10 -10
  179. package/icon/pay/JCB/l/index.mjs +10 -10
  180. package/icon/pay/JCB/m/index.js +10 -10
  181. package/icon/pay/JCB/m/index.mjs +10 -10
  182. package/icon/pay/Visa/l/index.js +2 -2
  183. package/icon/pay/Visa/l/index.mjs +2 -2
  184. package/icon/pay/Visa/m/index.js +2 -2
  185. package/icon/pay/Visa/m/index.mjs +2 -2
  186. package/illustration/lib/cjs/index.js +1 -1
  187. package/illustration/lib/cjs/index.js.map +1 -1
  188. package/illustration/lib/es6/index.js +1 -1
  189. package/illustration/lib/es6/index.js.map +1 -1
  190. package/inline-edit/lib/cjs/InlineEdit.js +4 -4
  191. package/inline-edit/lib/es6/InlineEdit.js +4 -4
  192. package/inline-input/lib/cjs/InlineInput.js +19 -20
  193. package/inline-input/lib/cjs/InlineInput.js.map +1 -1
  194. package/inline-input/lib/es6/InlineInput.js +20 -21
  195. package/inline-input/lib/es6/InlineInput.js.map +1 -1
  196. package/input/lib/cjs/Input.js +18 -19
  197. package/input/lib/cjs/Input.js.map +1 -1
  198. package/input/lib/es6/Input.js +19 -20
  199. package/input/lib/es6/Input.js.map +1 -1
  200. package/input-mask/lib/cjs/InputMask.js +6 -6
  201. package/input-mask/lib/es6/InputMask.js +6 -6
  202. package/input-number/lib/cjs/InputNumber.js +9 -9
  203. package/input-number/lib/es6/InputNumber.js +9 -9
  204. package/input-tags/lib/cjs/InputTags.js +12 -12
  205. package/input-tags/lib/es6/InputTags.js +12 -12
  206. package/link/lib/cjs/Link.js +12 -12
  207. package/link/lib/es6/Link.js +12 -12
  208. package/mini-chart/lib/cjs/component/score/Donut.js +9 -9
  209. package/mini-chart/lib/cjs/component/score/Line.js +17 -17
  210. package/mini-chart/lib/cjs/component/trend/Bar.js +7 -7
  211. package/mini-chart/lib/cjs/component/trend/Line.js +7 -7
  212. package/mini-chart/lib/es6/component/score/Donut.js +9 -9
  213. package/mini-chart/lib/es6/component/score/Line.js +17 -17
  214. package/mini-chart/lib/es6/component/trend/Bar.js +7 -7
  215. package/mini-chart/lib/es6/component/trend/Line.js +7 -7
  216. package/modal/lib/cjs/Modal.js +15 -9
  217. package/modal/lib/cjs/Modal.js.map +1 -1
  218. package/modal/lib/cjs/style/modal.shadow.css +5 -1
  219. package/modal/lib/es6/Modal.js +15 -9
  220. package/modal/lib/es6/Modal.js.map +1 -1
  221. package/modal/lib/es6/style/modal.shadow.css +5 -1
  222. package/notice/lib/cjs/Notice.js +13 -13
  223. package/notice/lib/es6/Notice.js +13 -13
  224. package/notice-bubble/lib/cjs/NoticeBubble.js +12 -12
  225. package/notice-bubble/lib/es6/NoticeBubble.js +12 -12
  226. package/notice-global/lib/cjs/NoticeGlobal.js +11 -11
  227. package/notice-global/lib/es6/NoticeGlobal.js +11 -11
  228. package/package.json +27 -2
  229. package/pagination/lib/cjs/Pagination.js +10 -10
  230. package/pagination/lib/es6/Pagination.js +10 -10
  231. package/pills/lib/cjs/Pills.js +13 -13
  232. package/pills/lib/es6/Pills.js +13 -13
  233. package/popper/lib/cjs/Popper.js +6 -6
  234. package/popper/lib/es6/Popper.js +6 -6
  235. package/product-head/lib/cjs/Info.js +4 -4
  236. package/product-head/lib/cjs/ProductHead.js +5 -5
  237. package/product-head/lib/cjs/Title.js +4 -4
  238. package/product-head/lib/es6/Info.js +4 -4
  239. package/product-head/lib/es6/ProductHead.js +5 -5
  240. package/product-head/lib/es6/Title.js +4 -4
  241. package/progress-bar/lib/cjs/ProgressBar.js +15 -15
  242. package/progress-bar/lib/es6/ProgressBar.js +15 -15
  243. package/radio/lib/cjs/Radio.js +23 -18
  244. package/radio/lib/cjs/Radio.js.map +1 -1
  245. package/radio/lib/cjs/style/radio.shadow.css +10 -5
  246. package/radio/lib/es6/Radio.js +24 -19
  247. package/radio/lib/es6/Radio.js.map +1 -1
  248. package/radio/lib/es6/style/radio.shadow.css +10 -5
  249. package/scroll-area/lib/cjs/ScrollArea.js +9 -9
  250. package/scroll-area/lib/cjs/ScrollBar.js +5 -5
  251. package/scroll-area/lib/es6/ScrollArea.js +9 -9
  252. package/scroll-area/lib/es6/ScrollBar.js +5 -5
  253. package/select/lib/cjs/InputSearch.js +6 -6
  254. package/select/lib/cjs/Select.js +7 -7
  255. package/select/lib/es6/InputSearch.js +6 -6
  256. package/select/lib/es6/Select.js +7 -7
  257. package/side-panel/lib/cjs/SidePanel.js +15 -15
  258. package/side-panel/lib/es6/SidePanel.js +15 -15
  259. package/skeleton/lib/cjs/Charts/Area.js +9 -9
  260. package/skeleton/lib/cjs/Charts/Bar.js +9 -9
  261. package/skeleton/lib/cjs/Charts/Bubble.js +9 -9
  262. package/skeleton/lib/cjs/Charts/Donut.js +9 -9
  263. package/skeleton/lib/cjs/Charts/Histogram.js +9 -9
  264. package/skeleton/lib/cjs/Charts/Line.js +9 -9
  265. package/skeleton/lib/cjs/Charts/RadialTree.js +9 -9
  266. package/skeleton/lib/cjs/Charts/ScatterPlot.js +9 -9
  267. package/skeleton/lib/cjs/Charts/Venn.js +9 -9
  268. package/skeleton/lib/cjs/Skeleton.js +8 -8
  269. package/skeleton/lib/es6/Charts/Area.js +9 -9
  270. package/skeleton/lib/es6/Charts/Bar.js +9 -9
  271. package/skeleton/lib/es6/Charts/Bubble.js +9 -9
  272. package/skeleton/lib/es6/Charts/Donut.js +9 -9
  273. package/skeleton/lib/es6/Charts/Histogram.js +9 -9
  274. package/skeleton/lib/es6/Charts/Line.js +9 -9
  275. package/skeleton/lib/es6/Charts/RadialTree.js +9 -9
  276. package/skeleton/lib/es6/Charts/ScatterPlot.js +9 -9
  277. package/skeleton/lib/es6/Charts/Venn.js +9 -9
  278. package/skeleton/lib/es6/Skeleton.js +8 -8
  279. package/slider/lib/cjs/Slider.js +7 -7
  280. package/slider/lib/es6/Slider.js +7 -7
  281. package/spin/lib/cjs/Spin.js +13 -13
  282. package/spin/lib/es6/Spin.js +13 -13
  283. package/spin-container/lib/cjs/SpinContainer.js +8 -8
  284. package/spin-container/lib/es6/SpinContainer.js +8 -8
  285. package/sticky/lib/cjs/Sticky.js +2 -2
  286. package/sticky/lib/es6/Sticky.js +2 -2
  287. package/switch/lib/cjs/Switch.js +21 -21
  288. package/switch/lib/es6/Switch.js +21 -21
  289. package/tab-line/lib/cjs/TabLine.js +13 -13
  290. package/tab-line/lib/es6/TabLine.js +13 -13
  291. package/tab-panel/lib/cjs/TabPanel.js +8 -8
  292. package/tab-panel/lib/es6/TabPanel.js +8 -8
  293. package/tag/lib/cjs/Tag.js +19 -19
  294. package/tag/lib/es6/Tag.js +19 -19
  295. package/textarea/lib/cjs/Textarea.js +8 -8
  296. package/textarea/lib/es6/Textarea.js +8 -8
  297. package/time-picker/lib/cjs/TimePicker.js +12 -12
  298. package/time-picker/lib/es6/TimePicker.js +12 -12
  299. package/tooltip/lib/cjs/Tooltip.js +6 -6
  300. package/tooltip/lib/es6/Tooltip.js +6 -6
  301. package/typography/lib/cjs/Blockquote.js +4 -4
  302. package/typography/lib/cjs/Hint.js +7 -7
  303. package/typography/lib/cjs/List.js +5 -5
  304. package/typography/lib/cjs/Text.js +34 -34
  305. package/typography/lib/es6/Blockquote.js +4 -4
  306. package/typography/lib/es6/Hint.js +7 -7
  307. package/typography/lib/es6/List.js +5 -5
  308. package/typography/lib/es6/Text.js +34 -34
  309. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.d.ts +6 -0
  310. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.js +8 -2
  311. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.js.map +1 -1
  312. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.mjs +8 -2
  313. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.mjs.map +1 -1
  314. package/utils/lib/injectStyle.js +1 -1
  315. package/utils/lib/injectStyle.js.map +1 -1
  316. package/utils/lib/injectStyle.mjs +1 -1
  317. package/utils/lib/injectStyle.mjs.map +1 -1
  318. package/widget-empty/lib/cjs/WidgetEmpty.js +5 -5
  319. package/widget-empty/lib/es6/WidgetEmpty.js +5 -5
  320. package/wizard/lib/cjs/Wizard.js +11 -11
  321. package/wizard/lib/es6/Wizard.js +11 -11
@@ -17,120 +17,120 @@ var _core = _interopRequireWildcard(require("intergalactic/core"));
17
17
  var _react = _interopRequireDefault(require("react"));
18
18
  var _flexBox = require("intergalactic/flex-box");
19
19
  /*__reshadow-styles__:"./style/grid.shadow.css"*/
20
- var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SCol_rfcmp_gg_{box-sizing:border-box;max-width:100%;min-height:1px;flex:0 0 auto}.___SCol_rfcmp_gg_.__span_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._span_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._span_0_rfcmp_gg_{flex-basis:0;max-width:0}.___SCol_rfcmp_gg_._span_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._span_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._span_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._span_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._span_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._span_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._span_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._span_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._span_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._span_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._span_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._span_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._offset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._offset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._offset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._offset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._offset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._offset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._offset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._offset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._offset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._offset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._offset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._offset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._offset_12_rfcmp_gg_{margin-left:100%}@media (max-width:1199px){.___SCol_rfcmp_gg_.__md_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._md_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._md_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._md_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._md_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._md_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._md_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._md_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._md_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._md_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._md_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._md_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._md_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._md_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._md_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._mdOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._mdOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._mdOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._mdOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._mdOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._mdOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._mdOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._mdOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._mdOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._mdOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._mdOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._mdOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._mdOffset_12_rfcmp_gg_{margin-left:100%}}@media (max-width:767px){.___SCol_rfcmp_gg_.__sm_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._sm_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._sm_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._sm_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._sm_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._sm_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._sm_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._sm_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._sm_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._sm_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._sm_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._sm_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._sm_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._sm_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._sm_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._smOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._smOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._smOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._smOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._smOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._smOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._smOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._smOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._smOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._smOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._smOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._smOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._smOffset_12_rfcmp_gg_{margin-left:100%}}@media (max-width:319px){.___SCol_rfcmp_gg_.__xs_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._xs_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._xs_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._xs_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._xs_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._xs_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._xs_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._xs_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._xs_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._xs_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._xs_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._xs_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._xs_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._xs_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._xs_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._xsOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._xsOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._xsOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._xsOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._xsOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._xsOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._xsOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._xsOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._xsOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._xsOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._xsOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._xsOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._xsOffset_12_rfcmp_gg_{margin-left:100%}}" /*__inner_css_end__*/, "rfcmp_gg_") /*__reshadow_css_end__*/, {
21
- "__SCol": "___SCol_rfcmp_gg_",
22
- "_span": "__span_rfcmp_gg_",
23
- "_span_auto": "_span_auto_rfcmp_gg_",
24
- "_span_0": "_span_0_rfcmp_gg_",
25
- "_span_1": "_span_1_rfcmp_gg_",
26
- "_span_2": "_span_2_rfcmp_gg_",
27
- "_span_3": "_span_3_rfcmp_gg_",
28
- "_span_4": "_span_4_rfcmp_gg_",
29
- "_span_5": "_span_5_rfcmp_gg_",
30
- "_span_6": "_span_6_rfcmp_gg_",
31
- "_span_7": "_span_7_rfcmp_gg_",
32
- "_span_8": "_span_8_rfcmp_gg_",
33
- "_span_9": "_span_9_rfcmp_gg_",
34
- "_span_10": "_span_10_rfcmp_gg_",
35
- "_span_11": "_span_11_rfcmp_gg_",
36
- "_span_12": "_span_12_rfcmp_gg_",
37
- "_offset_0": "_offset_0_rfcmp_gg_",
38
- "_offset_1": "_offset_1_rfcmp_gg_",
39
- "_offset_2": "_offset_2_rfcmp_gg_",
40
- "_offset_3": "_offset_3_rfcmp_gg_",
41
- "_offset_4": "_offset_4_rfcmp_gg_",
42
- "_offset_5": "_offset_5_rfcmp_gg_",
43
- "_offset_6": "_offset_6_rfcmp_gg_",
44
- "_offset_7": "_offset_7_rfcmp_gg_",
45
- "_offset_8": "_offset_8_rfcmp_gg_",
46
- "_offset_9": "_offset_9_rfcmp_gg_",
47
- "_offset_10": "_offset_10_rfcmp_gg_",
48
- "_offset_11": "_offset_11_rfcmp_gg_",
49
- "_offset_12": "_offset_12_rfcmp_gg_",
50
- "_md": "__md_rfcmp_gg_",
51
- "_md_auto": "_md_auto_rfcmp_gg_",
52
- "_md_0": "_md_0_rfcmp_gg_",
53
- "_md_1": "_md_1_rfcmp_gg_",
54
- "_md_2": "_md_2_rfcmp_gg_",
55
- "_md_3": "_md_3_rfcmp_gg_",
56
- "_md_4": "_md_4_rfcmp_gg_",
57
- "_md_5": "_md_5_rfcmp_gg_",
58
- "_md_6": "_md_6_rfcmp_gg_",
59
- "_md_7": "_md_7_rfcmp_gg_",
60
- "_md_8": "_md_8_rfcmp_gg_",
61
- "_md_9": "_md_9_rfcmp_gg_",
62
- "_md_10": "_md_10_rfcmp_gg_",
63
- "_md_11": "_md_11_rfcmp_gg_",
64
- "_md_12": "_md_12_rfcmp_gg_",
65
- "_mdOffset_0": "_mdOffset_0_rfcmp_gg_",
66
- "_mdOffset_1": "_mdOffset_1_rfcmp_gg_",
67
- "_mdOffset_2": "_mdOffset_2_rfcmp_gg_",
68
- "_mdOffset_3": "_mdOffset_3_rfcmp_gg_",
69
- "_mdOffset_4": "_mdOffset_4_rfcmp_gg_",
70
- "_mdOffset_5": "_mdOffset_5_rfcmp_gg_",
71
- "_mdOffset_6": "_mdOffset_6_rfcmp_gg_",
72
- "_mdOffset_7": "_mdOffset_7_rfcmp_gg_",
73
- "_mdOffset_8": "_mdOffset_8_rfcmp_gg_",
74
- "_mdOffset_9": "_mdOffset_9_rfcmp_gg_",
75
- "_mdOffset_10": "_mdOffset_10_rfcmp_gg_",
76
- "_mdOffset_11": "_mdOffset_11_rfcmp_gg_",
77
- "_mdOffset_12": "_mdOffset_12_rfcmp_gg_",
78
- "_sm": "__sm_rfcmp_gg_",
79
- "_sm_auto": "_sm_auto_rfcmp_gg_",
80
- "_sm_0": "_sm_0_rfcmp_gg_",
81
- "_sm_1": "_sm_1_rfcmp_gg_",
82
- "_sm_2": "_sm_2_rfcmp_gg_",
83
- "_sm_3": "_sm_3_rfcmp_gg_",
84
- "_sm_4": "_sm_4_rfcmp_gg_",
85
- "_sm_5": "_sm_5_rfcmp_gg_",
86
- "_sm_6": "_sm_6_rfcmp_gg_",
87
- "_sm_7": "_sm_7_rfcmp_gg_",
88
- "_sm_8": "_sm_8_rfcmp_gg_",
89
- "_sm_9": "_sm_9_rfcmp_gg_",
90
- "_sm_10": "_sm_10_rfcmp_gg_",
91
- "_sm_11": "_sm_11_rfcmp_gg_",
92
- "_sm_12": "_sm_12_rfcmp_gg_",
93
- "_smOffset_0": "_smOffset_0_rfcmp_gg_",
94
- "_smOffset_1": "_smOffset_1_rfcmp_gg_",
95
- "_smOffset_2": "_smOffset_2_rfcmp_gg_",
96
- "_smOffset_3": "_smOffset_3_rfcmp_gg_",
97
- "_smOffset_4": "_smOffset_4_rfcmp_gg_",
98
- "_smOffset_5": "_smOffset_5_rfcmp_gg_",
99
- "_smOffset_6": "_smOffset_6_rfcmp_gg_",
100
- "_smOffset_7": "_smOffset_7_rfcmp_gg_",
101
- "_smOffset_8": "_smOffset_8_rfcmp_gg_",
102
- "_smOffset_9": "_smOffset_9_rfcmp_gg_",
103
- "_smOffset_10": "_smOffset_10_rfcmp_gg_",
104
- "_smOffset_11": "_smOffset_11_rfcmp_gg_",
105
- "_smOffset_12": "_smOffset_12_rfcmp_gg_",
106
- "_xs": "__xs_rfcmp_gg_",
107
- "_xs_auto": "_xs_auto_rfcmp_gg_",
108
- "_xs_0": "_xs_0_rfcmp_gg_",
109
- "_xs_1": "_xs_1_rfcmp_gg_",
110
- "_xs_2": "_xs_2_rfcmp_gg_",
111
- "_xs_3": "_xs_3_rfcmp_gg_",
112
- "_xs_4": "_xs_4_rfcmp_gg_",
113
- "_xs_5": "_xs_5_rfcmp_gg_",
114
- "_xs_6": "_xs_6_rfcmp_gg_",
115
- "_xs_7": "_xs_7_rfcmp_gg_",
116
- "_xs_8": "_xs_8_rfcmp_gg_",
117
- "_xs_9": "_xs_9_rfcmp_gg_",
118
- "_xs_10": "_xs_10_rfcmp_gg_",
119
- "_xs_11": "_xs_11_rfcmp_gg_",
120
- "_xs_12": "_xs_12_rfcmp_gg_",
121
- "_xsOffset_0": "_xsOffset_0_rfcmp_gg_",
122
- "_xsOffset_1": "_xsOffset_1_rfcmp_gg_",
123
- "_xsOffset_2": "_xsOffset_2_rfcmp_gg_",
124
- "_xsOffset_3": "_xsOffset_3_rfcmp_gg_",
125
- "_xsOffset_4": "_xsOffset_4_rfcmp_gg_",
126
- "_xsOffset_5": "_xsOffset_5_rfcmp_gg_",
127
- "_xsOffset_6": "_xsOffset_6_rfcmp_gg_",
128
- "_xsOffset_7": "_xsOffset_7_rfcmp_gg_",
129
- "_xsOffset_8": "_xsOffset_8_rfcmp_gg_",
130
- "_xsOffset_9": "_xsOffset_9_rfcmp_gg_",
131
- "_xsOffset_10": "_xsOffset_10_rfcmp_gg_",
132
- "_xsOffset_11": "_xsOffset_11_rfcmp_gg_",
133
- "_xsOffset_12": "_xsOffset_12_rfcmp_gg_"
20
+ var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SCol_9u4b5_gg_{box-sizing:border-box;max-width:100%;min-height:1px;flex:0 0 auto}.___SCol_9u4b5_gg_.__span_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._span_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._span_0_9u4b5_gg_{flex-basis:0;max-width:0}.___SCol_9u4b5_gg_._span_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._span_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._span_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._span_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._span_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._span_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._span_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._span_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._span_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._span_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._span_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._span_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._offset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._offset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._offset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._offset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._offset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._offset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._offset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._offset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._offset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._offset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._offset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._offset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._offset_12_9u4b5_gg_{margin-left:100%}@media (max-width:1199px){.___SCol_9u4b5_gg_.__md_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._md_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._md_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._md_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._md_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._md_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._md_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._md_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._md_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._md_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._md_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._md_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._md_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._md_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._md_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._mdOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._mdOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._mdOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._mdOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._mdOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._mdOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._mdOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._mdOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._mdOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._mdOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._mdOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._mdOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._mdOffset_12_9u4b5_gg_{margin-left:100%}}@media (max-width:767px){.___SCol_9u4b5_gg_.__sm_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._sm_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._sm_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._sm_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._sm_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._sm_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._sm_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._sm_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._sm_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._sm_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._sm_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._sm_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._sm_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._sm_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._sm_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._smOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._smOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._smOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._smOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._smOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._smOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._smOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._smOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._smOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._smOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._smOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._smOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._smOffset_12_9u4b5_gg_{margin-left:100%}}@media (max-width:319px){.___SCol_9u4b5_gg_.__xs_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._xs_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._xs_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._xs_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._xs_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._xs_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._xs_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._xs_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._xs_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._xs_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._xs_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._xs_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._xs_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._xs_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._xs_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._xsOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._xsOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._xsOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._xsOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._xsOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._xsOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._xsOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._xsOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._xsOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._xsOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._xsOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._xsOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._xsOffset_12_9u4b5_gg_{margin-left:100%}}" /*__inner_css_end__*/, "9u4b5_gg_") /*__reshadow_css_end__*/, {
21
+ "__SCol": "___SCol_9u4b5_gg_",
22
+ "_span": "__span_9u4b5_gg_",
23
+ "_span_auto": "_span_auto_9u4b5_gg_",
24
+ "_span_0": "_span_0_9u4b5_gg_",
25
+ "_span_1": "_span_1_9u4b5_gg_",
26
+ "_span_2": "_span_2_9u4b5_gg_",
27
+ "_span_3": "_span_3_9u4b5_gg_",
28
+ "_span_4": "_span_4_9u4b5_gg_",
29
+ "_span_5": "_span_5_9u4b5_gg_",
30
+ "_span_6": "_span_6_9u4b5_gg_",
31
+ "_span_7": "_span_7_9u4b5_gg_",
32
+ "_span_8": "_span_8_9u4b5_gg_",
33
+ "_span_9": "_span_9_9u4b5_gg_",
34
+ "_span_10": "_span_10_9u4b5_gg_",
35
+ "_span_11": "_span_11_9u4b5_gg_",
36
+ "_span_12": "_span_12_9u4b5_gg_",
37
+ "_offset_0": "_offset_0_9u4b5_gg_",
38
+ "_offset_1": "_offset_1_9u4b5_gg_",
39
+ "_offset_2": "_offset_2_9u4b5_gg_",
40
+ "_offset_3": "_offset_3_9u4b5_gg_",
41
+ "_offset_4": "_offset_4_9u4b5_gg_",
42
+ "_offset_5": "_offset_5_9u4b5_gg_",
43
+ "_offset_6": "_offset_6_9u4b5_gg_",
44
+ "_offset_7": "_offset_7_9u4b5_gg_",
45
+ "_offset_8": "_offset_8_9u4b5_gg_",
46
+ "_offset_9": "_offset_9_9u4b5_gg_",
47
+ "_offset_10": "_offset_10_9u4b5_gg_",
48
+ "_offset_11": "_offset_11_9u4b5_gg_",
49
+ "_offset_12": "_offset_12_9u4b5_gg_",
50
+ "_md": "__md_9u4b5_gg_",
51
+ "_md_auto": "_md_auto_9u4b5_gg_",
52
+ "_md_0": "_md_0_9u4b5_gg_",
53
+ "_md_1": "_md_1_9u4b5_gg_",
54
+ "_md_2": "_md_2_9u4b5_gg_",
55
+ "_md_3": "_md_3_9u4b5_gg_",
56
+ "_md_4": "_md_4_9u4b5_gg_",
57
+ "_md_5": "_md_5_9u4b5_gg_",
58
+ "_md_6": "_md_6_9u4b5_gg_",
59
+ "_md_7": "_md_7_9u4b5_gg_",
60
+ "_md_8": "_md_8_9u4b5_gg_",
61
+ "_md_9": "_md_9_9u4b5_gg_",
62
+ "_md_10": "_md_10_9u4b5_gg_",
63
+ "_md_11": "_md_11_9u4b5_gg_",
64
+ "_md_12": "_md_12_9u4b5_gg_",
65
+ "_mdOffset_0": "_mdOffset_0_9u4b5_gg_",
66
+ "_mdOffset_1": "_mdOffset_1_9u4b5_gg_",
67
+ "_mdOffset_2": "_mdOffset_2_9u4b5_gg_",
68
+ "_mdOffset_3": "_mdOffset_3_9u4b5_gg_",
69
+ "_mdOffset_4": "_mdOffset_4_9u4b5_gg_",
70
+ "_mdOffset_5": "_mdOffset_5_9u4b5_gg_",
71
+ "_mdOffset_6": "_mdOffset_6_9u4b5_gg_",
72
+ "_mdOffset_7": "_mdOffset_7_9u4b5_gg_",
73
+ "_mdOffset_8": "_mdOffset_8_9u4b5_gg_",
74
+ "_mdOffset_9": "_mdOffset_9_9u4b5_gg_",
75
+ "_mdOffset_10": "_mdOffset_10_9u4b5_gg_",
76
+ "_mdOffset_11": "_mdOffset_11_9u4b5_gg_",
77
+ "_mdOffset_12": "_mdOffset_12_9u4b5_gg_",
78
+ "_sm": "__sm_9u4b5_gg_",
79
+ "_sm_auto": "_sm_auto_9u4b5_gg_",
80
+ "_sm_0": "_sm_0_9u4b5_gg_",
81
+ "_sm_1": "_sm_1_9u4b5_gg_",
82
+ "_sm_2": "_sm_2_9u4b5_gg_",
83
+ "_sm_3": "_sm_3_9u4b5_gg_",
84
+ "_sm_4": "_sm_4_9u4b5_gg_",
85
+ "_sm_5": "_sm_5_9u4b5_gg_",
86
+ "_sm_6": "_sm_6_9u4b5_gg_",
87
+ "_sm_7": "_sm_7_9u4b5_gg_",
88
+ "_sm_8": "_sm_8_9u4b5_gg_",
89
+ "_sm_9": "_sm_9_9u4b5_gg_",
90
+ "_sm_10": "_sm_10_9u4b5_gg_",
91
+ "_sm_11": "_sm_11_9u4b5_gg_",
92
+ "_sm_12": "_sm_12_9u4b5_gg_",
93
+ "_smOffset_0": "_smOffset_0_9u4b5_gg_",
94
+ "_smOffset_1": "_smOffset_1_9u4b5_gg_",
95
+ "_smOffset_2": "_smOffset_2_9u4b5_gg_",
96
+ "_smOffset_3": "_smOffset_3_9u4b5_gg_",
97
+ "_smOffset_4": "_smOffset_4_9u4b5_gg_",
98
+ "_smOffset_5": "_smOffset_5_9u4b5_gg_",
99
+ "_smOffset_6": "_smOffset_6_9u4b5_gg_",
100
+ "_smOffset_7": "_smOffset_7_9u4b5_gg_",
101
+ "_smOffset_8": "_smOffset_8_9u4b5_gg_",
102
+ "_smOffset_9": "_smOffset_9_9u4b5_gg_",
103
+ "_smOffset_10": "_smOffset_10_9u4b5_gg_",
104
+ "_smOffset_11": "_smOffset_11_9u4b5_gg_",
105
+ "_smOffset_12": "_smOffset_12_9u4b5_gg_",
106
+ "_xs": "__xs_9u4b5_gg_",
107
+ "_xs_auto": "_xs_auto_9u4b5_gg_",
108
+ "_xs_0": "_xs_0_9u4b5_gg_",
109
+ "_xs_1": "_xs_1_9u4b5_gg_",
110
+ "_xs_2": "_xs_2_9u4b5_gg_",
111
+ "_xs_3": "_xs_3_9u4b5_gg_",
112
+ "_xs_4": "_xs_4_9u4b5_gg_",
113
+ "_xs_5": "_xs_5_9u4b5_gg_",
114
+ "_xs_6": "_xs_6_9u4b5_gg_",
115
+ "_xs_7": "_xs_7_9u4b5_gg_",
116
+ "_xs_8": "_xs_8_9u4b5_gg_",
117
+ "_xs_9": "_xs_9_9u4b5_gg_",
118
+ "_xs_10": "_xs_10_9u4b5_gg_",
119
+ "_xs_11": "_xs_11_9u4b5_gg_",
120
+ "_xs_12": "_xs_12_9u4b5_gg_",
121
+ "_xsOffset_0": "_xsOffset_0_9u4b5_gg_",
122
+ "_xsOffset_1": "_xsOffset_1_9u4b5_gg_",
123
+ "_xsOffset_2": "_xsOffset_2_9u4b5_gg_",
124
+ "_xsOffset_3": "_xsOffset_3_9u4b5_gg_",
125
+ "_xsOffset_4": "_xsOffset_4_9u4b5_gg_",
126
+ "_xsOffset_5": "_xsOffset_5_9u4b5_gg_",
127
+ "_xsOffset_6": "_xsOffset_6_9u4b5_gg_",
128
+ "_xsOffset_7": "_xsOffset_7_9u4b5_gg_",
129
+ "_xsOffset_8": "_xsOffset_8_9u4b5_gg_",
130
+ "_xsOffset_9": "_xsOffset_9_9u4b5_gg_",
131
+ "_xsOffset_10": "_xsOffset_10_9u4b5_gg_",
132
+ "_xsOffset_11": "_xsOffset_11_9u4b5_gg_",
133
+ "_xsOffset_12": "_xsOffset_12_9u4b5_gg_"
134
134
  });
135
135
  var Row = /*#__PURE__*/function (_Component) {
136
136
  (0, _inherits2["default"])(Row, _Component);
@@ -12,120 +12,120 @@ import React from 'react';
12
12
  import { Box, Flex } from 'intergalactic/flex-box';
13
13
  import createComponent, { Component, sstyled, Root } from 'intergalactic/core';
14
14
  /*__reshadow-styles__:"./style/grid.shadow.css"*/
15
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SCol_rfcmp_gg_{box-sizing:border-box;max-width:100%;min-height:1px;flex:0 0 auto}.___SCol_rfcmp_gg_.__span_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._span_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._span_0_rfcmp_gg_{flex-basis:0;max-width:0}.___SCol_rfcmp_gg_._span_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._span_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._span_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._span_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._span_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._span_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._span_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._span_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._span_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._span_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._span_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._span_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._offset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._offset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._offset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._offset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._offset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._offset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._offset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._offset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._offset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._offset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._offset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._offset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._offset_12_rfcmp_gg_{margin-left:100%}@media (max-width:1199px){.___SCol_rfcmp_gg_.__md_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._md_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._md_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._md_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._md_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._md_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._md_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._md_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._md_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._md_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._md_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._md_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._md_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._md_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._md_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._mdOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._mdOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._mdOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._mdOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._mdOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._mdOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._mdOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._mdOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._mdOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._mdOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._mdOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._mdOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._mdOffset_12_rfcmp_gg_{margin-left:100%}}@media (max-width:767px){.___SCol_rfcmp_gg_.__sm_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._sm_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._sm_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._sm_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._sm_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._sm_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._sm_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._sm_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._sm_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._sm_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._sm_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._sm_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._sm_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._sm_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._sm_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._smOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._smOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._smOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._smOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._smOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._smOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._smOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._smOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._smOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._smOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._smOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._smOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._smOffset_12_rfcmp_gg_{margin-left:100%}}@media (max-width:319px){.___SCol_rfcmp_gg_.__xs_rfcmp_gg_{flex:1 0 0}.___SCol_rfcmp_gg_._xs_auto_rfcmp_gg_{flex-basis:auto;max-width:none}.___SCol_rfcmp_gg_._xs_0_rfcmp_gg_{display:none}.___SCol_rfcmp_gg_._xs_1_rfcmp_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_rfcmp_gg_._xs_2_rfcmp_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_rfcmp_gg_._xs_3_rfcmp_gg_{flex-basis:25%;max-width:25%}.___SCol_rfcmp_gg_._xs_4_rfcmp_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_rfcmp_gg_._xs_5_rfcmp_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_rfcmp_gg_._xs_6_rfcmp_gg_{flex-basis:50%;max-width:50%}.___SCol_rfcmp_gg_._xs_7_rfcmp_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_rfcmp_gg_._xs_8_rfcmp_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_rfcmp_gg_._xs_9_rfcmp_gg_{flex-basis:75%;max-width:75%}.___SCol_rfcmp_gg_._xs_10_rfcmp_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_rfcmp_gg_._xs_11_rfcmp_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_rfcmp_gg_._xs_12_rfcmp_gg_{flex-basis:100%;max-width:100%}.___SCol_rfcmp_gg_._xsOffset_0_rfcmp_gg_{margin-left:0}.___SCol_rfcmp_gg_._xsOffset_1_rfcmp_gg_{margin-left:8.333%}.___SCol_rfcmp_gg_._xsOffset_2_rfcmp_gg_{margin-left:16.667%}.___SCol_rfcmp_gg_._xsOffset_3_rfcmp_gg_{margin-left:25%}.___SCol_rfcmp_gg_._xsOffset_4_rfcmp_gg_{margin-left:33.333%}.___SCol_rfcmp_gg_._xsOffset_5_rfcmp_gg_{margin-left:41.667%}.___SCol_rfcmp_gg_._xsOffset_6_rfcmp_gg_{margin-left:50%}.___SCol_rfcmp_gg_._xsOffset_7_rfcmp_gg_{margin-left:58.333%}.___SCol_rfcmp_gg_._xsOffset_8_rfcmp_gg_{margin-left:66.667%}.___SCol_rfcmp_gg_._xsOffset_9_rfcmp_gg_{margin-left:75%}.___SCol_rfcmp_gg_._xsOffset_10_rfcmp_gg_{margin-left:83.333%}.___SCol_rfcmp_gg_._xsOffset_11_rfcmp_gg_{margin-left:91.667%}.___SCol_rfcmp_gg_._xsOffset_12_rfcmp_gg_{margin-left:100%}}" /*__inner_css_end__*/, "rfcmp_gg_") /*__reshadow_css_end__*/, {
16
- "__SCol": "___SCol_rfcmp_gg_",
17
- "_span": "__span_rfcmp_gg_",
18
- "_span_auto": "_span_auto_rfcmp_gg_",
19
- "_span_0": "_span_0_rfcmp_gg_",
20
- "_span_1": "_span_1_rfcmp_gg_",
21
- "_span_2": "_span_2_rfcmp_gg_",
22
- "_span_3": "_span_3_rfcmp_gg_",
23
- "_span_4": "_span_4_rfcmp_gg_",
24
- "_span_5": "_span_5_rfcmp_gg_",
25
- "_span_6": "_span_6_rfcmp_gg_",
26
- "_span_7": "_span_7_rfcmp_gg_",
27
- "_span_8": "_span_8_rfcmp_gg_",
28
- "_span_9": "_span_9_rfcmp_gg_",
29
- "_span_10": "_span_10_rfcmp_gg_",
30
- "_span_11": "_span_11_rfcmp_gg_",
31
- "_span_12": "_span_12_rfcmp_gg_",
32
- "_offset_0": "_offset_0_rfcmp_gg_",
33
- "_offset_1": "_offset_1_rfcmp_gg_",
34
- "_offset_2": "_offset_2_rfcmp_gg_",
35
- "_offset_3": "_offset_3_rfcmp_gg_",
36
- "_offset_4": "_offset_4_rfcmp_gg_",
37
- "_offset_5": "_offset_5_rfcmp_gg_",
38
- "_offset_6": "_offset_6_rfcmp_gg_",
39
- "_offset_7": "_offset_7_rfcmp_gg_",
40
- "_offset_8": "_offset_8_rfcmp_gg_",
41
- "_offset_9": "_offset_9_rfcmp_gg_",
42
- "_offset_10": "_offset_10_rfcmp_gg_",
43
- "_offset_11": "_offset_11_rfcmp_gg_",
44
- "_offset_12": "_offset_12_rfcmp_gg_",
45
- "_md": "__md_rfcmp_gg_",
46
- "_md_auto": "_md_auto_rfcmp_gg_",
47
- "_md_0": "_md_0_rfcmp_gg_",
48
- "_md_1": "_md_1_rfcmp_gg_",
49
- "_md_2": "_md_2_rfcmp_gg_",
50
- "_md_3": "_md_3_rfcmp_gg_",
51
- "_md_4": "_md_4_rfcmp_gg_",
52
- "_md_5": "_md_5_rfcmp_gg_",
53
- "_md_6": "_md_6_rfcmp_gg_",
54
- "_md_7": "_md_7_rfcmp_gg_",
55
- "_md_8": "_md_8_rfcmp_gg_",
56
- "_md_9": "_md_9_rfcmp_gg_",
57
- "_md_10": "_md_10_rfcmp_gg_",
58
- "_md_11": "_md_11_rfcmp_gg_",
59
- "_md_12": "_md_12_rfcmp_gg_",
60
- "_mdOffset_0": "_mdOffset_0_rfcmp_gg_",
61
- "_mdOffset_1": "_mdOffset_1_rfcmp_gg_",
62
- "_mdOffset_2": "_mdOffset_2_rfcmp_gg_",
63
- "_mdOffset_3": "_mdOffset_3_rfcmp_gg_",
64
- "_mdOffset_4": "_mdOffset_4_rfcmp_gg_",
65
- "_mdOffset_5": "_mdOffset_5_rfcmp_gg_",
66
- "_mdOffset_6": "_mdOffset_6_rfcmp_gg_",
67
- "_mdOffset_7": "_mdOffset_7_rfcmp_gg_",
68
- "_mdOffset_8": "_mdOffset_8_rfcmp_gg_",
69
- "_mdOffset_9": "_mdOffset_9_rfcmp_gg_",
70
- "_mdOffset_10": "_mdOffset_10_rfcmp_gg_",
71
- "_mdOffset_11": "_mdOffset_11_rfcmp_gg_",
72
- "_mdOffset_12": "_mdOffset_12_rfcmp_gg_",
73
- "_sm": "__sm_rfcmp_gg_",
74
- "_sm_auto": "_sm_auto_rfcmp_gg_",
75
- "_sm_0": "_sm_0_rfcmp_gg_",
76
- "_sm_1": "_sm_1_rfcmp_gg_",
77
- "_sm_2": "_sm_2_rfcmp_gg_",
78
- "_sm_3": "_sm_3_rfcmp_gg_",
79
- "_sm_4": "_sm_4_rfcmp_gg_",
80
- "_sm_5": "_sm_5_rfcmp_gg_",
81
- "_sm_6": "_sm_6_rfcmp_gg_",
82
- "_sm_7": "_sm_7_rfcmp_gg_",
83
- "_sm_8": "_sm_8_rfcmp_gg_",
84
- "_sm_9": "_sm_9_rfcmp_gg_",
85
- "_sm_10": "_sm_10_rfcmp_gg_",
86
- "_sm_11": "_sm_11_rfcmp_gg_",
87
- "_sm_12": "_sm_12_rfcmp_gg_",
88
- "_smOffset_0": "_smOffset_0_rfcmp_gg_",
89
- "_smOffset_1": "_smOffset_1_rfcmp_gg_",
90
- "_smOffset_2": "_smOffset_2_rfcmp_gg_",
91
- "_smOffset_3": "_smOffset_3_rfcmp_gg_",
92
- "_smOffset_4": "_smOffset_4_rfcmp_gg_",
93
- "_smOffset_5": "_smOffset_5_rfcmp_gg_",
94
- "_smOffset_6": "_smOffset_6_rfcmp_gg_",
95
- "_smOffset_7": "_smOffset_7_rfcmp_gg_",
96
- "_smOffset_8": "_smOffset_8_rfcmp_gg_",
97
- "_smOffset_9": "_smOffset_9_rfcmp_gg_",
98
- "_smOffset_10": "_smOffset_10_rfcmp_gg_",
99
- "_smOffset_11": "_smOffset_11_rfcmp_gg_",
100
- "_smOffset_12": "_smOffset_12_rfcmp_gg_",
101
- "_xs": "__xs_rfcmp_gg_",
102
- "_xs_auto": "_xs_auto_rfcmp_gg_",
103
- "_xs_0": "_xs_0_rfcmp_gg_",
104
- "_xs_1": "_xs_1_rfcmp_gg_",
105
- "_xs_2": "_xs_2_rfcmp_gg_",
106
- "_xs_3": "_xs_3_rfcmp_gg_",
107
- "_xs_4": "_xs_4_rfcmp_gg_",
108
- "_xs_5": "_xs_5_rfcmp_gg_",
109
- "_xs_6": "_xs_6_rfcmp_gg_",
110
- "_xs_7": "_xs_7_rfcmp_gg_",
111
- "_xs_8": "_xs_8_rfcmp_gg_",
112
- "_xs_9": "_xs_9_rfcmp_gg_",
113
- "_xs_10": "_xs_10_rfcmp_gg_",
114
- "_xs_11": "_xs_11_rfcmp_gg_",
115
- "_xs_12": "_xs_12_rfcmp_gg_",
116
- "_xsOffset_0": "_xsOffset_0_rfcmp_gg_",
117
- "_xsOffset_1": "_xsOffset_1_rfcmp_gg_",
118
- "_xsOffset_2": "_xsOffset_2_rfcmp_gg_",
119
- "_xsOffset_3": "_xsOffset_3_rfcmp_gg_",
120
- "_xsOffset_4": "_xsOffset_4_rfcmp_gg_",
121
- "_xsOffset_5": "_xsOffset_5_rfcmp_gg_",
122
- "_xsOffset_6": "_xsOffset_6_rfcmp_gg_",
123
- "_xsOffset_7": "_xsOffset_7_rfcmp_gg_",
124
- "_xsOffset_8": "_xsOffset_8_rfcmp_gg_",
125
- "_xsOffset_9": "_xsOffset_9_rfcmp_gg_",
126
- "_xsOffset_10": "_xsOffset_10_rfcmp_gg_",
127
- "_xsOffset_11": "_xsOffset_11_rfcmp_gg_",
128
- "_xsOffset_12": "_xsOffset_12_rfcmp_gg_"
15
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SCol_9u4b5_gg_{box-sizing:border-box;max-width:100%;min-height:1px;flex:0 0 auto}.___SCol_9u4b5_gg_.__span_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._span_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._span_0_9u4b5_gg_{flex-basis:0;max-width:0}.___SCol_9u4b5_gg_._span_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._span_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._span_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._span_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._span_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._span_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._span_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._span_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._span_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._span_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._span_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._span_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._offset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._offset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._offset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._offset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._offset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._offset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._offset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._offset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._offset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._offset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._offset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._offset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._offset_12_9u4b5_gg_{margin-left:100%}@media (max-width:1199px){.___SCol_9u4b5_gg_.__md_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._md_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._md_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._md_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._md_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._md_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._md_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._md_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._md_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._md_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._md_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._md_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._md_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._md_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._md_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._mdOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._mdOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._mdOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._mdOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._mdOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._mdOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._mdOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._mdOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._mdOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._mdOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._mdOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._mdOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._mdOffset_12_9u4b5_gg_{margin-left:100%}}@media (max-width:767px){.___SCol_9u4b5_gg_.__sm_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._sm_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._sm_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._sm_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._sm_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._sm_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._sm_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._sm_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._sm_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._sm_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._sm_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._sm_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._sm_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._sm_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._sm_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._smOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._smOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._smOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._smOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._smOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._smOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._smOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._smOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._smOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._smOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._smOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._smOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._smOffset_12_9u4b5_gg_{margin-left:100%}}@media (max-width:319px){.___SCol_9u4b5_gg_.__xs_9u4b5_gg_{flex:1 0 0}.___SCol_9u4b5_gg_._xs_auto_9u4b5_gg_{flex-basis:auto;max-width:none}.___SCol_9u4b5_gg_._xs_0_9u4b5_gg_{display:none}.___SCol_9u4b5_gg_._xs_1_9u4b5_gg_{flex-basis:8.333%;max-width:8.333%}.___SCol_9u4b5_gg_._xs_2_9u4b5_gg_{flex-basis:16.667%;max-width:16.667%}.___SCol_9u4b5_gg_._xs_3_9u4b5_gg_{flex-basis:25%;max-width:25%}.___SCol_9u4b5_gg_._xs_4_9u4b5_gg_{flex-basis:33.333%;max-width:33.333%}.___SCol_9u4b5_gg_._xs_5_9u4b5_gg_{flex-basis:41.667%;max-width:41.667%}.___SCol_9u4b5_gg_._xs_6_9u4b5_gg_{flex-basis:50%;max-width:50%}.___SCol_9u4b5_gg_._xs_7_9u4b5_gg_{flex-basis:58.333%;max-width:58.333%}.___SCol_9u4b5_gg_._xs_8_9u4b5_gg_{flex-basis:66.667%;max-width:66.667%}.___SCol_9u4b5_gg_._xs_9_9u4b5_gg_{flex-basis:75%;max-width:75%}.___SCol_9u4b5_gg_._xs_10_9u4b5_gg_{flex-basis:83.333%;max-width:83.333%}.___SCol_9u4b5_gg_._xs_11_9u4b5_gg_{flex-basis:91.667%;max-width:91.667%}.___SCol_9u4b5_gg_._xs_12_9u4b5_gg_{flex-basis:100%;max-width:100%}.___SCol_9u4b5_gg_._xsOffset_0_9u4b5_gg_{margin-left:0}.___SCol_9u4b5_gg_._xsOffset_1_9u4b5_gg_{margin-left:8.333%}.___SCol_9u4b5_gg_._xsOffset_2_9u4b5_gg_{margin-left:16.667%}.___SCol_9u4b5_gg_._xsOffset_3_9u4b5_gg_{margin-left:25%}.___SCol_9u4b5_gg_._xsOffset_4_9u4b5_gg_{margin-left:33.333%}.___SCol_9u4b5_gg_._xsOffset_5_9u4b5_gg_{margin-left:41.667%}.___SCol_9u4b5_gg_._xsOffset_6_9u4b5_gg_{margin-left:50%}.___SCol_9u4b5_gg_._xsOffset_7_9u4b5_gg_{margin-left:58.333%}.___SCol_9u4b5_gg_._xsOffset_8_9u4b5_gg_{margin-left:66.667%}.___SCol_9u4b5_gg_._xsOffset_9_9u4b5_gg_{margin-left:75%}.___SCol_9u4b5_gg_._xsOffset_10_9u4b5_gg_{margin-left:83.333%}.___SCol_9u4b5_gg_._xsOffset_11_9u4b5_gg_{margin-left:91.667%}.___SCol_9u4b5_gg_._xsOffset_12_9u4b5_gg_{margin-left:100%}}" /*__inner_css_end__*/, "9u4b5_gg_") /*__reshadow_css_end__*/, {
16
+ "__SCol": "___SCol_9u4b5_gg_",
17
+ "_span": "__span_9u4b5_gg_",
18
+ "_span_auto": "_span_auto_9u4b5_gg_",
19
+ "_span_0": "_span_0_9u4b5_gg_",
20
+ "_span_1": "_span_1_9u4b5_gg_",
21
+ "_span_2": "_span_2_9u4b5_gg_",
22
+ "_span_3": "_span_3_9u4b5_gg_",
23
+ "_span_4": "_span_4_9u4b5_gg_",
24
+ "_span_5": "_span_5_9u4b5_gg_",
25
+ "_span_6": "_span_6_9u4b5_gg_",
26
+ "_span_7": "_span_7_9u4b5_gg_",
27
+ "_span_8": "_span_8_9u4b5_gg_",
28
+ "_span_9": "_span_9_9u4b5_gg_",
29
+ "_span_10": "_span_10_9u4b5_gg_",
30
+ "_span_11": "_span_11_9u4b5_gg_",
31
+ "_span_12": "_span_12_9u4b5_gg_",
32
+ "_offset_0": "_offset_0_9u4b5_gg_",
33
+ "_offset_1": "_offset_1_9u4b5_gg_",
34
+ "_offset_2": "_offset_2_9u4b5_gg_",
35
+ "_offset_3": "_offset_3_9u4b5_gg_",
36
+ "_offset_4": "_offset_4_9u4b5_gg_",
37
+ "_offset_5": "_offset_5_9u4b5_gg_",
38
+ "_offset_6": "_offset_6_9u4b5_gg_",
39
+ "_offset_7": "_offset_7_9u4b5_gg_",
40
+ "_offset_8": "_offset_8_9u4b5_gg_",
41
+ "_offset_9": "_offset_9_9u4b5_gg_",
42
+ "_offset_10": "_offset_10_9u4b5_gg_",
43
+ "_offset_11": "_offset_11_9u4b5_gg_",
44
+ "_offset_12": "_offset_12_9u4b5_gg_",
45
+ "_md": "__md_9u4b5_gg_",
46
+ "_md_auto": "_md_auto_9u4b5_gg_",
47
+ "_md_0": "_md_0_9u4b5_gg_",
48
+ "_md_1": "_md_1_9u4b5_gg_",
49
+ "_md_2": "_md_2_9u4b5_gg_",
50
+ "_md_3": "_md_3_9u4b5_gg_",
51
+ "_md_4": "_md_4_9u4b5_gg_",
52
+ "_md_5": "_md_5_9u4b5_gg_",
53
+ "_md_6": "_md_6_9u4b5_gg_",
54
+ "_md_7": "_md_7_9u4b5_gg_",
55
+ "_md_8": "_md_8_9u4b5_gg_",
56
+ "_md_9": "_md_9_9u4b5_gg_",
57
+ "_md_10": "_md_10_9u4b5_gg_",
58
+ "_md_11": "_md_11_9u4b5_gg_",
59
+ "_md_12": "_md_12_9u4b5_gg_",
60
+ "_mdOffset_0": "_mdOffset_0_9u4b5_gg_",
61
+ "_mdOffset_1": "_mdOffset_1_9u4b5_gg_",
62
+ "_mdOffset_2": "_mdOffset_2_9u4b5_gg_",
63
+ "_mdOffset_3": "_mdOffset_3_9u4b5_gg_",
64
+ "_mdOffset_4": "_mdOffset_4_9u4b5_gg_",
65
+ "_mdOffset_5": "_mdOffset_5_9u4b5_gg_",
66
+ "_mdOffset_6": "_mdOffset_6_9u4b5_gg_",
67
+ "_mdOffset_7": "_mdOffset_7_9u4b5_gg_",
68
+ "_mdOffset_8": "_mdOffset_8_9u4b5_gg_",
69
+ "_mdOffset_9": "_mdOffset_9_9u4b5_gg_",
70
+ "_mdOffset_10": "_mdOffset_10_9u4b5_gg_",
71
+ "_mdOffset_11": "_mdOffset_11_9u4b5_gg_",
72
+ "_mdOffset_12": "_mdOffset_12_9u4b5_gg_",
73
+ "_sm": "__sm_9u4b5_gg_",
74
+ "_sm_auto": "_sm_auto_9u4b5_gg_",
75
+ "_sm_0": "_sm_0_9u4b5_gg_",
76
+ "_sm_1": "_sm_1_9u4b5_gg_",
77
+ "_sm_2": "_sm_2_9u4b5_gg_",
78
+ "_sm_3": "_sm_3_9u4b5_gg_",
79
+ "_sm_4": "_sm_4_9u4b5_gg_",
80
+ "_sm_5": "_sm_5_9u4b5_gg_",
81
+ "_sm_6": "_sm_6_9u4b5_gg_",
82
+ "_sm_7": "_sm_7_9u4b5_gg_",
83
+ "_sm_8": "_sm_8_9u4b5_gg_",
84
+ "_sm_9": "_sm_9_9u4b5_gg_",
85
+ "_sm_10": "_sm_10_9u4b5_gg_",
86
+ "_sm_11": "_sm_11_9u4b5_gg_",
87
+ "_sm_12": "_sm_12_9u4b5_gg_",
88
+ "_smOffset_0": "_smOffset_0_9u4b5_gg_",
89
+ "_smOffset_1": "_smOffset_1_9u4b5_gg_",
90
+ "_smOffset_2": "_smOffset_2_9u4b5_gg_",
91
+ "_smOffset_3": "_smOffset_3_9u4b5_gg_",
92
+ "_smOffset_4": "_smOffset_4_9u4b5_gg_",
93
+ "_smOffset_5": "_smOffset_5_9u4b5_gg_",
94
+ "_smOffset_6": "_smOffset_6_9u4b5_gg_",
95
+ "_smOffset_7": "_smOffset_7_9u4b5_gg_",
96
+ "_smOffset_8": "_smOffset_8_9u4b5_gg_",
97
+ "_smOffset_9": "_smOffset_9_9u4b5_gg_",
98
+ "_smOffset_10": "_smOffset_10_9u4b5_gg_",
99
+ "_smOffset_11": "_smOffset_11_9u4b5_gg_",
100
+ "_smOffset_12": "_smOffset_12_9u4b5_gg_",
101
+ "_xs": "__xs_9u4b5_gg_",
102
+ "_xs_auto": "_xs_auto_9u4b5_gg_",
103
+ "_xs_0": "_xs_0_9u4b5_gg_",
104
+ "_xs_1": "_xs_1_9u4b5_gg_",
105
+ "_xs_2": "_xs_2_9u4b5_gg_",
106
+ "_xs_3": "_xs_3_9u4b5_gg_",
107
+ "_xs_4": "_xs_4_9u4b5_gg_",
108
+ "_xs_5": "_xs_5_9u4b5_gg_",
109
+ "_xs_6": "_xs_6_9u4b5_gg_",
110
+ "_xs_7": "_xs_7_9u4b5_gg_",
111
+ "_xs_8": "_xs_8_9u4b5_gg_",
112
+ "_xs_9": "_xs_9_9u4b5_gg_",
113
+ "_xs_10": "_xs_10_9u4b5_gg_",
114
+ "_xs_11": "_xs_11_9u4b5_gg_",
115
+ "_xs_12": "_xs_12_9u4b5_gg_",
116
+ "_xsOffset_0": "_xsOffset_0_9u4b5_gg_",
117
+ "_xsOffset_1": "_xsOffset_1_9u4b5_gg_",
118
+ "_xsOffset_2": "_xsOffset_2_9u4b5_gg_",
119
+ "_xsOffset_3": "_xsOffset_3_9u4b5_gg_",
120
+ "_xsOffset_4": "_xsOffset_4_9u4b5_gg_",
121
+ "_xsOffset_5": "_xsOffset_5_9u4b5_gg_",
122
+ "_xsOffset_6": "_xsOffset_6_9u4b5_gg_",
123
+ "_xsOffset_7": "_xsOffset_7_9u4b5_gg_",
124
+ "_xsOffset_8": "_xsOffset_8_9u4b5_gg_",
125
+ "_xsOffset_9": "_xsOffset_9_9u4b5_gg_",
126
+ "_xsOffset_10": "_xsOffset_10_9u4b5_gg_",
127
+ "_xsOffset_11": "_xsOffset_11_9u4b5_gg_",
128
+ "_xsOffset_12": "_xsOffset_12_9u4b5_gg_"
129
129
  });
130
130
  var Row = /*#__PURE__*/function (_Component) {
131
131
  _inherits(Row, _Component);
@@ -28,14 +28,14 @@ function Confluence(_ref, ref) {
28
28
  viewBox: viewBox
29
29
  }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
30
  d: "M2.337 17.267c-.215.35-.457.758-.646 1.083a.663.663 0 0 0 .222.9l4.307 2.651a.663.663 0 0 0 .917-.225c.17-.288.391-.663.633-1.064 1.706-2.815 3.425-2.471 6.516-.993l4.27 2.03a.665.665 0 0 0 .892-.331l2.05-4.638a.663.663 0 0 0-.331-.868 654.128 654.128 0 0 1-4.307-2.047c-5.817-2.83-10.75-2.644-14.523 3.502Z",
31
- fill: "url(#intergalactic-icon-Confluence_l_a-4.24.0)",
31
+ fill: "url(#intergalactic-icon-Confluence_l_a-4.24.1-prerelease.1)",
32
32
  shapeRendering: "geometricPrecision"
33
33
  }), /*#__PURE__*/_react["default"].createElement("path", {
34
34
  d: "M21.647 6.732c.216-.351.458-.762.663-1.083a.663.663 0 0 0-.225-.901l-4.307-2.65a.663.663 0 0 0-.914.225l-.636 1.063c-1.707 2.816-3.423 2.471-6.517.994L5.428 2.359a.662.662 0 0 0-.888.331L2.49 7.328a.663.663 0 0 0 .33.868c.902.424 2.697 1.269 4.307 2.047 5.814 2.806 10.747 2.62 14.52-3.511Z",
35
- fill: "url(#intergalactic-icon-Confluence_l_b-4.24.0)",
35
+ fill: "url(#intergalactic-icon-Confluence_l_b-4.24.1-prerelease.1)",
36
36
  shapeRendering: "geometricPrecision"
37
37
  }), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
38
- id: "intergalactic-icon-Confluence_l_a-4.24.0",
38
+ id: "intergalactic-icon-Confluence_l_a-4.24.1-prerelease.1",
39
39
  x1: "21.369",
40
40
  y1: "23.259",
41
41
  x2: "8.34",
@@ -50,7 +50,7 @@ function Confluence(_ref, ref) {
50
50
  offset: "1",
51
51
  stopColor: "#0082FF"
52
52
  })), /*#__PURE__*/_react["default"].createElement("linearGradient", {
53
- id: "intergalactic-icon-Confluence_l_b-4.24.0",
53
+ id: "intergalactic-icon-Confluence_l_b-4.24.1-prerelease.1",
54
54
  x1: "2.615",
55
55
  y1: ".729",
56
56
  x2: "15.645",
@@ -17,14 +17,14 @@ function Confluence({
17
17
  viewBox: viewBox
18
18
  }, props), /*#__PURE__*/React.createElement("path", {
19
19
  d: "M2.337 17.267c-.215.35-.457.758-.646 1.083a.663.663 0 0 0 .222.9l4.307 2.651a.663.663 0 0 0 .917-.225c.17-.288.391-.663.633-1.064 1.706-2.815 3.425-2.471 6.516-.993l4.27 2.03a.665.665 0 0 0 .892-.331l2.05-4.638a.663.663 0 0 0-.331-.868 654.128 654.128 0 0 1-4.307-2.047c-5.817-2.83-10.75-2.644-14.523 3.502Z",
20
- fill: "url(#intergalactic-icon-Confluence_l_a-4.24.0)",
20
+ fill: "url(#intergalactic-icon-Confluence_l_a-4.24.1-prerelease.1)",
21
21
  shapeRendering: "geometricPrecision"
22
22
  }), /*#__PURE__*/React.createElement("path", {
23
23
  d: "M21.647 6.732c.216-.351.458-.762.663-1.083a.663.663 0 0 0-.225-.901l-4.307-2.65a.663.663 0 0 0-.914.225l-.636 1.063c-1.707 2.816-3.423 2.471-6.517.994L5.428 2.359a.662.662 0 0 0-.888.331L2.49 7.328a.663.663 0 0 0 .33.868c.902.424 2.697 1.269 4.307 2.047 5.814 2.806 10.747 2.62 14.52-3.511Z",
24
- fill: "url(#intergalactic-icon-Confluence_l_b-4.24.0)",
24
+ fill: "url(#intergalactic-icon-Confluence_l_b-4.24.1-prerelease.1)",
25
25
  shapeRendering: "geometricPrecision"
26
26
  }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
27
- id: "intergalactic-icon-Confluence_l_a-4.24.0",
27
+ id: "intergalactic-icon-Confluence_l_a-4.24.1-prerelease.1",
28
28
  x1: "21.369",
29
29
  y1: "23.259",
30
30
  x2: "8.34",
@@ -39,7 +39,7 @@ function Confluence({
39
39
  offset: "1",
40
40
  stopColor: "#0082FF"
41
41
  })), /*#__PURE__*/React.createElement("linearGradient", {
42
- id: "intergalactic-icon-Confluence_l_b-4.24.0",
42
+ id: "intergalactic-icon-Confluence_l_b-4.24.1-prerelease.1",
43
43
  x1: "2.615",
44
44
  y1: ".729",
45
45
  x2: "15.645",