survey-analytics 2.5.13 → 3.0.0-beta.0

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 (216) hide show
  1. package/fesm/shared.mjs +754 -3179
  2. package/fesm/shared.mjs.map +1 -1
  3. package/fesm/shared2.mjs +9687 -8187
  4. package/fesm/shared2.mjs.map +1 -1
  5. package/fesm/shared3.mjs +4982 -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 +1061 -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.mongo.mjs.map +1 -1
  16. package/fesm/survey.analytics.plotly.mjs +13 -0
  17. package/fesm/survey.analytics.plotly.mjs.map +1 -0
  18. package/fesm/survey.analytics.tabulator.mjs +343 -181
  19. package/fesm/survey.analytics.tabulator.mjs.map +1 -1
  20. package/fesm/themes/index.mjs +1942 -0
  21. package/fesm/themes/index.mjs.map +1 -0
  22. package/package.json +38 -11
  23. package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
  24. package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
  25. package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
  26. package/survey-analytics-plotly.types/analytics-localization/english.d.ts +130 -0
  27. package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
  28. package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
  29. package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
  30. package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
  31. package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
  32. package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
  33. package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
  34. package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
  35. package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
  36. package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
  37. package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
  38. package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -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 +44 -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 +152 -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 +59 -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 +116 -0
  61. package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
  62. package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
  63. package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
  64. package/survey-analytics-plotly.types/text.d.ts +25 -0
  65. package/survey-analytics-plotly.types/theme.d.ts +50 -0
  66. package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
  67. package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
  68. package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
  69. package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
  70. package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +31 -0
  71. package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +47 -0
  72. package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +40 -0
  73. package/survey-analytics-plotly.types/utils/index.d.ts +62 -0
  74. package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
  75. package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
  76. package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
  77. package/survey-analytics-plotly.types/visualizationManager.d.ts +60 -0
  78. package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
  79. package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
  80. package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
  81. package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
  82. package/survey-analytics-plotly.types/visualizerBase.d.ts +422 -0
  83. package/survey-analytics-plotly.types/visualizerDescription.d.ts +19 -0
  84. package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
  85. package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
  86. package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
  87. package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
  88. package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
  89. package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
  90. package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
  91. package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
  92. package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +28 -0
  93. package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
  94. package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
  95. package/survey-analytics-tabulator.types/localizationManager.d.ts +28 -0
  96. package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
  97. package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
  98. package/survey-analytics-tabulator.types/tables/tabulator.d.ts +10 -1
  99. package/survey-analytics-tabulator.types/theme.d.ts +50 -0
  100. package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
  101. package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +31 -0
  102. package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +47 -0
  103. package/survey-analytics-tabulator.types/utils/dropdownWidget.d.ts +40 -0
  104. package/survey-analytics-tabulator.types/utils/index.d.ts +25 -2
  105. package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
  106. package/survey-analytics.types/analytics-localization/english.d.ts +28 -0
  107. package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
  108. package/survey-analytics.types/apexcharts/index.d.ts +2 -0
  109. package/survey-analytics.types/apexcharts/setup.d.ts +185 -0
  110. package/survey-analytics.types/boolean.d.ts +1 -1
  111. package/survey-analytics.types/card.d.ts +29 -0
  112. package/survey-analytics.types/chartConfig.d.ts +9 -0
  113. package/survey-analytics.types/config.d.ts +1 -33
  114. package/survey-analytics.types/dashboard.d.ts +51 -0
  115. package/survey-analytics.types/dataProvider.d.ts +17 -0
  116. package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
  117. package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
  118. package/survey-analytics.types/entries/summary.core.d.ts +6 -0
  119. package/survey-analytics.types/histogram.d.ts +29 -13
  120. package/survey-analytics.types/layout-engine.d.ts +29 -0
  121. package/survey-analytics.types/localizationManager.d.ts +28 -0
  122. package/survey-analytics.types/matrix.d.ts +3 -2
  123. package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
  124. package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
  125. package/survey-analytics.types/nps.d.ts +5 -10
  126. package/survey-analytics.types/number.d.ts +8 -7
  127. package/survey-analytics.types/pivot.d.ts +25 -35
  128. package/survey-analytics.types/ranking.d.ts +3 -2
  129. package/survey-analytics.types/selectBase.d.ts +12 -15
  130. package/survey-analytics.types/statisticCalculators.d.ts +8 -13
  131. package/survey-analytics.types/statistics-table.d.ts +2 -2
  132. package/survey-analytics.types/text.d.ts +4 -3
  133. package/survey-analytics.types/theme.d.ts +50 -0
  134. package/survey-analytics.types/themes/default-light.d.ts +965 -0
  135. package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
  136. package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
  137. package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
  138. package/survey-analytics.types/utils/dropdownActionWidget.d.ts +31 -0
  139. package/survey-analytics.types/utils/dropdownBase.d.ts +47 -0
  140. package/survey-analytics.types/utils/dropdownWidget.d.ts +40 -0
  141. package/survey-analytics.types/utils/index.d.ts +25 -2
  142. package/survey-analytics.types/utils/toggle.d.ts +17 -0
  143. package/survey-analytics.types/utils/utils.d.ts +9 -0
  144. package/survey-analytics.types/visualizationComposite.d.ts +1 -1
  145. package/survey-analytics.types/visualizationManager.d.ts +5 -5
  146. package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
  147. package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
  148. package/survey-analytics.types/visualizationPanel.d.ts +20 -3
  149. package/survey-analytics.types/visualizationPanelDynamic.d.ts +2 -1
  150. package/survey-analytics.types/visualizerBase.d.ts +65 -10
  151. package/survey-analytics.types/visualizerDescription.d.ts +19 -0
  152. package/survey-analytics.types/visualizerFactory.d.ts +11 -2
  153. package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
  154. package/survey.analytics.core.css +1131 -99
  155. package/survey.analytics.core.css.map +1 -1
  156. package/survey.analytics.core.js +5063 -1002
  157. package/survey.analytics.core.js.map +1 -1
  158. package/survey.analytics.core.min.css +9 -6
  159. package/survey.analytics.core.min.js +1 -1
  160. package/survey.analytics.core.min.js.LICENSE.txt +1 -1
  161. package/survey.analytics.css +1494 -103
  162. package/survey.analytics.css.map +1 -1
  163. package/survey.analytics.d.ts +1 -2
  164. package/survey.analytics.fontless.css +1629 -0
  165. package/survey.analytics.fontless.css.map +1 -0
  166. package/survey.analytics.fontless.min.css +14 -0
  167. package/survey.analytics.js +7427 -3055
  168. package/survey.analytics.js.map +1 -1
  169. package/survey.analytics.min.css +11 -6
  170. package/survey.analytics.min.js +1 -1
  171. package/survey.analytics.min.js.LICENSE.txt +1 -1
  172. package/survey.analytics.mongo.js +2 -2
  173. package/survey.analytics.mongo.js.map +1 -1
  174. package/survey.analytics.mongo.min.js +1 -1
  175. package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
  176. package/survey.analytics.plotly.css +1714 -0
  177. package/survey.analytics.plotly.css.map +1 -0
  178. package/survey.analytics.plotly.d.ts +1 -0
  179. package/survey.analytics.plotly.fontless.css +1492 -0
  180. package/survey.analytics.plotly.fontless.css.map +1 -0
  181. package/survey.analytics.plotly.fontless.min.css +13 -0
  182. package/survey.analytics.plotly.js +23829 -0
  183. package/survey.analytics.plotly.js.map +1 -0
  184. package/survey.analytics.plotly.min.css +14 -0
  185. package/survey.analytics.plotly.min.js +2 -0
  186. package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
  187. package/survey.analytics.tabulator.css +992 -132
  188. package/survey.analytics.tabulator.css.map +1 -1
  189. package/survey.analytics.tabulator.fontless.css +1121 -0
  190. package/survey.analytics.tabulator.fontless.css.map +1 -0
  191. package/survey.analytics.tabulator.fontless.min.css +6 -0
  192. package/survey.analytics.tabulator.js +2634 -251
  193. package/survey.analytics.tabulator.js.map +1 -1
  194. package/survey.analytics.tabulator.min.css +3 -2
  195. package/survey.analytics.tabulator.min.js +1 -1
  196. package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
  197. package/themes/default-dark.js +1032 -0
  198. package/themes/default-dark.js.map +1 -0
  199. package/themes/default-dark.min.js +2 -0
  200. package/themes/default-dark.min.js.LICENSE.txt +5 -0
  201. package/themes/default-light.js +1032 -0
  202. package/themes/default-light.js.map +1 -0
  203. package/themes/default-light.min.js +2 -0
  204. package/themes/default-light.min.js.LICENSE.txt +5 -0
  205. package/themes/index.js +2063 -0
  206. package/themes/index.js.map +1 -0
  207. package/themes/index.min.js +2 -0
  208. package/themes/index.min.js.LICENSE.txt +5 -0
  209. package/themes/themes/default-dark.d.ts +965 -0
  210. package/themes/themes/default-light.d.ts +965 -0
  211. package/themes/themes/index.d.ts +1934 -0
  212. package/themes/utils/helpers.d.ts +8 -0
  213. package/survey-analytics.types/plotly/setup.d.ts +0 -32
  214. /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
  215. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
  216. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
@@ -1,31 +1,48 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.5.13
2
+ * surveyjs - SurveyJS Dashboard library v3.0.0-beta.0
3
3
  * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: SEE LICENSE IN LICENSE
5
5
  */
6
6
  /*!**************************************************************************************************************************************************************************!*\
7
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/visualizerBase.scss ***!
8
8
  \**************************************************************************************************************************************************************************/
9
+ .sa-visualizer-wrapper {
10
+ min-width: 450px;
11
+ padding: var(--sjs2-spacing-x300, 24px);
12
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
13
+ }
14
+ @media screen and (max-width: 600px) {
15
+ .sa-visualizer-wrapper {
16
+ padding: var(--sjs2-spacing-x150, 12px);
17
+ }
18
+ }
19
+
9
20
  .sa-visualizer__header {
10
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
11
- font-size: var(--root-font-size, 14px);
21
+ font-family: var(--sjs2-typography-font-family-text);
22
+ font-weight: var(--sjs2-typography-font-weight-basic);
23
+ font-size: var(--sjs2-typography-font-size-default);
24
+ line-height: var(--sjs2-typography-line-height-default);
12
25
  }
13
26
 
14
27
  .sa-visualizer__content {
15
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
28
+ font-family: var(--sjs2-typography-font-family-text);
16
29
  display: inline-block;
17
- overflow: hidden;
18
30
  width: 100%;
19
31
  }
20
32
 
21
- .sa-visualizer__footer {
33
+ .sa-visualizer__footer--has-content {
22
34
  margin-top: 10px;
35
+ display: flex;
36
+ flex-direction: column;
37
+ gap: 8px;
23
38
  }
24
39
 
25
40
  .sa-visualizer__footer-title {
41
+ font-family: var(--sjs2-typography-font-family-text);
42
+ font-weight: var(--sjs2-typography-font-weight-strong);
43
+ font-size: var(--sjs2-typography-font-size-default);
44
+ line-height: var(--sjs2-typography-line-height-default);
26
45
  display: inline-block;
27
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
28
- font-size: var(--root-font-size, 14px);
29
46
  color: #404040;
30
47
  line-height: 34px;
31
48
  vertical-align: middle;
@@ -59,6 +76,463 @@
59
76
  transform: rotate(359deg);
60
77
  }
61
78
  }
79
+ /*!*****************************************************************************************************************************************************************************!*\
80
+ !*** 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/apexcharts/styles.scss ***!
81
+ \*****************************************************************************************************************************************************************************/
82
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip {
83
+ padding: var(--sjs2-spacing-x075, 6px) var(--sjs2-spacing-x150, 12px);
84
+ border-radius: var(--sjs2-radius-container-tooltip, 4px);
85
+ border-color: var(--sjs2-color-bg-neutral-primary, #1C1B20);
86
+ background: var(--sjs2-color-bg-neutral-primary, #1C1B20);
87
+ color: var(--sjs2-color-fg-neutral-on-primary, #FFF);
88
+ }
89
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-title {
90
+ display: none;
91
+ }
92
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-goals-value, .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-y-value, .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-z-value {
93
+ margin: 0;
94
+ }
95
+ .sa-visualizer .apexcharts-xaxistooltip.apexcharts-xaxistooltip {
96
+ display: none;
97
+ }
98
+ .sa-visualizer .apexcharts-tooltip-series-group.apexcharts-active {
99
+ padding: 0;
100
+ }
101
+ .sa-visualizer .apexcharts-tooltip-y-group.apexcharts-tooltip-y-group {
102
+ display: flex;
103
+ flex-direction: column;
104
+ padding: 0;
105
+ }
106
+ .sa-visualizer .apexcharts-toolbar div svg {
107
+ fill: var(--sjs2-color-fg-brand-primary, #19B394);
108
+ opacity: var(--sjs2-opacity-x035, 0.35);
109
+ }
110
+ .sa-visualizer .apexcharts-toolbar div:hover svg {
111
+ fill: var(--sjs2-color-fg-brand-primary, #19B394);
112
+ opacity: 1;
113
+ }
114
+ .sa-visualizer .apexcharts-menu.apexcharts-menu-open {
115
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
116
+ border-top: none;
117
+ border-radius: var(--sjs2-radius-container-drop, 16px);
118
+ background: var(--sjs2-color-utility-sheet, #FFF);
119
+ margin-top: 8px;
120
+ padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
121
+ 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));
122
+ }
123
+ .sa-visualizer .apexcharts-menu-item.apexcharts-menu-item {
124
+ width: max-content;
125
+ min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
126
+ max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
127
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
128
+ cursor: pointer;
129
+ transition: all 0.3s;
130
+ display: flex;
131
+ align-items: center;
132
+ gap: var(--sjs2-spacing-x150, 12px);
133
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
134
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
135
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
136
+ font-family: var(--sjs2-typography-font-family-text);
137
+ font-weight: var(--sjs2-typography-font-weight-basic);
138
+ font-size: var(--sjs2-typography-font-size-default);
139
+ line-height: var(--sjs2-typography-line-height-default);
140
+ }
141
+ .sa-visualizer .apexcharts-menu-item.apexcharts-menu-item:hover {
142
+ background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
143
+ }
144
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
145
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
146
+ display: grid;
147
+ grid-template-columns: repeat(8, 1fr);
148
+ border-radius: var(--sjs2-radius-x050, 4px);
149
+ border: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
150
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
151
+ padding: var(--sjs2-spacing-x250, 20px);
152
+ align-items: flex-start;
153
+ gap: var(--sjs2-spacing-x150, 12px);
154
+ align-self: stretch;
155
+ }
156
+ @media screen and (max-width: 1500px) {
157
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
158
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
159
+ grid-template-columns: repeat(6, 1fr);
160
+ }
161
+ }
162
+ @media screen and (max-width: 1200px) {
163
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
164
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
165
+ grid-template-columns: repeat(4, 1fr);
166
+ }
167
+ }
168
+ @media screen and (max-width: 900px) {
169
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
170
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
171
+ grid-template-columns: repeat(2, 1fr);
172
+ }
173
+ }
174
+ @media screen and (max-width: 600px) {
175
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
176
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
177
+ grid-template-columns: repeat(1, 1fr);
178
+ }
179
+ }
180
+ @media screen and (min-width: 900px) {
181
+ .sa-visualizer .sa-question-layouted .apx-legend-position-top.apx-legend-position-top,
182
+ .sa-visualizer .sa-question-layouted .apx-legend-position-bottom.apx-legend-position-bottom {
183
+ grid-template-columns: repeat(4, 1fr);
184
+ }
185
+ }
186
+ .sa-visualizer .apexcharts-legend.apexcharts-legend {
187
+ max-height: 100%;
188
+ border-radius: var(--sjs2-radius-x250, 20px);
189
+ border: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
190
+ background: var(--sjs2-color-bg-basic-primary, #fff);
191
+ padding: var(--sjs2-spacing-x250, 20px);
192
+ gap: var(--sjs2-spacing-x150, 12px);
193
+ }
194
+ .sa-visualizer .apexcharts-legend:not(.apx-legend-position-left):not(.apx-legend-position-top):not(.apx-legend-position-right):not(.apx-legend-position-bottom) {
195
+ padding: 0;
196
+ border: unset;
197
+ }
198
+ .sa-visualizer .apexcharts-legend.apx-legend-position-right,
199
+ .sa-visualizer .apexcharts-legend.apx-legend-position-left {
200
+ bottom: auto;
201
+ }
202
+ .sa-visualizer .apexcharts-legend-series.apexcharts-legend-series {
203
+ gap: var(--sjs2-spacing-x100, 8px);
204
+ }
205
+ .sa-visualizer .apexcharts-legend-series.apexcharts-legend-series .apexcharts-legend-text {
206
+ padding: 0;
207
+ margin: 0;
208
+ }
209
+ .sa-visualizer .sa-pie-charts {
210
+ display: flex;
211
+ flex-wrap: wrap;
212
+ }
213
+ .sa-visualizer .sa-pie-chart {
214
+ width: 50%;
215
+ }
216
+ /*!************************************************************************************************************************************************************************!*\
217
+ !*** 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 ***!
218
+ \************************************************************************************************************************************************************************/
219
+ .sa-toggle-container {
220
+ display: flex;
221
+ gap: var(--sjs2-spacing-x100, 8px);
222
+ }
223
+ @media screen and (max-width: 600px) {
224
+ .sa-toggle-container {
225
+ width: 100%;
226
+ justify-content: end;
227
+ }
228
+ }
229
+
230
+ .sa-toggle-element {
231
+ display: flex;
232
+ padding: var(--sjs2-spacing-x075, 6px);
233
+ width: calc(2 * var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px));
234
+ align-items: center;
235
+ gap: var(--sjs2-spacing-x050, 4px);
236
+ transition: background-color 0.3s ease;
237
+ border-radius: var(--sjs2-radius-control-toggle, 9999px);
238
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-default-border, #D4D4D4);
239
+ background: var(--sjs2-color-control-toggle-false-default-bg, rgba(28, 27, 32, 0.05));
240
+ /* sjs2/shadow/inner */
241
+ 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;
242
+ }
243
+ .sa-toggle-element:hover {
244
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-hovered-border, #D4D4D4);
245
+ background: var(--sjs2-color-control-toggle-false-hovered-bg, rgba(28, 27, 32, 0.1));
246
+ }
247
+ .sa-toggle-element:hover .sa-toggle-handle {
248
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
249
+ background: var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
250
+ }
251
+ .sa-toggle-element:focus {
252
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-false-focused-border, #19B394);
253
+ background: var(--sjs2-color-control-toggle-false-focused-bg, #F5F5F5);
254
+ }
255
+ .sa-toggle-element:focus .sa-toggle-handle {
256
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
257
+ background: var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
258
+ }
259
+
260
+ .sa-toggle-element.active {
261
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-default-border, #19B394);
262
+ background: var(--sjs2-color-control-toggle-true-default-bg, #19B394);
263
+ }
264
+ .sa-toggle-element.active:hover {
265
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-hovered-border, #19B394);
266
+ background: var(--sjs2-color-control-toggle-true-hovered-bg, #15987E);
267
+ }
268
+ .sa-toggle-element.active:hover .sa-toggle-handle {
269
+ background: var(--sjs2-color-control-toggle-true-hovered-icon, #FFF);
270
+ }
271
+ .sa-toggle-element.active:focus {
272
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-true-focused-border, #19B394);
273
+ background: var(--sjs2-color-control-toggle-true-focused-bg, #FFF);
274
+ }
275
+ .sa-toggle-element.active:focus .sa-toggle-handle {
276
+ background: var(--sjs2-color-control-toggle-true-focused-icon, #19B394);
277
+ }
278
+
279
+ .sa-toggle-handle {
280
+ display: flex;
281
+ width: var(--sjs2-size-x150, 12px);
282
+ height: var(--sjs2-size-x150, 12px);
283
+ justify-content: center;
284
+ align-items: center;
285
+ transition: transform 0.3s ease, background-color 0.3s ease;
286
+ border-radius: var(--sjs2-radius-control-toggle-item, 9999px);
287
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
288
+ background: var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
289
+ }
290
+
291
+ .sa-toggle-element.active .sa-toggle-handle {
292
+ background: var(--sjs2-color-control-toggle-true-default-icon, #FFF);
293
+ transform: translateX(calc(var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px)));
294
+ }
295
+
296
+ .sa-toggle-text {
297
+ flex: 1 0 0;
298
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
299
+ font-family: var(--sjs2-typography-font-family-text);
300
+ font-weight: var(--sjs2-typography-font-weight-basic);
301
+ font-size: var(--sjs2-typography-font-size-default);
302
+ line-height: var(--sjs2-typography-line-height-default);
303
+ }
304
+ @media screen and (max-width: 600px) {
305
+ .sa-toggle-text {
306
+ flex: unset;
307
+ }
308
+ }
309
+ /*!*********************************************************************************************************************************************************************************!*\
310
+ !*** 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 ***!
311
+ \*********************************************************************************************************************************************************************************/
312
+ .sa-date-range {
313
+ display: flex;
314
+ align-items: center;
315
+ align-self: stretch;
316
+ align-content: center;
317
+ gap: 16px var(--sjs2-spacing-x200, 16px);
318
+ flex-wrap: wrap;
319
+ }
320
+
321
+ .sa-date-range-container {
322
+ display: flex;
323
+ flex-direction: column;
324
+ align-items: flex-start;
325
+ align-self: stretch;
326
+ max-width: min-content;
327
+ }
328
+
329
+ .sa-date-range_editors {
330
+ display: flex;
331
+ align-items: center;
332
+ gap: var(--sjs2-spacing-x150, 12px);
333
+ }
334
+
335
+ .sa-date-range_editor {
336
+ display: flex;
337
+ }
338
+
339
+ .sa-date-range_editor-formbox {
340
+ display: flex;
341
+ padding: var(--sjs2-layout-control-formbox-small-vertical, 4px) var(--sjs2-layout-control-formbox-small-horizontal, 4px);
342
+ align-items: flex-start;
343
+ gap: var(--sjs2-layout-control-formbox-small-gap, 4px);
344
+ align-self: stretch;
345
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
346
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
347
+ 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;
348
+ }
349
+ .sa-date-range_editor-formbox:focus-visible {
350
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
351
+ 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;
352
+ }
353
+
354
+ .sa-date-range_include-today {
355
+ display: flex;
356
+ padding: var(--sjs2-spacing-x100, 8px) 0;
357
+ flex-direction: column;
358
+ align-items: flex-start;
359
+ }
360
+
361
+ .sa-date-range_include-today-checkbox {
362
+ display: flex;
363
+ align-items: flex-start;
364
+ gap: var(--sjs2-spacing-x100, 8px);
365
+ align-self: stretch;
366
+ }
367
+
368
+ .sa-date-range_include-today-button {
369
+ display: flex;
370
+ width: var(--sjs2-size-x300, 24px);
371
+ height: var(--sjs2-size-x300, 24px);
372
+ flex-direction: column;
373
+ justify-content: center;
374
+ align-items: center;
375
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
376
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
377
+ 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;
378
+ }
379
+ .sa-date-range_include-today-button .sa-date-range_include-today-check {
380
+ display: none;
381
+ width: 16px;
382
+ height: 16px;
383
+ flex-shrink: 0;
384
+ }
385
+
386
+ .sa-date-range_include-today-checkbox--checked {
387
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
388
+ 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;
389
+ }
390
+ .sa-date-range_include-today-checkbox--checked .sa-date-range_include-today-check {
391
+ display: block;
392
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
393
+ }
394
+
395
+ .sa-date-range_include-today-caption {
396
+ display: flex;
397
+ align-items: flex-start;
398
+ gap: var(--sjs2-spacing-x050, 4px);
399
+ align-self: stretch;
400
+ }
401
+
402
+ .sa-date-range_include-today-caption-text {
403
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
404
+ font-family: var(--sjs2-typography-font-family-text);
405
+ font-weight: var(--sjs2-typography-font-weight-basic);
406
+ font-size: var(--sjs2-typography-font-size-default);
407
+ line-height: var(--sjs2-typography-line-height-default);
408
+ }
409
+
410
+ .sa-date-range_dropdown {
411
+ align-self: self-start;
412
+ }
413
+ .sa-date-range_dropdown .sa-dropdown-header-content {
414
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
415
+ }
416
+ .sa-date-range_dropdown .sa-dropdown-action {
417
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
418
+ }
419
+
420
+ .sa-range-error {
421
+ display: none;
422
+ align-items: flex-start;
423
+ align-self: stretch;
424
+ }
425
+
426
+ .sa-range-error_panel {
427
+ display: flex;
428
+ padding: var(--sjs2-layout-control-message-small-vertical, 8px) var(--sjs2-layout-control-message-small-horizontal, 12px);
429
+ align-items: flex-start;
430
+ gap: var(--sjs2-layout-control-message-small-gap, 8px);
431
+ flex: 1 0 0;
432
+ align-self: stretch;
433
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
434
+ background: var(--sjs2-color-control-message-error-bg, rgba(229, 10, 62, 0.1));
435
+ }
436
+
437
+ .sa-range-error_text {
438
+ flex: 1 0 0;
439
+ color: var(--sjs2-color-control-message-error-text, #1C1B20);
440
+ font-family: var(--sjs2-typography-font-family-text);
441
+ font-weight: var(--sjs2-typography-font-weight-basic);
442
+ font-size: var(--sjs2-typography-font-size-default);
443
+ line-height: var(--sjs2-typography-line-height-default);
444
+ }
445
+
446
+ .sa-date-range--invalid .sa-range-error {
447
+ display: flex;
448
+ padding-top: var(--sjs2-layout-control-message-small-spacer, 8px);
449
+ flex-direction: column;
450
+ align-items: flex-start;
451
+ align-self: stretch;
452
+ }
453
+
454
+ .sa-date-range_editor--invalid .sa-date-range_editor-formbox {
455
+ background: var(--sjs2-color-control-formbox-invalid-bg, #F5F5F5);
456
+ 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;
457
+ }
458
+
459
+ .sa-date-range_editor-content {
460
+ display: flex;
461
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
462
+ align-items: flex-start;
463
+ flex: 1 0 0;
464
+ }
465
+
466
+ .sa-date-range_editor-input {
467
+ display: -webkit-box;
468
+ -webkit-box-orient: vertical;
469
+ -webkit-line-clamp: 1;
470
+ flex: 1 0 0;
471
+ overflow: hidden;
472
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
473
+ text-overflow: ellipsis;
474
+ background: transparent;
475
+ border: none;
476
+ outline: none;
477
+ font-family: var(--sjs2-typography-font-family-text);
478
+ font-weight: var(--sjs2-typography-font-weight-basic);
479
+ font-size: var(--sjs2-typography-font-size-default);
480
+ line-height: var(--sjs2-typography-line-height-default);
481
+ }
482
+
483
+ .sa-vertical-divider {
484
+ display: flex;
485
+ width: 1px;
486
+ height: 40px;
487
+ flex-direction: column;
488
+ align-items: flex-start;
489
+ align-self: stretch;
490
+ }
491
+ .sa-vertical-divider .sa-line {
492
+ display: flex;
493
+ flex-direction: column;
494
+ align-items: flex-start;
495
+ flex: 1 0 0;
496
+ align-self: stretch;
497
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
498
+ }
499
+
500
+ @media screen and (max-width: 600px) {
501
+ .sa-vertical-divider {
502
+ display: none;
503
+ }
504
+ }
505
+ .sa-horizontal-divider {
506
+ display: flex;
507
+ flex-direction: column;
508
+ align-items: flex-start;
509
+ align-self: stretch;
510
+ }
511
+ .sa-horizontal-divider .sa-line {
512
+ display: flex;
513
+ flex-direction: column;
514
+ align-items: flex-start;
515
+ align-self: stretch;
516
+ height: var(--sjs2-border-width-static-x100, 1px);
517
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
518
+ }
519
+
520
+ .sa-count {
521
+ display: flex;
522
+ padding: var(--sjs2-spacing-x100, 8px) 0;
523
+ justify-content: center;
524
+ align-items: center;
525
+ align-self: self-start;
526
+ gap: 10px;
527
+ }
528
+
529
+ .sa-count_text {
530
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
531
+ font-family: var(--sjs2-typography-font-family-text);
532
+ font-weight: var(--sjs2-typography-font-weight-strong);
533
+ font-size: var(--sjs2-typography-font-size-default);
534
+ line-height: var(--sjs2-typography-line-height-default);
535
+ }
62
536
  /*!******************************************************************************************************************************************************************************!*\
63
537
  !*** 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 ***!
64
538
  \******************************************************************************************************************************************************************************/
@@ -107,14 +581,464 @@
107
581
  text-underline-position: from-font;
108
582
  }
109
583
  @media screen and (max-width: 600px) {
110
- .sa-commercial__text a {
111
- font-size: var(--sjs2-font-size-semantic-small, 12px);
112
- line-height: var(--sjs2-line-height-semantic-small, 16px);
584
+ .sa-commercial__text a {
585
+ font-size: var(--sjs2-font-size-semantic-small, 12px);
586
+ line-height: var(--sjs2-line-height-semantic-small, 16px);
587
+ }
588
+ }
589
+
590
+ .sa-dropdown,
591
+ .sa-action-dropdown {
592
+ position: relative;
593
+ cursor: pointer;
594
+ user-select: none;
595
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
596
+ font-family: var(--sjs2-typography-font-family-text);
597
+ font-weight: var(--sjs2-typography-font-weight-strong);
598
+ font-size: var(--sjs2-typography-font-size-default);
599
+ line-height: var(--sjs2-typography-line-height-default);
600
+ }
601
+
602
+ .sa-dropdown {
603
+ display: flex;
604
+ flex-grow: 1;
605
+ flex-direction: row;
606
+ }
607
+
608
+ .sa-action-dropdown:hover,
609
+ .sa-action-dropdown.sa-action-dropdown--opened {
610
+ border-radius: var(--sjs2-radius-control-action, 8px);
611
+ background: var(--sjs2-color-bg-positive-tertiary-dim, rgba(25, 179, 148, 0.1));
612
+ }
613
+
614
+ .sa-dropdown-header {
615
+ display: flex;
616
+ padding: var(--sjs2-layout-control-formbox-medium-vertical, 4px) var(--sjs2-layout-control-formbox-medium-horizontal, 4px);
617
+ flex-grow: 1;
618
+ align-items: flex-start;
619
+ gap: var(--sjs2-layout-control-formbox-medium-gap, 4px);
620
+ align-self: stretch;
621
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
622
+ margin: var(--sjs2-border-width-x100, 1px);
623
+ outline: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-control-formbox-default-border, #D4D4D4);
624
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
625
+ }
626
+ .sa-dropdown-header:focus {
627
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
628
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
629
+ 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;
630
+ outline: none;
631
+ }
632
+
633
+ .sa-dropdown-action {
634
+ display: flex;
635
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
636
+ justify-content: center;
637
+ align-items: center;
638
+ align-self: stretch;
639
+ border-radius: var(--sjs2-radius-semantic-form-item, 4px);
640
+ background: var(--sjs2-color-bg-neutral-tertiary, rgba(28, 27, 32, 0));
641
+ }
642
+
643
+ .sa-dropdown-action:hover {
644
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
645
+ }
646
+
647
+ .sa-dropdown--opened .sa-dropdown-arrow {
648
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
649
+ }
650
+
651
+ .sa-dropdown-action svg {
652
+ display: flex;
653
+ width: var(--sjs2-size-icon-medium, 24px);
654
+ height: var(--sjs2-size-icon-medium, 24px);
655
+ justify-content: center;
656
+ align-items: center;
657
+ }
658
+ .sa-dropdown-action svg use {
659
+ fill: var(--sjs2-color-fg-basic-primary-alt, rgb(66, 65, 70));
660
+ }
661
+
662
+ .sa-dropdown-container {
663
+ display: inline-flex;
664
+ flex-grow: 1;
665
+ }
666
+
667
+ .sa-action-dropdown-container {
668
+ display: inline-flex;
669
+ }
670
+
671
+ .sa-dropdown__title {
672
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x000, 0.001px) var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x150, 12px);
673
+ display: flex;
674
+ flex-shrink: 0;
675
+ margin-inline-end: var(--sjs2-spacing-static-x100, 8px);
676
+ overflow: hidden;
677
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
678
+ text-overflow: ellipsis;
679
+ font-family: var(--sjs2-typography-font-family-text);
680
+ font-weight: var(--sjs2-typography-font-weight-basic);
681
+ font-size: var(--sjs2-typography-font-size-default);
682
+ line-height: var(--sjs2-typography-line-height-default);
683
+ }
684
+
685
+ .sa-dropdown-list,
686
+ .sa-action-dropdown-list {
687
+ position: absolute;
688
+ min-width: 150px;
689
+ max-height: 50vh;
690
+ max-width: 80vw;
691
+ overflow-x: hidden;
692
+ overflow-y: auto;
693
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
694
+ border-top: none;
695
+ border-radius: var(--sjs2-radius-container-drop, 16px);
696
+ background: var(--sjs2-color-utility-sheet, #FFF);
697
+ display: none;
698
+ z-index: 1000;
699
+ margin: 0;
700
+ list-style: none;
701
+ transition: all 0.3s;
702
+ margin-top: 8px;
703
+ padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
704
+ box-sizing: border-box;
705
+ /* sjs2/shadow/large */
706
+ 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));
707
+ -webkit-font-smoothing: antialiased;
708
+ -webkit-tap-highlight-color: transparent;
709
+ }
710
+ @-moz-document url-prefix() {
711
+ .sa-dropdown-list,
712
+ .sa-action-dropdown-list {
713
+ scrollbar-width: thin;
714
+ scrollbar-color: rgba(0, 0, 0, 0.1490196078) transparent;
715
+ }
716
+ }
717
+ .sa-dropdown-list::-webkit-scrollbar,
718
+ .sa-action-dropdown-list::-webkit-scrollbar {
719
+ width: 12px;
720
+ height: 12px;
721
+ background-color: transparent;
722
+ }
723
+ .sa-dropdown-list::-webkit-scrollbar-thumb,
724
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb {
725
+ border: 4px solid rgba(0, 0, 0, 0);
726
+ background-clip: padding-box;
727
+ border-radius: 1024px;
728
+ background-color: rgba(0, 0, 0, 0.1490196078);
729
+ }
730
+ .sa-dropdown-list::-webkit-scrollbar-track,
731
+ .sa-action-dropdown-list::-webkit-scrollbar-track {
732
+ background: transparent;
733
+ }
734
+ .sa-dropdown-list::-webkit-scrollbar-thumb:hover,
735
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb:hover {
736
+ border: 2px solid rgba(0, 0, 0, 0);
737
+ background-color: rgba(0, 0, 0, 0.1490196078);
738
+ }
739
+
740
+ .sa-dropdown-list.sa-dropdown--opened {
741
+ display: block;
742
+ top: 100%;
743
+ }
744
+
745
+ .sa-action-dropdown-list.sa-action-dropdown--opened {
746
+ display: block;
747
+ top: 100%;
748
+ border-radius: var(--sjs2-radius-container-drop, 16px);
749
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
750
+ background: var(--sjs2-color-utility-sheet, #FFF);
751
+ /* sjs2/border-effect/floating/default */
752
+ 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));
753
+ }
754
+
755
+ .sa-action-dropdown-list.sa-action-dropdown--up.sa-action-dropdown--opened {
756
+ top: auto;
757
+ bottom: 100%;
758
+ margin-top: 0;
759
+ margin-bottom: 8px;
760
+ border-top: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
761
+ border-bottom: none;
762
+ }
763
+
764
+ .sa-dropdown-item,
765
+ .sa-action-dropdown-item {
766
+ width: max-content;
767
+ min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
768
+ max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
769
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
770
+ cursor: pointer;
771
+ transition: all 0.3s;
772
+ display: flex;
773
+ align-items: center;
774
+ gap: var(--sjs2-spacing-x150, 12px);
775
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
776
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
777
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
778
+ font-family: var(--sjs2-typography-font-family-text);
779
+ font-weight: var(--sjs2-typography-font-weight-basic);
780
+ font-size: var(--sjs2-typography-font-size-default);
781
+ line-height: var(--sjs2-typography-line-height-default);
782
+ }
783
+ .sa-dropdown-item:hover,
784
+ .sa-action-dropdown-item:hover {
785
+ background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
786
+ }
787
+ .sa-dropdown-item:hover .sa-action-dropdown-icon,
788
+ .sa-action-dropdown-item:hover .sa-action-dropdown-icon {
789
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
790
+ background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
791
+ 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;
792
+ }
793
+ .sa-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon,
794
+ .sa-action-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
795
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
796
+ background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
797
+ 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;
798
+ }
799
+
800
+ .sa-action-dropdown-item:focus,
801
+ .sa-action-dropdown-item--focused,
802
+ .sa-dropdown-item:focus,
803
+ .sa-dropdown-item--focused {
804
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
805
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
806
+ }
807
+
808
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon {
809
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
810
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
811
+ 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;
812
+ }
813
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon svg {
814
+ display: block;
815
+ }
816
+
817
+ .sa-action-dropdown-icon {
818
+ width: var(--sjs2-size-icon-medium, 24px);
819
+ height: var(--sjs2-size-icon-medium, 24px);
820
+ min-width: var(--sjs2-size-icon-medium, 24px);
821
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
822
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
823
+ 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;
824
+ }
825
+ .sa-action-dropdown-icon svg {
826
+ display: none;
827
+ width: var(--sjs2-size-icon-medium, 24px);
828
+ height: var(--sjs2-size-icon-medium, 24px);
829
+ }
830
+ .sa-action-dropdown-icon use {
831
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
832
+ }
833
+
834
+ .sa-dropdown-item.sa-dropdown-item--selected {
835
+ background-color: var(--sjs2-color-bg-brand-primary, #19B394);
836
+ color: var(--sjs2-color-fg-static-main-primary, #FFF);
837
+ font-family: var(--sjs2-typography-font-family-text);
838
+ font-weight: var(--sjs2-typography-font-weight-strong);
839
+ font-size: var(--sjs2-typography-font-size-default);
840
+ line-height: var(--sjs2-typography-line-height-default);
841
+ }
842
+
843
+ .sa-dropdown-placeholder {
844
+ overflow: hidden;
845
+ color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
846
+ text-overflow: ellipsis;
847
+ font-family: var(--sjs2-typography-font-family-text);
848
+ font-weight: var(--sjs2-typography-font-weight-basic);
849
+ font-size: var(--sjs2-typography-font-size-default);
850
+ line-height: var(--sjs2-typography-line-height-default);
851
+ }
852
+
853
+ .sa-dropdown-icon {
854
+ width: var(--sa-icon-size);
855
+ height: var(--sa-icon-size);
856
+ flex-shrink: 0;
857
+ }
858
+
859
+ .sa-dropdown-header-icon {
860
+ width: var(--sa-icon-size);
861
+ height: var(--sa-icon-size);
862
+ margin-right: 8px;
863
+ }
864
+
865
+ .sa-dropdown-header-content {
866
+ display: flex;
867
+ padding: var(--sjs2-layout-control-input-medium-content-vertical, 8px) var(--sjs2-layout-control-input-medium-content-horizontal, 12px);
868
+ align-items: flex-start;
869
+ flex: 1 0 0;
870
+ }
871
+
872
+ .sa-dropdown-header-text {
873
+ white-space: nowrap;
874
+ overflow: hidden;
875
+ text-overflow: ellipsis;
876
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
877
+ font-family: var(--sjs2-typography-font-family-text);
878
+ font-weight: var(--sjs2-typography-font-weight-basic);
879
+ font-size: var(--sjs2-typography-font-size-default);
880
+ line-height: var(--sjs2-typography-line-height-default);
881
+ }
882
+
883
+ .sa-action-dropdown-header {
884
+ display: flex;
885
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
886
+ justify-content: center;
887
+ align-items: center;
888
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
889
+ border-radius: var(--sjs2-radius-control-action, 8px);
890
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
891
+ }
892
+ .sa-action-dropdown-header:focus-visible {
893
+ border-radius: var(--sjs2-radius-control-action, 8px);
894
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
895
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
896
+ }
897
+
898
+ .sa-action-dropdown-title {
899
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
900
+ }
901
+
902
+ .sa-action-dropdown-arrow {
903
+ display: flex;
904
+ padding: var(--sjs2-layout-control-action-small-addon-vertical, 4px) var(--sjs2-layout-control-action-small-addon-horizontal, 4px);
905
+ justify-content: center;
906
+ align-items: center;
907
+ }
908
+
909
+ .sa-action-dropdown-arrow svg {
910
+ display: flex;
911
+ width: 16px;
912
+ height: 16px;
913
+ justify-content: center;
914
+ align-items: center;
915
+ }
916
+ .sa-action-dropdown-arrow svg use {
917
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
918
+ }
919
+
920
+ .sa-action-dropdown-header {
921
+ display: flex;
922
+ min-width: var(--sjs2-size-semantic-small, 40px);
923
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
924
+ justify-content: center;
925
+ align-items: center;
926
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
927
+ }
928
+
929
+ .sa-button {
930
+ outline: none;
931
+ user-select: none;
932
+ cursor: pointer;
933
+ display: flex;
934
+ flex-shrink: 0;
935
+ min-width: var(--sjs2-size-semantic-small, 40px);
936
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
937
+ justify-content: center;
938
+ align-items: center;
939
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
940
+ }
941
+
942
+ .sa-button-text {
943
+ display: flex;
944
+ flex: 1 0 auto;
945
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
946
+ justify-content: center;
947
+ align-items: center;
948
+ }
949
+
950
+ .sa-button-brand-secondary {
951
+ border-radius: var(--sjs2-radius-control-button, 8px);
952
+ background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
953
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
954
+ }
955
+ .sa-button-brand-secondary:hover {
956
+ background: var(--sjs2-color-bg-brand-secondary-dim, rgba(25, 179, 148, 0.15));
957
+ }
958
+
959
+ .sa-button-brand-tertiary {
960
+ border-radius: 8px;
961
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
962
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
963
+ text-align: center;
964
+ font-family: var(--sjs2-typography-font-family-text);
965
+ font-weight: var(--sjs2-typography-font-weight-strong);
966
+ font-size: var(--sjs2-typography-font-size-default);
967
+ line-height: var(--sjs2-typography-line-height-default);
968
+ }
969
+ .sa-button-brand-tertiary:hover {
970
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
971
+ }
972
+
973
+ @media screen and (max-width: 600px) {
974
+ .sa-dropdown {
975
+ width: 100%;
976
+ flex-direction: column;
977
+ }
978
+ .sa-dropdown-container {
979
+ width: 100%;
980
+ }
981
+ .sa-dropdown-list.sa-dropdown--opened {
982
+ min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
983
+ max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
984
+ }
985
+ }
986
+ .sa-panel__header {
987
+ display: flex;
988
+ flex-direction: column;
989
+ gap: var(--sjs2-spacing-x200, 16px);
990
+ }
991
+
992
+ .sa-panel__header.sa-toolbar--has-content {
993
+ padding: var(--sjs2-spacing-x200, 16px);
994
+ border-radius: var(--sjs2-radius-container-panel, 16px);
995
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
996
+ 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));
997
+ }
998
+
999
+ .sa-pivot--standalone {
1000
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
1001
+ display: flex;
1002
+ padding: var(--sjs2-spacing-x300, 24px);
1003
+ flex-direction: column;
1004
+ gap: var(--sjs2-spacing-x300, 24px);
1005
+ }
1006
+ .sa-pivot--standalone .sa-visualizer-wrapper {
1007
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1008
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1009
+ 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));
1010
+ padding: var(--sjs2-spacing-x400, 32px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1011
+ }
1012
+
1013
+ .sa-pivot__header {
1014
+ display: flex;
1015
+ flex-direction: column;
1016
+ gap: var(--sjs2-spacing-x200, 16px);
1017
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1018
+ }
1019
+
1020
+ .sa-panel__header > .sa-toolbar {
1021
+ gap: var(--sjs2-spacing-x300, 24px);
1022
+ }
1023
+
1024
+ .sa-panel__header .sa-dropdown {
1025
+ flex-grow: 0;
1026
+ }
1027
+
1028
+ .sa-panel__content.muuri {
1029
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x300, 24px));
1030
+ }
1031
+ @media screen and (max-width: 600px) {
1032
+ .sa-panel__content.muuri {
1033
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x150, 12px));
113
1034
  }
114
1035
  }
115
1036
 
116
- .sa-panel__header {
117
- margin: 0 1em;
1037
+ .sa-panel__content:not(.muuri) {
1038
+ display: flex;
1039
+ flex-direction: column;
1040
+ gap: var(--sjs2-spacing-x300, 24px);
1041
+ margin-top: var(--sjs2-spacing-x300, 24px);
118
1042
  }
119
1043
 
120
1044
  .sa-grid {
@@ -137,85 +1061,209 @@
137
1061
  vertical-align: top;
138
1062
  box-sizing: border-box;
139
1063
  overflow: hidden;
140
- padding: 1em;
1064
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1065
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1066
+ 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));
1067
+ }
1068
+
1069
+ .sa-question .sa-question__content {
1070
+ position: relative;
1071
+ padding: 0 var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1072
+ }
1073
+ @media screen and (max-width: 600px) {
1074
+ .sa-question .sa-question__content {
1075
+ padding: 0 var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px);
1076
+ }
141
1077
  }
142
1078
 
143
1079
  .sa-question-layouted {
1080
+ overflow: visible;
144
1081
  position: absolute;
1082
+ width: 100%;
1083
+ margin-inline-start: var(--sjs2-spacing-x300, 24px);
1084
+ margin-top: var(--sjs2-spacing-x300, 24px);
145
1085
  }
146
1086
  @media screen and (min-width: 1400px) {
147
1087
  .sa-question-layouted {
148
- width: calc(50% - 1px);
1088
+ width: calc(50% - var(--sjs2-spacing-x300, 24px) - 1px);
1089
+ }
1090
+ }
1091
+ @media screen and (max-width: 600px) {
1092
+ .sa-question-layouted {
1093
+ margin-inline-start: var(--sjs2-spacing-x150, 12px);
1094
+ margin-top: var(--sjs2-spacing-x150, 12px);
1095
+ width: 100%;
149
1096
  }
150
1097
  }
151
1098
 
152
- .sa-question__content {
153
- background-color: var(--background-color, #f7f7f7);
154
- padding: 20px;
1099
+ .sa-question-layouted:focus-within {
1100
+ z-index: 1;
155
1101
  }
156
1102
 
157
1103
  .sa-question__title {
158
- margin-left: 30px;
159
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
160
- font-size: 18px;
161
- font-weight: bold;
162
- color: var(--text-color, #404040);
163
1104
  margin: 0;
164
- margin-bottom: 1em;
1105
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1106
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1107
+ font-family: var(--sjs2-typography-font-family-text);
1108
+ font-weight: var(--sjs2-typography-font-weight-strong);
1109
+ font-size: var(--sjs2-typography-font-size-default);
1110
+ line-height: var(--sjs2-typography-line-height-default);
1111
+ }
1112
+ @media screen and (max-width: 600px) {
1113
+ .sa-question__title {
1114
+ padding-inline-end: 40px;
1115
+ }
165
1116
  }
166
1117
 
167
- .sa-question__title--draggable {
1118
+ .sa-question__header--draggable {
168
1119
  cursor: move;
169
1120
  }
170
- .sa-question__title--draggable:after {
171
- content: " ";
172
- display: block;
173
- float: right;
174
- width: 15px;
175
- height: 15px;
176
- background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cg%3E%3Cpolygon style=%27fill: %231ab394%27 points=%2713,5 12,6 13,7 9,7 9,3 10,4 11,3 8,0 5,3 6,4 7,3 7,7 3,7 4,6 3,5 0,8 3,11 4,10 3,9 7,9 7,13 6,12 5,13 8,16 11,13 10,12 9,13 9,9 13,9 12,10 13,11 16,8 %27/%3E%3C/g%3E%3C/svg%3E");
1121
+
1122
+ .sa-question__drag-area {
1123
+ display: flex;
1124
+ flex-direction: column;
1125
+ justify-content: center;
1126
+ align-items: center;
1127
+ min-height: var(--sjs2-spacing-x400, 32px);
1128
+ }
1129
+ @media screen and (max-width: 600px) {
1130
+ .sa-question__drag-area {
1131
+ min-height: 0;
1132
+ }
1133
+ }
1134
+
1135
+ .sa-question__drag-area-icon {
1136
+ cursor: move;
1137
+ display: flex;
1138
+ padding: var(--sjs2-spacing-x100, 8px);
1139
+ align-items: center;
1140
+ }
1141
+ .sa-question__drag-area-icon svg {
1142
+ display: flex;
1143
+ width: var(--sjs2-size-x300, 24px);
1144
+ height: var(--sjs2-size-x200, 16px);
1145
+ flex-direction: column;
1146
+ align-items: center;
1147
+ }
1148
+ .sa-question__drag-area-icon use {
1149
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1150
+ }
1151
+
1152
+ .sa-question__hide-action {
1153
+ position: absolute;
1154
+ right: 8px;
1155
+ top: 8px;
1156
+ display: flex;
1157
+ 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);
1158
+ justify-content: center;
1159
+ align-items: center;
1160
+ gap: var(--ctr-actionbar-button-gap, 8px);
1161
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1162
+ cursor: pointer;
1163
+ }
1164
+ .sa-question__hide-action svg {
1165
+ width: 24px;
1166
+ height: 24px;
1167
+ }
1168
+ .sa-question__hide-action use {
1169
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1170
+ }
1171
+ .sa-question__hide-action:hover {
1172
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1173
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
1174
+ }
1175
+ .sa-question__hide-action:hover use {
1176
+ fill: var(--sjs2-color-fg-basic-primary-muted, rgb(66, 65, 70));
1177
+ }
1178
+ .sa-question__hide-action:focus-visible {
1179
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1180
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1181
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
177
1182
  }
178
1183
 
179
- [dir=rtl] .sa-question__title--draggable:after, [style*="direction: rtl"] .sa-question__title--draggable:after, [style*="direction:rtl"] .sa-question__title--draggable:after {
180
- float: left;
1184
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1185
+ padding-top: var(--sjs2-spacing-x400, 32px);
1186
+ }
1187
+ @media screen and (max-width: 600px) {
1188
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1189
+ padding-top: var(--sjs2-spacing-x300, 24px);
1190
+ }
181
1191
  }
182
1192
 
183
1193
  .sa-toolbar {
184
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
185
- font-size: var(--root-font-size, 14px);
186
- color: var(--text-color, #404040);
187
- line-height: 34px;
188
- margin-bottom: 25px;
189
1194
  display: flex;
190
- flex-direction: row;
191
1195
  flex-wrap: wrap;
192
- gap: 10px;
1196
+ column-gap: var(--sjs2-spacing-static-x100, 8px);
1197
+ row-gap: var(--sjs2-spacing-static-x150, 12px);
1198
+ align-items: center;
1199
+ align-self: stretch;
1200
+ user-select: none;
193
1201
  }
194
1202
 
195
- .sa-toolbar.sa-toolbar > * {
196
- display: inline-flex;
197
- line-height: 1em;
1203
+ @media screen and (max-width: 600px) {
1204
+ .sa-toolbar {
1205
+ align-items: flex-start;
1206
+ }
1207
+ }
1208
+ .sa-question__content .sa-toolbar--has-content {
1209
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
198
1210
  }
199
1211
 
200
1212
  .sa-toolbar__button {
201
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
202
- font-size: var(--root-font-size, 14px);
203
- padding: 8px;
204
- vertical-align: middle;
1213
+ display: flex;
1214
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1215
+ justify-content: center;
1216
+ align-items: center;
1217
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1218
+ border-radius: var(--sjs2-radius-control-action, 8px);
1219
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
205
1220
  cursor: pointer;
206
- border: 1px solid transparent;
207
- white-space: nowrap;
208
- margin: 0 10px;
209
1221
  }
1222
+
210
1223
  .sa-toolbar__button:hover {
211
- border-color: var(--border-color, #e7e7e7);
212
- background-blend-mode: darken;
1224
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1225
+ }
1226
+
1227
+ .sa-toolbar__button:disabled {
1228
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1229
+ }
1230
+
1231
+ .sa-toolbar__button:focus-visible {
1232
+ border-radius: var(--sjs2-radius-control-action, 8px);
1233
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1234
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1235
+ }
1236
+
1237
+ .sa-toolbar__button--disabled,
1238
+ .sa-toolbar__button--disabled:hover {
1239
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1240
+ background: transparent;
1241
+ cursor: default;
213
1242
  }
214
- .sa-toolbar__button:first-child {
215
- margin-left: 0;
1243
+ .sa-toolbar__button--disabled .sa-toolbar__button-text,
1244
+ .sa-toolbar__button--disabled:hover .sa-toolbar__button-text {
1245
+ color: var(--sjs2-color-fg-state-common-disabled, rgba(28, 27, 32, 0.4));
216
1246
  }
217
- .sa-toolbar__button:last-child {
218
- margin-right: 0;
1247
+
1248
+ .sa-toolbar__button-text {
1249
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
1250
+ text-align: center;
1251
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 8px);
1252
+ font-family: var(--sjs2-typography-font-family-text);
1253
+ font-weight: var(--sjs2-typography-font-weight-strong);
1254
+ font-size: var(--sjs2-typography-font-size-default);
1255
+ line-height: var(--sjs2-typography-line-height-default);
1256
+ }
1257
+
1258
+ .sa-toolbar__button-icon {
1259
+ display: flex;
1260
+ width: var(--sjs2-size-x300, 24px);
1261
+ height: var(--sjs2-size-x300, 24px);
1262
+ justify-content: center;
1263
+ align-items: center;
1264
+ }
1265
+ .sa-toolbar__button-icon use {
1266
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
219
1267
  }
220
1268
 
221
1269
  .sa-toolbar__svg-button {
@@ -295,14 +1343,38 @@
295
1343
  }
296
1344
 
297
1345
  .sa-question__filter {
298
- display: inline-block;
299
- padding: 0 1em;
1346
+ display: flex;
1347
+ width: 100%;
1348
+ align-items: center;
1349
+ gap: var(--sjs2-spacing-x050, 4px);
1350
+ }
1351
+ .sa-question__filter .sa-toolbar__button-with-icon {
1352
+ display: flex;
1353
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
1354
+ justify-content: center;
1355
+ align-items: center;
1356
+ }
1357
+ .sa-question__filter .sa-toolbar__button-icon {
1358
+ width: var(--sjs2-size-icon-small, 16px);
1359
+ height: var(--sjs2-size-icon-small, 16px);
1360
+ padding: var(--sjs2-layout-control-action-x-small-icon-vertical, 4px) var(--sjs2-layout-control-action-x-small-icon-horizontal, 4px);
1361
+ gap: 0;
1362
+ }
1363
+ .sa-question__filter .sa-toolbar__button-icon svg {
1364
+ width: var(--sjs2-size-icon-small, 16px);
1365
+ height: var(--sjs2-size-icon-small, 16px);
1366
+ }
1367
+ .sa-question__filter .sa-toolbar__button-text {
1368
+ display: none;
300
1369
  }
301
1370
 
302
1371
  .sa-question__filter-text {
303
- vertical-align: middle;
304
- margin-top: 1px;
305
- line-height: 32px;
1372
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1373
+ text-align: center;
1374
+ font-family: var(--sjs2-typography-font-family-text);
1375
+ font-weight: var(--sjs2-typography-font-weight-basic);
1376
+ font-size: var(--sjs2-typography-font-size-default);
1377
+ line-height: var(--sjs2-typography-line-height-default);
306
1378
  }
307
1379
 
308
1380
  /* latin-ext */
@@ -348,22 +1420,28 @@
348
1420
  }
349
1421
 
350
1422
  .sa-text-table {
1423
+ font-family: var(--sjs2-typography-font-family-text);
1424
+ font-weight: var(--sjs2-typography-font-weight-basic);
1425
+ font-size: var(--sjs2-typography-font-size-default);
1426
+ line-height: var(--sjs2-typography-line-height-default);
351
1427
  width: 100%;
352
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
353
- font-size: var(--root-font-size, 14px);
354
1428
  color: var(--text-color, #404040);
355
1429
  border-width: 1px;
356
1430
  border-collapse: collapse;
357
- background-color: var(--background-color, #f7f7f7);
1431
+ }
1432
+
1433
+ .sa-text-table tr:first-child {
1434
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
358
1435
  }
359
1436
 
360
1437
  .sa-text-table__cell {
361
- border-width: 1px;
362
- padding: 8px;
363
- border-style: solid;
364
- border-color: var(--border-color, #e7e7e7);
365
- background-color: var(--background-color, #f7f7f7);
366
- min-height: 34px;
1438
+ font-family: var(--sjs2-typography-font-family-text);
1439
+ font-weight: var(--sjs2-typography-font-weight-basic);
1440
+ font-size: var(--sjs2-typography-font-size-default);
1441
+ line-height: var(--sjs2-typography-line-height-default);
1442
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1443
+ 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);
1444
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
367
1445
  }
368
1446
 
369
1447
  .sa-text-table__cell--number {
@@ -371,7 +1449,11 @@
371
1449
  }
372
1450
 
373
1451
  th.sa-text-table__cell {
374
- font-weight: 600;
1452
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1453
+ font-family: var(--sjs2-typography-font-family-text);
1454
+ font-weight: var(--sjs2-typography-font-weight-strong);
1455
+ font-size: var(--sjs2-typography-font-size-default);
1456
+ line-height: var(--sjs2-typography-line-height-default);
375
1457
  }
376
1458
  /*!****************************************************************************************************************************************************************************!*\
377
1459
  !*** 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 ***!
@@ -385,76 +1467,385 @@ th.sa-text-table__cell {
385
1467
 
386
1468
  .sa-statistics-table {
387
1469
  width: 100%;
388
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
389
- font-size: var(--root-font-size, 14px);
390
- color: var(--text-color, #404040);
391
- background-color: var(--background-color, #f7f7f7);
392
1470
  }
393
1471
 
394
1472
  .sa-statistics-table__cell {
395
- border-width: 1px;
396
- padding: 8px;
397
- border-style: solid;
398
- border-color: var(--border-color, #e7e7e7);
399
- background-color: var(--background-color, #f7f7f7);
400
- min-height: 34px;
1473
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1474
+ }
1475
+
1476
+ .sa-statistics-table__cell-text {
1477
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1478
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1479
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1480
+ font-family: var(--sjs2-typography-font-family-text);
1481
+ font-weight: var(--sjs2-typography-font-weight-basic);
1482
+ font-size: var(--sjs2-typography-font-size-default);
1483
+ line-height: var(--sjs2-typography-line-height-default);
1484
+ }
1485
+
1486
+ .sa-statistics-table__cell:first-child .sa-statistics-table__cell-text {
1487
+ margin-inline-start: 0;
1488
+ }
1489
+
1490
+ .sa-statistics-table__cell:last-child .sa-statistics-table__cell-text {
1491
+ margin-inline-end: 0;
401
1492
  }
402
1493
 
403
- .sa-statistics-table__cell-value {
1494
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-text,
1495
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-header-text {
404
1496
  text-align: right;
405
- min-width: 30px;
406
1497
  }
407
1498
 
408
1499
  .sa-statistics-table__cell-header {
409
- font-weight: bold;
1500
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1501
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1502
+ }
1503
+
1504
+ .sa-statistics-table__cell-header-text {
1505
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1506
+ 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);
1507
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1508
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1509
+ text-align: left;
1510
+ font-family: var(--sjs2-typography-font-family-text);
1511
+ font-weight: var(--sjs2-typography-font-weight-strong);
1512
+ font-size: var(--sjs2-typography-font-size-default);
1513
+ line-height: var(--sjs2-typography-line-height-default);
1514
+ }
1515
+
1516
+ .sa-statistics-table__cell-header:first-child .sa-statistics-table__cell-header-text {
1517
+ margin-inline-start: 0;
1518
+ }
1519
+
1520
+ .sa-statistics-table__cell-header:last-child .sa-statistics-table__cell-header-text {
1521
+ margin-inline-end: 0;
410
1522
  }
411
1523
 
412
1524
  .sa-choices-sparkline {
413
- min-width: 100px;
414
- height: 24px;
415
- border: 1px solid var(--main-color, #1ab394);
1525
+ display: flex;
1526
+ flex: 1 0 0;
1527
+ flex-direction: column;
1528
+ align-items: flex-start;
1529
+ 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);
1530
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1531
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
416
1532
  }
417
1533
 
418
1534
  .sa-choices-sparkline-value {
419
- height: 100%;
420
- background-color: var(--main-color, #1ab394);
1535
+ display: flex;
1536
+ align-items: flex-start;
1537
+ height: var(--dsb-table-cell-progressbar-height, 8px);
1538
+ border-radius: var(--dsb-table-cell-progressbar-corner-radius, 2px);
1539
+ background: var(--dsb-table-cell-progressbar-color, #19B394);
421
1540
  }
422
1541
  /*!***************************************************************************************************************************************************************!*\
423
1542
  !*** 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 ***!
424
1543
  \***************************************************************************************************************************************************************/
425
1544
  .sa-visualizer-nps {
426
1545
  display: flex;
427
- flex-direction: row;
428
- gap: 16px;
429
- overflow-x: auto;
1546
+ align-items: flex-start;
1547
+ align-content: flex-start;
1548
+ gap: 16px var(--dsb-nps-vizualizer-gap, 16px);
1549
+ align-self: stretch;
1550
+ flex-wrap: wrap;
430
1551
  }
431
1552
 
432
1553
  .sa-visualizer-nps__score-part {
433
1554
  display: flex;
1555
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1556
+ 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);
434
1557
  flex-direction: column;
435
- padding: 0 16px;
1558
+ align-items: flex-start;
1559
+ gap: var(--dsb-nps-vizualizer-item-gap, 24px);
1560
+ flex: 1 0 0;
1561
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1562
+ border: var(--dsb-nps-vizualizer-item-border-width, 1px) dashed var(--dsb-nps-vizualizer-item-border-color, #DCDCDC);
1563
+ background: var(--dsb-nps-vizualizer-item-background-color, #FFF);
436
1564
  }
437
1565
 
438
1566
  .sa-visualizer-nps__score-part-title {
439
- font-size: 32px;
440
- text-align: center;
441
- color: #909090;
1567
+ color: var(--dsb-nps-vizualizer-item-title-color, rgba(0, 0, 0, 0.9));
1568
+ font-family: var(--sjs2-typography-font-family-text);
1569
+ font-weight: var(--sjs2-typography-font-weight-strong);
1570
+ font-size: var(--sjs2-typography-font-size-default);
1571
+ line-height: var(--sjs2-typography-line-height-default);
442
1572
  }
443
1573
 
444
1574
  .sa-visualizer-nps__score-part-values {
445
1575
  display: flex;
446
- flex-direction: row;
447
- gap: 16px;
448
- align-items: baseline;
1576
+ align-items: flex-start;
1577
+ gap: var(--dsb-nps-vizualizer-item-text-gap, 24px);
1578
+ align-self: stretch;
449
1579
  }
450
1580
 
451
1581
  .sa-visualizer-nps__score-part-value {
452
- font-size: 48px;
1582
+ flex: 1 0 0;
1583
+ color: var(--dsb-nps-vizualizer-item-text-color-value, rgba(0, 0, 0, 0.9));
1584
+ font-family: var(--sjs2-typography-font-family-text);
1585
+ font-weight: var(--sjs2-typography-font-weight-strong);
1586
+ font-size: var(--sjs2-typography-font-size-large);
1587
+ line-height: var(--sjs2-typography-line-height-large);
453
1588
  }
454
1589
 
455
1590
  .sa-visualizer-nps__score-part-percent {
456
- font-size: 24px;
457
- color: #606060;
1591
+ color: var(--dsb-nps-vizualizer-item-text-color-percent, #19B394);
1592
+ text-align: right;
1593
+ font-family: var(--sjs2-typography-font-family-text);
1594
+ font-weight: var(--sjs2-typography-font-weight-strong);
1595
+ font-size: var(--sjs2-typography-font-size-large);
1596
+ line-height: var(--sjs2-typography-line-height-large);
1597
+ }
1598
+ /*!****************************************************************************************************************************************************************!*\
1599
+ !*** 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 ***!
1600
+ \****************************************************************************************************************************************************************/
1601
+ .sa-visualizer-card {
1602
+ display: flex;
1603
+ padding-top: var(--sjs2-spacing-x300, 24px);
1604
+ flex-direction: column;
1605
+ align-items: flex-start;
1606
+ align-self: stretch;
1607
+ }
1608
+
1609
+ .sa-visualizer-card-content {
1610
+ display: flex;
1611
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1612
+ padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
1613
+ flex-direction: column;
1614
+ align-items: flex-start;
1615
+ gap: var(--sjs2-spacing-x300, 24px);
1616
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1617
+ border: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
1618
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1619
+ }
1620
+
1621
+ .sa-visualizer-card-value {
1622
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
1623
+ font-family: var(--sjs2-typography-font-family-text);
1624
+ font-weight: var(--sjs2-typography-font-weight-strong);
1625
+ font-size: var(--sjs2-typography-font-size-large);
1626
+ line-height: var(--sjs2-typography-line-height-large);
1627
+ }
1628
+ /*!*************************************************************************************************************************************************************************!*\
1629
+ !*** 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 ***!
1630
+ \*************************************************************************************************************************************************************************/
1631
+ /* cyrillic-ext */
1632
+ @font-face {
1633
+ font-family: "Open Sans";
1634
+ font-style: normal;
1635
+ font-weight: 400;
1636
+ font-stretch: 100%;
1637
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
1638
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
1639
+ }
1640
+ /* cyrillic */
1641
+ @font-face {
1642
+ font-family: "Open Sans";
1643
+ font-style: normal;
1644
+ font-weight: 400;
1645
+ font-stretch: 100%;
1646
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
1647
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
1648
+ }
1649
+ /* greek-ext */
1650
+ @font-face {
1651
+ font-family: "Open Sans";
1652
+ font-style: normal;
1653
+ font-weight: 400;
1654
+ font-stretch: 100%;
1655
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
1656
+ unicode-range: U+1F00-1FFF;
1657
+ }
1658
+ /* greek */
1659
+ @font-face {
1660
+ font-family: "Open Sans";
1661
+ font-style: normal;
1662
+ font-weight: 400;
1663
+ font-stretch: 100%;
1664
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
1665
+ unicode-range: U+0370-03FF;
1666
+ }
1667
+ /* hebrew */
1668
+ @font-face {
1669
+ font-family: "Open Sans";
1670
+ font-style: normal;
1671
+ font-weight: 400;
1672
+ font-stretch: 100%;
1673
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
1674
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
1675
+ }
1676
+ /* vietnamese */
1677
+ @font-face {
1678
+ font-family: "Open Sans";
1679
+ font-style: normal;
1680
+ font-weight: 400;
1681
+ font-stretch: 100%;
1682
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
1683
+ 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;
1684
+ }
1685
+ /* latin-ext */
1686
+ @font-face {
1687
+ font-family: "Open Sans";
1688
+ font-style: normal;
1689
+ font-weight: 400;
1690
+ font-stretch: 100%;
1691
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
1692
+ 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;
1693
+ }
1694
+ /* latin */
1695
+ @font-face {
1696
+ font-family: "Open Sans";
1697
+ font-style: normal;
1698
+ font-weight: 400;
1699
+ font-stretch: 100%;
1700
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
1701
+ 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;
1702
+ }
1703
+ /* cyrillic-ext */
1704
+ @font-face {
1705
+ font-family: "Open Sans";
1706
+ font-style: normal;
1707
+ font-weight: 600;
1708
+ font-stretch: 100%;
1709
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
1710
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
1711
+ }
1712
+ /* cyrillic */
1713
+ @font-face {
1714
+ font-family: "Open Sans";
1715
+ font-style: normal;
1716
+ font-weight: 600;
1717
+ font-stretch: 100%;
1718
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
1719
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
1720
+ }
1721
+ /* greek-ext */
1722
+ @font-face {
1723
+ font-family: "Open Sans";
1724
+ font-style: normal;
1725
+ font-weight: 600;
1726
+ font-stretch: 100%;
1727
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
1728
+ unicode-range: U+1F00-1FFF;
1729
+ }
1730
+ /* greek */
1731
+ @font-face {
1732
+ font-family: "Open Sans";
1733
+ font-style: normal;
1734
+ font-weight: 600;
1735
+ font-stretch: 100%;
1736
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
1737
+ unicode-range: U+0370-03FF;
1738
+ }
1739
+ /* hebrew */
1740
+ @font-face {
1741
+ font-family: "Open Sans";
1742
+ font-style: normal;
1743
+ font-weight: 600;
1744
+ font-stretch: 100%;
1745
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
1746
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
1747
+ }
1748
+ /* vietnamese */
1749
+ @font-face {
1750
+ font-family: "Open Sans";
1751
+ font-style: normal;
1752
+ font-weight: 600;
1753
+ font-stretch: 100%;
1754
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
1755
+ 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;
1756
+ }
1757
+ /* latin-ext */
1758
+ @font-face {
1759
+ font-family: "Open Sans";
1760
+ font-style: normal;
1761
+ font-weight: 600;
1762
+ font-stretch: 100%;
1763
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
1764
+ 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;
1765
+ }
1766
+ /* latin */
1767
+ @font-face {
1768
+ font-family: "Open Sans";
1769
+ font-style: normal;
1770
+ font-weight: 600;
1771
+ font-stretch: 100%;
1772
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
1773
+ 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;
1774
+ }
1775
+ /* cyrillic-ext */
1776
+ @font-face {
1777
+ font-family: "Open Sans";
1778
+ font-style: normal;
1779
+ font-weight: 700;
1780
+ font-stretch: 100%;
1781
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
1782
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
1783
+ }
1784
+ /* cyrillic */
1785
+ @font-face {
1786
+ font-family: "Open Sans";
1787
+ font-style: normal;
1788
+ font-weight: 700;
1789
+ font-stretch: 100%;
1790
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
1791
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
1792
+ }
1793
+ /* greek-ext */
1794
+ @font-face {
1795
+ font-family: "Open Sans";
1796
+ font-style: normal;
1797
+ font-weight: 700;
1798
+ font-stretch: 100%;
1799
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
1800
+ unicode-range: U+1F00-1FFF;
1801
+ }
1802
+ /* greek */
1803
+ @font-face {
1804
+ font-family: "Open Sans";
1805
+ font-style: normal;
1806
+ font-weight: 700;
1807
+ font-stretch: 100%;
1808
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
1809
+ unicode-range: U+0370-03FF;
1810
+ }
1811
+ /* hebrew */
1812
+ @font-face {
1813
+ font-family: "Open Sans";
1814
+ font-style: normal;
1815
+ font-weight: 700;
1816
+ font-stretch: 100%;
1817
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
1818
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
1819
+ }
1820
+ /* vietnamese */
1821
+ @font-face {
1822
+ font-family: "Open Sans";
1823
+ font-style: normal;
1824
+ font-weight: 700;
1825
+ font-stretch: 100%;
1826
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
1827
+ 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;
1828
+ }
1829
+ /* latin-ext */
1830
+ @font-face {
1831
+ font-family: "Open Sans";
1832
+ font-style: normal;
1833
+ font-weight: 700;
1834
+ font-stretch: 100%;
1835
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
1836
+ 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;
1837
+ }
1838
+ /* latin */
1839
+ @font-face {
1840
+ font-family: "Open Sans";
1841
+ font-style: normal;
1842
+ font-weight: 700;
1843
+ font-stretch: 100%;
1844
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
1845
+ 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;
1846
+ }
1847
+ :root {
1848
+ --sjs-font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
458
1849
  }
459
1850
 
460
1851
  /*# sourceMappingURL=survey.analytics.css.map*/