@medicus.ai/medicus-report-pdf-generator 1.3.13 → 1.3.15

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 (178) hide show
  1. package/.vscode/settings.json +3 -3
  2. package/HANDOVER.md +146 -0
  3. package/README.md +26 -26
  4. package/app/i18n.config.js +20 -20
  5. package/app/i18n_wellbeing.config.js +20 -20
  6. package/app/services/localeService.js +28 -28
  7. package/assets/Mediclinic/css/nasco_report.css +6297 -6297
  8. package/assets/Mediclinic/css/nasco_report_rtl.css +851 -851
  9. package/assets/Mediclinic/css/style.css +33 -33
  10. package/assets/Mediclinic/js/js.js +112 -112
  11. package/assets/Mediclinic/js/raphael.js +8437 -8437
  12. package/assets/arabic.css +275 -275
  13. package/assets/charts.min.js +7 -7
  14. package/assets/corporate_report/css/report.css +582 -582
  15. package/assets/corporate_report/css/report_rtl.css +144 -144
  16. package/assets/corporate_report/js/js.js +14 -14
  17. package/assets/data/data.json +124 -124
  18. package/assets/data/data2.json +675 -675
  19. package/assets/data/pdf_data_with_history.json +1255 -1255
  20. package/assets/doctor-note-insight-icon.svg +11 -11
  21. package/assets/imc/css/style.css +61 -61
  22. package/assets/jquery-1.4.min.js +151 -151
  23. package/assets/jquery-2.1.0.min.js +3 -3
  24. package/assets/js.js +201 -201
  25. package/assets/medicus_pdf/arabic.css +444 -444
  26. package/assets/medicus_pdf/styles.css +2427 -2427
  27. package/assets/print.css +4 -4
  28. package/assets/qr-code-style.css +68 -68
  29. package/assets/qrcode.min.js +3 -3
  30. package/assets/raphael-min.js +10 -10
  31. package/assets/sanusx/css/sanusx_report.css +707 -707
  32. package/assets/sizing.js +2 -2
  33. package/assets/styles.css +1545 -1545
  34. package/assets/styles.min.css +1358 -1358
  35. package/assets/translation.js +30 -30
  36. package/assets/wellbeing/css/nasco_report.css +3472 -3472
  37. package/assets/wellbeing/css/nasco_report_rtl.css +679 -679
  38. package/assets/wellbeing/js/js.js +111 -111
  39. package/assets/wellbeing/js/raphael.js +8437 -8437
  40. package/base64/cairo-font.js +2 -2
  41. package/config/Mediclinic.json +37 -37
  42. package/config/Najeeb.ai.json +35 -35
  43. package/config/Pha.json +64 -64
  44. package/config/bionext.json +37 -37
  45. package/config/default.json +35 -35
  46. package/config/diagnostikare.json +34 -34
  47. package/config/maisonsante.json +39 -39
  48. package/config/nasco.json +35 -35
  49. package/config/sanitas.json +35 -35
  50. package/config/sanusx.json +34 -34
  51. package/config/test.txt +4 -4
  52. package/data converter.js +53 -53
  53. package/docs/01-architecture-overview.md +149 -0
  54. package/docs/02-configuration-and-whitelabelling.md +111 -0
  55. package/docs/03-templating-and-rendering.md +71 -0
  56. package/docs/04-report-pipelines.md +128 -0
  57. package/docs/05-questions-and-data-model.md +67 -0
  58. package/docs/06-internationalization.md +59 -0
  59. package/docs/07-email-notifications.md +59 -0
  60. package/docs/08-known-issues-and-technical-debt.md +41 -0
  61. package/docs/README.md +22 -0
  62. package/downloadfile.js +6 -6
  63. package/example.txt +1188 -1188
  64. package/index.js +481 -480
  65. package/lib/big_integral_questionnaire.js +370 -298
  66. package/lib/corporate_report_generator.js +399 -399
  67. package/lib/pdf_generator.min.js +525 -525
  68. package/lib/sanusx_report_generator.js +533 -533
  69. package/lib/sendEmail.js +343 -343
  70. package/lib/template.js +2227 -2227
  71. package/lib/wellbeing_report_generator.js +2164 -2134
  72. package/locales/ar-AE.json +169 -169
  73. package/locales/ar-SA.json +169 -169
  74. package/locales/ar.json +397 -397
  75. package/locales/de.json +169 -169
  76. package/locales/en.json +229 -229
  77. package/locales/fr.json +168 -168
  78. package/locales/pt.json +165 -165
  79. package/locales/wellbeing/ar-AE.json +149 -149
  80. package/locales/wellbeing/ar-SA.json +257 -257
  81. package/locales/wellbeing/de.json +301 -301
  82. package/locales/wellbeing/en.json +423 -423
  83. package/locales/wellbeing/es.json +133 -133
  84. package/locales/wellbeing/fr.json +121 -121
  85. package/locales/wellbeing/it-IT.json +121 -121
  86. package/locales/wellbeing/pt.json +121 -121
  87. package/locales/wellbeing/tr.json +121 -121
  88. package/locales/wellbeing/zh-CN.json +121 -121
  89. package/locales/zh-CN.json +165 -165
  90. package/package.json +47 -47
  91. package/preview-big-integral.js +75 -75
  92. package/run.js +15 -15
  93. package/templates/Mediclinic/blocks/first-section.html +205 -205
  94. package/templates/Mediclinic/blocks/footer.html +7 -7
  95. package/templates/Mediclinic/blocks/header-template.html +5 -5
  96. package/templates/Mediclinic/blocks/header.html +20 -20
  97. package/templates/Mediclinic/blocks/patient-table.html +38 -38
  98. package/templates/Mediclinic/blocks/pdf-header.html +9 -9
  99. package/templates/Mediclinic/blocks/tips.html +8 -8
  100. package/templates/Mediclinic/ltr_no_pages.html +37 -37
  101. package/templates/Mediclinic/rtl_no_pages.html +42 -42
  102. package/templates/Mediclinic/wellbeing_template.html +41 -41
  103. package/templates/Pha/blocks/first-section.html +207 -207
  104. package/templates/Pha/blocks/footer.html +7 -7
  105. package/templates/Pha/blocks/header-template.html +5 -5
  106. package/templates/Pha/blocks/header.html +20 -20
  107. package/templates/Pha/blocks/patient-table.html +38 -38
  108. package/templates/Pha/blocks/pdf-header.html +8 -8
  109. package/templates/Pha/blocks/tips.html +8 -8
  110. package/templates/Pha/ltr_no_pages.html +37 -37
  111. package/templates/Pha/rtl_no_pages.html +42 -42
  112. package/templates/Pha/wellbeing_template.html +41 -41
  113. package/templates/base.html +23 -23
  114. package/templates/blocks/ar-first-page-header.html +68 -68
  115. package/templates/blocks/ar-footer.html +54 -54
  116. package/templates/blocks/ar-header.html +67 -67
  117. package/templates/blocks/biomarker-compact-ar.html +27 -27
  118. package/templates/blocks/biomarker-compact.html +27 -27
  119. package/templates/blocks/biomarker-details.html +41 -41
  120. package/templates/blocks/biomarker-insight.html +22 -22
  121. package/templates/blocks/biomarker-min.html +9 -9
  122. package/templates/blocks/doctor-note.html +11 -11
  123. package/templates/blocks/footer.html +35 -35
  124. package/templates/blocks/header-first-page.html +46 -46
  125. package/templates/blocks/header.html +49 -49
  126. package/templates/blocks/panel-compact.html +38 -38
  127. package/templates/blocks/panel-details.html +16 -16
  128. package/templates/blocks/report-summary.html +16 -16
  129. package/templates/blocks/section-title.html +4 -4
  130. package/templates/blocks/signature.html +16 -16
  131. package/templates/blocks/summary-insight.html +15 -15
  132. package/templates/blocks/summary.html +9 -9
  133. package/templates/corporate_report/cover_page.html +23 -23
  134. package/templates/corporate_report/footer.html +9 -9
  135. package/templates/corporate_report/ltr_no_pages.html +20 -20
  136. package/templates/corporate_report/page.html +24 -24
  137. package/templates/corporate_report/participant_analytics.html +5 -5
  138. package/templates/corporate_report/rtl_no_pages.html +20 -20
  139. package/templates/empty.html +10 -10
  140. package/templates/first_page_head.html +157 -157
  141. package/templates/imc/first-header-template.html +53 -53
  142. package/templates/ltr.html +1368 -1368
  143. package/templates/ltr_no_pages.html +89 -89
  144. package/templates/maisonsante/blocks/first-section.html +151 -207
  145. package/templates/maisonsante/blocks/footer.html +7 -7
  146. package/templates/maisonsante/blocks/header-template.html +5 -5
  147. package/templates/maisonsante/blocks/header.html +20 -20
  148. package/templates/maisonsante/blocks/patient-table.html +38 -38
  149. package/templates/maisonsante/blocks/pdf-header.html +8 -8
  150. package/templates/maisonsante/blocks/tips.html +8 -8
  151. package/templates/maisonsante/ltr_no_pages.html +38 -38
  152. package/templates/maisonsante/rtl_no_pages.html +43 -43
  153. package/templates/maisonsante/wellbeing_template.html +41 -41
  154. package/templates/no_pages.html +1224 -1224
  155. package/templates/popup/popup-template.html +129 -129
  156. package/templates/rtl_no_pages.html +92 -92
  157. package/templates/sanusx/blocks/footer.html +6 -6
  158. package/templates/sanusx/blocks/header.html +20 -20
  159. package/templates/sanusx/blocks/personal-details.html +123 -123
  160. package/templates/sanusx/blocks/predictions-section.html +57 -57
  161. package/templates/sanusx/blocks/recommendations-section.html +6 -6
  162. package/templates/sanusx/blocks/super-power-section.html +29 -29
  163. package/templates/sanusx/blocks/tips.html +8 -8
  164. package/templates/sanusx/ltr_no_pages.html +26 -26
  165. package/templates/sanusx/rtl_no_pages.html +36 -36
  166. package/templates/template.html +1377 -1377
  167. package/templates/wellbeing/blocks/first-section.html +106 -106
  168. package/templates/wellbeing/blocks/footer.html +7 -7
  169. package/templates/wellbeing/blocks/header.html +37 -37
  170. package/templates/wellbeing/blocks/tips.html +8 -8
  171. package/templates/wellbeing/ltr_no_pages.html +35 -35
  172. package/templates/wellbeing/rtl_no_pages.html +36 -36
  173. package/templates/wellbeing/wellbeing_template.html +43 -43
  174. package/test.js +74 -74
  175. package/testing-reports/mediclinic/arabic-data.js +0 -439
  176. package/testing-reports/mediclinic/doctor-data.js +0 -523
  177. package/testing-reports/mediclinic/with-wellbeing.js +0 -415
  178. package/testing-reports/pha/notes-example.js +0 -397
@@ -1,851 +1,851 @@
1
- body {
2
- direction: rtl;
3
- font-family: 'Cairo', 'Open Sans', sans-serif !important;
4
- font-feature-settings: "zero" off !important;
5
- -webkit-font-feature-settings: "zero" off !important;
6
- -moz-font-feature-settings: "zero" off !important;
7
- }
8
-
9
- .row.score-section {
10
- width: auto !important;
11
- }
12
-
13
- .gender-type {
14
- font-family: 'Cairo', sans-serif !important;
15
- }
16
-
17
- span.bio-name-info {
18
- font-family: "Open Sans", sans-serif !important;
19
- }
20
-
21
- .value-text[data-type="string"] {
22
- font-family: 'Cairo', sans-serif !important;
23
- }
24
-
25
- .value-text[data-type="number"] {
26
- font-family: 'Open Sans', sans-serif !important;
27
- }
28
-
29
- .value-text {
30
- font-family: 'Open Sans', sans-serif !important;
31
- }
32
-
33
- .unit-text {
34
- font-family: "Open Sans", sans-serif !important;
35
- }
36
-
37
- .unit {
38
- font-family: "Open Sans", sans-serif !important;
39
- }
40
-
41
- tr.values td {
42
- font-family: "Open Sans", sans-serif !important;
43
- }
44
-
45
- .biom-unit .biom-parent-unit.unit-text {
46
- font-family: "Open Sans", sans-serif !important;
47
- white-space: nowrap;
48
- }
49
-
50
- .biom-unit .biom-parent-unit.unit-text {
51
- font-family: "Open Sans", sans-serif !important;
52
-
53
- white-space: nowrap;
54
- }
55
-
56
-
57
- span.bio-name-info {
58
- direction: ltr;
59
- text-align: right;
60
- }
61
-
62
- .panel-title-text {
63
- direction: ltr;
64
- text-align: right;
65
- /*font-family: 'Open Sans', sans-serif;*/
66
- }
67
-
68
- .speedometer-value {
69
- top: 62px;
70
- /*font-family: "Open Sans", sans-serif !important;*/
71
- }
72
-
73
- .speedometer-value2 {
74
- top: 37px;
75
- /*font-family: "Open Sans", sans-serif !important;*/
76
- }
77
-
78
- .biom-bar.big .labels td {
79
- -webkit-transform: rotate(0deg);
80
- }
81
-
82
- table.biomarker-block.panel-section-header-new td.biom-range {
83
- text-align: left !important;
84
- padding-left: 40px !important;
85
- }
86
-
87
-
88
- /*.biom-range:not(.biom-range-data) {*/
89
- /* padding-left: 20px;*/
90
- /* text-align: left;*/
91
- /*}*/
92
-
93
- .biom-bar .labels td {
94
- padding-right: 2px;
95
- }
96
-
97
- .score-text {
98
- color: #124374;
99
- font-size: 12px;
100
- font-family: "Cairo", sans-serif !important;
101
- letter-spacing: -0.5px;
102
- font-weight: 400;
103
- word-wrap: break-word;
104
- margin-left: 0;
105
- margin-right: 5px;
106
- }
107
-
108
- .biom-info .unit {
109
- margin-left: 0;
110
- margin-right: 5px;
111
- }
112
-
113
- .grid-col {
114
- float: right;
115
- }
116
-
117
- .all-details-section .grid-col.size3 {
118
- float: left;
119
- clear: left;
120
- }
121
-
122
- .biom-info {
123
- float: right;
124
- }
125
-
126
- .insight-title {
127
- margin-left: 0;
128
- margin-right: 2px;
129
- }
130
-
131
- .report-info {
132
- width: 100%;
133
- }
134
-
135
- .info-group {
136
- padding: 0;
137
- }
138
-
139
- .info-value {
140
- font-family: "Open Sans", sans-serif !important;
141
- padding: 0;
142
- }
143
-
144
- .info-title {
145
- margin: 4px
146
- }
147
-
148
- .wellbeing-logo {
149
- margin-right: 50px;
150
- margin-left: 0
151
- }
152
-
153
- .white-divider {
154
- border-left: 0;
155
- border-right: 1px solid rgba(255, 255, 255, 0.65);
156
- }
157
-
158
-
159
- .menu-container.change {
160
- margin-right: 41px;
161
- margin-left: 0;
162
- }
163
-
164
-
165
- .wellbeing-landing-page.ui.grid .main-section {
166
- padding: 0 0 60px;
167
- }
168
-
169
- .well-being .content-card-without-animation {
170
- padding: 5.3em 24.1% 5.563em 14.6%;
171
- }
172
-
173
- .main-card {
174
- margin: 2em 0 0 0 !important;
175
- }
176
-
177
- .scroll-answers-section {
178
- margin-left: -2em;
179
- margin-right: 40px;
180
- }
181
-
182
- .intro-quote {
183
- padding-right: 0;
184
- padding-left: 6.5em;
185
- }
186
-
187
- .intro-corner-image {
188
- left: 0;
189
- right: auto;
190
- }
191
-
192
- .login-form.ui.form .field > label {
193
- margin: 0 0 .4rem 0;
194
- }
195
-
196
- .login-card {
197
- padding: 3em 9em 0.6em 5.786em !important;
198
- }
199
-
200
- .continue-without-account {
201
- margin-left: 0;
202
- margin-right: 0.9rem;
203
- }
204
-
205
- .modal-content .confirmation-section .accept-btn {
206
- margin: 10px 15px 0 0;
207
- }
208
-
209
- .wellbeing-modal .modal-content {
210
- padding: 85px 58px 84px 58px;
211
- }
212
-
213
- .info-modal-content.ui.grid {
214
- padding: 5.5em 15em 14.5em 5em;
215
- }
216
-
217
- .biomarker-tabs .ui.secondary.pointing.menu .item:first-child {
218
- margin: 0 21.5px 0 0;
219
- }
220
-
221
- .biomarker-tabs .ui.secondary.pointing.menu .item:last-child {
222
- margin: 0 0 0 21.5px;
223
- }
224
-
225
- .info-modal-content.ui.grid .biomarker-info-btn {
226
- padding-left: 0;
227
- padding-right: 1em;
228
- }
229
-
230
- .close-btn.ui.button {
231
- margin: 10px 15px 0 0;
232
- }
233
-
234
- .gender-input-container {
235
- margin: 28px 0 32px 0;
236
- }
237
-
238
- .profile-header {
239
- margin: 0 0 25px;
240
- }
241
-
242
-
243
- .age-form.ui.form .ui.input > input {
244
- padding: 13px 22px 13.8px 20px;
245
- }
246
-
247
- .female-choice {
248
- margin-left: 0;
249
- margin-right: 1rem;
250
- }
251
-
252
- .male-choice {
253
- margin-right: 0;
254
- margin-left: 1rem;
255
- }
256
-
257
- .gender-icon {
258
- left: 0;
259
- right: auto;
260
- }
261
-
262
- .bmi-question-grid.ui.grid {
263
- padding: 44px 20px 31px 20px !important;
264
- }
265
-
266
- .question-content {
267
- padding: 44px 0 31px 0 !important;
268
- }
269
-
270
- .biomarker-select.ui.selection.dropdown {
271
- margin-left: 0;
272
- margin-right: 8px;
273
- }
274
-
275
- .height-input.ui.dropdown {
276
- border: solid 1px rgba(151, 151, 151, 0.17);
277
- border-bottom-left-radius: unset;
278
- border-top-left-radius: unset;
279
- border-left: 0;
280
- }
281
-
282
- .height-input.ui.dropdown > input {
283
- border: solid 1px rgba(151, 151, 151, 0.17);
284
- border-bottom-left-radius: unset;
285
- border-top-left-radius: unset;
286
- }
287
-
288
- .weight-input-container {
289
- margin-left: 0;
290
- margin-right: 1em;
291
- }
292
-
293
- .height-dropdown.ui.dropdown {
294
- border: solid 1px rgba(151, 151, 151, 0.17) !important;
295
- border-right: 0 !important;
296
- }
297
-
298
-
299
- .height-dropdown.ui.dropdown .menu > .item:not(:last-child):before {
300
- left: auto;
301
- right: 15%;
302
- }
303
-
304
- .bio-circle-wrapper {
305
- padding-left: 0;
306
- padding-right: 1em;
307
- }
308
-
309
- .bio-text {
310
- padding-left: 0;
311
- padding-right: 15px;
312
- }
313
-
314
- .skip-btn {
315
- margin-left: 0;
316
- margin-right: 2em;
317
- }
318
-
319
- .back-btn {
320
- margin-right: 0;
321
- margin-left: 2em;
322
- }
323
-
324
- .question-progress.ui.progress .bar {
325
- margin-left: 0;
326
- margin-right: 1em;
327
- }
328
-
329
-
330
- .corner-image {
331
- left: 0;
332
- right: auto;
333
- }
334
-
335
- .question-image-icon {
336
- left: 1.2em;
337
- right: auto
338
- }
339
-
340
- #wrapper {
341
- margin: 20px 2em auto auto;
342
- }
343
-
344
- .scroll-option-circle {
345
- right: 8px;
346
- left: auto;
347
- }
348
-
349
- .scroll-container {
350
- padding-left: 0;
351
- padding-right: 30px;
352
- }
353
-
354
- .scroll-container #content > div > div {
355
- margin-right: 0;
356
- margin-left: 16px;
357
- }
358
-
359
- .square-scroll-container {
360
- padding: 10px 0 0 !important;
361
- }
362
-
363
- .minus-btn.ui.button {
364
- border-radius: 0 10px 10px 0;
365
- }
366
-
367
- .plus-btn.ui.button {
368
- border-radius: 10px 0 0 10px;
369
- }
370
-
371
- i.icon.info.circle {
372
- padding-left: 0;
373
- padding-right: 1em;
374
- }
375
-
376
-
377
- .question-info-icon.ui.image {
378
- margin-right: 0.5rem;
379
- margin-left: 0;
380
- }
381
-
382
-
383
- .ui.popup.question-info-popup {
384
- margin-left: 0;
385
- left: 0 !important;
386
- right: 8px !important;
387
- }
388
-
389
- .biomarker-unit {
390
- margin-left: 0;
391
- margin-right: 0.5em;
392
- }
393
-
394
- .ui.labeled.input > .label:not(.corner) {
395
- border-top-right-radius: 0;
396
- border-top-left-radius: 6px;
397
- }
398
-
399
- .info-image.ui.image {
400
- margin-rigth: 11px;
401
- margin-left: 0;
402
- }
403
-
404
- .wellbeing-footer:hover {
405
- color: #282163;
406
- opacity: 1;
407
- }
408
-
409
- .wellbeing-footer.active {
410
- color: #282163;
411
- }
412
-
413
- .header-title {
414
- font-weight: 900;
415
- font-size: 30px;
416
- }
417
-
418
- .bio-details-question {
419
- cursor: pointer;
420
- font-size: 15px;
421
- font-weight: 600;
422
- font-stretch: normal;
423
- font-style: normal;
424
- line-height: 1.4;
425
- letter-spacing: -0.31px;
426
- text-align: center;
427
- color: #6d62d4;
428
- text-decoration-line: underline;
429
- }
430
-
431
- .biomarker-mesurment-details {
432
- text-align: center;
433
- }
434
-
435
- .select-option-column {
436
- padding: 0 8px !important;
437
- margin-bottom: 15px !important;
438
- }
439
-
440
- .option-circle {
441
- left: 0;
442
- right: 20px;
443
- }
444
-
445
- .imprint-title.ui.header {
446
- margin: 0 0 19px 0;
447
- }
448
-
449
- .left-part-content {
450
- padding-right: 6rem !important;
451
- padding-left: 0 !important;
452
- }
453
-
454
- .mobile-screenshot {
455
- left: 0;
456
- right: auto;
457
- }
458
-
459
- .google-play {
460
- margin-right: .5rem;
461
- margin-left: 0;
462
- }
463
-
464
- .question-divider {
465
- margin-right: 0em;
466
- }
467
-
468
- ul li::before {
469
- margin-right: -1em;
470
- margin-left: 0;
471
- }
472
-
473
- .acknowledgments-section {
474
- padding-right: 3em;
475
- padding-left: 11em;
476
- }
477
-
478
- .acknowledgments-section-item {
479
- padding: 1.5rem 1.5rem 1.5rem 4rem;
480
- }
481
-
482
-
483
- .mobile-screenshot-about-page {
484
- text-align: right;
485
- }
486
-
487
- .feedback-card {
488
- padding: 4em 8em 3em !important;
489
- }
490
-
491
- .feedback-validation-container {
492
- padding: 3em 7em 12em;
493
- }
494
-
495
- .feedback-icon.icon {
496
- color: #ee7888;
497
- margin-bottom: .5em;
498
- font-size: 3em;
499
- }
500
-
501
- .feedback-validation {
502
- font-size: 15px;
503
- font-weight: 100;
504
- font-stretch: normal;
505
- font-style: normal;
506
- line-height: 1.6;
507
- letter-spacing: -0.31px;
508
- color: #282163;
509
- margin-top: 1em;
510
- }
511
-
512
- .privacy-policy-page {
513
- background: #FFFFFF;
514
- border-radius: 30px;
515
- padding: 44px;
516
- font-size: 15px;
517
- font-weight: 200;
518
- font-stretch: normal;
519
- font-style: normal;
520
- line-height: 1.6;
521
- letter-spacing: -0.31px;
522
- color: #333333;
523
- }
524
-
525
- .privacy-policy-page p {
526
- margin-bottom: 10px;
527
- /*font-family: OpenSans;*/
528
- font-size: 15px;
529
- font-stretch: normal;
530
- font-style: normal;
531
- line-height: 24px;
532
- letter-spacing: -0.31px;
533
- color: #333333;
534
- }
535
-
536
- .medicus-link {
537
- font-weight: 600;
538
- text-decoration: underline;
539
- color: #333333;
540
- }
541
-
542
- .medicus-link-not-underlined {
543
- font-weight: 700;
544
- color: #333333;
545
- }
546
-
547
- .bold-paragraph {
548
- font-weight: 800;
549
- }
550
-
551
- .bold-navy-link {
552
- font-weight: 600;
553
- color: #6d62d4;
554
- text-decoration: underline;
555
- }
556
-
557
- .bold-navy-link:hover {
558
- color: #6d62d4;
559
- text-decoration: underline;
560
- opacity: 0.8;
561
- }
562
-
563
-
564
- .privacy-policy-table > table {
565
- border-collapse: collapse;
566
- }
567
-
568
- .privacy-policy-table > table td {
569
- border: 1px solid rgba(0, 0, 0, .18);
570
- padding: 1em;
571
- }
572
-
573
- .privacy-policy-table > table tr td:first-child {
574
- border: 1px solid rgba(0, 0, 0, .18);
575
- border-right: 0;
576
- }
577
-
578
- .privacy-policy-table > table tr td:last-child {
579
- border: 1px solid rgba(0, 0, 0, .18);
580
- border-left: 0;
581
- }
582
-
583
- .intro-card {
584
- padding: 5em 10em 5em 5.5em !important;
585
- }
586
-
587
- .score-page-header {
588
- margin-right: 4rem;
589
- margin-left: 0
590
- }
591
-
592
- .lingualReading-text {
593
- padding-left: 4px;
594
- padding-right: 0;
595
- }
596
-
597
- .score-gender-image.ui.image {
598
- left: 0;
599
- right: auto;
600
- }
601
-
602
- .score-detail-list {
603
- text-align: right;
604
- padding-right: 2rem;
605
- padding-left: 0;
606
- }
607
-
608
- .collapse-circle-close {
609
- right: 361px;
610
- left: 0;
611
- }
612
-
613
- .score-description {
614
- font-family: "Cairo", sans-serif !important;
615
- text-align: right;
616
- }
617
-
618
- .list-icon.ui.image {
619
- margin-left: 6px;
620
- margin-right: 0;
621
- }
622
-
623
- .list-item {
624
- float: right;
625
- text-align: right;
626
- }
627
-
628
- .list-score {
629
- text-align: left;
630
- float: left;
631
- }
632
-
633
-
634
- .list-text {
635
- padding-right: 1px;
636
- padding-left: 0;
637
- font-size: 10px !important;
638
- }
639
-
640
- .chunk-text {
641
- padding-right: 0;
642
- padding-left: 2rem;
643
- }
644
-
645
- /* .meter-needle.ui.image {
646
- left: 4px;
647
- } */
648
-
649
- /* .needle-container {
650
- margin-left: 15px;
651
- margin-right: auto
652
- } */
653
-
654
- .needle-container.loading_Meter1 {
655
- margin-right: 37px;
656
- }
657
-
658
- /* .needle-container.loading_Meter2 {
659
- margin-right: 26px;
660
- } */
661
-
662
- .content {
663
- /*padding: 0px 40px 0 40px;*/
664
- padding: 10px 0 15px 0;
665
- direction: rtl;
666
- }
667
-
668
-
669
- .pdf-top-logo {
670
- float: right;
671
- padding-left: 43px;
672
- padding-right: 0;
673
- }
674
-
675
- .pdf-top-info {
676
- right: auto;
677
- left: 0;
678
- float: left;
679
- }
680
-
681
- .row.score-section .eight.wide:last-child {
682
- float: left;
683
- }
684
-
685
- .user-profile-img {
686
- right: auto;
687
- left: -14px;
688
- }
689
-
690
- .scores-note {
691
- float: left;
692
- text-align: left;
693
- }
694
-
695
- .scores-note img {
696
- margin-left: 0;
697
- margin-right: 10px;
698
- }
699
-
700
-
701
- .footer {
702
- float: left;
703
- padding: 11px 20px 10px 37px;
704
- border-top-left-radius: 0;
705
- border-top-right-radius: 16px;
706
- direction: rtl;
707
- }
708
-
709
- .print-page-footer {
710
- font-family: 'Open Sans', sans-serif !important;
711
- float: right
712
- }
713
-
714
- .disclaimer-text {
715
- float: right;
716
- }
717
-
718
- .footer-logo {
719
- float: left;
720
- }
721
-
722
- .percentage-meter-content {
723
- float: right;
724
- }
725
-
726
- .ui.stackable.three-column .left-align {
727
- float: right;
728
- text-align: right;
729
- }
730
-
731
- .ui.stackable.three-column .left-align:last-child {
732
- margin-right: 0.3%;
733
- margin-left: 0;
734
- }
735
-
736
- h5.recommended-tips-title {
737
- float: right;
738
- padding: 20px 40px 7px 0;
739
- }
740
-
741
- .insight-container.insight-container-with-img .tips-text {
742
- margin-right: 0;
743
- margin-left: 10%;
744
- }
745
-
746
- .ui.stackable.three-column .left-align:last-child .insight-container.insight-container-with-img .tips-text {
747
- margin-right: 0;
748
- margin-left: 6%;
749
- }
750
-
751
- .row .percentage-meter-content:nth-child(2) .element-list {
752
- margin-left: 0;
753
- margin-right: 5%;
754
- }
755
-
756
- .row .percentage-meter-content:nth-child(3) .element-list {
757
- margin-left: 0;
758
- margin-right: 11%;
759
- }
760
-
761
- .physical-score-section svg.physical-score-svg {
762
- width: 109%;
763
- margin-top: -22px;
764
- overflow: visible;
765
- }
766
-
767
- /* .physical-score-section .speedometer-value {
768
- right: auto;
769
- left: 20px;
770
- } */
771
-
772
- .physical-score-section .score-header {
773
- margin-right: 0;
774
- margin-left: 10px;
775
- }
776
-
777
-
778
- .psychological-score-section .speedometer-value {
779
- right: 0;
780
- left: -9px;
781
- }
782
-
783
- .psychological-score-section .score-header {
784
- margin-right: 0;
785
- margin-left: -13px;
786
- }
787
-
788
- .psychological-score-section .score-description {
789
- margin-left: 0;
790
- margin-right: 12px;
791
- }
792
-
793
- #lifeStyle svg {
794
- left: auto !important;
795
- right: -7.6875px !important;
796
- }
797
-
798
- #body svg {
799
- left: auto !important;
800
- right: 0.3125px !important;
801
- }
802
-
803
- #mind svg {
804
- left: auto !important;
805
- right: 14.3125px !important;
806
- }
807
-
808
- div[key="lifeStyle"] .score-details-title {
809
- margin-right: 0;
810
- margin-left: 23px;
811
- }
812
-
813
- div[key="body"] .score-details-title {
814
- margin-right: 0;
815
- margin-left: 3px;
816
- }
817
-
818
- div[key="mind"] .score-details-title {
819
- margin-right: 0;
820
- margin-left: -20px;
821
- }
822
-
823
- .notification-text {
824
- color: #124374;
825
- font-size: 10px;
826
- font-weight: 400;
827
- word-wrap: break-word;
828
- margin-right: 2%;
829
- }
830
-
831
- .row {
832
- position: relative;
833
- width: 100% !important;
834
- clear: both;
835
- float: right;
836
- }
837
-
838
- .row.score-section {
839
- padding: 13px 8px;
840
- border: 1px solid;
841
- color: #0092D2;
842
- border-radius: 16px;
843
- width: max-content;
844
- margin-right: 3%;
845
- height: 240px;
846
- }
847
-
848
- .question-title {
849
- font-family: 'Cairo', sans-serif !important;
850
- text-align: right !important;
851
- }
1
+ body {
2
+ direction: rtl;
3
+ font-family: 'Cairo', 'Open Sans', sans-serif !important;
4
+ font-feature-settings: "zero" off !important;
5
+ -webkit-font-feature-settings: "zero" off !important;
6
+ -moz-font-feature-settings: "zero" off !important;
7
+ }
8
+
9
+ .row.score-section {
10
+ width: auto !important;
11
+ }
12
+
13
+ .gender-type {
14
+ font-family: 'Cairo', sans-serif !important;
15
+ }
16
+
17
+ span.bio-name-info {
18
+ font-family: "Open Sans", sans-serif !important;
19
+ }
20
+
21
+ .value-text[data-type="string"] {
22
+ font-family: 'Cairo', sans-serif !important;
23
+ }
24
+
25
+ .value-text[data-type="number"] {
26
+ font-family: 'Open Sans', sans-serif !important;
27
+ }
28
+
29
+ .value-text {
30
+ font-family: 'Open Sans', sans-serif !important;
31
+ }
32
+
33
+ .unit-text {
34
+ font-family: "Open Sans", sans-serif !important;
35
+ }
36
+
37
+ .unit {
38
+ font-family: "Open Sans", sans-serif !important;
39
+ }
40
+
41
+ tr.values td {
42
+ font-family: "Open Sans", sans-serif !important;
43
+ }
44
+
45
+ .biom-unit .biom-parent-unit.unit-text {
46
+ font-family: "Open Sans", sans-serif !important;
47
+ white-space: nowrap;
48
+ }
49
+
50
+ .biom-unit .biom-parent-unit.unit-text {
51
+ font-family: "Open Sans", sans-serif !important;
52
+
53
+ white-space: nowrap;
54
+ }
55
+
56
+
57
+ span.bio-name-info {
58
+ direction: ltr;
59
+ text-align: right;
60
+ }
61
+
62
+ .panel-title-text {
63
+ direction: ltr;
64
+ text-align: right;
65
+ /*font-family: 'Open Sans', sans-serif;*/
66
+ }
67
+
68
+ .speedometer-value {
69
+ top: 62px;
70
+ /*font-family: "Open Sans", sans-serif !important;*/
71
+ }
72
+
73
+ .speedometer-value2 {
74
+ top: 37px;
75
+ /*font-family: "Open Sans", sans-serif !important;*/
76
+ }
77
+
78
+ .biom-bar.big .labels td {
79
+ -webkit-transform: rotate(0deg);
80
+ }
81
+
82
+ table.biomarker-block.panel-section-header-new td.biom-range {
83
+ text-align: left !important;
84
+ padding-left: 40px !important;
85
+ }
86
+
87
+
88
+ /*.biom-range:not(.biom-range-data) {*/
89
+ /* padding-left: 20px;*/
90
+ /* text-align: left;*/
91
+ /*}*/
92
+
93
+ .biom-bar .labels td {
94
+ padding-right: 2px;
95
+ }
96
+
97
+ .score-text {
98
+ color: #124374;
99
+ font-size: 12px;
100
+ font-family: "Cairo", sans-serif !important;
101
+ letter-spacing: -0.5px;
102
+ font-weight: 400;
103
+ word-wrap: break-word;
104
+ margin-left: 0;
105
+ margin-right: 5px;
106
+ }
107
+
108
+ .biom-info .unit {
109
+ margin-left: 0;
110
+ margin-right: 5px;
111
+ }
112
+
113
+ .grid-col {
114
+ float: right;
115
+ }
116
+
117
+ .all-details-section .grid-col.size3 {
118
+ float: left;
119
+ clear: left;
120
+ }
121
+
122
+ .biom-info {
123
+ float: right;
124
+ }
125
+
126
+ .insight-title {
127
+ margin-left: 0;
128
+ margin-right: 2px;
129
+ }
130
+
131
+ .report-info {
132
+ width: 100%;
133
+ }
134
+
135
+ .info-group {
136
+ padding: 0;
137
+ }
138
+
139
+ .info-value {
140
+ font-family: "Open Sans", sans-serif !important;
141
+ padding: 0;
142
+ }
143
+
144
+ .info-title {
145
+ margin: 4px
146
+ }
147
+
148
+ .wellbeing-logo {
149
+ margin-right: 50px;
150
+ margin-left: 0
151
+ }
152
+
153
+ .white-divider {
154
+ border-left: 0;
155
+ border-right: 1px solid rgba(255, 255, 255, 0.65);
156
+ }
157
+
158
+
159
+ .menu-container.change {
160
+ margin-right: 41px;
161
+ margin-left: 0;
162
+ }
163
+
164
+
165
+ .wellbeing-landing-page.ui.grid .main-section {
166
+ padding: 0 0 60px;
167
+ }
168
+
169
+ .well-being .content-card-without-animation {
170
+ padding: 5.3em 24.1% 5.563em 14.6%;
171
+ }
172
+
173
+ .main-card {
174
+ margin: 2em 0 0 0 !important;
175
+ }
176
+
177
+ .scroll-answers-section {
178
+ margin-left: -2em;
179
+ margin-right: 40px;
180
+ }
181
+
182
+ .intro-quote {
183
+ padding-right: 0;
184
+ padding-left: 6.5em;
185
+ }
186
+
187
+ .intro-corner-image {
188
+ left: 0;
189
+ right: auto;
190
+ }
191
+
192
+ .login-form.ui.form .field > label {
193
+ margin: 0 0 .4rem 0;
194
+ }
195
+
196
+ .login-card {
197
+ padding: 3em 9em 0.6em 5.786em !important;
198
+ }
199
+
200
+ .continue-without-account {
201
+ margin-left: 0;
202
+ margin-right: 0.9rem;
203
+ }
204
+
205
+ .modal-content .confirmation-section .accept-btn {
206
+ margin: 10px 15px 0 0;
207
+ }
208
+
209
+ .wellbeing-modal .modal-content {
210
+ padding: 85px 58px 84px 58px;
211
+ }
212
+
213
+ .info-modal-content.ui.grid {
214
+ padding: 5.5em 15em 14.5em 5em;
215
+ }
216
+
217
+ .biomarker-tabs .ui.secondary.pointing.menu .item:first-child {
218
+ margin: 0 21.5px 0 0;
219
+ }
220
+
221
+ .biomarker-tabs .ui.secondary.pointing.menu .item:last-child {
222
+ margin: 0 0 0 21.5px;
223
+ }
224
+
225
+ .info-modal-content.ui.grid .biomarker-info-btn {
226
+ padding-left: 0;
227
+ padding-right: 1em;
228
+ }
229
+
230
+ .close-btn.ui.button {
231
+ margin: 10px 15px 0 0;
232
+ }
233
+
234
+ .gender-input-container {
235
+ margin: 28px 0 32px 0;
236
+ }
237
+
238
+ .profile-header {
239
+ margin: 0 0 25px;
240
+ }
241
+
242
+
243
+ .age-form.ui.form .ui.input > input {
244
+ padding: 13px 22px 13.8px 20px;
245
+ }
246
+
247
+ .female-choice {
248
+ margin-left: 0;
249
+ margin-right: 1rem;
250
+ }
251
+
252
+ .male-choice {
253
+ margin-right: 0;
254
+ margin-left: 1rem;
255
+ }
256
+
257
+ .gender-icon {
258
+ left: 0;
259
+ right: auto;
260
+ }
261
+
262
+ .bmi-question-grid.ui.grid {
263
+ padding: 44px 20px 31px 20px !important;
264
+ }
265
+
266
+ .question-content {
267
+ padding: 44px 0 31px 0 !important;
268
+ }
269
+
270
+ .biomarker-select.ui.selection.dropdown {
271
+ margin-left: 0;
272
+ margin-right: 8px;
273
+ }
274
+
275
+ .height-input.ui.dropdown {
276
+ border: solid 1px rgba(151, 151, 151, 0.17);
277
+ border-bottom-left-radius: unset;
278
+ border-top-left-radius: unset;
279
+ border-left: 0;
280
+ }
281
+
282
+ .height-input.ui.dropdown > input {
283
+ border: solid 1px rgba(151, 151, 151, 0.17);
284
+ border-bottom-left-radius: unset;
285
+ border-top-left-radius: unset;
286
+ }
287
+
288
+ .weight-input-container {
289
+ margin-left: 0;
290
+ margin-right: 1em;
291
+ }
292
+
293
+ .height-dropdown.ui.dropdown {
294
+ border: solid 1px rgba(151, 151, 151, 0.17) !important;
295
+ border-right: 0 !important;
296
+ }
297
+
298
+
299
+ .height-dropdown.ui.dropdown .menu > .item:not(:last-child):before {
300
+ left: auto;
301
+ right: 15%;
302
+ }
303
+
304
+ .bio-circle-wrapper {
305
+ padding-left: 0;
306
+ padding-right: 1em;
307
+ }
308
+
309
+ .bio-text {
310
+ padding-left: 0;
311
+ padding-right: 15px;
312
+ }
313
+
314
+ .skip-btn {
315
+ margin-left: 0;
316
+ margin-right: 2em;
317
+ }
318
+
319
+ .back-btn {
320
+ margin-right: 0;
321
+ margin-left: 2em;
322
+ }
323
+
324
+ .question-progress.ui.progress .bar {
325
+ margin-left: 0;
326
+ margin-right: 1em;
327
+ }
328
+
329
+
330
+ .corner-image {
331
+ left: 0;
332
+ right: auto;
333
+ }
334
+
335
+ .question-image-icon {
336
+ left: 1.2em;
337
+ right: auto
338
+ }
339
+
340
+ #wrapper {
341
+ margin: 20px 2em auto auto;
342
+ }
343
+
344
+ .scroll-option-circle {
345
+ right: 8px;
346
+ left: auto;
347
+ }
348
+
349
+ .scroll-container {
350
+ padding-left: 0;
351
+ padding-right: 30px;
352
+ }
353
+
354
+ .scroll-container #content > div > div {
355
+ margin-right: 0;
356
+ margin-left: 16px;
357
+ }
358
+
359
+ .square-scroll-container {
360
+ padding: 10px 0 0 !important;
361
+ }
362
+
363
+ .minus-btn.ui.button {
364
+ border-radius: 0 10px 10px 0;
365
+ }
366
+
367
+ .plus-btn.ui.button {
368
+ border-radius: 10px 0 0 10px;
369
+ }
370
+
371
+ i.icon.info.circle {
372
+ padding-left: 0;
373
+ padding-right: 1em;
374
+ }
375
+
376
+
377
+ .question-info-icon.ui.image {
378
+ margin-right: 0.5rem;
379
+ margin-left: 0;
380
+ }
381
+
382
+
383
+ .ui.popup.question-info-popup {
384
+ margin-left: 0;
385
+ left: 0 !important;
386
+ right: 8px !important;
387
+ }
388
+
389
+ .biomarker-unit {
390
+ margin-left: 0;
391
+ margin-right: 0.5em;
392
+ }
393
+
394
+ .ui.labeled.input > .label:not(.corner) {
395
+ border-top-right-radius: 0;
396
+ border-top-left-radius: 6px;
397
+ }
398
+
399
+ .info-image.ui.image {
400
+ margin-rigth: 11px;
401
+ margin-left: 0;
402
+ }
403
+
404
+ .wellbeing-footer:hover {
405
+ color: #282163;
406
+ opacity: 1;
407
+ }
408
+
409
+ .wellbeing-footer.active {
410
+ color: #282163;
411
+ }
412
+
413
+ .header-title {
414
+ font-weight: 900;
415
+ font-size: 30px;
416
+ }
417
+
418
+ .bio-details-question {
419
+ cursor: pointer;
420
+ font-size: 15px;
421
+ font-weight: 600;
422
+ font-stretch: normal;
423
+ font-style: normal;
424
+ line-height: 1.4;
425
+ letter-spacing: -0.31px;
426
+ text-align: center;
427
+ color: #6d62d4;
428
+ text-decoration-line: underline;
429
+ }
430
+
431
+ .biomarker-mesurment-details {
432
+ text-align: center;
433
+ }
434
+
435
+ .select-option-column {
436
+ padding: 0 8px !important;
437
+ margin-bottom: 15px !important;
438
+ }
439
+
440
+ .option-circle {
441
+ left: 0;
442
+ right: 20px;
443
+ }
444
+
445
+ .imprint-title.ui.header {
446
+ margin: 0 0 19px 0;
447
+ }
448
+
449
+ .left-part-content {
450
+ padding-right: 6rem !important;
451
+ padding-left: 0 !important;
452
+ }
453
+
454
+ .mobile-screenshot {
455
+ left: 0;
456
+ right: auto;
457
+ }
458
+
459
+ .google-play {
460
+ margin-right: .5rem;
461
+ margin-left: 0;
462
+ }
463
+
464
+ .question-divider {
465
+ margin-right: 0em;
466
+ }
467
+
468
+ ul li::before {
469
+ margin-right: -1em;
470
+ margin-left: 0;
471
+ }
472
+
473
+ .acknowledgments-section {
474
+ padding-right: 3em;
475
+ padding-left: 11em;
476
+ }
477
+
478
+ .acknowledgments-section-item {
479
+ padding: 1.5rem 1.5rem 1.5rem 4rem;
480
+ }
481
+
482
+
483
+ .mobile-screenshot-about-page {
484
+ text-align: right;
485
+ }
486
+
487
+ .feedback-card {
488
+ padding: 4em 8em 3em !important;
489
+ }
490
+
491
+ .feedback-validation-container {
492
+ padding: 3em 7em 12em;
493
+ }
494
+
495
+ .feedback-icon.icon {
496
+ color: #ee7888;
497
+ margin-bottom: .5em;
498
+ font-size: 3em;
499
+ }
500
+
501
+ .feedback-validation {
502
+ font-size: 15px;
503
+ font-weight: 100;
504
+ font-stretch: normal;
505
+ font-style: normal;
506
+ line-height: 1.6;
507
+ letter-spacing: -0.31px;
508
+ color: #282163;
509
+ margin-top: 1em;
510
+ }
511
+
512
+ .privacy-policy-page {
513
+ background: #FFFFFF;
514
+ border-radius: 30px;
515
+ padding: 44px;
516
+ font-size: 15px;
517
+ font-weight: 200;
518
+ font-stretch: normal;
519
+ font-style: normal;
520
+ line-height: 1.6;
521
+ letter-spacing: -0.31px;
522
+ color: #333333;
523
+ }
524
+
525
+ .privacy-policy-page p {
526
+ margin-bottom: 10px;
527
+ /*font-family: OpenSans;*/
528
+ font-size: 15px;
529
+ font-stretch: normal;
530
+ font-style: normal;
531
+ line-height: 24px;
532
+ letter-spacing: -0.31px;
533
+ color: #333333;
534
+ }
535
+
536
+ .medicus-link {
537
+ font-weight: 600;
538
+ text-decoration: underline;
539
+ color: #333333;
540
+ }
541
+
542
+ .medicus-link-not-underlined {
543
+ font-weight: 700;
544
+ color: #333333;
545
+ }
546
+
547
+ .bold-paragraph {
548
+ font-weight: 800;
549
+ }
550
+
551
+ .bold-navy-link {
552
+ font-weight: 600;
553
+ color: #6d62d4;
554
+ text-decoration: underline;
555
+ }
556
+
557
+ .bold-navy-link:hover {
558
+ color: #6d62d4;
559
+ text-decoration: underline;
560
+ opacity: 0.8;
561
+ }
562
+
563
+
564
+ .privacy-policy-table > table {
565
+ border-collapse: collapse;
566
+ }
567
+
568
+ .privacy-policy-table > table td {
569
+ border: 1px solid rgba(0, 0, 0, .18);
570
+ padding: 1em;
571
+ }
572
+
573
+ .privacy-policy-table > table tr td:first-child {
574
+ border: 1px solid rgba(0, 0, 0, .18);
575
+ border-right: 0;
576
+ }
577
+
578
+ .privacy-policy-table > table tr td:last-child {
579
+ border: 1px solid rgba(0, 0, 0, .18);
580
+ border-left: 0;
581
+ }
582
+
583
+ .intro-card {
584
+ padding: 5em 10em 5em 5.5em !important;
585
+ }
586
+
587
+ .score-page-header {
588
+ margin-right: 4rem;
589
+ margin-left: 0
590
+ }
591
+
592
+ .lingualReading-text {
593
+ padding-left: 4px;
594
+ padding-right: 0;
595
+ }
596
+
597
+ .score-gender-image.ui.image {
598
+ left: 0;
599
+ right: auto;
600
+ }
601
+
602
+ .score-detail-list {
603
+ text-align: right;
604
+ padding-right: 2rem;
605
+ padding-left: 0;
606
+ }
607
+
608
+ .collapse-circle-close {
609
+ right: 361px;
610
+ left: 0;
611
+ }
612
+
613
+ .score-description {
614
+ font-family: "Cairo", sans-serif !important;
615
+ text-align: right;
616
+ }
617
+
618
+ .list-icon.ui.image {
619
+ margin-left: 6px;
620
+ margin-right: 0;
621
+ }
622
+
623
+ .list-item {
624
+ float: right;
625
+ text-align: right;
626
+ }
627
+
628
+ .list-score {
629
+ text-align: left;
630
+ float: left;
631
+ }
632
+
633
+
634
+ .list-text {
635
+ padding-right: 1px;
636
+ padding-left: 0;
637
+ font-size: 10px !important;
638
+ }
639
+
640
+ .chunk-text {
641
+ padding-right: 0;
642
+ padding-left: 2rem;
643
+ }
644
+
645
+ /* .meter-needle.ui.image {
646
+ left: 4px;
647
+ } */
648
+
649
+ /* .needle-container {
650
+ margin-left: 15px;
651
+ margin-right: auto
652
+ } */
653
+
654
+ .needle-container.loading_Meter1 {
655
+ margin-right: 37px;
656
+ }
657
+
658
+ /* .needle-container.loading_Meter2 {
659
+ margin-right: 26px;
660
+ } */
661
+
662
+ .content {
663
+ /*padding: 0px 40px 0 40px;*/
664
+ padding: 10px 0 15px 0;
665
+ direction: rtl;
666
+ }
667
+
668
+
669
+ .pdf-top-logo {
670
+ float: right;
671
+ padding-left: 43px;
672
+ padding-right: 0;
673
+ }
674
+
675
+ .pdf-top-info {
676
+ right: auto;
677
+ left: 0;
678
+ float: left;
679
+ }
680
+
681
+ .row.score-section .eight.wide:last-child {
682
+ float: left;
683
+ }
684
+
685
+ .user-profile-img {
686
+ right: auto;
687
+ left: -14px;
688
+ }
689
+
690
+ .scores-note {
691
+ float: left;
692
+ text-align: left;
693
+ }
694
+
695
+ .scores-note img {
696
+ margin-left: 0;
697
+ margin-right: 10px;
698
+ }
699
+
700
+
701
+ .footer {
702
+ float: left;
703
+ padding: 11px 20px 10px 37px;
704
+ border-top-left-radius: 0;
705
+ border-top-right-radius: 16px;
706
+ direction: rtl;
707
+ }
708
+
709
+ .print-page-footer {
710
+ font-family: 'Open Sans', sans-serif !important;
711
+ float: right
712
+ }
713
+
714
+ .disclaimer-text {
715
+ float: right;
716
+ }
717
+
718
+ .footer-logo {
719
+ float: left;
720
+ }
721
+
722
+ .percentage-meter-content {
723
+ float: right;
724
+ }
725
+
726
+ .ui.stackable.three-column .left-align {
727
+ float: right;
728
+ text-align: right;
729
+ }
730
+
731
+ .ui.stackable.three-column .left-align:last-child {
732
+ margin-right: 0.3%;
733
+ margin-left: 0;
734
+ }
735
+
736
+ h5.recommended-tips-title {
737
+ float: right;
738
+ padding: 20px 40px 7px 0;
739
+ }
740
+
741
+ .insight-container.insight-container-with-img .tips-text {
742
+ margin-right: 0;
743
+ margin-left: 10%;
744
+ }
745
+
746
+ .ui.stackable.three-column .left-align:last-child .insight-container.insight-container-with-img .tips-text {
747
+ margin-right: 0;
748
+ margin-left: 6%;
749
+ }
750
+
751
+ .row .percentage-meter-content:nth-child(2) .element-list {
752
+ margin-left: 0;
753
+ margin-right: 5%;
754
+ }
755
+
756
+ .row .percentage-meter-content:nth-child(3) .element-list {
757
+ margin-left: 0;
758
+ margin-right: 11%;
759
+ }
760
+
761
+ .physical-score-section svg.physical-score-svg {
762
+ width: 109%;
763
+ margin-top: -22px;
764
+ overflow: visible;
765
+ }
766
+
767
+ /* .physical-score-section .speedometer-value {
768
+ right: auto;
769
+ left: 20px;
770
+ } */
771
+
772
+ .physical-score-section .score-header {
773
+ margin-right: 0;
774
+ margin-left: 10px;
775
+ }
776
+
777
+
778
+ .psychological-score-section .speedometer-value {
779
+ right: 0;
780
+ left: -9px;
781
+ }
782
+
783
+ .psychological-score-section .score-header {
784
+ margin-right: 0;
785
+ margin-left: -13px;
786
+ }
787
+
788
+ .psychological-score-section .score-description {
789
+ margin-left: 0;
790
+ margin-right: 12px;
791
+ }
792
+
793
+ #lifeStyle svg {
794
+ left: auto !important;
795
+ right: -7.6875px !important;
796
+ }
797
+
798
+ #body svg {
799
+ left: auto !important;
800
+ right: 0.3125px !important;
801
+ }
802
+
803
+ #mind svg {
804
+ left: auto !important;
805
+ right: 14.3125px !important;
806
+ }
807
+
808
+ div[key="lifeStyle"] .score-details-title {
809
+ margin-right: 0;
810
+ margin-left: 23px;
811
+ }
812
+
813
+ div[key="body"] .score-details-title {
814
+ margin-right: 0;
815
+ margin-left: 3px;
816
+ }
817
+
818
+ div[key="mind"] .score-details-title {
819
+ margin-right: 0;
820
+ margin-left: -20px;
821
+ }
822
+
823
+ .notification-text {
824
+ color: #124374;
825
+ font-size: 10px;
826
+ font-weight: 400;
827
+ word-wrap: break-word;
828
+ margin-right: 2%;
829
+ }
830
+
831
+ .row {
832
+ position: relative;
833
+ width: 100% !important;
834
+ clear: both;
835
+ float: right;
836
+ }
837
+
838
+ .row.score-section {
839
+ padding: 13px 8px;
840
+ border: 1px solid;
841
+ color: #0092D2;
842
+ border-radius: 16px;
843
+ width: max-content;
844
+ margin-right: 3%;
845
+ height: 240px;
846
+ }
847
+
848
+ .question-title {
849
+ font-family: 'Cairo', sans-serif !important;
850
+ text-align: right !important;
851
+ }