survey-analytics 2.5.16 → 3.0.0-beta.1

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 (237) hide show
  1. package/fesm/shared.mjs +759 -3180
  2. package/fesm/shared.mjs.map +1 -1
  3. package/fesm/shared2.mjs +10561 -8296
  4. package/fesm/shared2.mjs.map +1 -1
  5. package/fesm/shared3.mjs +4844 -0
  6. package/fesm/shared3.mjs.map +1 -0
  7. package/fesm/shared4.mjs +42 -0
  8. package/fesm/shared4.mjs.map +1 -0
  9. package/fesm/survey.analytics.apexcharts.mjs +1082 -0
  10. package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
  11. package/fesm/survey.analytics.core.mjs +3 -3
  12. package/fesm/survey.analytics.mjs +7 -755
  13. package/fesm/survey.analytics.mjs.map +1 -1
  14. package/fesm/survey.analytics.mongo.mjs +1 -1
  15. package/fesm/survey.analytics.plotly.mjs +13 -0
  16. package/fesm/survey.analytics.plotly.mjs.map +1 -0
  17. package/fesm/survey.analytics.tabulator.mjs +341 -193
  18. package/fesm/survey.analytics.tabulator.mjs.map +1 -1
  19. package/fesm/themes/index.mjs +1942 -0
  20. package/fesm/themes/index.mjs.map +1 -0
  21. package/package.json +39 -10
  22. package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
  23. package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
  24. package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
  25. package/survey-analytics-plotly.types/analytics-localization/english.d.ts +142 -0
  26. package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
  27. package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
  28. package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
  29. package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
  30. package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
  31. package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
  32. package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
  33. package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
  34. package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
  35. package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
  36. package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
  37. package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
  38. package/survey-analytics-plotly.types/axisDescription.d.ts +6 -0
  39. package/survey-analytics-plotly.types/boolean.d.ts +15 -0
  40. package/survey-analytics-plotly.types/card.d.ts +29 -0
  41. package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
  42. package/survey-analytics-plotly.types/config.d.ts +35 -0
  43. package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
  44. package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
  45. package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
  46. package/survey-analytics-plotly.types/entries/summary.core.d.ts +46 -0
  47. package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
  48. package/survey-analytics-plotly.types/histogram.d.ts +102 -0
  49. package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
  50. package/survey-analytics-plotly.types/localizationManager.d.ts +164 -0
  51. package/survey-analytics-plotly.types/matrix.d.ts +17 -0
  52. package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
  53. package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
  54. package/survey-analytics-plotly.types/nps.d.ts +37 -0
  55. package/survey-analytics-plotly.types/number.d.ts +27 -0
  56. package/survey-analytics-plotly.types/pivot.d.ts +71 -0
  57. package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
  58. package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
  59. package/survey-analytics-plotly.types/ranking.d.ts +12 -0
  60. package/survey-analytics-plotly.types/selectBase.d.ts +117 -0
  61. package/survey-analytics-plotly.types/sideBarItemCreators.d.ts +7 -0
  62. package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
  63. package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
  64. package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
  65. package/survey-analytics-plotly.types/text.d.ts +25 -0
  66. package/survey-analytics-plotly.types/theme.d.ts +51 -0
  67. package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
  68. package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
  69. package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
  70. package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
  71. package/survey-analytics-plotly.types/utils/documentHelper.d.ts +28 -0
  72. package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +34 -0
  73. package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +48 -0
  74. package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +46 -0
  75. package/survey-analytics-plotly.types/utils/editableSeriesListWidget.d.ts +34 -0
  76. package/survey-analytics-plotly.types/utils/elementVisibilityAction.d.ts +22 -0
  77. package/survey-analytics-plotly.types/utils/index.d.ts +25 -0
  78. package/survey-analytics-plotly.types/utils/sidebarWidget.d.ts +48 -0
  79. package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
  80. package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
  81. package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
  82. package/survey-analytics-plotly.types/visualizationManager.d.ts +61 -0
  83. package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
  84. package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
  85. package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
  86. package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
  87. package/survey-analytics-plotly.types/visualizer-interfaces.d.ts +25 -0
  88. package/survey-analytics-plotly.types/visualizerBase.d.ts +435 -0
  89. package/survey-analytics-plotly.types/visualizerDescription.d.ts +4 -0
  90. package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
  91. package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
  92. package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
  93. package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
  94. package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
  95. package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
  96. package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
  97. package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
  98. package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +40 -0
  99. package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
  100. package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
  101. package/survey-analytics-tabulator.types/localizationManager.d.ts +40 -0
  102. package/survey-analytics-tabulator.types/tables/columnbuilder.d.ts +16 -16
  103. package/survey-analytics-tabulator.types/tables/columns.d.ts +18 -18
  104. package/survey-analytics-tabulator.types/tables/config.d.ts +2 -2
  105. package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
  106. package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
  107. package/survey-analytics-tabulator.types/tables/table-interfaces.d.ts +56 -0
  108. package/survey-analytics-tabulator.types/tables/table.d.ts +4 -48
  109. package/survey-analytics-tabulator.types/tables/tabulator.d.ts +9 -1
  110. package/survey-analytics-tabulator.types/theme.d.ts +51 -0
  111. package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
  112. package/survey-analytics-tabulator.types/utils/documentHelper.d.ts +28 -0
  113. package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +34 -0
  114. package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +48 -0
  115. package/survey-analytics-tabulator.types/utils/index.d.ts +1 -15
  116. package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
  117. package/survey-analytics.types/analytics-localization/english.d.ts +40 -0
  118. package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
  119. package/survey-analytics.types/apexcharts/index.d.ts +2 -0
  120. package/survey-analytics.types/apexcharts/setup.d.ts +200 -0
  121. package/survey-analytics.types/axisDescription.d.ts +6 -0
  122. package/survey-analytics.types/boolean.d.ts +1 -1
  123. package/survey-analytics.types/card.d.ts +29 -0
  124. package/survey-analytics.types/chartConfig.d.ts +9 -0
  125. package/survey-analytics.types/config.d.ts +1 -33
  126. package/survey-analytics.types/dashboard.d.ts +51 -0
  127. package/survey-analytics.types/dataProvider.d.ts +17 -0
  128. package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
  129. package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
  130. package/survey-analytics.types/entries/summary.core.d.ts +9 -1
  131. package/survey-analytics.types/histogram.d.ts +29 -13
  132. package/survey-analytics.types/layout-engine.d.ts +29 -0
  133. package/survey-analytics.types/localizationManager.d.ts +40 -0
  134. package/survey-analytics.types/matrix.d.ts +3 -2
  135. package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
  136. package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
  137. package/survey-analytics.types/nps.d.ts +5 -10
  138. package/survey-analytics.types/number.d.ts +8 -7
  139. package/survey-analytics.types/pivot.d.ts +42 -40
  140. package/survey-analytics.types/ranking.d.ts +3 -2
  141. package/survey-analytics.types/selectBase.d.ts +13 -15
  142. package/survey-analytics.types/sideBarItemCreators.d.ts +7 -0
  143. package/survey-analytics.types/statisticCalculators.d.ts +8 -13
  144. package/survey-analytics.types/statistics-table.d.ts +2 -2
  145. package/survey-analytics.types/text.d.ts +4 -3
  146. package/survey-analytics.types/theme.d.ts +51 -0
  147. package/survey-analytics.types/themes/default-light.d.ts +965 -0
  148. package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
  149. package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
  150. package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
  151. package/survey-analytics.types/utils/documentHelper.d.ts +28 -0
  152. package/survey-analytics.types/utils/dropdownActionWidget.d.ts +34 -0
  153. package/survey-analytics.types/utils/dropdownBase.d.ts +48 -0
  154. package/survey-analytics.types/utils/dropdownWidget.d.ts +46 -0
  155. package/survey-analytics.types/utils/editableSeriesListWidget.d.ts +34 -0
  156. package/survey-analytics.types/utils/elementVisibilityAction.d.ts +22 -0
  157. package/survey-analytics.types/utils/index.d.ts +1 -15
  158. package/survey-analytics.types/utils/sidebarWidget.d.ts +48 -0
  159. package/survey-analytics.types/utils/toggle.d.ts +17 -0
  160. package/survey-analytics.types/utils/utils.d.ts +9 -0
  161. package/survey-analytics.types/visualizationComposite.d.ts +1 -1
  162. package/survey-analytics.types/visualizationManager.d.ts +6 -5
  163. package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
  164. package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
  165. package/survey-analytics.types/visualizationPanel.d.ts +20 -3
  166. package/survey-analytics.types/visualizationPanelDynamic.d.ts +4 -3
  167. package/survey-analytics.types/visualizer-interfaces.d.ts +25 -0
  168. package/survey-analytics.types/visualizerBase.d.ts +80 -12
  169. package/survey-analytics.types/visualizerDescription.d.ts +4 -0
  170. package/survey-analytics.types/visualizerFactory.d.ts +11 -2
  171. package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
  172. package/survey.analytics.core.css +1534 -122
  173. package/survey.analytics.core.css.map +1 -1
  174. package/survey.analytics.core.d.ts +1 -0
  175. package/survey.analytics.core.js +6118 -1229
  176. package/survey.analytics.core.js.map +1 -1
  177. package/survey.analytics.core.min.css +11 -6
  178. package/survey.analytics.core.min.js +1 -1
  179. package/survey.analytics.core.min.js.LICENSE.txt +1 -1
  180. package/survey.analytics.css +1900 -129
  181. package/survey.analytics.css.map +1 -1
  182. package/survey.analytics.d.ts +2 -2
  183. package/survey.analytics.fontless.css +2009 -0
  184. package/survey.analytics.fontless.css.map +1 -0
  185. package/survey.analytics.fontless.min.css +16 -0
  186. package/survey.analytics.js +9764 -4539
  187. package/survey.analytics.js.map +1 -1
  188. package/survey.analytics.min.css +13 -6
  189. package/survey.analytics.min.js +1 -1
  190. package/survey.analytics.min.js.LICENSE.txt +1 -1
  191. package/survey.analytics.mongo.d.ts +1 -0
  192. package/survey.analytics.mongo.js +2 -2
  193. package/survey.analytics.mongo.js.map +1 -1
  194. package/survey.analytics.mongo.min.js +1 -1
  195. package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
  196. package/survey.analytics.plotly.css +2094 -0
  197. package/survey.analytics.plotly.css.map +1 -0
  198. package/survey.analytics.plotly.d.ts +2 -0
  199. package/survey.analytics.plotly.fontless.css +1872 -0
  200. package/survey.analytics.plotly.fontless.css.map +1 -0
  201. package/survey.analytics.plotly.fontless.min.css +15 -0
  202. package/survey.analytics.plotly.js +24673 -0
  203. package/survey.analytics.plotly.js.map +1 -0
  204. package/survey.analytics.plotly.min.css +16 -0
  205. package/survey.analytics.plotly.min.js +2 -0
  206. package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
  207. package/survey.analytics.tabulator.css +1005 -132
  208. package/survey.analytics.tabulator.css.map +1 -1
  209. package/survey.analytics.tabulator.d.ts +1 -0
  210. package/survey.analytics.tabulator.fontless.css +1134 -0
  211. package/survey.analytics.tabulator.fontless.css.map +1 -0
  212. package/survey.analytics.tabulator.fontless.min.css +6 -0
  213. package/survey.analytics.tabulator.js +2719 -476
  214. package/survey.analytics.tabulator.js.map +1 -1
  215. package/survey.analytics.tabulator.min.css +3 -2
  216. package/survey.analytics.tabulator.min.js +1 -1
  217. package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
  218. package/themes/default-dark.js +1032 -0
  219. package/themes/default-dark.js.map +1 -0
  220. package/themes/default-dark.min.js +2 -0
  221. package/themes/default-dark.min.js.LICENSE.txt +5 -0
  222. package/themes/default-light.js +1032 -0
  223. package/themes/default-light.js.map +1 -0
  224. package/themes/default-light.min.js +2 -0
  225. package/themes/default-light.min.js.LICENSE.txt +5 -0
  226. package/themes/index.js +2063 -0
  227. package/themes/index.js.map +1 -0
  228. package/themes/index.min.js +2 -0
  229. package/themes/index.min.js.LICENSE.txt +5 -0
  230. package/themes/themes/default-dark.d.ts +965 -0
  231. package/themes/themes/default-light.d.ts +965 -0
  232. package/themes/themes/index.d.ts +1934 -0
  233. package/themes/utils/helpers.d.ts +8 -0
  234. package/survey-analytics.types/plotly/setup.d.ts +0 -32
  235. /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
  236. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
  237. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
@@ -0,0 +1,2094 @@
1
+ /*!
2
+ * surveyjs - SurveyJS Dashboard library v3.0.0-beta.1
3
+ * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
+ * License: SEE LICENSE IN LICENSE
5
+ */
6
+ /*!*************************************************************************************************************************************************************************!*\
7
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/sidebar.scss ***!
8
+ \*************************************************************************************************************************************************************************/
9
+ .sa-sidebar--opened .sa-dropdown {
10
+ width: 100%;
11
+ flex-direction: column;
12
+ flex-grow: 0;
13
+ }
14
+ .sa-sidebar--opened .sa-dropdown-container {
15
+ width: 100%;
16
+ flex-grow: 0;
17
+ }
18
+ .sa-sidebar--opened .sa-dropdown-list.sa-dropdown--opened {
19
+ min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
20
+ max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
21
+ }
22
+
23
+ .sa-sidebar-backdrop {
24
+ position: fixed;
25
+ inset: 0;
26
+ z-index: 9998;
27
+ background: transparent;
28
+ pointer-events: none;
29
+ transition: background 0.2s ease;
30
+ }
31
+ .sa-sidebar-backdrop.sa-sidebar--opened {
32
+ pointer-events: auto;
33
+ background: var(--sjs2-color-utility-overlay, rgba(66, 65, 70, 0.6));
34
+ }
35
+
36
+ .sa-sidebar {
37
+ position: fixed;
38
+ top: 0;
39
+ right: 0;
40
+ bottom: 0;
41
+ z-index: 9999;
42
+ width: min(540px, 90vw);
43
+ max-width: 100%;
44
+ overflow: auto;
45
+ display: flex;
46
+ flex-direction: column;
47
+ align-items: flex-start;
48
+ background: var(--sjs2-color-utility-sheet, #fff);
49
+ /* sjs2/border-effect/elevated/default */
50
+ box-shadow: var(--sjs2-border-offset-x-elevated-default, 0) var(--sjs2-border-offset-y-elevated-default, 4px) var(--sjs2-border-blur-elevated-default, 12px) var(--sjs2-border-spread-elevated-default, 0) var(--sjs2-color-utility-shadow-elevated-default, rgba(0, 76, 68, 0.1));
51
+ transform: translateX(100%);
52
+ transition: transform 0.25s ease;
53
+ }
54
+ .sa-sidebar.sa-sidebar--opened {
55
+ transform: translateX(0);
56
+ }
57
+ .sa-sidebar .sa-sidebar-header {
58
+ display: flex;
59
+ padding-right: 40px;
60
+ align-items: flex-start;
61
+ align-self: stretch;
62
+ flex-direction: column;
63
+ gap: var(--sjs2-spacing-x300, 24px);
64
+ }
65
+ .sa-sidebar .sa-sidebar-title {
66
+ flex: 1 0 0;
67
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
68
+ font-family: var(--sjs2-typography-font-family-text);
69
+ font-weight: var(--sjs2-typography-font-weight-strong);
70
+ font-size: var(--sjs2-typography-font-size-default);
71
+ line-height: var(--sjs2-typography-line-height-default);
72
+ }
73
+ .sa-sidebar .sa-sidebar-close {
74
+ position: absolute;
75
+ right: 12px;
76
+ top: 12px;
77
+ display: flex;
78
+ justify-content: center;
79
+ align-items: center;
80
+ padding: var(--sjs2-spacing-x100, 8px);
81
+ background: transparent;
82
+ border: none;
83
+ cursor: pointer;
84
+ }
85
+ .sa-sidebar .sa-sidebar-close:hover {
86
+ border-radius: var(--sjs2-radius-component-action, 8px);
87
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(95, 94, 97, 0.1));
88
+ }
89
+ .sa-sidebar .sa-sidebar-close:hover use {
90
+ fill: var(--sjs2-color-fg-basic-primary-muted, #424146);
91
+ }
92
+ .sa-sidebar .sa-sidebar-close use {
93
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
94
+ }
95
+ .sa-sidebar .sa-sidebar-close svg {
96
+ display: flex;
97
+ width: 24px;
98
+ height: 24px;
99
+ justify-content: center;
100
+ align-items: center;
101
+ }
102
+ .sa-sidebar .sa-sidebar-content {
103
+ overflow: auto;
104
+ height: 100%;
105
+ display: flex;
106
+ padding: var(--sjs2-spacing-x300, 24px);
107
+ flex-direction: column;
108
+ align-items: flex-start;
109
+ gap: var(--sjs2-spacing-x300, 24px);
110
+ align-self: stretch;
111
+ }
112
+
113
+ .sa-sidebar-divider {
114
+ display: flex;
115
+ padding: var(--sjs2-spacing-x000, 0) 0;
116
+ flex-direction: column;
117
+ align-items: flex-start;
118
+ align-self: stretch;
119
+ }
120
+ .sa-sidebar-divider .sa-line-1 {
121
+ display: flex;
122
+ max-width: var(--_ctr-toolbox-separator-max-width-compact, 10000px);
123
+ flex-direction: column;
124
+ align-items: flex-start;
125
+ align-self: stretch;
126
+ }
127
+ .sa-sidebar-divider .sa-line-2 {
128
+ height: var(--sjs2-border-width-static-x100, 1px);
129
+ align-self: stretch;
130
+ background: var(--sjs2-color-border-basic-secondary, #d4d4d4);
131
+ }
132
+ /*!**************************************************************************************************************************************************************************!*\
133
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/visualizerBase.scss ***!
134
+ \**************************************************************************************************************************************************************************/
135
+ .sa-visualizer-wrapper {
136
+ min-width: 450px;
137
+ padding: var(--sjs2-spacing-x300, 24px);
138
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
139
+ }
140
+ @media screen and (max-width: 600px) {
141
+ .sa-visualizer-wrapper {
142
+ padding: var(--sjs2-spacing-x150, 12px);
143
+ }
144
+ }
145
+
146
+ .sa-visualizer__header {
147
+ font-family: var(--sjs2-typography-font-family-text);
148
+ font-weight: var(--sjs2-typography-font-weight-basic);
149
+ font-size: var(--sjs2-typography-font-size-default);
150
+ line-height: var(--sjs2-typography-line-height-default);
151
+ }
152
+
153
+ .sa-visualizer__content {
154
+ font-family: var(--sjs2-typography-font-family-text);
155
+ display: inline-block;
156
+ width: 100%;
157
+ }
158
+
159
+ .sa-visualizer__footer--has-content {
160
+ margin-top: 10px;
161
+ display: flex;
162
+ flex-direction: column;
163
+ gap: 8px;
164
+ }
165
+
166
+ .sa-visualizer__footer-title {
167
+ font-family: var(--sjs2-typography-font-family-text);
168
+ font-weight: var(--sjs2-typography-font-weight-strong);
169
+ font-size: var(--sjs2-typography-font-size-default);
170
+ line-height: var(--sjs2-typography-line-height-default);
171
+ display: inline-block;
172
+ color: #404040;
173
+ line-height: 34px;
174
+ vertical-align: middle;
175
+ margin: 0;
176
+ }
177
+
178
+ .sa-visualizer__footer-content {
179
+ margin-top: 10px;
180
+ }
181
+
182
+ .sa-data-loading-indicator-panel {
183
+ width: 100%;
184
+ min-height: 200px;
185
+ position: relative;
186
+ }
187
+
188
+ .sa-data-loading-indicator {
189
+ position: absolute;
190
+ width: 64px;
191
+ height: 64px;
192
+ left: calc((100% - 64px) / 2);
193
+ top: calc((100% - 64px) / 2);
194
+ animation: sa-data-loading-indicator-spinner 1s infinite linear;
195
+ }
196
+
197
+ @keyframes sa-data-loading-indicator-spinner {
198
+ from {
199
+ transform: rotate(0deg);
200
+ }
201
+ to {
202
+ transform: rotate(359deg);
203
+ }
204
+ }
205
+ /*!************************************************************************************************************************************************************************!*\
206
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/toggle.scss ***!
207
+ \************************************************************************************************************************************************************************/
208
+ .sa-toggle-container {
209
+ display: flex;
210
+ gap: var(--sjs2-spacing-x100, 8px);
211
+ }
212
+ @media screen and (max-width: 600px) {
213
+ .sa-toggle-container {
214
+ width: 100%;
215
+ justify-content: end;
216
+ }
217
+ }
218
+
219
+ .sa-toggle-element {
220
+ display: flex;
221
+ padding: var(--sjs2-spacing-x075, 6px);
222
+ width: calc(2 * var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px));
223
+ align-items: center;
224
+ gap: var(--sjs2-spacing-x050, 4px);
225
+ transition: background-color 0.3s ease;
226
+ border-radius: var(--sjs2-radius-control-toggle, 9999px);
227
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-default-border, #D4D4D4);
228
+ background: var(--sjs2-color-control-toggle-false-default-bg, rgba(28, 27, 32, 0.05));
229
+ /* sjs2/shadow/inner */
230
+ box-shadow: var(--sjs2-shadow-size-inner-offset-x, 0) var(--sjs2-shadow-size-inner-offset-y, 0) var(--sjs2-shadow-size-inner-blur, 0) var(--sjs2-shadow-size-inner-spread, 1px) var(--sjs2-shadow-color-inner, #D4D4D4) inset;
231
+ }
232
+ .sa-toggle-element:hover {
233
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-hovered-border, #D4D4D4);
234
+ background: var(--sjs2-color-control-toggle-false-hovered-bg, rgba(28, 27, 32, 0.1));
235
+ }
236
+ .sa-toggle-element:hover .sa-toggle-handle {
237
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
238
+ background: var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
239
+ }
240
+ .sa-toggle-element:focus {
241
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-false-focused-border, #19B394);
242
+ background: var(--sjs2-color-control-toggle-false-focused-bg, #F5F5F5);
243
+ }
244
+ .sa-toggle-element:focus .sa-toggle-handle {
245
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
246
+ background: var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
247
+ }
248
+
249
+ .sa-toggle-element.active {
250
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-default-border, #19B394);
251
+ background: var(--sjs2-color-control-toggle-true-default-bg, #19B394);
252
+ }
253
+ .sa-toggle-element.active:hover {
254
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-hovered-border, #19B394);
255
+ background: var(--sjs2-color-control-toggle-true-hovered-bg, #15987E);
256
+ }
257
+ .sa-toggle-element.active:hover .sa-toggle-handle {
258
+ background: var(--sjs2-color-control-toggle-true-hovered-icon, #FFF);
259
+ }
260
+ .sa-toggle-element.active:focus {
261
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-true-focused-border, #19B394);
262
+ background: var(--sjs2-color-control-toggle-true-focused-bg, #FFF);
263
+ }
264
+ .sa-toggle-element.active:focus .sa-toggle-handle {
265
+ background: var(--sjs2-color-control-toggle-true-focused-icon, #19B394);
266
+ }
267
+
268
+ .sa-toggle-handle {
269
+ display: flex;
270
+ width: var(--sjs2-size-x150, 12px);
271
+ height: var(--sjs2-size-x150, 12px);
272
+ justify-content: center;
273
+ align-items: center;
274
+ transition: transform 0.3s ease, background-color 0.3s ease;
275
+ border-radius: var(--sjs2-radius-control-toggle-item, 9999px);
276
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
277
+ background: var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
278
+ }
279
+
280
+ .sa-toggle-element.active .sa-toggle-handle {
281
+ background: var(--sjs2-color-control-toggle-true-default-icon, #FFF);
282
+ transform: translateX(calc(var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px)));
283
+ }
284
+
285
+ .sa-toggle-text {
286
+ flex: 1 0 0;
287
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
288
+ font-family: var(--sjs2-typography-font-family-text);
289
+ font-weight: var(--sjs2-typography-font-weight-basic);
290
+ font-size: var(--sjs2-typography-font-size-default);
291
+ line-height: var(--sjs2-typography-line-height-default);
292
+ }
293
+ @media screen and (max-width: 600px) {
294
+ .sa-toggle-text {
295
+ flex: unset;
296
+ }
297
+ }
298
+ /*!******************************************************************************************************************************************************************************************!*\
299
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/editableSeriesListWidget.scss ***!
300
+ \******************************************************************************************************************************************************************************************/
301
+ .sa-series-list {
302
+ display: flex;
303
+ flex-direction: column;
304
+ align-items: flex-start;
305
+ align-self: stretch;
306
+ }
307
+
308
+ .sa-series-list__title {
309
+ display: flex;
310
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
311
+ align-items: center;
312
+ align-self: stretch;
313
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
314
+ font-family: var(--sjs2-typography-font-family-text);
315
+ font-weight: var(--sjs2-typography-font-weight-basic);
316
+ font-size: var(--sjs2-typography-font-size-default);
317
+ line-height: var(--sjs2-typography-line-height-default);
318
+ }
319
+
320
+ .sa-series-list__items {
321
+ display: flex;
322
+ flex-direction: column;
323
+ align-items: flex-start;
324
+ gap: var(--sjs2-spacing-x200, 16px);
325
+ align-self: stretch;
326
+ }
327
+
328
+ .sa-series-settings {
329
+ display: flex;
330
+ padding: var(--sjs2-spacing-x150, 12px);
331
+ flex-direction: column;
332
+ align-items: flex-start;
333
+ gap: var(--sjs2-spacing-x100, 8px);
334
+ align-self: stretch;
335
+ border-radius: var(--sjs2-radius-x200, 16px);
336
+ border: 1px solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
337
+ background: var(--sjs2-color-bg-basic-primary, #fff);
338
+ }
339
+
340
+ .sa-series-settings__legend-container {
341
+ display: flex;
342
+ flex-direction: column;
343
+ align-items: flex-start;
344
+ gap: var(--sjs2-spacing-x000, 0);
345
+ align-self: stretch;
346
+ }
347
+
348
+ .sa-series-settings__legend,
349
+ .sa-series-settings__values-label {
350
+ display: flex;
351
+ align-items: flex-start;
352
+ gap: 8px;
353
+ align-self: stretch;
354
+ }
355
+
356
+ .sa-series-settings__legend-inner,
357
+ .sa-series-settings__values-label-inner {
358
+ display: flex;
359
+ height: 40px;
360
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
361
+ align-items: center;
362
+ flex: 1 0 0;
363
+ }
364
+
365
+ .sa-series-settings__legend-text,
366
+ .sa-series-settings__values-label-text {
367
+ overflow: hidden;
368
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
369
+ text-overflow: ellipsis;
370
+ font-family: var(--sjs2-typography-font-family-text);
371
+ font-weight: var(--sjs2-typography-font-weight-basic);
372
+ font-size: var(--sjs2-typography-font-size-default);
373
+ line-height: var(--sjs2-typography-line-height-default);
374
+ }
375
+
376
+ .sa-series-settings__legend-controls {
377
+ display: flex;
378
+ align-items: flex-start;
379
+ gap: 8px;
380
+ align-self: stretch;
381
+ }
382
+
383
+ .sa-series-settings__values-controls {
384
+ display: flex;
385
+ align-items: flex-start;
386
+ gap: var(--sjs2-spacing-x150, 12px);
387
+ align-self: stretch;
388
+ }
389
+
390
+ .sa-series-settings__values-container {
391
+ display: flex;
392
+ flex-direction: column;
393
+ align-items: flex-start;
394
+ gap: var(--sjs2-spacing-x000, 0);
395
+ align-self: stretch;
396
+ }
397
+
398
+ .sa-series-settings__actions {
399
+ display: flex;
400
+ padding-top: var(--sjs2-spacing-x200, 16px);
401
+ justify-content: flex-end;
402
+ align-items: flex-start;
403
+ gap: var(--sjs2-spacing-x150, 12px);
404
+ align-self: stretch;
405
+ }
406
+
407
+ .sa-series-settings__action-button {
408
+ display: flex;
409
+ padding: var(--sjs2-spacing-x150, 12px);
410
+ justify-content: center;
411
+ align-items: center;
412
+ flex: 1 0 0;
413
+ cursor: pointer;
414
+ border-radius: var(--sjs2-radius-component-action, 8px);
415
+ background: var(--sjs2-color-bg-neutral-secondary, #f5f5f5);
416
+ }
417
+ .sa-series-settings__action-button:hover {
418
+ background: var(--sjs2-color-component-action-neutral-secondary-hovered-bg, #ededed);
419
+ }
420
+
421
+ .sa-series-settings__action-button-text {
422
+ display: flex;
423
+ padding: 0 var(--sjs2-spacing-x100, 8px);
424
+ justify-content: center;
425
+ align-items: center;
426
+ color: var(--sjs2-color-fg-neutral-primary, #1c1b20);
427
+ text-align: center;
428
+ font-family: var(--sjs2-typography-font-family-text);
429
+ font-weight: var(--sjs2-typography-font-weight-strong);
430
+ font-size: var(--sjs2-typography-font-size-default);
431
+ line-height: var(--sjs2-typography-line-height-default);
432
+ }
433
+ .sa-series-settings__action-button-text:hover {
434
+ color: var(--sjs2-color-component-action-neutral-secondary-hovered-label, #1c1b20);
435
+ }
436
+
437
+ .sa-series-settings__remove-button {
438
+ display: flex;
439
+ flex: 1 0 0;
440
+ padding: var(--sjs2-spacing-x150, 12px);
441
+ justify-content: center;
442
+ align-items: center;
443
+ cursor: pointer;
444
+ border-radius: var(--sjs2-radius-component-action, 8px);
445
+ background: var(--sjs2-color-component-action-alert-secondary-default-bg, rgba(229, 10, 62, 0.1));
446
+ }
447
+ .sa-series-settings__remove-button:hover {
448
+ background: var(--sjs2-color-component-action-alert-secondary-hovered-bg, rgba(229, 10, 62, 0.15));
449
+ }
450
+
451
+ .sa-series-settings__remove-button-text {
452
+ display: flex;
453
+ padding: 0 var(--sjs2-spacing-x100, 8px);
454
+ justify-content: center;
455
+ align-items: center;
456
+ color: var(--sjs2-color-component-action-alert-secondary-default-label, #c30935);
457
+ text-align: center;
458
+ font-family: var(--sjs2-typography-font-family-text);
459
+ font-weight: var(--sjs2-typography-font-weight-strong);
460
+ font-size: var(--sjs2-typography-font-size-default);
461
+ line-height: var(--sjs2-typography-line-height-default);
462
+ }
463
+ .sa-series-settings__remove-button-text:hover {
464
+ color: var(--sjs2-color-component-action-alert-secondary-hovered-label, #c30935);
465
+ }
466
+
467
+ .sa-sidebar--opened .sa-series-settings__dropdown {
468
+ flex: 1;
469
+ min-width: 0;
470
+ }
471
+ .sa-sidebar--opened .sa-series-settings__dropdown--value {
472
+ flex: 1;
473
+ min-width: 0;
474
+ }
475
+ .sa-sidebar--opened .sa-series-settings__dropdown--aggregation {
476
+ flex: 0 0 auto;
477
+ min-width: 90px;
478
+ width: fit-content;
479
+ }
480
+
481
+ .sa-series-list__add-button {
482
+ display: flex;
483
+ align-items: center;
484
+ align-self: stretch;
485
+ }
486
+
487
+ .sa-series-list__add-button-box {
488
+ margin-top: var(--sjs2-spacing-x100, 8px);
489
+ cursor: pointer;
490
+ display: flex;
491
+ padding: var(--sjs2-spacing-x150, 12px);
492
+ justify-content: center;
493
+ align-items: center;
494
+ flex: 1 0 0;
495
+ border-radius: var(--sjs2-radius-component-action, 8px);
496
+ background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
497
+ }
498
+ .sa-series-list__add-button-box:hover {
499
+ background: var(--sjs2-color-component-action-brand-secondary-hovered-bg, rgba(25, 179, 148, 0.15));
500
+ }
501
+
502
+ .sa-series-list__add-button-icon {
503
+ display: flex;
504
+ width: 24px;
505
+ height: 24px;
506
+ justify-content: center;
507
+ align-items: center;
508
+ aspect-ratio: 1/1;
509
+ }
510
+ .sa-series-list__add-button-icon use {
511
+ fill: var(--sjs2-color-fg-brand-primary, #19b394);
512
+ }
513
+
514
+ .sa-series-list__add-button-label {
515
+ display: flex;
516
+ padding: 0 var(--sjs2-spacing-x100, 8px);
517
+ justify-content: center;
518
+ align-items: center;
519
+ }
520
+
521
+ .sa-series-list__add-button-caption {
522
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
523
+ text-align: center;
524
+ font-family: var(--sjs2-typography-font-family-text);
525
+ font-weight: var(--sjs2-typography-font-weight-strong);
526
+ font-size: var(--sjs2-typography-font-size-default);
527
+ line-height: var(--sjs2-typography-line-height-default);
528
+ }
529
+ .sa-series-list__add-button-caption:hover {
530
+ color: var(--sjs2-color-component-action-brand-secondary-hovered-label, #19b394);
531
+ }
532
+
533
+ .sa-pivot__secondary-y-block {
534
+ display: flex;
535
+ flex-direction: column;
536
+ align-self: stretch;
537
+ gap: var(--sjs2-spacing-x300, 24px);
538
+ }
539
+ /*!*********************************************************************************************************************************************************************************!*\
540
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/dateRangeWidget.scss ***!
541
+ \*********************************************************************************************************************************************************************************/
542
+ .sa-date-range {
543
+ display: flex;
544
+ align-items: center;
545
+ align-self: stretch;
546
+ align-content: center;
547
+ gap: 16px var(--sjs2-spacing-x200, 16px);
548
+ flex-wrap: wrap;
549
+ }
550
+
551
+ .sa-date-range-container {
552
+ display: flex;
553
+ flex-direction: column;
554
+ align-items: flex-start;
555
+ align-self: stretch;
556
+ max-width: min-content;
557
+ }
558
+
559
+ .sa-date-range_editors {
560
+ display: flex;
561
+ align-items: center;
562
+ gap: var(--sjs2-spacing-x150, 12px);
563
+ }
564
+
565
+ .sa-date-range_editor {
566
+ display: flex;
567
+ }
568
+
569
+ .sa-date-range_editor-formbox {
570
+ display: flex;
571
+ padding: var(--sjs2-layout-control-formbox-small-vertical, 4px) var(--sjs2-layout-control-formbox-small-horizontal, 4px);
572
+ align-items: flex-start;
573
+ gap: var(--sjs2-layout-control-formbox-small-gap, 4px);
574
+ align-self: stretch;
575
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
576
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
577
+ outline: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-formbox-default-border, #D4D4D4) inset;
578
+ }
579
+ .sa-date-range_editor-formbox:focus-visible {
580
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
581
+ box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
582
+ }
583
+
584
+ .sa-date-range_include-today {
585
+ display: flex;
586
+ padding: var(--sjs2-spacing-x100, 8px) 0;
587
+ flex-direction: column;
588
+ align-items: flex-start;
589
+ }
590
+
591
+ .sa-date-range_include-today-checkbox {
592
+ display: flex;
593
+ align-items: flex-start;
594
+ gap: var(--sjs2-spacing-x100, 8px);
595
+ align-self: stretch;
596
+ }
597
+
598
+ .sa-date-range_include-today-button {
599
+ display: flex;
600
+ width: var(--sjs2-size-x300, 24px);
601
+ height: var(--sjs2-size-x300, 24px);
602
+ flex-direction: column;
603
+ justify-content: center;
604
+ align-items: center;
605
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
606
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
607
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
608
+ }
609
+ .sa-date-range_include-today-button .sa-date-range_include-today-check {
610
+ display: none;
611
+ width: 16px;
612
+ height: 16px;
613
+ flex-shrink: 0;
614
+ }
615
+
616
+ .sa-date-range_include-today-checkbox--checked {
617
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
618
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
619
+ }
620
+ .sa-date-range_include-today-checkbox--checked .sa-date-range_include-today-check {
621
+ display: block;
622
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
623
+ }
624
+
625
+ .sa-date-range_include-today-caption {
626
+ display: flex;
627
+ align-items: flex-start;
628
+ gap: var(--sjs2-spacing-x050, 4px);
629
+ align-self: stretch;
630
+ }
631
+
632
+ .sa-date-range_include-today-caption-text {
633
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
634
+ font-family: var(--sjs2-typography-font-family-text);
635
+ font-weight: var(--sjs2-typography-font-weight-basic);
636
+ font-size: var(--sjs2-typography-font-size-default);
637
+ line-height: var(--sjs2-typography-line-height-default);
638
+ }
639
+
640
+ .sa-date-range_dropdown {
641
+ align-self: self-start;
642
+ }
643
+ .sa-date-range_dropdown .sa-dropdown-header-content {
644
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
645
+ }
646
+ .sa-date-range_dropdown .sa-dropdown-action {
647
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
648
+ }
649
+
650
+ .sa-range-error {
651
+ display: none;
652
+ align-items: flex-start;
653
+ align-self: stretch;
654
+ }
655
+
656
+ .sa-range-error_panel {
657
+ display: flex;
658
+ padding: var(--sjs2-layout-control-message-small-vertical, 8px) var(--sjs2-layout-control-message-small-horizontal, 12px);
659
+ align-items: flex-start;
660
+ gap: var(--sjs2-layout-control-message-small-gap, 8px);
661
+ flex: 1 0 0;
662
+ align-self: stretch;
663
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
664
+ background: var(--sjs2-color-control-message-error-bg, rgba(229, 10, 62, 0.1));
665
+ }
666
+
667
+ .sa-range-error_text {
668
+ flex: 1 0 0;
669
+ color: var(--sjs2-color-control-message-error-text, #1C1B20);
670
+ font-family: var(--sjs2-typography-font-family-text);
671
+ font-weight: var(--sjs2-typography-font-weight-basic);
672
+ font-size: var(--sjs2-typography-font-size-default);
673
+ line-height: var(--sjs2-typography-line-height-default);
674
+ }
675
+
676
+ .sa-date-range--invalid .sa-range-error {
677
+ display: flex;
678
+ padding-top: var(--sjs2-layout-control-message-small-spacer, 8px);
679
+ flex-direction: column;
680
+ align-items: flex-start;
681
+ align-self: stretch;
682
+ }
683
+
684
+ .sa-date-range_editor--invalid .sa-date-range_editor-formbox {
685
+ background: var(--sjs2-color-control-formbox-invalid-bg, #F5F5F5);
686
+ box-shadow: var(--sjs2-border-offset-x-form-invalid, 0) var(--sjs2-border-offset-y-form-invalid, 0) var(--sjs2-border-blur-form-invalid, 0) var(--sjs2-border-spread-form-invalid, 2px) var(--sjs2-color-control-formbox-invalid-border, #E50A3E) inset;
687
+ }
688
+
689
+ .sa-date-range_editor-content {
690
+ display: flex;
691
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
692
+ align-items: flex-start;
693
+ flex: 1 0 0;
694
+ }
695
+
696
+ .sa-date-range_editor-input {
697
+ display: -webkit-box;
698
+ -webkit-box-orient: vertical;
699
+ -webkit-line-clamp: 1;
700
+ flex: 1 0 0;
701
+ overflow: hidden;
702
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
703
+ text-overflow: ellipsis;
704
+ background: transparent;
705
+ border: none;
706
+ outline: none;
707
+ font-family: var(--sjs2-typography-font-family-text);
708
+ font-weight: var(--sjs2-typography-font-weight-basic);
709
+ font-size: var(--sjs2-typography-font-size-default);
710
+ line-height: var(--sjs2-typography-line-height-default);
711
+ }
712
+
713
+ .sa-vertical-divider {
714
+ display: flex;
715
+ width: 1px;
716
+ height: 40px;
717
+ flex-direction: column;
718
+ align-items: flex-start;
719
+ align-self: stretch;
720
+ }
721
+ .sa-vertical-divider .sa-line {
722
+ display: flex;
723
+ flex-direction: column;
724
+ align-items: flex-start;
725
+ flex: 1 0 0;
726
+ align-self: stretch;
727
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
728
+ }
729
+
730
+ @media screen and (max-width: 600px) {
731
+ .sa-vertical-divider {
732
+ display: none;
733
+ }
734
+ }
735
+ .sa-horizontal-divider {
736
+ display: flex;
737
+ flex-direction: column;
738
+ align-items: flex-start;
739
+ align-self: stretch;
740
+ }
741
+ .sa-horizontal-divider .sa-line {
742
+ display: flex;
743
+ flex-direction: column;
744
+ align-items: flex-start;
745
+ align-self: stretch;
746
+ height: var(--sjs2-border-width-static-x100, 1px);
747
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
748
+ }
749
+
750
+ .sa-count {
751
+ display: flex;
752
+ padding: var(--sjs2-spacing-x100, 8px) 0;
753
+ justify-content: center;
754
+ align-items: center;
755
+ align-self: self-start;
756
+ gap: 10px;
757
+ }
758
+
759
+ .sa-count_text {
760
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
761
+ font-family: var(--sjs2-typography-font-family-text);
762
+ font-weight: var(--sjs2-typography-font-weight-strong);
763
+ font-size: var(--sjs2-typography-font-size-default);
764
+ line-height: var(--sjs2-typography-line-height-default);
765
+ }
766
+ /*!******************************************************************************************************************************************************************************!*\
767
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/visualizationPanel.scss ***!
768
+ \******************************************************************************************************************************************************************************/
769
+ .sa-commercial {
770
+ box-sizing: border-box;
771
+ padding: var(--sjs2-spacing-static-x150, 12px) var(--sjs2-spacing-static-x600, 48px);
772
+ justify-content: center;
773
+ width: 100%;
774
+ background: var(--sjs2-color-bg-brand-primary, #19B394);
775
+ }
776
+ @media screen and (max-width: 600px) {
777
+ .sa-commercial {
778
+ padding: var(--sjs2-spacing-static-x100, 8px) var(--sjs2-spacing-static-x300, 24px);
779
+ }
780
+ }
781
+
782
+ .sa-commercial__text {
783
+ text-decoration: none;
784
+ color: var(--sjs2-color-fg-static-main-primary, #FFF);
785
+ text-align: center;
786
+ font-family: var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);
787
+ font-size: var(--sjs2-font-size-semantic-default, 16px);
788
+ font-style: normal;
789
+ font-weight: 600;
790
+ line-height: var(--sjs2-line-height-semantic-default, 24px);
791
+ }
792
+ @media screen and (max-width: 600px) {
793
+ .sa-commercial__text {
794
+ font-size: var(--sjs2-font-size-semantic-small, 12px);
795
+ line-height: var(--sjs2-line-height-semantic-small, 16px);
796
+ }
797
+ }
798
+ .sa-commercial__text a {
799
+ color: var(--sjs2-color-fg-static-main-primary, #FFF);
800
+ text-align: center;
801
+ font-family: var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);
802
+ font-size: var(--sjs2-font-size-semantic-default, 16px);
803
+ font-style: normal;
804
+ font-weight: 600;
805
+ line-height: var(--sjs2-line-height-semantic-default, 24px);
806
+ text-decoration-line: underline;
807
+ text-decoration-style: solid;
808
+ text-decoration-skip-ink: auto;
809
+ text-decoration-thickness: 5%;
810
+ text-underline-offset: 10%;
811
+ text-underline-position: from-font;
812
+ }
813
+ @media screen and (max-width: 600px) {
814
+ .sa-commercial__text a {
815
+ font-size: var(--sjs2-font-size-semantic-small, 12px);
816
+ line-height: var(--sjs2-line-height-semantic-small, 16px);
817
+ }
818
+ }
819
+
820
+ .sa-dropdown,
821
+ .sa-action-dropdown {
822
+ position: relative;
823
+ cursor: pointer;
824
+ user-select: none;
825
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
826
+ font-family: var(--sjs2-typography-font-family-text);
827
+ font-weight: var(--sjs2-typography-font-weight-strong);
828
+ font-size: var(--sjs2-typography-font-size-default);
829
+ line-height: var(--sjs2-typography-line-height-default);
830
+ }
831
+
832
+ .sa-dropdown {
833
+ display: flex;
834
+ flex-grow: 1;
835
+ flex-direction: row;
836
+ }
837
+
838
+ .sa-action-dropdown:hover,
839
+ .sa-action-dropdown.sa-action-dropdown--opened {
840
+ border-radius: var(--sjs2-radius-control-action, 8px);
841
+ background: var(--sjs2-color-bg-positive-tertiary-dim, rgba(25, 179, 148, 0.1));
842
+ }
843
+
844
+ .sa-dropdown-header {
845
+ display: flex;
846
+ padding: var(--sjs2-layout-control-formbox-medium-vertical, 4px) var(--sjs2-layout-control-formbox-medium-horizontal, 4px);
847
+ flex-grow: 1;
848
+ align-items: flex-start;
849
+ gap: var(--sjs2-layout-control-formbox-medium-gap, 4px);
850
+ align-self: stretch;
851
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
852
+ margin: var(--sjs2-border-width-x100, 1px);
853
+ outline: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-control-formbox-default-border, #D4D4D4);
854
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
855
+ }
856
+ .sa-dropdown-header:focus {
857
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
858
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
859
+ box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
860
+ outline: none;
861
+ }
862
+
863
+ .sa-dropdown-action {
864
+ display: flex;
865
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
866
+ justify-content: center;
867
+ align-items: center;
868
+ align-self: stretch;
869
+ border-radius: var(--sjs2-radius-semantic-form-item, 4px);
870
+ background: var(--sjs2-color-bg-neutral-tertiary, rgba(28, 27, 32, 0));
871
+ }
872
+
873
+ .sa-dropdown-action:hover {
874
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
875
+ }
876
+
877
+ .sa-dropdown--opened .sa-dropdown-arrow {
878
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
879
+ }
880
+
881
+ .sa-dropdown-action svg {
882
+ display: flex;
883
+ width: var(--sjs2-size-icon-medium, 24px);
884
+ height: var(--sjs2-size-icon-medium, 24px);
885
+ justify-content: center;
886
+ align-items: center;
887
+ }
888
+ .sa-dropdown-action svg use {
889
+ fill: var(--sjs2-color-fg-basic-primary-alt, rgb(66, 65, 70));
890
+ }
891
+
892
+ .sa-dropdown-container {
893
+ display: inline-flex;
894
+ flex-grow: 1;
895
+ }
896
+
897
+ .sa-action-dropdown-container {
898
+ display: inline-flex;
899
+ }
900
+
901
+ .sa-dropdown__title {
902
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
903
+ display: flex;
904
+ flex-shrink: 0;
905
+ margin-inline-end: var(--sjs2-spacing-static-x100, 8px);
906
+ overflow: hidden;
907
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
908
+ text-overflow: ellipsis;
909
+ font-family: var(--sjs2-typography-font-family-text);
910
+ font-weight: var(--sjs2-typography-font-weight-basic);
911
+ font-size: var(--sjs2-typography-font-size-default);
912
+ line-height: var(--sjs2-typography-line-height-default);
913
+ }
914
+
915
+ .sa-dropdown-list,
916
+ .sa-action-dropdown-list {
917
+ position: absolute;
918
+ min-width: 150px;
919
+ max-height: 50vh;
920
+ max-width: 80vw;
921
+ overflow-x: hidden;
922
+ overflow-y: auto;
923
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
924
+ border-top: none;
925
+ border-radius: var(--sjs2-radius-container-drop, 16px);
926
+ background: var(--sjs2-color-utility-sheet, #FFF);
927
+ display: none;
928
+ z-index: 1000;
929
+ margin: 0;
930
+ list-style: none;
931
+ transition: all 0.3s;
932
+ margin-top: 8px;
933
+ padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
934
+ box-sizing: border-box;
935
+ /* sjs2/shadow/large */
936
+ box-shadow: var(--sjs2-shadow-size-large-offset-x, 0) var(--sjs2-shadow-size-large-offset-y, 6px) var(--sjs2-shadow-size-large-blur, 12px) var(--sjs2-shadow-size-large-spread, 4px) var(--sjs2-shadow-color-large, rgba(0, 76, 68, 0.1));
937
+ -webkit-font-smoothing: antialiased;
938
+ -webkit-tap-highlight-color: transparent;
939
+ }
940
+ @-moz-document url-prefix() {
941
+ .sa-dropdown-list,
942
+ .sa-action-dropdown-list {
943
+ scrollbar-width: thin;
944
+ scrollbar-color: rgba(0, 0, 0, 0.1490196078) transparent;
945
+ }
946
+ }
947
+ .sa-dropdown-list::-webkit-scrollbar,
948
+ .sa-action-dropdown-list::-webkit-scrollbar {
949
+ width: 12px;
950
+ height: 12px;
951
+ background-color: transparent;
952
+ }
953
+ .sa-dropdown-list::-webkit-scrollbar-thumb,
954
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb {
955
+ border: 4px solid rgba(0, 0, 0, 0);
956
+ background-clip: padding-box;
957
+ border-radius: 1024px;
958
+ background-color: rgba(0, 0, 0, 0.1490196078);
959
+ }
960
+ .sa-dropdown-list::-webkit-scrollbar-track,
961
+ .sa-action-dropdown-list::-webkit-scrollbar-track {
962
+ background: transparent;
963
+ }
964
+ .sa-dropdown-list::-webkit-scrollbar-thumb:hover,
965
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb:hover {
966
+ border: 2px solid rgba(0, 0, 0, 0);
967
+ background-color: rgba(0, 0, 0, 0.1490196078);
968
+ }
969
+
970
+ .sa-dropdown-list.sa-dropdown--opened {
971
+ display: block;
972
+ top: 100%;
973
+ }
974
+
975
+ .sa-action-dropdown-list.sa-action-dropdown--opened {
976
+ display: block;
977
+ top: 100%;
978
+ border-radius: var(--sjs2-radius-container-drop, 16px);
979
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
980
+ background: var(--sjs2-color-utility-sheet, #FFF);
981
+ /* sjs2/border-effect/floating/default */
982
+ box-shadow: var(--sjs2-border-offset-x-floating-default, 0) var(--sjs2-border-offset-y-floating-default, 6px) var(--sjs2-border-blur-floating-default, 12px) var(--sjs2-border-spread-floating-default, 4px) var(--sjs2-color-utility-shadow-floating-default, rgba(0, 76, 68, 0.2));
983
+ }
984
+
985
+ .sa-action-dropdown-list.sa-action-dropdown--up.sa-action-dropdown--opened {
986
+ top: auto;
987
+ bottom: 100%;
988
+ margin-top: 0;
989
+ margin-bottom: 8px;
990
+ border-top: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
991
+ border-bottom: none;
992
+ }
993
+
994
+ .sa-dropdown-item,
995
+ .sa-action-dropdown-item {
996
+ width: max-content;
997
+ min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
998
+ max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
999
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
1000
+ cursor: pointer;
1001
+ transition: all 0.3s;
1002
+ display: flex;
1003
+ align-items: center;
1004
+ gap: var(--sjs2-spacing-x150, 12px);
1005
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
1006
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
1007
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1008
+ font-family: var(--sjs2-typography-font-family-text);
1009
+ font-weight: var(--sjs2-typography-font-weight-basic);
1010
+ font-size: var(--sjs2-typography-font-size-default);
1011
+ line-height: var(--sjs2-typography-line-height-default);
1012
+ }
1013
+ .sa-dropdown-item:hover,
1014
+ .sa-action-dropdown-item:hover {
1015
+ background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1016
+ }
1017
+ .sa-dropdown-item:hover .sa-action-dropdown-icon,
1018
+ .sa-action-dropdown-item:hover .sa-action-dropdown-icon {
1019
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
1020
+ background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
1021
+ box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-false-hovered-border, #D4D4D4) inset;
1022
+ }
1023
+ .sa-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon,
1024
+ .sa-action-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
1025
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
1026
+ background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
1027
+ box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-true-hovered-border, #15987E) inset;
1028
+ }
1029
+
1030
+ .sa-action-dropdown-item:focus,
1031
+ .sa-action-dropdown-item--focused,
1032
+ .sa-dropdown-item:focus,
1033
+ .sa-dropdown-item--focused {
1034
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
1035
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1036
+ }
1037
+
1038
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon {
1039
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
1040
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
1041
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
1042
+ }
1043
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon svg {
1044
+ display: block;
1045
+ }
1046
+
1047
+ .sa-action-dropdown-item--toggle-all {
1048
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
1049
+ font-family: var(--sjs2-typography-font-family-text);
1050
+ font-weight: var(--sjs2-typography-font-weight-strong);
1051
+ font-size: var(--sjs2-typography-font-size-default);
1052
+ line-height: var(--sjs2-typography-line-height-default);
1053
+ }
1054
+ .sa-action-dropdown-item--toggle-all:hover {
1055
+ color: var(--sjs2-color-fg-brand-primary-dim, #15987e);
1056
+ }
1057
+
1058
+ .sa-action-dropdown-icon {
1059
+ width: var(--sjs2-size-icon-medium, 24px);
1060
+ height: var(--sjs2-size-icon-medium, 24px);
1061
+ min-width: var(--sjs2-size-icon-medium, 24px);
1062
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
1063
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
1064
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
1065
+ }
1066
+ .sa-action-dropdown-icon svg {
1067
+ display: none;
1068
+ width: var(--sjs2-size-icon-medium, 24px);
1069
+ height: var(--sjs2-size-icon-medium, 24px);
1070
+ }
1071
+ .sa-action-dropdown-icon use {
1072
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
1073
+ }
1074
+
1075
+ .sa-dropdown-item.sa-dropdown-item--selected {
1076
+ background-color: var(--sjs2-color-bg-brand-primary, #19B394);
1077
+ color: var(--sjs2-color-fg-static-main-primary, #FFF);
1078
+ font-family: var(--sjs2-typography-font-family-text);
1079
+ font-weight: var(--sjs2-typography-font-weight-strong);
1080
+ font-size: var(--sjs2-typography-font-size-default);
1081
+ line-height: var(--sjs2-typography-line-height-default);
1082
+ }
1083
+
1084
+ .sa-dropdown-placeholder {
1085
+ overflow: hidden;
1086
+ color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
1087
+ text-overflow: ellipsis;
1088
+ font-family: var(--sjs2-typography-font-family-text);
1089
+ font-weight: var(--sjs2-typography-font-weight-basic);
1090
+ font-size: var(--sjs2-typography-font-size-default);
1091
+ line-height: var(--sjs2-typography-line-height-default);
1092
+ }
1093
+
1094
+ .sa-dropdown-icon {
1095
+ width: var(--sa-icon-size);
1096
+ height: var(--sa-icon-size);
1097
+ flex-shrink: 0;
1098
+ }
1099
+
1100
+ .sa-dropdown-header-icon {
1101
+ width: var(--sa-icon-size);
1102
+ height: var(--sa-icon-size);
1103
+ margin-right: 8px;
1104
+ }
1105
+
1106
+ .sa-dropdown-header-content {
1107
+ display: flex;
1108
+ padding: var(--sjs2-layout-control-input-medium-content-vertical, 8px) var(--sjs2-layout-control-input-medium-content-horizontal, 12px);
1109
+ align-items: flex-start;
1110
+ flex: 1 0 0;
1111
+ }
1112
+
1113
+ .sa-dropdown-header-text {
1114
+ white-space: nowrap;
1115
+ overflow: hidden;
1116
+ text-overflow: ellipsis;
1117
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
1118
+ font-family: var(--sjs2-typography-font-family-text);
1119
+ font-weight: var(--sjs2-typography-font-weight-basic);
1120
+ font-size: var(--sjs2-typography-font-size-default);
1121
+ line-height: var(--sjs2-typography-line-height-default);
1122
+ }
1123
+
1124
+ .sa-action-dropdown-header {
1125
+ display: flex;
1126
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1127
+ justify-content: center;
1128
+ align-items: center;
1129
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1130
+ border-radius: var(--sjs2-radius-control-action, 8px);
1131
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1132
+ }
1133
+ .sa-action-dropdown-header:focus-visible {
1134
+ border-radius: var(--sjs2-radius-control-action, 8px);
1135
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1136
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1137
+ }
1138
+
1139
+ .sa-action-dropdown-title {
1140
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
1141
+ }
1142
+
1143
+ .sa-action-dropdown-arrow {
1144
+ display: flex;
1145
+ padding: var(--sjs2-layout-control-action-small-addon-vertical, 4px) var(--sjs2-layout-control-action-small-addon-horizontal, 4px);
1146
+ justify-content: center;
1147
+ align-items: center;
1148
+ }
1149
+
1150
+ .sa-action-dropdown-arrow svg {
1151
+ display: flex;
1152
+ width: 16px;
1153
+ height: 16px;
1154
+ justify-content: center;
1155
+ align-items: center;
1156
+ }
1157
+ .sa-action-dropdown-arrow svg use {
1158
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
1159
+ }
1160
+
1161
+ .sa-action-dropdown-header {
1162
+ display: flex;
1163
+ min-width: var(--sjs2-size-semantic-small, 40px);
1164
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1165
+ justify-content: center;
1166
+ align-items: center;
1167
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1168
+ }
1169
+
1170
+ .sa-button {
1171
+ outline: none;
1172
+ user-select: none;
1173
+ cursor: pointer;
1174
+ display: flex;
1175
+ flex-shrink: 0;
1176
+ min-width: var(--sjs2-size-semantic-small, 40px);
1177
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1178
+ justify-content: center;
1179
+ align-items: center;
1180
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1181
+ }
1182
+
1183
+ .sa-button-text {
1184
+ display: flex;
1185
+ flex: 1 0 auto;
1186
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
1187
+ justify-content: center;
1188
+ align-items: center;
1189
+ }
1190
+
1191
+ .sa-button-brand-secondary {
1192
+ border-radius: var(--sjs2-radius-control-button, 8px);
1193
+ background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
1194
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
1195
+ }
1196
+ .sa-button-brand-secondary:hover {
1197
+ background: var(--sjs2-color-bg-brand-secondary-dim, rgba(25, 179, 148, 0.15));
1198
+ }
1199
+
1200
+ .sa-button-brand-tertiary {
1201
+ border-radius: 8px;
1202
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1203
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
1204
+ text-align: center;
1205
+ font-family: var(--sjs2-typography-font-family-text);
1206
+ font-weight: var(--sjs2-typography-font-weight-strong);
1207
+ font-size: var(--sjs2-typography-font-size-default);
1208
+ line-height: var(--sjs2-typography-line-height-default);
1209
+ }
1210
+ .sa-button-brand-tertiary:hover {
1211
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1212
+ }
1213
+
1214
+ @media screen and (max-width: 600px) {
1215
+ .sa-dropdown {
1216
+ width: 100%;
1217
+ flex-direction: column;
1218
+ flex-grow: 0;
1219
+ }
1220
+ .sa-dropdown-container {
1221
+ width: 100%;
1222
+ flex-grow: 0;
1223
+ }
1224
+ .sa-dropdown-list.sa-dropdown--opened {
1225
+ min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
1226
+ max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
1227
+ }
1228
+ }
1229
+ .sa-panel__header {
1230
+ display: flex;
1231
+ flex-direction: column;
1232
+ gap: var(--sjs2-spacing-x200, 16px);
1233
+ }
1234
+
1235
+ .sa-panel__header.sa-toolbar--has-content {
1236
+ padding: var(--sjs2-spacing-x200, 16px);
1237
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1238
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1239
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1240
+ }
1241
+
1242
+ .sa-pivot--standalone {
1243
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
1244
+ display: flex;
1245
+ padding: var(--sjs2-spacing-x300, 24px);
1246
+ flex-direction: column;
1247
+ gap: var(--sjs2-spacing-x300, 24px);
1248
+ }
1249
+ .sa-pivot--standalone .sa-visualizer-wrapper {
1250
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1251
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1252
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1253
+ padding: var(--sjs2-spacing-x400, 32px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1254
+ }
1255
+
1256
+ .sa-pivot__header {
1257
+ display: flex;
1258
+ flex-direction: column;
1259
+ gap: var(--sjs2-spacing-x200, 16px);
1260
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1261
+ }
1262
+
1263
+ .sa-panel__header > .sa-toolbar {
1264
+ gap: var(--sjs2-spacing-x300, 24px);
1265
+ }
1266
+
1267
+ .sa-panel__header .sa-dropdown {
1268
+ flex-grow: 0;
1269
+ }
1270
+
1271
+ .sa-panel__content.muuri {
1272
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x300, 24px));
1273
+ }
1274
+ @media screen and (max-width: 600px) {
1275
+ .sa-panel__content.muuri {
1276
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x150, 12px));
1277
+ }
1278
+ }
1279
+
1280
+ .sa-panel__content:not(.muuri) {
1281
+ display: flex;
1282
+ flex-direction: column;
1283
+ gap: var(--sjs2-spacing-x300, 24px);
1284
+ margin-top: var(--sjs2-spacing-x300, 24px);
1285
+ }
1286
+
1287
+ .sa-grid {
1288
+ position: relative;
1289
+ }
1290
+
1291
+ .sa-grid__grid-sizer {
1292
+ width: 100%;
1293
+ box-sizing: border-box;
1294
+ }
1295
+ @media screen and (min-width: 1400px) {
1296
+ .sa-grid__grid-sizer {
1297
+ width: 50%;
1298
+ }
1299
+ }
1300
+
1301
+ .sa-question {
1302
+ display: inline-block;
1303
+ width: 100%;
1304
+ vertical-align: top;
1305
+ box-sizing: border-box;
1306
+ overflow: hidden;
1307
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1308
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1309
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1310
+ }
1311
+
1312
+ .sa-question .sa-question__content {
1313
+ position: relative;
1314
+ padding: 0 var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1315
+ }
1316
+ @media screen and (max-width: 600px) {
1317
+ .sa-question .sa-question__content {
1318
+ padding: 0 var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px);
1319
+ }
1320
+ }
1321
+
1322
+ .sa-question-layouted {
1323
+ overflow: visible;
1324
+ position: absolute;
1325
+ width: 100%;
1326
+ margin-inline-start: var(--sjs2-spacing-x300, 24px);
1327
+ margin-top: var(--sjs2-spacing-x300, 24px);
1328
+ }
1329
+ @media screen and (min-width: 1400px) {
1330
+ .sa-question-layouted {
1331
+ width: calc(50% - var(--sjs2-spacing-x300, 24px) - 1px);
1332
+ }
1333
+ }
1334
+ @media screen and (max-width: 600px) {
1335
+ .sa-question-layouted {
1336
+ margin-inline-start: var(--sjs2-spacing-x150, 12px);
1337
+ margin-top: var(--sjs2-spacing-x150, 12px);
1338
+ width: 100%;
1339
+ }
1340
+ }
1341
+
1342
+ .sa-question-layouted:focus-within {
1343
+ z-index: 1;
1344
+ }
1345
+
1346
+ .sa-question__title {
1347
+ margin: 0;
1348
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1349
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1350
+ font-family: var(--sjs2-typography-font-family-text);
1351
+ font-weight: var(--sjs2-typography-font-weight-strong);
1352
+ font-size: var(--sjs2-typography-font-size-default);
1353
+ line-height: var(--sjs2-typography-line-height-default);
1354
+ }
1355
+ @media screen and (max-width: 600px) {
1356
+ .sa-question__title {
1357
+ padding-inline-end: 40px;
1358
+ }
1359
+ }
1360
+
1361
+ .sa-question__header--draggable {
1362
+ cursor: move;
1363
+ }
1364
+
1365
+ .sa-question__drag-area {
1366
+ display: flex;
1367
+ flex-direction: column;
1368
+ justify-content: center;
1369
+ align-items: center;
1370
+ min-height: var(--sjs2-spacing-x400, 32px);
1371
+ }
1372
+ @media screen and (max-width: 600px) {
1373
+ .sa-question__drag-area {
1374
+ min-height: 0;
1375
+ }
1376
+ }
1377
+
1378
+ .sa-question__drag-area-icon {
1379
+ cursor: move;
1380
+ display: flex;
1381
+ padding: var(--sjs2-spacing-x100, 8px);
1382
+ align-items: center;
1383
+ }
1384
+ .sa-question__drag-area-icon svg {
1385
+ display: flex;
1386
+ width: var(--sjs2-size-x300, 24px);
1387
+ height: var(--sjs2-size-x200, 16px);
1388
+ flex-direction: column;
1389
+ align-items: center;
1390
+ }
1391
+ .sa-question__drag-area-icon use {
1392
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1393
+ }
1394
+
1395
+ .sa-question__hide-action {
1396
+ position: absolute;
1397
+ right: 8px;
1398
+ top: 8px;
1399
+ display: flex;
1400
+ padding: var(--ctr-actionbar-button-padding-top-large-icon, 8px) var(--ctr-actionbar-button-padding-right-large-icon, 8px) var(--ctr-actionbar-button-padding-bottom-large-icon, 8px) var(--ctr-actionbar-button-padding-left-large-icon, 8px);
1401
+ justify-content: center;
1402
+ align-items: center;
1403
+ gap: var(--ctr-actionbar-button-gap, 8px);
1404
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1405
+ cursor: pointer;
1406
+ }
1407
+ .sa-question__hide-action svg {
1408
+ width: 24px;
1409
+ height: 24px;
1410
+ }
1411
+ .sa-question__hide-action use {
1412
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1413
+ }
1414
+ .sa-question__hide-action:hover {
1415
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1416
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
1417
+ }
1418
+ .sa-question__hide-action:hover use {
1419
+ fill: var(--sjs2-color-fg-basic-primary-muted, rgb(66, 65, 70));
1420
+ }
1421
+ .sa-question__hide-action:focus-visible {
1422
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1423
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1424
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1425
+ }
1426
+
1427
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1428
+ padding-top: var(--sjs2-spacing-x400, 32px);
1429
+ }
1430
+ @media screen and (max-width: 600px) {
1431
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1432
+ padding-top: var(--sjs2-spacing-x300, 24px);
1433
+ }
1434
+ }
1435
+
1436
+ .sa-toolbar {
1437
+ display: flex;
1438
+ flex-wrap: wrap;
1439
+ column-gap: var(--sjs2-spacing-static-x100, 8px);
1440
+ row-gap: var(--sjs2-spacing-static-x150, 12px);
1441
+ align-items: center;
1442
+ align-self: stretch;
1443
+ user-select: none;
1444
+ }
1445
+
1446
+ @media screen and (max-width: 600px) {
1447
+ .sa-toolbar {
1448
+ align-items: flex-start;
1449
+ }
1450
+ }
1451
+ .sa-question__content .sa-toolbar--has-content {
1452
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1453
+ }
1454
+
1455
+ .sa-toolbar__button {
1456
+ display: flex;
1457
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1458
+ justify-content: center;
1459
+ align-items: center;
1460
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1461
+ border-radius: var(--sjs2-radius-control-action, 8px);
1462
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1463
+ cursor: pointer;
1464
+ }
1465
+
1466
+ .sa-toolbar__button:hover {
1467
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1468
+ }
1469
+
1470
+ .sa-toolbar__button:disabled {
1471
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1472
+ }
1473
+
1474
+ .sa-toolbar__button:focus-visible {
1475
+ border-radius: var(--sjs2-radius-control-action, 8px);
1476
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1477
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1478
+ }
1479
+
1480
+ .sa-toolbar__button--disabled,
1481
+ .sa-toolbar__button--disabled:hover {
1482
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1483
+ background: transparent;
1484
+ cursor: default;
1485
+ }
1486
+ .sa-toolbar__button--disabled .sa-toolbar__button-text,
1487
+ .sa-toolbar__button--disabled:hover .sa-toolbar__button-text {
1488
+ color: var(--sjs2-color-fg-state-common-disabled, rgba(28, 27, 32, 0.4));
1489
+ }
1490
+
1491
+ .sa-toolbar__button-text {
1492
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
1493
+ text-align: center;
1494
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 8px);
1495
+ font-family: var(--sjs2-typography-font-family-text);
1496
+ font-weight: var(--sjs2-typography-font-weight-strong);
1497
+ font-size: var(--sjs2-typography-font-size-default);
1498
+ line-height: var(--sjs2-typography-line-height-default);
1499
+ }
1500
+
1501
+ .sa-toolbar__button-icon {
1502
+ display: flex;
1503
+ width: var(--sjs2-size-x300, 24px);
1504
+ height: var(--sjs2-size-x300, 24px);
1505
+ justify-content: center;
1506
+ align-items: center;
1507
+ }
1508
+ .sa-toolbar__button-icon use {
1509
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
1510
+ }
1511
+
1512
+ .sa-toolbar__svg-button {
1513
+ width: 15px;
1514
+ height: 15px;
1515
+ padding: 0;
1516
+ border: none;
1517
+ outline: none;
1518
+ background-color: inherit;
1519
+ cursor: pointer;
1520
+ }
1521
+ .sa-toolbar__svg-button use {
1522
+ fill: var(--svg-color, rgba(159, 159, 159, 0.4));
1523
+ }
1524
+ .sa-toolbar__svg-button:hover use {
1525
+ fill: var(--svg-hover-color, #9f9f9f);
1526
+ }
1527
+ .sa-toolbar__svg-button svg {
1528
+ width: 15px;
1529
+ height: 15px;
1530
+ }
1531
+
1532
+ .sa-toolbar__button--right {
1533
+ float: right;
1534
+ }
1535
+
1536
+ .sa-question__select-wrapper {
1537
+ position: relative;
1538
+ display: inline-block;
1539
+ min-width: 100px;
1540
+ max-width: 300px;
1541
+ }
1542
+ .sa-question__select-wrapper .sa-question__select-title {
1543
+ white-space: nowrap;
1544
+ display: inline-block;
1545
+ line-height: 34px;
1546
+ padding-right: 8px;
1547
+ }
1548
+ .sa-question__select-wrapper .sa-question__select {
1549
+ width: 100%;
1550
+ display: block;
1551
+ position: relative;
1552
+ appearance: none;
1553
+ -webkit-appearance: none;
1554
+ -moz-appearance: none;
1555
+ border-radius: 2px;
1556
+ background: var(--text-color-inverse, #fff);
1557
+ border-color: var(--border-color, #e7e7e7);
1558
+ height: 34px;
1559
+ padding: 5px 23px 5px 15px;
1560
+ line-height: initial;
1561
+ }
1562
+ .sa-question__select-wrapper .sa-question__select::-ms-expand {
1563
+ display: none;
1564
+ }
1565
+ .sa-question__select-wrapper .sa-question__select:focus {
1566
+ outline: 0;
1567
+ box-shadow: none;
1568
+ }
1569
+ .sa-question__select-wrapper .sa-question__select:disabled {
1570
+ color: var(--disabled-color, #b0b0b0);
1571
+ }
1572
+ .sa-question__select-wrapper:before {
1573
+ margin-top: -4px;
1574
+ top: 50%;
1575
+ right: 10px;
1576
+ z-index: 1;
1577
+ content: "";
1578
+ position: absolute;
1579
+ width: 4px;
1580
+ height: 4px;
1581
+ border-right: 2px solid var(--text-color, #404040);
1582
+ border-bottom: 2px solid var(--text-color, #404040);
1583
+ transform: rotate(45deg);
1584
+ box-sizing: content-box;
1585
+ pointer-events: none;
1586
+ }
1587
+
1588
+ .sa-question__filter {
1589
+ display: flex;
1590
+ width: 100%;
1591
+ align-items: center;
1592
+ gap: var(--sjs2-spacing-x050, 4px);
1593
+ }
1594
+ .sa-question__filter .sa-toolbar__button-with-icon {
1595
+ display: flex;
1596
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
1597
+ justify-content: center;
1598
+ align-items: center;
1599
+ }
1600
+ .sa-question__filter .sa-toolbar__button-icon {
1601
+ width: var(--sjs2-size-icon-small, 16px);
1602
+ height: var(--sjs2-size-icon-small, 16px);
1603
+ padding: var(--sjs2-layout-control-action-x-small-icon-vertical, 4px) var(--sjs2-layout-control-action-x-small-icon-horizontal, 4px);
1604
+ gap: 0;
1605
+ }
1606
+ .sa-question__filter .sa-toolbar__button-icon svg {
1607
+ width: var(--sjs2-size-icon-small, 16px);
1608
+ height: var(--sjs2-size-icon-small, 16px);
1609
+ }
1610
+ .sa-question__filter .sa-toolbar__button-text {
1611
+ display: none;
1612
+ }
1613
+
1614
+ .sa-question__filter-text {
1615
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1616
+ text-align: center;
1617
+ font-family: var(--sjs2-typography-font-family-text);
1618
+ font-weight: var(--sjs2-typography-font-weight-basic);
1619
+ font-size: var(--sjs2-typography-font-size-default);
1620
+ line-height: var(--sjs2-typography-line-height-default);
1621
+ }
1622
+
1623
+ /* latin-ext */
1624
+ @font-face {
1625
+ font-family: "Raleway";
1626
+ font-style: normal;
1627
+ font-weight: 400;
1628
+ src: local("Raleway"), local("Raleway-Regular"), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format("woff2");
1629
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
1630
+ }
1631
+ /* latin */
1632
+ @font-face {
1633
+ font-family: "Raleway";
1634
+ font-style: normal;
1635
+ font-weight: 400;
1636
+ src: local("Raleway"), local("Raleway-Regular"), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2) format("woff2");
1637
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
1638
+ }
1639
+ /* latin-ext */
1640
+ @font-face {
1641
+ font-family: "Raleway";
1642
+ font-style: normal;
1643
+ font-weight: 700;
1644
+ src: local("Raleway Bold"), local("Raleway-Bold"), url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2) format("woff2");
1645
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
1646
+ }
1647
+ /* latin */
1648
+ @font-face {
1649
+ font-family: "Raleway";
1650
+ font-style: normal;
1651
+ font-weight: 700;
1652
+ src: local("Raleway Bold"), local("Raleway-Bold"), url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2) format("woff2");
1653
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
1654
+ }
1655
+ /*!****************************************************************************************************************************************************************!*\
1656
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/text.scss ***!
1657
+ \****************************************************************************************************************************************************************/
1658
+ .sa-text-table__container {
1659
+ width: 100%;
1660
+ min-height: 200px;
1661
+ max-height: 500px;
1662
+ overflow: auto;
1663
+ }
1664
+
1665
+ .sa-text-table {
1666
+ font-family: var(--sjs2-typography-font-family-text);
1667
+ font-weight: var(--sjs2-typography-font-weight-basic);
1668
+ font-size: var(--sjs2-typography-font-size-default);
1669
+ line-height: var(--sjs2-typography-line-height-default);
1670
+ width: 100%;
1671
+ color: var(--text-color, #404040);
1672
+ border-width: 1px;
1673
+ border-collapse: collapse;
1674
+ }
1675
+
1676
+ .sa-text-table tr:first-child {
1677
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1678
+ }
1679
+
1680
+ .sa-text-table__cell {
1681
+ font-family: var(--sjs2-typography-font-family-text);
1682
+ font-weight: var(--sjs2-typography-font-weight-basic);
1683
+ font-size: var(--sjs2-typography-font-size-default);
1684
+ line-height: var(--sjs2-typography-line-height-default);
1685
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1686
+ padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
1687
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1688
+ }
1689
+
1690
+ .sa-text-table__cell--number {
1691
+ text-align: end;
1692
+ }
1693
+
1694
+ th.sa-text-table__cell {
1695
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1696
+ font-family: var(--sjs2-typography-font-family-text);
1697
+ font-weight: var(--sjs2-typography-font-weight-strong);
1698
+ font-size: var(--sjs2-typography-font-size-default);
1699
+ line-height: var(--sjs2-typography-line-height-default);
1700
+ }
1701
+ /*!****************************************************************************************************************************************************************************!*\
1702
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/statistics-table.scss ***!
1703
+ \****************************************************************************************************************************************************************************/
1704
+ .sa-statistics-table__container {
1705
+ width: 100%;
1706
+ min-height: 200px;
1707
+ max-height: 500px;
1708
+ overflow: auto;
1709
+ }
1710
+
1711
+ .sa-statistics-table {
1712
+ width: 100%;
1713
+ }
1714
+
1715
+ .sa-statistics-table__cell {
1716
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1717
+ }
1718
+
1719
+ .sa-statistics-table__cell-text {
1720
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1721
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1722
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1723
+ font-family: var(--sjs2-typography-font-family-text);
1724
+ font-weight: var(--sjs2-typography-font-weight-basic);
1725
+ font-size: var(--sjs2-typography-font-size-default);
1726
+ line-height: var(--sjs2-typography-line-height-default);
1727
+ }
1728
+
1729
+ .sa-statistics-table__cell:first-child .sa-statistics-table__cell-text {
1730
+ margin-inline-start: 0;
1731
+ }
1732
+
1733
+ .sa-statistics-table__cell:last-child .sa-statistics-table__cell-text {
1734
+ margin-inline-end: 0;
1735
+ }
1736
+
1737
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-text,
1738
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-header-text {
1739
+ text-align: right;
1740
+ }
1741
+
1742
+ .sa-statistics-table__cell-header {
1743
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1744
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1745
+ }
1746
+
1747
+ .sa-statistics-table__cell-header-text {
1748
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1749
+ padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
1750
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1751
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1752
+ text-align: left;
1753
+ font-family: var(--sjs2-typography-font-family-text);
1754
+ font-weight: var(--sjs2-typography-font-weight-strong);
1755
+ font-size: var(--sjs2-typography-font-size-default);
1756
+ line-height: var(--sjs2-typography-line-height-default);
1757
+ }
1758
+
1759
+ .sa-statistics-table__cell-header:first-child .sa-statistics-table__cell-header-text {
1760
+ margin-inline-start: 0;
1761
+ }
1762
+
1763
+ .sa-statistics-table__cell-header:last-child .sa-statistics-table__cell-header-text {
1764
+ margin-inline-end: 0;
1765
+ }
1766
+
1767
+ .sa-choices-sparkline {
1768
+ display: flex;
1769
+ flex: 1 0 0;
1770
+ flex-direction: column;
1771
+ align-items: flex-start;
1772
+ padding: var(--dsb-table-cell-padding-top-progressbar, 16px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom-progressbar, 16px) var(--dsb-table-cell-padding-left-no-border, 0px);
1773
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1774
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1775
+ }
1776
+
1777
+ .sa-choices-sparkline-value {
1778
+ display: flex;
1779
+ align-items: flex-start;
1780
+ height: var(--dsb-table-cell-progressbar-height, 8px);
1781
+ border-radius: var(--dsb-table-cell-progressbar-corner-radius, 2px);
1782
+ background: var(--dsb-table-cell-progressbar-color, #19B394);
1783
+ }
1784
+ /*!***************************************************************************************************************************************************************!*\
1785
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/nps.scss ***!
1786
+ \***************************************************************************************************************************************************************/
1787
+ .sa-visualizer-nps {
1788
+ display: flex;
1789
+ align-items: flex-start;
1790
+ align-content: flex-start;
1791
+ gap: 16px var(--dsb-nps-vizualizer-gap, 16px);
1792
+ align-self: stretch;
1793
+ flex-wrap: wrap;
1794
+ }
1795
+
1796
+ .sa-visualizer-nps__score-part {
1797
+ display: flex;
1798
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1799
+ padding: var(--dsb-nps-vizualizer-item-padding-top, 16px) var(--dsb-nps-vizualizer-item-padding-right, 24px) var(--dsb-nps-vizualizer-item-padding-bottom, 16px) var(--dsb-nps-vizualizer-item-padding-left, 24px);
1800
+ flex-direction: column;
1801
+ align-items: flex-start;
1802
+ gap: var(--dsb-nps-vizualizer-item-gap, 24px);
1803
+ flex: 1 0 0;
1804
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1805
+ border: var(--dsb-nps-vizualizer-item-border-width, 1px) dashed var(--dsb-nps-vizualizer-item-border-color, #DCDCDC);
1806
+ background: var(--dsb-nps-vizualizer-item-background-color, #FFF);
1807
+ }
1808
+
1809
+ .sa-visualizer-nps__score-part-title {
1810
+ color: var(--dsb-nps-vizualizer-item-title-color, rgba(0, 0, 0, 0.9));
1811
+ font-family: var(--sjs2-typography-font-family-text);
1812
+ font-weight: var(--sjs2-typography-font-weight-strong);
1813
+ font-size: var(--sjs2-typography-font-size-default);
1814
+ line-height: var(--sjs2-typography-line-height-default);
1815
+ }
1816
+
1817
+ .sa-visualizer-nps__score-part-values {
1818
+ display: flex;
1819
+ align-items: flex-start;
1820
+ gap: var(--dsb-nps-vizualizer-item-text-gap, 24px);
1821
+ align-self: stretch;
1822
+ }
1823
+
1824
+ .sa-visualizer-nps__score-part-value {
1825
+ flex: 1 0 0;
1826
+ color: var(--dsb-nps-vizualizer-item-text-color-value, rgba(0, 0, 0, 0.9));
1827
+ font-family: var(--sjs2-typography-font-family-text);
1828
+ font-weight: var(--sjs2-typography-font-weight-strong);
1829
+ font-size: var(--sjs2-typography-font-size-large);
1830
+ line-height: var(--sjs2-typography-line-height-large);
1831
+ }
1832
+
1833
+ .sa-visualizer-nps__score-part-percent {
1834
+ color: var(--dsb-nps-vizualizer-item-text-color-percent, #19B394);
1835
+ text-align: right;
1836
+ font-family: var(--sjs2-typography-font-family-text);
1837
+ font-weight: var(--sjs2-typography-font-weight-strong);
1838
+ font-size: var(--sjs2-typography-font-size-large);
1839
+ line-height: var(--sjs2-typography-line-height-large);
1840
+ }
1841
+ /*!****************************************************************************************************************************************************************!*\
1842
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/card.scss ***!
1843
+ \****************************************************************************************************************************************************************/
1844
+ .sa-visualizer-card {
1845
+ display: flex;
1846
+ padding-top: var(--sjs2-spacing-x300, 24px);
1847
+ flex-direction: column;
1848
+ align-items: flex-start;
1849
+ align-self: stretch;
1850
+ }
1851
+
1852
+ .sa-visualizer-card-content {
1853
+ display: flex;
1854
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1855
+ padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
1856
+ flex-direction: column;
1857
+ align-items: flex-start;
1858
+ gap: var(--sjs2-spacing-x300, 24px);
1859
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1860
+ border: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
1861
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1862
+ }
1863
+
1864
+ .sa-visualizer-card-value {
1865
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
1866
+ font-family: var(--sjs2-typography-font-family-text);
1867
+ font-weight: var(--sjs2-typography-font-weight-strong);
1868
+ font-size: var(--sjs2-typography-font-size-large);
1869
+ line-height: var(--sjs2-typography-line-height-large);
1870
+ }
1871
+ /*!*************************************************************************************************************************************************************************!*\
1872
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/entries/fonts.scss ***!
1873
+ \*************************************************************************************************************************************************************************/
1874
+ /* cyrillic-ext */
1875
+ @font-face {
1876
+ font-family: "Open Sans";
1877
+ font-style: normal;
1878
+ font-weight: 400;
1879
+ font-stretch: 100%;
1880
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
1881
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
1882
+ }
1883
+ /* cyrillic */
1884
+ @font-face {
1885
+ font-family: "Open Sans";
1886
+ font-style: normal;
1887
+ font-weight: 400;
1888
+ font-stretch: 100%;
1889
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
1890
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
1891
+ }
1892
+ /* greek-ext */
1893
+ @font-face {
1894
+ font-family: "Open Sans";
1895
+ font-style: normal;
1896
+ font-weight: 400;
1897
+ font-stretch: 100%;
1898
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
1899
+ unicode-range: U+1F00-1FFF;
1900
+ }
1901
+ /* greek */
1902
+ @font-face {
1903
+ font-family: "Open Sans";
1904
+ font-style: normal;
1905
+ font-weight: 400;
1906
+ font-stretch: 100%;
1907
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
1908
+ unicode-range: U+0370-03FF;
1909
+ }
1910
+ /* hebrew */
1911
+ @font-face {
1912
+ font-family: "Open Sans";
1913
+ font-style: normal;
1914
+ font-weight: 400;
1915
+ font-stretch: 100%;
1916
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
1917
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
1918
+ }
1919
+ /* vietnamese */
1920
+ @font-face {
1921
+ font-family: "Open Sans";
1922
+ font-style: normal;
1923
+ font-weight: 400;
1924
+ font-stretch: 100%;
1925
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
1926
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
1927
+ }
1928
+ /* latin-ext */
1929
+ @font-face {
1930
+ font-family: "Open Sans";
1931
+ font-style: normal;
1932
+ font-weight: 400;
1933
+ font-stretch: 100%;
1934
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
1935
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
1936
+ }
1937
+ /* latin */
1938
+ @font-face {
1939
+ font-family: "Open Sans";
1940
+ font-style: normal;
1941
+ font-weight: 400;
1942
+ font-stretch: 100%;
1943
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
1944
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
1945
+ }
1946
+ /* cyrillic-ext */
1947
+ @font-face {
1948
+ font-family: "Open Sans";
1949
+ font-style: normal;
1950
+ font-weight: 600;
1951
+ font-stretch: 100%;
1952
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
1953
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
1954
+ }
1955
+ /* cyrillic */
1956
+ @font-face {
1957
+ font-family: "Open Sans";
1958
+ font-style: normal;
1959
+ font-weight: 600;
1960
+ font-stretch: 100%;
1961
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
1962
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
1963
+ }
1964
+ /* greek-ext */
1965
+ @font-face {
1966
+ font-family: "Open Sans";
1967
+ font-style: normal;
1968
+ font-weight: 600;
1969
+ font-stretch: 100%;
1970
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
1971
+ unicode-range: U+1F00-1FFF;
1972
+ }
1973
+ /* greek */
1974
+ @font-face {
1975
+ font-family: "Open Sans";
1976
+ font-style: normal;
1977
+ font-weight: 600;
1978
+ font-stretch: 100%;
1979
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
1980
+ unicode-range: U+0370-03FF;
1981
+ }
1982
+ /* hebrew */
1983
+ @font-face {
1984
+ font-family: "Open Sans";
1985
+ font-style: normal;
1986
+ font-weight: 600;
1987
+ font-stretch: 100%;
1988
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
1989
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
1990
+ }
1991
+ /* vietnamese */
1992
+ @font-face {
1993
+ font-family: "Open Sans";
1994
+ font-style: normal;
1995
+ font-weight: 600;
1996
+ font-stretch: 100%;
1997
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
1998
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
1999
+ }
2000
+ /* latin-ext */
2001
+ @font-face {
2002
+ font-family: "Open Sans";
2003
+ font-style: normal;
2004
+ font-weight: 600;
2005
+ font-stretch: 100%;
2006
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
2007
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
2008
+ }
2009
+ /* latin */
2010
+ @font-face {
2011
+ font-family: "Open Sans";
2012
+ font-style: normal;
2013
+ font-weight: 600;
2014
+ font-stretch: 100%;
2015
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
2016
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
2017
+ }
2018
+ /* cyrillic-ext */
2019
+ @font-face {
2020
+ font-family: "Open Sans";
2021
+ font-style: normal;
2022
+ font-weight: 700;
2023
+ font-stretch: 100%;
2024
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
2025
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
2026
+ }
2027
+ /* cyrillic */
2028
+ @font-face {
2029
+ font-family: "Open Sans";
2030
+ font-style: normal;
2031
+ font-weight: 700;
2032
+ font-stretch: 100%;
2033
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
2034
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2035
+ }
2036
+ /* greek-ext */
2037
+ @font-face {
2038
+ font-family: "Open Sans";
2039
+ font-style: normal;
2040
+ font-weight: 700;
2041
+ font-stretch: 100%;
2042
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
2043
+ unicode-range: U+1F00-1FFF;
2044
+ }
2045
+ /* greek */
2046
+ @font-face {
2047
+ font-family: "Open Sans";
2048
+ font-style: normal;
2049
+ font-weight: 700;
2050
+ font-stretch: 100%;
2051
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
2052
+ unicode-range: U+0370-03FF;
2053
+ }
2054
+ /* hebrew */
2055
+ @font-face {
2056
+ font-family: "Open Sans";
2057
+ font-style: normal;
2058
+ font-weight: 700;
2059
+ font-stretch: 100%;
2060
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
2061
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
2062
+ }
2063
+ /* vietnamese */
2064
+ @font-face {
2065
+ font-family: "Open Sans";
2066
+ font-style: normal;
2067
+ font-weight: 700;
2068
+ font-stretch: 100%;
2069
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
2070
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
2071
+ }
2072
+ /* latin-ext */
2073
+ @font-face {
2074
+ font-family: "Open Sans";
2075
+ font-style: normal;
2076
+ font-weight: 700;
2077
+ font-stretch: 100%;
2078
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
2079
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
2080
+ }
2081
+ /* latin */
2082
+ @font-face {
2083
+ font-family: "Open Sans";
2084
+ font-style: normal;
2085
+ font-weight: 700;
2086
+ font-stretch: 100%;
2087
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
2088
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
2089
+ }
2090
+ :root {
2091
+ --sjs-font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
2092
+ }
2093
+
2094
+ /*# sourceMappingURL=survey.analytics.plotly.css.map*/