@syncfusion/ej2-vue-pdfviewer 19.4.56 → 20.1.47

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 (37) hide show
  1. package/dist/ej2-vue-pdfviewer.umd.min.js +2 -2
  2. package/dist/global/ej2-vue-pdfviewer.min.js +2 -2
  3. package/package.json +8 -8
  4. package/styles/bootstrap-dark.css +13 -3
  5. package/styles/bootstrap.css +13 -3
  6. package/styles/bootstrap4.css +14 -3
  7. package/styles/bootstrap5-dark.css +21 -12
  8. package/styles/bootstrap5.css +20 -11
  9. package/styles/fabric-dark.css +13 -3
  10. package/styles/fabric.css +13 -3
  11. package/styles/fluent-dark.css +3530 -0
  12. package/styles/fluent-dark.scss +1 -0
  13. package/styles/fluent.css +3530 -0
  14. package/styles/fluent.scss +1 -0
  15. package/styles/highcontrast-light.css +13 -3
  16. package/styles/highcontrast.css +13 -3
  17. package/styles/material-dark.css +13 -3
  18. package/styles/material.css +13 -3
  19. package/styles/pdfviewer/bootstrap-dark.css +13 -3
  20. package/styles/pdfviewer/bootstrap.css +13 -3
  21. package/styles/pdfviewer/bootstrap4.css +14 -3
  22. package/styles/pdfviewer/bootstrap5-dark.css +21 -12
  23. package/styles/pdfviewer/bootstrap5.css +20 -11
  24. package/styles/pdfviewer/fabric-dark.css +13 -3
  25. package/styles/pdfviewer/fabric.css +13 -3
  26. package/styles/pdfviewer/fluent-dark.css +3530 -0
  27. package/styles/pdfviewer/fluent-dark.scss +1 -0
  28. package/styles/pdfviewer/fluent.css +3530 -0
  29. package/styles/pdfviewer/fluent.scss +1 -0
  30. package/styles/pdfviewer/highcontrast-light.css +13 -3
  31. package/styles/pdfviewer/highcontrast.css +13 -3
  32. package/styles/pdfviewer/material-dark.css +13 -3
  33. package/styles/pdfviewer/material.css +13 -3
  34. package/styles/pdfviewer/tailwind-dark.css +115 -99
  35. package/styles/pdfviewer/tailwind.css +117 -100
  36. package/styles/tailwind-dark.css +115 -99
  37. package/styles/tailwind.css +117 -100
@@ -0,0 +1,3530 @@
1
+ /*! PdfViewer's default definitions and variables */
2
+ .e-pdfviewer .e-pv-icon::before {
3
+ font-family: 'e-icons';
4
+ }
5
+
6
+ .e-pdfviewer .e-pv-icon-search::before {
7
+ font-family: 'e-icons';
8
+ }
9
+
10
+ .e-pdfviewer .e-pv-open-document-icon::before {
11
+ content: '\e83c';
12
+ }
13
+
14
+ .e-pdfviewer .e-pv-download-document-icon::before {
15
+ content: '\e7a1';
16
+ }
17
+
18
+ .e-pdfviewer .e-pv-print-document-icon::before {
19
+ content: '\e75d';
20
+ }
21
+
22
+ .e-pdfviewer .e-pv-first-page-navigation-icon::before {
23
+ content: '\e833';
24
+ }
25
+
26
+ .e-pdfviewer .e-pv-previous-page-navigation-icon::before {
27
+ content: '\e765';
28
+ }
29
+
30
+ .e-pdfviewer .e-pv-prev-search-icon::before {
31
+ color: #a19f9d;
32
+ content: '\e765';
33
+ }
34
+
35
+ .e-pdfviewer .e-pv-next-page-navigation-icon::before {
36
+ content: '\e748';
37
+ }
38
+
39
+ .e-pdfviewer .e-pv-next-search-icon::before {
40
+ color: #a19f9d;
41
+ content: '\e748';
42
+ }
43
+
44
+ .e-pdfviewer .e-pv-last-page-navigation-icon::before {
45
+ content: '\e818';
46
+ }
47
+
48
+ .e-pdfviewer .e-pv-zoom-out-icon::before {
49
+ content: '\e81b';
50
+ line-height: 22px;
51
+ }
52
+
53
+ .e-pdfviewer .e-pv-zoom-in-icon::before {
54
+ content: '\e768';
55
+ line-height: 22px;
56
+ }
57
+
58
+ .e-pdfviewer .e-pv-thumbnail-view-icon::before {
59
+ content: '\e79e';
60
+ }
61
+
62
+ .e-pdfviewer .e-pv-stamp-icon::before {
63
+ content: '\e717';
64
+ }
65
+
66
+ .e-pdfviewer .e-pv-thumbnail-view-disable-icon::before {
67
+ color: #484644;
68
+ content: '\e79e';
69
+ }
70
+
71
+ .e-pdfviewer .e-pv-thumbnail-view-selection-icon::before {
72
+ color: #fff;
73
+ content: '\e79e';
74
+ }
75
+
76
+ .e-pdfviewer .e-pv-bookmark-icon::before {
77
+ content: '\e750';
78
+ }
79
+
80
+ .e-pdfviewer .e-pv-bookmark-disable-icon::before {
81
+ color: #484644;
82
+ content: '\e750';
83
+ }
84
+
85
+ .e-pdfviewer .e-pv-bookmark-selection-icon::before {
86
+ color: #fff;
87
+ content: '\e750';
88
+ }
89
+
90
+ .e-pdfviewer .e-pv-title-close-icon::before,
91
+ .e-pdfviewer .e-pv-annotation-tools-close-icon::before,
92
+ .e-pdfviewer .e-pv-annotation-popup-close::before {
93
+ content: '\e7e7';
94
+ }
95
+
96
+ .e-pdfviewer .e-pv-resize-icon::before {
97
+ content: '\e7e3';
98
+ font-size: 10px;
99
+ }
100
+
101
+ .e-pdfviewer .e-pv-text-select-tool-icon::before {
102
+ content: '\e74e';
103
+ }
104
+
105
+ .e-pdfviewer .e-pv-pan-tool-icon::before {
106
+ content: '\e7b1';
107
+ }
108
+
109
+ .e-pdfviewer .e-pv-text-search-icon::before {
110
+ content: '\e754';
111
+ }
112
+
113
+ .e-pdfviewer .e-pv-search-icon::before {
114
+ content: '\e754';
115
+ font-family: 'e-icons';
116
+ }
117
+
118
+ .e-pdfviewer .e-pv-search-close::before {
119
+ content: '\e754';
120
+ font-family: 'e-icons';
121
+ }
122
+
123
+ .e-pdfviewer .e-pv-formdesigner-icon::before {
124
+ content: '\e732';
125
+ }
126
+
127
+ .e-pdfviewer .e-pv-annotation-icon::before {
128
+ content: '\e82a';
129
+ }
130
+
131
+ .e-pdfviewer .e-pv-annotation-color-icon::before {
132
+ content: '\e783';
133
+ }
134
+
135
+ .e-pdfviewer .e-pv-annotation-stroke-icon::before {
136
+ content: '\e819';
137
+ }
138
+
139
+ .e-pdfviewer .e-pv-annotation-opacity-icon::before {
140
+ content: '\e7e1';
141
+ }
142
+
143
+ .e-pdfviewer .e-pv-annotation-thickness-icon::before {
144
+ content: '\e7bf';
145
+ }
146
+
147
+ .e-pdfviewer .e-pv-annotation-delete-icon::before {
148
+ content: '\e820';
149
+ }
150
+
151
+ .e-pdfviewer .e-pv-undo-icon::before {
152
+ content: '\e713';
153
+ }
154
+
155
+ .e-pdfviewer .e-pv-redo-icon::before {
156
+ content: '\e755';
157
+ }
158
+
159
+ .e-pdfviewer .e-pv-more-icon::before {
160
+ content: '\e701';
161
+ }
162
+
163
+ .e-pdfviewer .e-pv-backward-icon::before {
164
+ content: '\e773';
165
+ }
166
+
167
+ .e-pdfviewer .e-pv-notification-icon {
168
+ background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjM1cHgiIGhlaWdodD0iMzFweCIgdmlld0JveD0iMCAwIDM1IDMxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTEuMiAoNTc1MTkpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPg0KICAgIDx0aXRsZT5Hcm91cCAzPC90aXRsZT4NCiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4NCiAgICA8ZGVmcz48L2RlZnM+DQogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+DQogICAgICAgIDxnIGlkPSJDb3JydXB0ZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01MTQuMDAwMDAwLCAtMzUzLjAwMDAwMCkiPg0KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTE5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0OTQuMDAwMDAwLCAyODUuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwLjAwMDAwMCwgNjguMTg0NDc0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNS4yMjM0NzA4LDEwLjM1NzYwMjYgTDEyLjY1MzYzNywyMy40MDU1MTA2IEwxNC4xMzIwOTA1LDI2Ljk5MTI0OTUgTDE5LjM2MTc3ODksMjYuOTkxMjQ5NSBDMjAuNDQwMjUwNywxNy44NjA2NDE1IDIwLjY5MzgwOTcsMTIuMzE2MDkyNSAyMC4xMjI0NTU4LDEwLjM1NzYwMjYgQzE5LjU1MTEwMTksOC4zOTkxMTI3NCAxNy45MTgxMDY5LDguMzk5MTEyNzQgMTUuMjIzNDcwOCwxMC4zNTc2MDI2IFoiIGlkPSJQYXRoLTExIiBmaWxsPSIjMEUwRTBFIj48L3BhdGg+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zMS42MjM4MDkxLDMwLjM4NzQxMDEgQzMzLjgyOTUxMDUsMzAuMzg3NDEwMSAzNC43MjA5MTk0LDI4LjgzODYyNDQgMzMuNjExOTMzMiwyNi45MjMxMDI4IEwxOS4yODk5MDMsMi4xODUwNTA2OCBDMTguMTgyMjEyMiwwLjI3MTc2NjU5NSAxNi4zODc1ODYsMC4yNjk1MjkwNjkgMTUuMjc4NTk5OCwyLjE4NTA1MDY4IEwwLjk1NjU2OTY4NSwyNi45MjMxMDI4IEMtMC4xNTExMjExMDMsMjguODM2Mzg2OCAwLjc0NDI0ODg4MiwzMC4zODc0MTAxIDIuOTQ0NjkzNzksMzAuMzg3NDEwMSBMMzEuNjIzODA5MSwzMC4zODc0MTAxIFogTTE1LjYxNzU4NDgsMjYuMzg3NDEwMSBMMTUuNjE3NTg0OCwyMy4wNTQwNzY3IEwxOC45NTA5MTgxLDIzLjA1NDA3NjcgTDE4Ljk1MDkxODEsMjYuMzg3NDEwMSBMMTUuNjE3NTg0OCwyNi4zODc0MTAxIFogTTE1LjYxNzU4NDgsMjAuNzIwNzQzNCBMMTUuNjE3NTg0OCwxMC4wNTQwNzY3IEwxOC45NTA5MTgxLDEwLjA1NDA3NjcgTDE4Ljk1MDkxODEsMjAuNzIwNzQzNCBMMTUuNjE3NTg0OCwyMC43MjA3NDM0IFoiIGlkPSJTaGFwZSIgZmlsbD0iI0VGQzAwMiI+PC9wYXRoPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg==");
169
+ background-repeat: no-repeat;
170
+ background-size: 36.7px 31.7px;
171
+ height: 31.7px;
172
+ }
173
+
174
+ .e-pdfviewer .e-pv-notification-icon-rtl {
175
+ background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjM1cHgiIGhlaWdodD0iMzFweCIgdmlld0JveD0iMCAwIDM1IDMxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTEuMiAoNTc1MTkpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPg0KICAgIDx0aXRsZT5Hcm91cCAzPC90aXRsZT4NCiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4NCiAgICA8ZGVmcz48L2RlZnM+DQogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+DQogICAgICAgIDxnIGlkPSJDb3JydXB0ZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01MTQuMDAwMDAwLCAtMzUzLjAwMDAwMCkiPg0KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTE5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0OTQuMDAwMDAwLCAyODUuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwLjAwMDAwMCwgNjguMTg0NDc0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNS4yMjM0NzA4LDEwLjM1NzYwMjYgTDEyLjY1MzYzNywyMy40MDU1MTA2IEwxNC4xMzIwOTA1LDI2Ljk5MTI0OTUgTDE5LjM2MTc3ODksMjYuOTkxMjQ5NSBDMjAuNDQwMjUwNywxNy44NjA2NDE1IDIwLjY5MzgwOTcsMTIuMzE2MDkyNSAyMC4xMjI0NTU4LDEwLjM1NzYwMjYgQzE5LjU1MTEwMTksOC4zOTkxMTI3NCAxNy45MTgxMDY5LDguMzk5MTEyNzQgMTUuMjIzNDcwOCwxMC4zNTc2MDI2IFoiIGlkPSJQYXRoLTExIiBmaWxsPSIjMEUwRTBFIj48L3BhdGg+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zMS42MjM4MDkxLDMwLjM4NzQxMDEgQzMzLjgyOTUxMDUsMzAuMzg3NDEwMSAzNC43MjA5MTk0LDI4LjgzODYyNDQgMzMuNjExOTMzMiwyNi45MjMxMDI4IEwxOS4yODk5MDMsMi4xODUwNTA2OCBDMTguMTgyMjEyMiwwLjI3MTc2NjU5NSAxNi4zODc1ODYsMC4yNjk1MjkwNjkgMTUuMjc4NTk5OCwyLjE4NTA1MDY4IEwwLjk1NjU2OTY4NSwyNi45MjMxMDI4IEMtMC4xNTExMjExMDMsMjguODM2Mzg2OCAwLjc0NDI0ODg4MiwzMC4zODc0MTAxIDIuOTQ0NjkzNzksMzAuMzg3NDEwMSBMMzEuNjIzODA5MSwzMC4zODc0MTAxIFogTTE1LjYxNzU4NDgsMjYuMzg3NDEwMSBMMTUuNjE3NTg0OCwyMy4wNTQwNzY3IEwxOC45NTA5MTgxLDIzLjA1NDA3NjcgTDE4Ljk1MDkxODEsMjYuMzg3NDEwMSBMMTUuNjE3NTg0OCwyNi4zODc0MTAxIFogTTE1LjYxNzU4NDgsMjAuNzIwNzQzNCBMMTUuNjE3NTg0OCwxMC4wNTQwNzY3IEwxOC45NTA5MTgxLDEwLjA1NDA3NjcgTDE4Ljk1MDkxODEsMjAuNzIwNzQzNCBMMTUuNjE3NTg0OCwyMC43MjA3NDM0IFoiIGlkPSJTaGFwZSIgZmlsbD0iI0VGQzAwMiI+PC9wYXRoPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg==");
176
+ background-position: right;
177
+ background-repeat: no-repeat;
178
+ background-size: 36.7px 31.7px;
179
+ height: 31.7px;
180
+ }
181
+
182
+ .e-pdfviewer .e-pv-textbox-icon::before {
183
+ content: '\e830';
184
+ }
185
+
186
+ .e-pdfviewer .e-pv-password-icon::before {
187
+ content: '\e753';
188
+ }
189
+
190
+ .e-pdfviewer .e-pv-checkbox-icon::before {
191
+ content: '\e7e4';
192
+ }
193
+
194
+ .e-pdfviewer .e-pv-radiobutton-icon::before {
195
+ content: '\e7b2';
196
+ }
197
+
198
+ .e-pdfviewer .e-pv-dropdown-icon::before {
199
+ content: '\e7a6';
200
+ }
201
+
202
+ .e-pdfviewer .e-pv-listbox-icon::before {
203
+ content: '\e77e';
204
+ }
205
+
206
+ .e-pdfviewer .e-pv-annotation-shape-icon::before {
207
+ content: '\e728';
208
+ }
209
+
210
+ .e-pdfviewer .e-pv-annotation-calibrate-icon::before {
211
+ content: '\e7c7';
212
+ }
213
+
214
+ .e-pv-download-document-icon.e-menu-icon::before {
215
+ content: '\e7a1';
216
+ }
217
+
218
+ .e-pv-bookmark-icon.e-menu-icon::before {
219
+ content: '\e750';
220
+ }
221
+
222
+ .e-pv-highlight-icon::before {
223
+ content: '\e739';
224
+ font-family: 'e-icons';
225
+ }
226
+
227
+ .e-pv-underline-icon::before {
228
+ content: '\e82f';
229
+ font-family: 'e-icons';
230
+ }
231
+
232
+ .e-pv-strikethrough-icon::before {
233
+ content: '\e758';
234
+ font-family: 'e-icons';
235
+ }
236
+
237
+ .e-pv-copy-icon::before {
238
+ content: '\e77c';
239
+ font-family: 'e-icons';
240
+ }
241
+
242
+ .e-pv-cut-icon::before {
243
+ content: '\e7fb';
244
+ font-family: 'e-icons';
245
+ }
246
+
247
+ .e-pv-paste-icon::before {
248
+ content: '\e842';
249
+ font-family: 'e-icons';
250
+ }
251
+
252
+ .e-pv-delete-icon::before {
253
+ content: '\e820';
254
+ font-family: 'e-icons';
255
+ }
256
+
257
+ .e-pv-properties-fill-color-icon::before {
258
+ content: '\e783';
259
+ font-family: 'e-icons';
260
+ }
261
+
262
+ .e-pv-properties-stroke-color-icon::before {
263
+ content: '\e819';
264
+ font-family: 'e-icons';
265
+ }
266
+
267
+ .e-pv-shape-line-icon::before {
268
+ content: '\e819';
269
+ font-family: 'e-icons';
270
+ }
271
+
272
+ .e-pv-shape-arrow-icon::before {
273
+ content: '\e708';
274
+ font-family: 'e-icons';
275
+ }
276
+
277
+ .e-pv-shape-rectangle-icon::before {
278
+ content: '\e723';
279
+ font-family: 'e-icons';
280
+ }
281
+
282
+ .e-pv-shape-circle-icon::before {
283
+ content: '\e7ca';
284
+ font-family: 'e-icons';
285
+ }
286
+
287
+ .e-pv-shape-pentagon-icon::before {
288
+ content: '\e802';
289
+ font-family: 'e-icons';
290
+ }
291
+
292
+ .e-pv-comment-icon::before {
293
+ content: '\e733';
294
+ font-family: 'e-icons';
295
+ }
296
+
297
+ .e-pv-property-icon::before {
298
+ content: '\e83e';
299
+ font-family: 'e-icons';
300
+ }
301
+
302
+ .e-pv-comment-selection-icon::before {
303
+ color: #fff;
304
+ content: '\e733';
305
+ font-family: 'e-icons';
306
+ }
307
+
308
+ .e-pv-comment-panel-icon::before {
309
+ content: '\e71a';
310
+ font-family: 'e-icons';
311
+ }
312
+
313
+ .e-pv-accepted-icon::before {
314
+ color: #fff;
315
+ content: '\e7a8';
316
+ font-family: 'e-icons';
317
+ font-size: 14px;
318
+ padding: 1px 1px 1px 4px;
319
+ position: absolute;
320
+ }
321
+
322
+ .e-pv-rejected-icon::before {
323
+ color: #fff;
324
+ content: '\e815';
325
+ font-family: 'e-icons';
326
+ font-size: 14px;
327
+ padding: 2px 1px 1px 4px;
328
+ position: absolute;
329
+ }
330
+
331
+ .e-pv-completed-icon::before {
332
+ color: #fff;
333
+ content: '\e774';
334
+ font-family: 'e-icons';
335
+ font-size: 14px;
336
+ padding: 2px 1px 1px 3.5px;
337
+ position: absolute;
338
+ }
339
+
340
+ .e-pv-cancelled-icon::before {
341
+ color: #fff;
342
+ content: '\e7e7';
343
+ font-family: 'e-icons';
344
+ font-size: 14px;
345
+ padding: 2px 1px 1px 3.5px;
346
+ position: absolute;
347
+ }
348
+
349
+ .e-pv-scale-ratio-icon::before {
350
+ content: '\e7c7';
351
+ font-family: 'e-icons';
352
+ }
353
+
354
+ .e-pv-calibrate-distance-icon::before {
355
+ content: '\e743';
356
+ font-family: 'e-icons';
357
+ }
358
+
359
+ .e-pv-calibrate-perimeter-icon::before {
360
+ content: '\e716';
361
+ font-family: 'e-icons';
362
+ }
363
+
364
+ .e-pv-calibrate-area-icon::before {
365
+ content: '\e78c';
366
+ font-family: 'e-icons';
367
+ }
368
+
369
+ .e-pv-calibrate-radius-icon::before {
370
+ content: '\e790';
371
+ font-family: 'e-icons';
372
+ }
373
+
374
+ .e-pv-calibrate-volume-icon::before {
375
+ content: '\e741';
376
+ font-family: 'e-icons';
377
+ }
378
+
379
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret::before {
380
+ content: '\e734';
381
+ font-size: 18px;
382
+ }
383
+
384
+ .e-pv-freetext-icon::before {
385
+ content: '\e7b3';
386
+ font-family: 'e-icons';
387
+ }
388
+
389
+ .e-pv-annotation-textcolor-icon::before {
390
+ content: '\e79f';
391
+ }
392
+
393
+ .e-pv-annotation-textalign-icon::before {
394
+ content: '\e7b8';
395
+ font-family: 'e-icons';
396
+ }
397
+
398
+ .e-pv-annotation-textprop-icon::before {
399
+ content: '\e71c';
400
+ font-family: 'e-icons';
401
+ }
402
+
403
+ .e-pv-left-align-icon::before {
404
+ content: '\e7b8';
405
+ font-family: 'e-icons';
406
+ }
407
+
408
+ .e-pv-right-align-icon::before {
409
+ content: '\e719';
410
+ font-family: 'e-icons';
411
+ }
412
+
413
+ .e-pv-center-align-icon::before {
414
+ content: '\e813';
415
+ font-family: 'e-icons';
416
+ }
417
+
418
+ .e-pv-justfiy-align-icon::before {
419
+ content: '\e721';
420
+ font-family: 'e-icons';
421
+ }
422
+
423
+ .e-pv-bold-icon::before {
424
+ content: '\e737';
425
+ font-family: 'e-icons';
426
+ }
427
+
428
+ .e-pv-italic-icon::before {
429
+ content: '\e75a';
430
+ font-family: 'e-icons';
431
+ }
432
+
433
+ .e-pv-strikeout-icon::before {
434
+ content: '\e758';
435
+ font-family: 'e-icons';
436
+ }
437
+
438
+ .e-pv-underlinetext-icon::before {
439
+ content: '\e82f';
440
+ font-family: 'e-icons';
441
+ }
442
+
443
+ .e-pv-superscript-icon::before {
444
+ content: '\e7a7';
445
+ font-family: 'e-icons';
446
+ }
447
+
448
+ .e-pv-subscript-icon::before {
449
+ content: '\e80a';
450
+ font-family: 'e-icons';
451
+ }
452
+
453
+ .e-pv-handwritten-icon::before {
454
+ content: '\e7db';
455
+ font-family: 'e-icons';
456
+ }
457
+
458
+ .e-pv-inkannotation-icon::before {
459
+ content: '\e76e';
460
+ font-family: 'e-icons';
461
+ }
462
+
463
+ .e-pv-delete::before {
464
+ content: '\e820';
465
+ font-family: 'e-icons';
466
+ }
467
+
468
+ .e-pv-eye-icon::before {
469
+ content: '\e7de';
470
+ cursor: pointer;
471
+ font-family: 'e-icons';
472
+ font-size: 18px;
473
+ padding: 7px;
474
+ }
475
+
476
+ .e-pv-eye-slash-icon::before {
477
+ content: '\e887';
478
+ cursor: pointer;
479
+ font-family: 'e-icons';
480
+ font-size: 18px;
481
+ padding: 7px;
482
+ }
483
+
484
+ /*! component layout */
485
+ .e-pdfviewer .e-pv-viewer-container {
486
+ border-style: solid;
487
+ border-width: 1px 1px 1px 0;
488
+ }
489
+
490
+ .e-pdfviewer .e-pv-text-layer {
491
+ position: absolute;
492
+ top: 0;
493
+ z-index: 2;
494
+ }
495
+
496
+ .e-pdfviewer .e-pv-annotation-canvas {
497
+ left: 0;
498
+ position: absolute;
499
+ top: 0;
500
+ }
501
+
502
+ .e-pdfviewer .e-pv-text {
503
+ background: transparent;
504
+ color: transparent;
505
+ line-height: normal;
506
+ opacity: 0.6;
507
+ position: absolute;
508
+ }
509
+
510
+ .e-pdfviewer .e-pv-search-text-highlight,
511
+ .e-pdfviewer .e-pv-search-text-highlightother {
512
+ line-height: normal;
513
+ opacity: 0.6;
514
+ position: absolute;
515
+ }
516
+
517
+ .e-pdfviewer .e-pv-hyperlink {
518
+ z-index: 2;
519
+ }
520
+
521
+ .e-pdfviewer .e-pv-hyperlink.e-pv-onselection {
522
+ z-index: 1;
523
+ }
524
+
525
+ .e-pdfviewer .e-enable-text-selection {
526
+ -ms-user-select: text;
527
+ -webkit-user-select: text;
528
+ user-select: text;
529
+ }
530
+
531
+ .e-pdfviewer .e-disable-text-selection {
532
+ -ms-user-select: none;
533
+ -webkit-user-select: none;
534
+ user-select: none;
535
+ }
536
+
537
+ .e-pdfviewer .e-enable-text-selection .e-pv-text {
538
+ display: inline-block;
539
+ }
540
+
541
+ .e-pdfviewer .e-disable-text-selection .e-pv-text {
542
+ display: none;
543
+ }
544
+
545
+ .e-pdfviewer .e-pv-cursor {
546
+ cursor: text;
547
+ }
548
+
549
+ .e-pdfviewer .e-pv-crosshair-cursor {
550
+ cursor: crosshair;
551
+ }
552
+
553
+ .e-pdfviewer .e-pv-touch-select-drop {
554
+ display: inline-block;
555
+ height: 30px;
556
+ position: absolute;
557
+ width: 30px;
558
+ z-index: 1000;
559
+ }
560
+
561
+ .e-pdfviewer .e-pv-touch-ellipse {
562
+ background-color: #0078d4;
563
+ border-bottom-left-radius: 50%;
564
+ border-bottom-right-radius: 50%;
565
+ border-color: #0078d4;
566
+ border-style: solid;
567
+ border-top-left-radius: 50%;
568
+ border-width: 2px;
569
+ height: 20px;
570
+ margin: 0 0 0 9px;
571
+ position: absolute;
572
+ width: 20px;
573
+ }
574
+
575
+ .e-pdfviewer .e-pv-annotation-note {
576
+ border-radius: 2px;
577
+ cursor: auto;
578
+ font-size: 14px;
579
+ height: auto;
580
+ max-width: 200px;
581
+ min-height: 10px;
582
+ min-width: 30px;
583
+ overflow-wrap: break-word;
584
+ padding: 5px;
585
+ position: absolute;
586
+ width: auto;
587
+ z-index: 10000;
588
+ }
589
+
590
+ .e-pdfviewer .e-pv-annotation-note-author {
591
+ border-bottom: 1px solid #000;
592
+ font-weight: bold;
593
+ }
594
+
595
+ .e-pdfviewer .e-pv-annotation-popup-menu {
596
+ cursor: auto;
597
+ min-width: 396px;
598
+ padding-bottom: 6px;
599
+ position: absolute;
600
+ width: auto;
601
+ z-index: 10000;
602
+ }
603
+
604
+ .e-pdfviewer .e-pv-annotation-popup-header {
605
+ height: auto;
606
+ min-height: 29px;
607
+ padding-top: 14px;
608
+ }
609
+
610
+ .e-pdfviewer .e-pv-annotation-popup-author {
611
+ float: left;
612
+ font-size: 16px;
613
+ font-weight: bold;
614
+ margin-left: 14px;
615
+ }
616
+
617
+ .e-pdfviewer .e-pv-annotation-popup-close {
618
+ float: right;
619
+ height: 20px;
620
+ margin-right: 14px;
621
+ width: 20px;
622
+ }
623
+
624
+ .e-pdfviewer .e-pv-annotation-modified-time {
625
+ height: 14px;
626
+ margin-left: 14px;
627
+ padding-top: 8px;
628
+ }
629
+
630
+ .e-pdfviewer .e-pv-annotation-popup-note-container {
631
+ height: auto;
632
+ padding: 14px;
633
+ width: auto;
634
+ }
635
+
636
+ .e-pdfviewer .e-pv-annotation-popup-content {
637
+ background-color: #fff;
638
+ border: 1px solid;
639
+ font-size: 16px;
640
+ min-height: 132.08px;
641
+ overflow: hidden auto;
642
+ width: 368px;
643
+ }
644
+
645
+ .e-pdfviewer .e-pv-properties-fill-color-icon,
646
+ .e-pdfviewer .e-pv-properties-stroke-color-icon {
647
+ border-bottom: 2px solid;
648
+ }
649
+
650
+ .e-pdfviewer .e-pv-drop {
651
+ color: #0078d4;
652
+ display: inline-block;
653
+ height: 20px;
654
+ position: absolute;
655
+ width: 20px;
656
+ z-index: 1000;
657
+ }
658
+
659
+ .e-pdfviewer .e-pv-droplet {
660
+ background-color: #0078d4;
661
+ border-bottom-left-radius: 50%;
662
+ border-bottom-right-radius: 50%;
663
+ border-color: #0078d4;
664
+ border-style: solid;
665
+ border-top-left-radius: 50%;
666
+ border-width: 2px;
667
+ height: 20px;
668
+ margin: 0 0 0 9px;
669
+ position: absolute;
670
+ width: 20px;
671
+ }
672
+
673
+ .e-pv-viewer-container {
674
+ background-color: #323130;
675
+ border-color: #323130;
676
+ height: calc(100%);
677
+ overflow: auto;
678
+ position: relative;
679
+ -ms-touch-action: pan-x pan-y;
680
+ touch-action: pan-x pan-y;
681
+ }
682
+
683
+ .e-pdfviewer.e-pv-mobile-view .e-pv-viewer-container::-webkit-scrollbar {
684
+ display: none;
685
+ }
686
+
687
+ input.e-pv-input-password::-ms-reveal {
688
+ display: none;
689
+ }
690
+
691
+ .e-pv-page-container {
692
+ margin: 0;
693
+ padding: 0;
694
+ -ms-touch-action: pan-x pan-y;
695
+ touch-action: pan-x pan-y;
696
+ }
697
+
698
+ .e-pv-signaturehover {
699
+ background-color: #252423;
700
+ }
701
+
702
+ .e-pv-mobilespanscroll-container {
703
+ color: #f3f2f1;
704
+ font-family: Roboto-Regular;
705
+ font-size: 14px;
706
+ }
707
+
708
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
709
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
710
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
711
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
712
+ .e-pv-annotation-shapes-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
713
+ .e-pv-annotation-calibrate-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
714
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
715
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
716
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
717
+ .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
718
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
719
+ .e-bigger .e-pv-icon-search,
720
+ .e-pv-icon {
721
+ font-size: 14px;
722
+ }
723
+
724
+ .e-bigger .e-pv-icon {
725
+ font-size: 16px;
726
+ }
727
+
728
+ .e-pv-annotation-stamp-container .e-menu-wrapper {
729
+ background-color: transparent;
730
+ }
731
+
732
+ .e-pv-annotation-ink-container .e-pv-inkannotation-icon {
733
+ font-size: 14px;
734
+ }
735
+
736
+ .e-pv-annotation-handwritten-container .e-pv-handwritten-icon.e-btn-icon:not(.e-caret) {
737
+ font-size: 14px;
738
+ }
739
+
740
+ .e-pv-mobilescroll-container {
741
+ background-color: #323130;
742
+ border: 1px solid #797775;
743
+ border-radius: 56px 0 0 56px;
744
+ line-height: 27px;
745
+ position: absolute;
746
+ text-align: center;
747
+ }
748
+
749
+ .e-pv-viewer-container .e-pv-page-div {
750
+ border-color: #292827;
751
+ border-style: solid;
752
+ border-width: 1px;
753
+ box-shadow: none;
754
+ box-sizing: border-box;
755
+ position: absolute;
756
+ }
757
+
758
+ .e-pv-toolbar,
759
+ .e-pv-nav-toolbar,
760
+ .e-pv-annotation-toolbar,
761
+ .e-pv-formdesigner-toolbar {
762
+ border: solid #292827;
763
+ border-radius: 0;
764
+ border-width: 1px 1px 1px 1px;
765
+ }
766
+
767
+ .e-pv-toolbar,
768
+ .e-pv-annotation-toolbar,
769
+ .e-pv-mobile-annotation-toolbar,
770
+ .e-pv-formdesigner-toolbar {
771
+ height: 38px;
772
+ }
773
+
774
+ .e-pv-nav-toolbar,
775
+ .e-bigger .e-pv-toolbar,
776
+ .e-pv-toolbar.e-pv-mobile-toolbar,
777
+ .e-bigger .e-pv-annotation-toolbar,
778
+ .e-pv-mobile-view .e-pv-annotation-toolbar {
779
+ height: 38px;
780
+ }
781
+
782
+ .e-toolbar.e-pv-toolbar .e-pv-zoom-drop-down-container {
783
+ height: 32px;
784
+ width: 86px;
785
+ }
786
+
787
+ .e-toolbar.e-pv-toolbar .e-toolbar-pop .e-pv-zoom-drop-down-container {
788
+ display: none;
789
+ }
790
+
791
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text,
792
+ .e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text {
793
+ display: none;
794
+ }
795
+
796
+ .e-pv-current-page-box.e-input-group.e-control-wrapper {
797
+ height: 32px;
798
+ margin-top: 0;
799
+ width: 50px;
800
+ }
801
+
802
+ .e-pv-mobilepagenoscroll-container {
803
+ background: #201f1e;
804
+ border: 1px solid #797775;
805
+ border-radius: 10px;
806
+ padding: 6px;
807
+ text-align: center;
808
+ vertical-align: middle;
809
+ }
810
+
811
+ .e-pv-mobilecurrentpage-container {
812
+ color: #f3f2f1;
813
+ display: block;
814
+ font-family: Roboto-Regular;
815
+ font-size: 24px;
816
+ }
817
+
818
+ .e-pv-mobiledashedline-container {
819
+ color: #f3f2f1;
820
+ display: block;
821
+ padding: 10px;
822
+ }
823
+
824
+ .e-pv-number-ofpages {
825
+ width: 10%;
826
+ }
827
+
828
+ .e-pv-gotopage-popup {
829
+ max-width: 500px;
830
+ padding-left: 16px;
831
+ padding-top: 16px;
832
+ }
833
+
834
+ .e-pv-gotopage-apply-btn.e-btn.e-flat.e-primary:disabled {
835
+ background-color: transparent;
836
+ }
837
+
838
+ .e-pv-mobiletotalpage-container {
839
+ color: #f3f2f1;
840
+ display: block;
841
+ font-family: Roboto-Regular;
842
+ font-size: 14px;
843
+ }
844
+
845
+ .e-pv-password-input {
846
+ margin-top: 8px;
847
+ }
848
+
849
+ .e-pv-password-error {
850
+ color: #d13438;
851
+ }
852
+
853
+ .e-pv-corrupted-popup-header {
854
+ color: #0078d4;
855
+ opacity: 0.87;
856
+ }
857
+
858
+ .e-pv-corrupted-popup-content {
859
+ color: #0078d4;
860
+ font-size: 16px;
861
+ line-height: 24px;
862
+ margin-left: 50px;
863
+ opacity: 0.87;
864
+ padding-top: 4.7px;
865
+ text-align: left;
866
+ }
867
+
868
+ .e-pv-corrupted-popup-content-rtl {
869
+ color: #0078d4;
870
+ font-size: 16px;
871
+ line-height: 24px;
872
+ margin-right: 53px;
873
+ opacity: 0.87;
874
+ padding-top: 4.7px;
875
+ text-align: right;
876
+ }
877
+
878
+ .e-pv-toolbar.e-toolbar:not(.e-pv-mobile-toolbar) .e-toolbar-items .e-toolbar-item:not(.e-separator) {
879
+ height: auto;
880
+ margin-left: 0.5px;
881
+ margin-right: 0.5px;
882
+ padding-bottom: 4px;
883
+ padding-top: 3px;
884
+ }
885
+
886
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
887
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
888
+ height: auto;
889
+ margin-left: 0.5px;
890
+ margin-right: 0.5px;
891
+ }
892
+
893
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
894
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
895
+ padding-bottom: 2px;
896
+ }
897
+
898
+ .e-pv-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
899
+ .e-pv-annotation-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
900
+ line-height: 22px;
901
+ min-height: 22px;
902
+ }
903
+
904
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
905
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
906
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
907
+ border-right-width: 1px;
908
+ height: 24px;
909
+ margin-left: 3px;
910
+ margin-right: 3px;
911
+ }
912
+
913
+ .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
914
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
915
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child {
916
+ margin-left: 4.5px;
917
+ }
918
+
919
+ .e-pdfviewer .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
920
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
921
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child {
922
+ margin-right: 4.5px;
923
+ }
924
+
925
+ .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
926
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
927
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child {
928
+ margin-right: 4.5px;
929
+ }
930
+
931
+ .e-pdfviewer .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child,
932
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child,
933
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child {
934
+ margin-left: 4.5px;
935
+ }
936
+
937
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
938
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
939
+ .e-pv-mobile-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
940
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn {
941
+ height: 32px;
942
+ min-width: 32px;
943
+ width: 32px;
944
+ line-height: 32px;
945
+ min-width: 40px;
946
+ }
947
+
948
+ .e-pv-open-document-icon {
949
+ font-size: 14px;
950
+ height: 12.44px;
951
+ line-height: 12.44px;
952
+ width: 16px;
953
+ }
954
+
955
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-download-document-icon {
956
+ line-height: 16px;
957
+ }
958
+
959
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-print-document-icon {
960
+ line-height: 16px;
961
+ }
962
+
963
+ .e-pv-first-page-navigation-icon {
964
+ line-height: 14px;
965
+ }
966
+
967
+ .e-pv-previous-page-navigation-icon {
968
+ line-height: 14px;
969
+ }
970
+
971
+ .e-pv-next-page-navigation-icon {
972
+ line-height: 14px;
973
+ }
974
+
975
+ .e-pv-last-page-navigation-icon {
976
+ line-height: 14px;
977
+ }
978
+
979
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-zoom-out-icon,
980
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-zoom-in-icon {
981
+ line-height: 16px;
982
+ }
983
+
984
+ .e-pv-eye-slash-icon,
985
+ .e-pv-eye-icon {
986
+ margin-top: 3px;
987
+ }
988
+
989
+ .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-pv-current-page-container {
990
+ padding-left: 8px;
991
+ }
992
+
993
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-pv-pan-tool .e-pv-icon {
994
+ margin-right: 2px;
995
+ }
996
+
997
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-pv-zoom-drop-down-container {
998
+ margin: 0 4px;
999
+ padding: 6px 0;
1000
+ }
1001
+
1002
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-pv-total-page-container.e-toolbar-item:not(.e-separator) {
1003
+ color: #f3f2f1;
1004
+ cursor: default;
1005
+ font-size: 13px;
1006
+ margin-left: 4px;
1007
+ margin-right: 9.5px;
1008
+ min-width: unset;
1009
+ padding-left: 0;
1010
+ padding-top: 0;
1011
+ position: relative;
1012
+ }
1013
+
1014
+ .e-pv-total-page {
1015
+ color: #f3f2f1;
1016
+ font-size: inherit;
1017
+ }
1018
+
1019
+ .e-pv-total-page-ms {
1020
+ -ms-transform: translateY(-50%);
1021
+ margin: 0;
1022
+ position: absolute;
1023
+ top: 50%;
1024
+ transform: translateY(-50%);
1025
+ }
1026
+
1027
+ .e-pv-zoom-drop-down.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
1028
+ .e-pv-prop-dropdown.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
1029
+ .e-pv-zoom-drop-down-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
1030
+ .e-pv-prop-dropdown-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error) {
1031
+ background-color: transparent;
1032
+ border: 0;
1033
+ height: inherit;
1034
+ margin-top: 0;
1035
+ padding: 0;
1036
+ }
1037
+
1038
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1039
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1040
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1041
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error) {
1042
+ background-color: #1b1a19;
1043
+ border: 0;
1044
+ border-radius: 2px;
1045
+ }
1046
+
1047
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
1048
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
1049
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
1050
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon {
1051
+ color: inherit;
1052
+ }
1053
+
1054
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
1055
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
1056
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
1057
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
1058
+ height: auto;
1059
+ margin-top: 0;
1060
+ padding-bottom: 3px;
1061
+ padding-top: 0;
1062
+ }
1063
+
1064
+ .e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
1065
+ .e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
1066
+ .e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
1067
+ .e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
1068
+ padding-left: 12px;
1069
+ }
1070
+
1071
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
1072
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
1073
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
1074
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
1075
+ padding-right: 12px;
1076
+ }
1077
+
1078
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-search-icon.e-ddl-icon,
1079
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-search-icon.e-ddl-icon,
1080
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-search-icon.e-ddl-icon,
1081
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-search-icon.e-ddl-icon {
1082
+ background-color: transparent;
1083
+ border-left: 0;
1084
+ margin-bottom: 0;
1085
+ margin-left: 0;
1086
+ margin-top: 0;
1087
+ padding-right: 0;
1088
+ }
1089
+
1090
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control,
1091
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control,
1092
+ .e-input-group.e-control-wrapper.e-pv-current-page-box .e-numerictextbox.e-input,
1093
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control,
1094
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control {
1095
+ text-align: center;
1096
+ }
1097
+
1098
+ .e-pv-zoom-drop-down.e-ddl.e-popup.e-popup-open,
1099
+ .e-pv-prop-dropdown.e-ddl.e-popup.e-popup-open {
1100
+ text-align: left;
1101
+ }
1102
+
1103
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-popup.e-popup-open,
1104
+ .e-pv-prop-dropdown-rtl.e-ddl.e-popup.e-popup-open {
1105
+ text-align: right;
1106
+ }
1107
+
1108
+ .e-pv-zoom-drop-down.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active .e-pv-prop-dropdown.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active,
1109
+ .e-pv-zoom-drop-down-rtl.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active .e-pv-prop-dropdown-rtl.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active {
1110
+ color: #0078d4;
1111
+ }
1112
+
1113
+ .e-pv-zoom-drop-down.e-popup.e-popup-open,
1114
+ .e-pv-zoom-drop-down-rtl.e-popup.e-popup-open {
1115
+ min-height: 327px;
1116
+ min-width: 110px;
1117
+ }
1118
+
1119
+ .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) {
1120
+ border: 1px solid #a19f9d;
1121
+ border-radius: 2px;
1122
+ }
1123
+
1124
+ .e-pv-zoom-drop-down.e-ddl.e-valid-input.e-input-focus,
1125
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-valid-input.e-input-focus {
1126
+ box-shadow: none;
1127
+ }
1128
+
1129
+ .e-pv-password-popup.e-dialog .e-dlg-header,
1130
+ .e-pv-corrupted-popup.e-dialog .e-pv-corrupted-popup-header,
1131
+ .e-pv-notification-popup.e-dialog .e-dlg-header {
1132
+ font-size: 20px;
1133
+ font-weight: 500;
1134
+ letter-spacing: -0.2px;
1135
+ }
1136
+
1137
+ .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
1138
+ .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
1139
+ .e-pv-notification-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1140
+ padding-top: 6px;
1141
+ }
1142
+
1143
+ .e-pv-password-popup.e-dialog {
1144
+ height: 198px;
1145
+ margin: 0 10px;
1146
+ max-width: 500px;
1147
+ }
1148
+
1149
+ .e-pv-corrupted-popup.e-dialog {
1150
+ height: 180px;
1151
+ margin: 0 10px;
1152
+ max-width: 409px;
1153
+ }
1154
+
1155
+ .e-pv-corrupted-popup.e-dialog .e-dlg-header-content,
1156
+ .e-pv-notification-popup.e-dialog .e-dlg-header-content {
1157
+ border-bottom: 0;
1158
+ }
1159
+
1160
+ .e-pv-corrupted-popup.e-dialog .e-footer-content,
1161
+ .e-pv-notification-popup.e-dialog .e-footer-content {
1162
+ border-top: 0;
1163
+ }
1164
+
1165
+ .e-pv-corrupted-popup.e-dialog .e-dlg-content {
1166
+ padding-bottom: 15px;
1167
+ padding-top: 6.9px;
1168
+ }
1169
+
1170
+ .e-pv-password-popup.e-dialog span[id*='_prompt'] {
1171
+ font-size: 16px;
1172
+ letter-spacing: -0.16px;
1173
+ }
1174
+
1175
+ .e-pv-password-popup.e-dialog .e-dlg-header-content {
1176
+ border-bottom: 0;
1177
+ }
1178
+
1179
+ .e-pv-password-popup.e-dialog .e-footer-content {
1180
+ border-top: 0;
1181
+ }
1182
+
1183
+ .e-pv-password-popup.e-dialog .e-dlg-content {
1184
+ padding-bottom: 11px;
1185
+ padding-top: 6px;
1186
+ }
1187
+
1188
+ .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
1189
+ max-height: 32px;
1190
+ padding-bottom: 1px;
1191
+ }
1192
+
1193
+ .e-pv-toolbar:not(.e-rtl) .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
1194
+ padding-left: 0;
1195
+ }
1196
+
1197
+ .e-pv-toolbar.e-rtl .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
1198
+ padding-right: 0;
1199
+ }
1200
+
1201
+ .e-pv-zoom-drop-down.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
1202
+ .e-pv-prop-dropdown.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
1203
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
1204
+ .e-pv-prop-dropdown-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
1205
+ transform: rotate(0deg);
1206
+ }
1207
+
1208
+ .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-float-icon-left):not(.e-float-input)::after,
1209
+ .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-float-icon-left):not(.e-float-input)::before,
1210
+ .e-input-group.e-control-wrapper.e-pv-current-page-box.e-input-focus:not(.e-float-icon-left):not(.e-float-input)::after,
1211
+ .e-input-group.e-control-wrapper.e-pv-current-page-box.e-input-focus:not(.e-float-icon-left):not(.e-float-input)::before,
1212
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl::after,
1213
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl::before,
1214
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus::after,
1215
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus::before,
1216
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::after,
1217
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::before,
1218
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::after,
1219
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::before,
1220
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::after,
1221
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::before,
1222
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::after,
1223
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::before,
1224
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::after,
1225
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::before,
1226
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::after,
1227
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::before {
1228
+ background: none;
1229
+ }
1230
+
1231
+ .e-pv-sidebar-container {
1232
+ background: #0078d4;
1233
+ border-top: 1px solid #0078d4;
1234
+ bottom: 0;
1235
+ position: absolute;
1236
+ top: 56px;
1237
+ transition: transform .3s ease;
1238
+ transition-duration: 200ms;
1239
+ transition-timing-function: ease;
1240
+ width: 250px;
1241
+ z-index: 100;
1242
+ }
1243
+
1244
+ .e-pv-main-container {
1245
+ height: 100%;
1246
+ overflow: hidden;
1247
+ position: relative;
1248
+ width: 100%;
1249
+ }
1250
+
1251
+ .e-pv-viewer-main-container {
1252
+ background-color: #323130;
1253
+ bottom: 0;
1254
+ left: 0;
1255
+ position: absolute;
1256
+ right: 0;
1257
+ top: 0;
1258
+ }
1259
+
1260
+ .e-pdfviewer:not(.e-pv-mobile-view) .e-pv-viewer-main-container {
1261
+ min-width: 400px;
1262
+ }
1263
+
1264
+ .e-pdfviewer:not(.e-pv-mobile-view) .e-pv-main-container {
1265
+ min-height: 500px;
1266
+ }
1267
+
1268
+ .e-pv-sidebar-content-container {
1269
+ border-top: 1px solid #292827;
1270
+ display: none;
1271
+ float: left;
1272
+ height: calc(100% - 38px);
1273
+ position: absolute;
1274
+ transition-duration: 200ms;
1275
+ transition-timing-function: ease;
1276
+ width: 202px;
1277
+ }
1278
+
1279
+ .e-pv-sidebar-content-container.e-thumbnail {
1280
+ height: 100%;
1281
+ left: 1px;
1282
+ position: unset;
1283
+ }
1284
+
1285
+ .e-pv-sidebar-title-container {
1286
+ background: #201f1e;
1287
+ border: 1px solid #292827;
1288
+ border-width: 0 1px 0 0;
1289
+ height: 38px;
1290
+ position: absolute;
1291
+ top: 0;
1292
+ width: 202px;
1293
+ }
1294
+
1295
+ .e-pv-sidebar-title {
1296
+ color: #d2d0ce;
1297
+ font-size: 14px;
1298
+ height: 38px;
1299
+ margin: 0;
1300
+ position: absolute;
1301
+ text-align: left;
1302
+ top: 0;
1303
+ padding: 8px;
1304
+ }
1305
+
1306
+ .e-pv-sidebar-title.e-left {
1307
+ left: 8px;
1308
+ width: 160px;
1309
+ }
1310
+
1311
+ .e-pv-sidebar-title.e-right {
1312
+ right: 8px;
1313
+ }
1314
+
1315
+ .e-pv-sidebar-toolbar {
1316
+ background: #201f1e;
1317
+ border: 1px solid #292827;
1318
+ border-width: 1px 1px 1px 1px;
1319
+ bottom: 0;
1320
+ height: calc(100% - 38px);
1321
+ position: absolute;
1322
+ width: 40px;
1323
+ z-index: 100;
1324
+ }
1325
+
1326
+ .e-bigger .e-pv-sidebar-toolbar {
1327
+ width: 46px;
1328
+ }
1329
+
1330
+ .e-pv-sidebar-content {
1331
+ -webkit-overflow-scrolling: touch;
1332
+ background: #201f1e;
1333
+ bottom: 0;
1334
+ overflow: auto;
1335
+ overflow-x: hidden;
1336
+ position: absolute;
1337
+ top: 38px;
1338
+ width: 202px;
1339
+ z-index: 103;
1340
+ }
1341
+
1342
+ .e-pv-thumbnail-anchor-node:hover {
1343
+ text-decoration: auto;
1344
+ }
1345
+
1346
+ .e-pv-sidebar-content.e-thumbnail {
1347
+ top: 1px;
1348
+ }
1349
+
1350
+ .e-pv-sidebar-resizer {
1351
+ background: #201f1e;
1352
+ border: 0;
1353
+ border-width: 0;
1354
+ color: inherit;
1355
+ cursor: ew-resize;
1356
+ height: calc(100%);
1357
+ position: absolute;
1358
+ width: 8px;
1359
+ z-index: 105;
1360
+ }
1361
+
1362
+ .e-pv-sidebar-content::-webkit-scrollbar {
1363
+ width: 16px;
1364
+ }
1365
+
1366
+ .e-pv-sidebar-content::-webkit-scrollbar-track {
1367
+ -webkit-box-shadow: inset 0 0 0 #292827;
1368
+ background: #201f1e;
1369
+ border: 1px solid #292827;
1370
+ }
1371
+
1372
+ .e-pv-sidebar-content::-webkit-scrollbar-thumb {
1373
+ -webkit-box-shadow: inset 0 0 0 #292827;
1374
+ background: #a19f9d;
1375
+ background-clip: content-box;
1376
+ border: 4px solid transparent;
1377
+ border-radius: 100px;
1378
+ }
1379
+
1380
+ .e-pv-thumbnail-view-button.e-btn {
1381
+ background: transparent;
1382
+ border: 0;
1383
+ border-radius: 4px;
1384
+ box-shadow: none;
1385
+ font-weight: 500;
1386
+ height: 30px;
1387
+ line-height: inherit;
1388
+ margin: 12px 2px;
1389
+ outline: none;
1390
+ padding: 0;
1391
+ width: 30px;
1392
+ -ms-flex-align: center;
1393
+ align-items: center;
1394
+ display: -ms-flexbox;
1395
+ display: flex;
1396
+ -ms-flex-pack: center;
1397
+ justify-content: center;
1398
+ }
1399
+
1400
+ .e-bigger .e-pv-thumbnail-view-button.e-btn {
1401
+ margin: 12px 6px;
1402
+ }
1403
+
1404
+ .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn,
1405
+ .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
1406
+ background: #292827;
1407
+ border: none;
1408
+ border-radius: 4px;
1409
+ line-height: inherit;
1410
+ padding: 0;
1411
+ }
1412
+
1413
+ .e-bigger .e-pv-bookmark-button.e-btn {
1414
+ margin: 12px 6px;
1415
+ }
1416
+
1417
+ .e-pv-bookmark-button.e-btn {
1418
+ background: transparent;
1419
+ border: none;
1420
+ box-shadow: none;
1421
+ font-weight: 500;
1422
+ height: 30px;
1423
+ margin: 15px 2px;
1424
+ outline: none;
1425
+ padding: 0;
1426
+ width: 30px;
1427
+ -ms-flex-align: center;
1428
+ align-items: center;
1429
+ display: -ms-flexbox;
1430
+ display: flex;
1431
+ -ms-flex-pack: center;
1432
+ justify-content: center;
1433
+ }
1434
+
1435
+ .e-pv-title-close-div.e-btn {
1436
+ background: transparent;
1437
+ border: none;
1438
+ box-shadow: none;
1439
+ height: 38px;
1440
+ left: 0;
1441
+ padding: 8px;
1442
+ position: absolute;
1443
+ right: 0;
1444
+ top: 0;
1445
+ width: 32px;
1446
+ }
1447
+
1448
+ .e-pv-sidebar-toolbar-splitter {
1449
+ background: #292827;
1450
+ bottom: 0;
1451
+ height: calc(100% - 38px);
1452
+ position: absolute;
1453
+ width: 0;
1454
+ z-index: 104;
1455
+ }
1456
+
1457
+ .e-pv-sidebar-content-splitter {
1458
+ background: #292827;
1459
+ height: 1px;
1460
+ position: absolute;
1461
+ top: 38px;
1462
+ width: 201px;
1463
+ z-index: 104;
1464
+ }
1465
+
1466
+ .e-pv-thumbnail-view {
1467
+ bottom: 0;
1468
+ height: 50%;
1469
+ padding: 8px 30px 0;
1470
+ position: absolute;
1471
+ top: 0;
1472
+ }
1473
+
1474
+ .e-pv-thumbnail {
1475
+ height: 140px;
1476
+ margin: 0 20px 40px;
1477
+ width: 100px;
1478
+ }
1479
+
1480
+ .e-pv-thumbnail-number {
1481
+ color: #d2d0ce;
1482
+ font-family: Roboto;
1483
+ padding-left: 50px;
1484
+ padding-right: 50px;
1485
+ padding-top: 8px;
1486
+ }
1487
+
1488
+ .e-pv-thumbnail-selection-ring {
1489
+ border: 1px solid #292827;
1490
+ border-radius: 0;
1491
+ box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
1492
+ padding: 2px;
1493
+ }
1494
+
1495
+ .e-pv-thumbnail-image {
1496
+ background-clip: content-box;
1497
+ background-color: #fff;
1498
+ height: 126px;
1499
+ width: 94px;
1500
+ }
1501
+
1502
+ .e-pv-thumbnail-hover {
1503
+ border: 1px solid #797775;
1504
+ border-radius: 0;
1505
+ box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
1506
+ cursor: pointer;
1507
+ padding: 2px;
1508
+ }
1509
+
1510
+ .e-pv-thumbnail-focus {
1511
+ border: 2px solid #0078d4;
1512
+ border-radius: 0;
1513
+ box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
1514
+ cursor: pointer;
1515
+ padding: 0;
1516
+ }
1517
+
1518
+ .e-pv-thumbnail-selection {
1519
+ border: 2px solid #0078d4;
1520
+ border-radius: 0;
1521
+ box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
1522
+ cursor: pointer;
1523
+ padding: 1px;
1524
+ }
1525
+
1526
+ .e-pv-thumbnail-row {
1527
+ -ms-flex-wrap: wrap;
1528
+ display: -ms-flexbox;
1529
+ display: flex;
1530
+ flex-wrap: wrap;
1531
+ }
1532
+
1533
+ .e-pv-thumbnail-row {
1534
+ display: -ms-flexbox;
1535
+ }
1536
+
1537
+ .e-pv-thumbnail-column {
1538
+ -ms-flex: 25%;
1539
+ flex: 25%;
1540
+ }
1541
+
1542
+ .e-pv-thumbnail-column img {
1543
+ display: block;
1544
+ margin-left: auto;
1545
+ margin-right: auto;
1546
+ }
1547
+
1548
+ .e-pv-bookmark-view {
1549
+ height: 100%;
1550
+ overflow: auto;
1551
+ padding-top: 0;
1552
+ position: relative;
1553
+ }
1554
+
1555
+ div > .e-pv-bookmark-icon.e-pv-icon {
1556
+ float: left;
1557
+ font-size: 14px;
1558
+ padding-left: 6px;
1559
+ padding-right: 18px;
1560
+ }
1561
+
1562
+ .e-pv-bookmark-title {
1563
+ padding-left: 40px;
1564
+ }
1565
+
1566
+ .e-pv-sidebar-bookmark-title {
1567
+ color: #d2d0ce;
1568
+ font-family: Roboto-Regular;
1569
+ font-size: 14px;
1570
+ }
1571
+
1572
+ .e-pv-bookmark-view::-webkit-scrollbar {
1573
+ height: 16px;
1574
+ width: 16px;
1575
+ }
1576
+
1577
+ .e-pv-bookmark-view::-webkit-scrollbar-track {
1578
+ -webkit-box-shadow: inset 0 0 0 #292827;
1579
+ background: #201f1e;
1580
+ border: 1px solid #292827;
1581
+ }
1582
+
1583
+ .e-pv-bookmark-view::-webkit-scrollbar-thumb {
1584
+ -webkit-box-shadow: inset 0 0 0 #292827;
1585
+ background: #a19f9d;
1586
+ background-clip: content-box;
1587
+ border: 4px solid transparent;
1588
+ border-radius: 100px;
1589
+ }
1590
+
1591
+ .e-pv-bookmark-view > .e-ul {
1592
+ height: inherit;
1593
+ overflow: unset;
1594
+ }
1595
+
1596
+ .e-pv-bookmark-view .e-fullrow {
1597
+ height: 34px;
1598
+ }
1599
+
1600
+ .e-pv-bookmark-view .e-icon-collapsible::before,
1601
+ .e-pv-bookmark-view .e-icon-expandable::before {
1602
+ display: inline-block;
1603
+ height: 20px;
1604
+ padding: 4px;
1605
+ width: 20px;
1606
+ }
1607
+
1608
+ .e-pv-bookmark-view .e-list-item .e-ul {
1609
+ padding-left: 32px;
1610
+ }
1611
+
1612
+ .e-pv-bookmark-view .e-ul {
1613
+ padding: 0 0 0 16px;
1614
+ }
1615
+
1616
+ .e-pv-text::selection {
1617
+ background: #038387;
1618
+ }
1619
+
1620
+ .e-pv-text .e-pv-maintaincontent {
1621
+ background: #038387;
1622
+ }
1623
+
1624
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1625
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1626
+ .e-pv-mobile-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1627
+ .e-pv-mobile-annotation-toolbar .e-dropdown-btn.e-btn,
1628
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn,
1629
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1630
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn,
1631
+ .e-pv-shapes-toolbar .e-pv-tbar-btn,
1632
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused,
1633
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
1634
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon,
1635
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret,
1636
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret {
1637
+ color: #a19f9d;
1638
+ }
1639
+
1640
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-selected .e-menu-icon,
1641
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-selected .e-caret {
1642
+ color: #fff;
1643
+ }
1644
+
1645
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn:hover {
1646
+ background: #201f1e;
1647
+ border-color: #201f1e;
1648
+ }
1649
+
1650
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn:focus {
1651
+ background: #201f1e;
1652
+ border-color: #201f1e;
1653
+ }
1654
+
1655
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav {
1656
+ transform: skewX(-1deg) translateX(6px);
1657
+ width: 56px;
1658
+ }
1659
+
1660
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav .e-nav-arrow {
1661
+ font-size: 14px;
1662
+ transform: skewX(4deg);
1663
+ }
1664
+
1665
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav.e-scroll-right-nav .e-nav-arrow {
1666
+ color: #a19f9d;
1667
+ }
1668
+
1669
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1670
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1671
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover,
1672
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
1673
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1674
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:hover,
1675
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
1676
+ .e-pv-shapes-toolbar .e-pv-tbar-btn:hover,
1677
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover,
1678
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon:hover,
1679
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret:hover,
1680
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1681
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1682
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active,
1683
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1684
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus,
1685
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus .e-caret,
1686
+ .e-pv-shapes-toolbar .e-pv-tbar-btn:focus,
1687
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:focus,
1688
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon:focus,
1689
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:not(.e-input-focus):hover,
1690
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret:focus,
1691
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:not(.e-input-focus):hover {
1692
+ color: #fff;
1693
+ }
1694
+
1695
+ .e-pv-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1696
+ .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1697
+ .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon,
1698
+ .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1699
+ .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon {
1700
+ color: #a19f9d;
1701
+ }
1702
+
1703
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item {
1704
+ height: inherit;
1705
+ }
1706
+
1707
+ .e-pv-print-popup-container {
1708
+ height: 100%;
1709
+ left: 0;
1710
+ overflow: auto;
1711
+ position: absolute;
1712
+ top: 0;
1713
+ width: 100%;
1714
+ z-index: 2000;
1715
+ }
1716
+
1717
+ .e-pdfviewer .e-pv-print-popup-container .e-spinner-pane.e-spin-center.e-spin-show {
1718
+ background-color: rgba(0, 0, 0, 0.3);
1719
+ }
1720
+
1721
+ .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-pv-icon {
1722
+ padding: 0 16px 0 0;
1723
+ }
1724
+
1725
+ .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-pv-icon {
1726
+ padding: 0 0 0 16px;
1727
+ }
1728
+
1729
+ .e-pv-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1730
+ .e-pv-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1731
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1732
+ .e-pv-mobile-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1733
+ .e-pv-formdesigner-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select {
1734
+ background: #292827;
1735
+ border: 0;
1736
+ border-radius: 0;
1737
+ color: #fff;
1738
+ }
1739
+
1740
+ .e-pv-sidebar-toolbar .e-pv-tbar-btn {
1741
+ color: #a19f9d;
1742
+ }
1743
+
1744
+ .e-pv-search-bar {
1745
+ background-color: #201f1e;
1746
+ border: 1px solid #292827;
1747
+ border-radius: 2px;
1748
+ box-shadow: 0 3px 8px 0 #292827;
1749
+ height: 90px;
1750
+ padding: 12px;
1751
+ position: absolute;
1752
+ width: 338px;
1753
+ z-index: 105;
1754
+ }
1755
+
1756
+ .e-bigger .e-pv-search-bar {
1757
+ height: 109px;
1758
+ padding: 16px;
1759
+ width: 368px;
1760
+ }
1761
+
1762
+ .e-pv-search-input {
1763
+ height: 32px;
1764
+ width: 240px;
1765
+ }
1766
+
1767
+ .e-bigger .e-pv-search-input {
1768
+ height: 42px;
1769
+ }
1770
+
1771
+ .e-pv-search-input-mobile {
1772
+ height: 32px;
1773
+ }
1774
+
1775
+ .e-pv-match-case-container {
1776
+ margin-top: 12px;
1777
+ }
1778
+
1779
+ .e-pv-search-btn.e-btn {
1780
+ background-color: transparent;
1781
+ border: 0;
1782
+ box-shadow: none;
1783
+ height: 24px;
1784
+ margin-top: 0;
1785
+ width: 24px;
1786
+ padding-bottom: 0;
1787
+ padding-left: 1px;
1788
+ padding-right: 1px;
1789
+ padding-top: 1px;
1790
+ }
1791
+
1792
+ .e-bigger .e-pv-search-btn.e-btn {
1793
+ height: 30px;
1794
+ padding: 2px;
1795
+ width: 30px;
1796
+ }
1797
+
1798
+ .e-pv-search-btn.e-btn:active {
1799
+ background-color: transparent;
1800
+ }
1801
+
1802
+ .e-pv-search-bar:not(.e-rtl) .e-pv-prev-search {
1803
+ margin-left: 16px;
1804
+ }
1805
+
1806
+ .e-pv-search-bar:not(.e-rtl) .e-pv-next-search {
1807
+ margin-left: 8px;
1808
+ }
1809
+
1810
+ .e-pv-search-bar.e-rtl .e-pv-prev-search {
1811
+ margin-right: 16px;
1812
+ }
1813
+
1814
+ .e-pv-search-bar.e-rtl .e-pv-next-search {
1815
+ margin-right: 8px;
1816
+ }
1817
+
1818
+ .e-pv-search-bar.e-rtl .e-pv-prev-search .e-pv-icon-search {
1819
+ padding-right: 5px;
1820
+ }
1821
+
1822
+ .e-pv-notification-popup {
1823
+ height: 180px;
1824
+ margin: 0 10px;
1825
+ max-width: 409px;
1826
+ }
1827
+
1828
+ .e-pv-notification-popup.e-pv-notification-large-content {
1829
+ height: 205px;
1830
+ max-width: 400px;
1831
+ }
1832
+
1833
+ .e-pv-notification-popup .e-pv-notification-popup-content {
1834
+ font-size: 16px;
1835
+ }
1836
+
1837
+ .e-pv-search-input.e-input-group .e-input-search-group-icon.e-input-group-icon {
1838
+ background: transparent;
1839
+ }
1840
+
1841
+ .e-pv-search-input.e-input-group:not(.e-disabled) .e-input-search-group-icon.e-input-group-icon:active {
1842
+ background: transparent;
1843
+ color: rgba(0, 120, 212, 0.54);
1844
+ }
1845
+
1846
+ .e-pv-search-input.e-input-group:not(.e-disabled) .e-input-search-group-icon.e-input-group-icon:hover {
1847
+ color: #f3f2f1;
1848
+ }
1849
+
1850
+ .e-pv-bookmark-container {
1851
+ background-color: #0078d4;
1852
+ border: 1px solid #0078d4;
1853
+ }
1854
+
1855
+ .e-pv-bookmark-container .e-listview:not(.e-list-template) .e-list-item {
1856
+ border-bottom: 1px solid #0078d4;
1857
+ height: 48px;
1858
+ }
1859
+
1860
+ .e-pv-bookmark-container .e-pv-bookmark-view.e-listview .e-ul .e-list-item:last-child {
1861
+ border-bottom-width: 0;
1862
+ }
1863
+
1864
+ .e-pv-bookmark-container .e-listview .e-list-text {
1865
+ -ms-transform: translateY(-50%);
1866
+ position: absolute;
1867
+ top: 50%;
1868
+ transform: translateY(-50%);
1869
+ }
1870
+
1871
+ .e-pv-nav-toolbar.e-toolbar .e-tbar-btn:active .e-tbar-btn-text {
1872
+ color: rgba(0, 120, 212, 0.87);
1873
+ }
1874
+
1875
+ .e-pv-nav-toolbar.e-toolbar .e-tbar-btn.e-tbtn-txt {
1876
+ background-color: transparent;
1877
+ border-width: 0;
1878
+ box-shadow: none;
1879
+ }
1880
+
1881
+ .e-pv-bookmark-container .e-pv-bookmark-view {
1882
+ padding-top: 0;
1883
+ }
1884
+
1885
+ .e-pv-bookmark-container .e-pv-bookmark-view .e-list-parent.e-ul {
1886
+ padding-left: 0;
1887
+ }
1888
+
1889
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-color-icon.e-pv-icon,
1890
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-stroke-icon.e-pv-icon {
1891
+ border-bottom: 2px solid;
1892
+ margin-top: 0;
1893
+ padding-top: 5px;
1894
+ line-height: 11px;
1895
+ vertical-align: initial;
1896
+ }
1897
+
1898
+ .e-pv-properties-font-color-container .e-btn-icon.e-pv-annotation-textcolor-icon.e-pv-icon {
1899
+ border-bottom: 2px solid;
1900
+ margin-top: 0;
1901
+ padding-top: 1px;
1902
+ vertical-align: initial;
1903
+ line-height: 11px;
1904
+ padding-top: 5px;
1905
+ }
1906
+
1907
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon {
1908
+ margin-top: 0;
1909
+ padding-top: 7px;
1910
+ padding-top: 0;
1911
+ vertical-align: initial;
1912
+ }
1913
+
1914
+ .e-pv-custom-annotation-thickness-container .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon,
1915
+ .e-pv-custom-annotation-opacity-container .e-btn-icon.e-pv-annotation-opacity-icon.e-pv-icon {
1916
+ vertical-align: initial;
1917
+ }
1918
+
1919
+ .e-pv-annotation-opacity-popup-container,
1920
+ .e-pv-annotation-thickness-popup-container {
1921
+ background-color: #fff;
1922
+ box-shadow: none;
1923
+ color: #333;
1924
+ height: auto;
1925
+ min-height: 48px;
1926
+ padding: 16px;
1927
+ width: auto;
1928
+ }
1929
+
1930
+ .e-pv-annotation-opacity-label,
1931
+ .e-pv-annotation-opacity-indicator,
1932
+ .e-pv-annotation-thickness-label,
1933
+ .e-pv-annotation-thickness-indicator {
1934
+ float: left;
1935
+ font-family: inherit;
1936
+ font-size: inherit;
1937
+ }
1938
+
1939
+ .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1940
+ .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1941
+ float: left;
1942
+ height: auto;
1943
+ margin-left: 11px;
1944
+ margin-right: 10px;
1945
+ }
1946
+
1947
+ .e-dropdown-popup:not(.e-rtl) .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1948
+ .e-dropdown-popup:not(.e-rtl) .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1949
+ width: 172px;
1950
+ }
1951
+
1952
+ .e-dropdown-popup.e-rtl .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1953
+ .e-dropdown-popup.e-rtl .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1954
+ width: 140px;
1955
+ }
1956
+
1957
+ .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container .e-pv-annotation-opacity-slider.e-slider,
1958
+ .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container .e-pv-annotation-opacity-slider.e-slider {
1959
+ height: 16px;
1960
+ }
1961
+
1962
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-caret
1963
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-caret
1964
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-caret,
1965
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-caret,
1966
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-caret {
1967
+ font-size: 16px;
1968
+ }
1969
+
1970
+ .e-pv-annotation-color-container,
1971
+ .e-pv-annotation-opacity-container,
1972
+ .e-pv-annotation-stroke-container,
1973
+ .e-pv-custom-annotation-thickness-container,
1974
+ .e-pv-custom-annotation-opacity-container,
1975
+ .e-pv-annotation-thickness-container,
1976
+ .e-pv-annotation-textcolor-container,
1977
+ .e-pv-annotation-textalign-container,
1978
+ .e-pv-annotation-textprop-container {
1979
+ height: 32px;
1980
+ width: auto;
1981
+ }
1982
+
1983
+ .e-pv-annotation-thickness-container.e-btn.e-icon-btn.e-dropdown-btn {
1984
+ padding-top: 0;
1985
+ }
1986
+
1987
+ .e-pv-shapes-toolbar {
1988
+ box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
1989
+ }
1990
+
1991
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1992
+ padding: 4px;
1993
+ }
1994
+
1995
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items.e-toolbar-multirow {
1996
+ margin-bottom: 0;
1997
+ margin-left: 4px;
1998
+ margin-right: 4px;
1999
+ }
2000
+
2001
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
2002
+ height: 32px;
2003
+ width: 32px;
2004
+ min-height: 32px;
2005
+ }
2006
+
2007
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
2008
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
2009
+ min-height: 32px;
2010
+ }
2011
+
2012
+ .e-pv-annotation-thickness-slider-container {
2013
+ margin-top: -6px;
2014
+ }
2015
+
2016
+ .e-pv-annotation-opacity-icon {
2017
+ padding-top: 1px;
2018
+ }
2019
+
2020
+ .e-pv-annotation-color-container.e-btn,
2021
+ .e-pv-annotation-opacity-container.e-btn,
2022
+ .e-pv-annotation-stroke-container.e-btn,
2023
+ .e-pv-annotation-thickness-container.e-btn,
2024
+ .e-pv-annotation-shapes-container.e-btn,
2025
+ .e-pv-annotation-calibrate-container.e-btn,
2026
+ .e-pv-annotation-textcolor-container.e-btn,
2027
+ .e-pv-annotation-textalign-container.e-btn,
2028
+ .e-pv-annotation-textprop-container.e-btn,
2029
+ .e-pv-annotation-handwritten-container.e-btn,
2030
+ .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:not(.e-selected) {
2031
+ background-color: transparent;
2032
+ border-color: transparent;
2033
+ }
2034
+
2035
+ .e-pv-annotation-color-container.e-btn:hover,
2036
+ .e-pv-annotation-opacity-container.e-btn:hover,
2037
+ .e-pv-annotation-stroke-container.e-btn:hover,
2038
+ .e-pv-annotation-thickness-container.e-btn:hover,
2039
+ .e-pv-annotation-shapes-container.e-btn:hover,
2040
+ .e-pv-annotation-calibrate-container.e-btn:hover,
2041
+ .e-pv-annotation-textcolor-container.e-btn:hover,
2042
+ .e-pv-annotation-textalign-container.e-btn:hover,
2043
+ .e-pv-annotation-textprop-container.e-btn:hover,
2044
+ .e-pv-annotation-handwritten-container.e-btn:hover,
2045
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:hover,
2046
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:hover,
2047
+ .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:hover {
2048
+ background-color: #292827;
2049
+ border-color: #292827;
2050
+ }
2051
+
2052
+ .e-pv-annotation-color-container.e-btn:active,
2053
+ .e-pv-annotation-opacity-container.e-btn:active,
2054
+ .e-pv-annotation-stroke-container.e-btn:active,
2055
+ .e-pv-annotation-thickness-container.e-btn:active,
2056
+ .e-pv-annotation-shapes-container.e-btn:active,
2057
+ .e-pv-annotation-calibrate-container.e-btn:active,
2058
+ .e-pv-annotation-textcolor-container.e-btn:active,
2059
+ .e-pv-annotation-textalign-container.e-btn:active,
2060
+ .e-pv-annotation-textprop-container.e-btn:active,
2061
+ .e-pv-annotation-handwritten-container.e-btn:active {
2062
+ background-color: #292827;
2063
+ border-color: #292827;
2064
+ box-shadow: none;
2065
+ color: #fff;
2066
+ }
2067
+
2068
+ .e-pv-annotation-shapes-container.e-btn.e-dropdown-btn.e-active:not(:hover),
2069
+ .e-pv-annotation-calibrate-container.e-btn.e-dropdown-btn.e-active:not(:hover),
2070
+ .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn.e-active:not(:hover),
2071
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active:not(:hover) .e-caret {
2072
+ background-color: #292827;
2073
+ color: #a19f9d;
2074
+ }
2075
+
2076
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn,
2077
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn,
2078
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-btn,
2079
+ .e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-btn,
2080
+ .e-pv-custom-annotation-opacity-container.e-dropdown-btn.e-btn,
2081
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-btn,
2082
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn,
2083
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn,
2084
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn {
2085
+ line-height: 30px;
2086
+ padding: 0 8px;
2087
+ }
2088
+
2089
+ .e-pv-annotation-color-container.e-dropdown-btn.e-button,
2090
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-button,
2091
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-button,
2092
+ .e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-button,
2093
+ .e-pv-custom-annotation-opacity-container.e-dropdown-btn.e-button,
2094
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-bbuttontn,
2095
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-button,
2096
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-button,
2097
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-button {
2098
+ line-height: 30px;
2099
+ padding: 0 8px;
2100
+ }
2101
+
2102
+ .e-pv-custom-annotation-stamp-container,
2103
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-pv-stamp-icon,
2104
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-caret {
2105
+ background-color: transparent;
2106
+ height: 32px;
2107
+ line-height: 32px;
2108
+ }
2109
+
2110
+ .e-pv-toolbar.e-toolbar .e-tbar-btn .e-icons.e-btn-icon,
2111
+ .e-pv-annotation-toolbar.e-toolbar .e-tbar-btn .e-icons.e-btn-icon {
2112
+ font-size: 14px;
2113
+ }
2114
+
2115
+ .e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text.e-pv-submitform-text {
2116
+ display: inline-block;
2117
+ padding: 0 4px;
2118
+ }
2119
+
2120
+ .e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-pv-submit .e-tbar-btn .e-tbar-btn-text.e-pv-submitform-text {
2121
+ display: inline-block;
2122
+ padding: 3px 4px;
2123
+ }
2124
+
2125
+ .e-pv-mobile-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn,
2126
+ .e-pv-nav-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn {
2127
+ height: 30px;
2128
+ min-width: 36px;
2129
+ }
2130
+
2131
+ .e-pv-annotation-popup-menu {
2132
+ background-color: #201f1e;
2133
+ border-color: #323130;
2134
+ color: #f3f2f1;
2135
+ }
2136
+
2137
+ .e-pv-properties-window {
2138
+ max-width: 412px;
2139
+ }
2140
+
2141
+ .e-pv-scale-ratio-window {
2142
+ max-width: 472px;
2143
+ }
2144
+
2145
+ .e-pv-scale-ratio-dialog {
2146
+ max-width: 508px;
2147
+ }
2148
+
2149
+ .e-pv-line-styles-content,
2150
+ .e-pv-line-styles-item {
2151
+ border-bottom-color: #f3f2f1;
2152
+ }
2153
+
2154
+ .e-pv-line-styles-container:hover {
2155
+ background-color: #252423;
2156
+ }
2157
+
2158
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn,
2159
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn {
2160
+ height: 30px;
2161
+ line-height: 16px;
2162
+ }
2163
+
2164
+ .e-bigger .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn,
2165
+ .e-bigger .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn {
2166
+ height: 40px;
2167
+ }
2168
+
2169
+ .e-pv-properties-window .e-dlg-content {
2170
+ padding-top: 6px;
2171
+ }
2172
+
2173
+ .e-pv-scale-ratio-text,
2174
+ .e-pv-depth-text {
2175
+ margin-bottom: 8px;
2176
+ }
2177
+
2178
+ .e-pv-properties-line-start-container,
2179
+ .e-pv-properties-line-end-container,
2180
+ .e-pv-properties-line-style-container,
2181
+ .e-pv-properties-line-thickness-container,
2182
+ .e-pv-properties-line-fill-color-container,
2183
+ .e-pv-properties-line-stroke-color-container,
2184
+ .e-pv-properties-line-leader-length-container {
2185
+ float: left;
2186
+ height: 58px;
2187
+ margin-bottom: 24px;
2188
+ }
2189
+
2190
+ .e-pv-properties-line-opacity-container {
2191
+ float: left;
2192
+ height: auto;
2193
+ width: 170px;
2194
+ }
2195
+
2196
+ .e-pv-scale-ratio-src-input-container,
2197
+ .e-pv-scale-ratio-src-unit-container,
2198
+ .e-pv-scale-ratio-dest-input-container,
2199
+ .e-pv-scale-ratio-dest-unit-container,
2200
+ .e-pv-depth-input-container,
2201
+ .e-pv-depth-unit-container {
2202
+ float: left;
2203
+ height: 32px;
2204
+ }
2205
+
2206
+ .e-bigger .e-pv-scale-ratio-src-input-container,
2207
+ .e-bigger .e-pv-scale-ratio-src-unit-container,
2208
+ .e-bigger .e-pv-scale-ratio-dest-input-container,
2209
+ .e-bigger .e-pv-scale-ratio-dest-unit-container,
2210
+ .e-bigger .e-pv-depth-input-container,
2211
+ .e-bigger .e-pv-depth-unit-container {
2212
+ float: left;
2213
+ height: 40px;
2214
+ }
2215
+
2216
+ .e-pv-scale-ratio-src-input-container,
2217
+ .e-pv-scale-ratio-src-unit-container,
2218
+ .e-pv-scale-ratio-dest-input-container,
2219
+ .e-pv-scale-ratio-dest-unit-container {
2220
+ margin-bottom: 16px;
2221
+ }
2222
+
2223
+ .e-pv-scale-ratio-src-unit-container,
2224
+ .e-pv-scale-ratio-dest-unit-container,
2225
+ .e-pv-depth-unit-container {
2226
+ margin-left: 24px;
2227
+ }
2228
+
2229
+ .e-pv-scale-ratio-src-unit.e-btn,
2230
+ .e-pv-scale-ratio-dest-unit.e-btn,
2231
+ .e-pv-depth-unit.e-btn {
2232
+ padding: 4px 8px 4px;
2233
+ }
2234
+
2235
+ .e-pv-scale-unit-content {
2236
+ float: left;
2237
+ width: 33px;
2238
+ }
2239
+
2240
+ .e-pv-scale-ratio-src-unit .e-caret,
2241
+ .e-pv-scale-ratio-dest-unit .e-caret,
2242
+ .e-pv-depth-unit .e-caret {
2243
+ margin-left: 96px;
2244
+ margin-top: 0;
2245
+ }
2246
+
2247
+ .e-bigger .e-pv-scale-ratio-src-unit .e-caret,
2248
+ .e-bigger .e-pv-scale-ratio-dest-unit .e-caret,
2249
+ .e-bigger .e-pv-depth-unit .e-caret {
2250
+ margin-left: 160px;
2251
+ }
2252
+
2253
+ .e-pv-properties-line-opacity {
2254
+ margin-top: -10px;
2255
+ }
2256
+
2257
+ .e-pv-properties-line-start-label,
2258
+ .e-pv-properties-line-end-label,
2259
+ .e-pv-properties-line-style-label,
2260
+ .e-pv-properties-line-thickness-label,
2261
+ .e-pv-properties-line-fill-color-label,
2262
+ .e-pv-properties-line-stroke-color-label,
2263
+ .e-pv-properties-line-opacity-label,
2264
+ .e-pv-properties-line-leader-length-label {
2265
+ font-size: 14px;
2266
+ margin-bottom: 8px;
2267
+ font-weight: 600;
2268
+ }
2269
+
2270
+ .e-pv-properties-line-end-container,
2271
+ .e-pv-properties-line-thickness-container {
2272
+ margin-left: 24px;
2273
+ }
2274
+
2275
+ .e-pv-properties-line-leader-length-container {
2276
+ margin-left: 20px;
2277
+ }
2278
+
2279
+ .e-bigger .e-pv-properties-line-leader-length-container {
2280
+ margin-left: 100px;
2281
+ }
2282
+
2283
+ .e-pv-properties-line-stroke-color-container {
2284
+ margin-left: 131px;
2285
+ margin-right: 87px;
2286
+ }
2287
+
2288
+ .e-bigger .e-pv-properties-line-stroke-color-container {
2289
+ margin-left: 195px;
2290
+ }
2291
+
2292
+ .e-pv-properties-line-start,
2293
+ .e-pv-properties-line-end,
2294
+ .e-pv-properties-line-style,
2295
+ .e-pv-properties-line-thickness,
2296
+ .e-pv-properties-line-opacity,
2297
+ .e-pv-properties-line-leader-length {
2298
+ max-width: 170px;
2299
+ }
2300
+
2301
+ .e-bigger .e-pv-properties-line-start,
2302
+ .e-bigger .e-pv-properties-line-end,
2303
+ .e-bigger .e-pv-properties-line-style,
2304
+ .e-bigger .e-pv-properties-line-thickness,
2305
+ .e-bigger .e-pv-properties-line-opacity,
2306
+ .e-bigger .e-pv-properties-line-leader-length {
2307
+ max-width: 248px;
2308
+ }
2309
+
2310
+ .e-pv-scale-ratio-src-input,
2311
+ .e-pv-scale-ratio-dest-input,
2312
+ .e-pv-depth-input {
2313
+ max-width: 200px;
2314
+ }
2315
+
2316
+ .e-bigger .e-pv-scale-ratio-src-input,
2317
+ .e-bigger .e-pv-scale-ratio-dest-input,
2318
+ .e-bigger .e-pv-depth-input {
2319
+ max-width: 248px;
2320
+ }
2321
+
2322
+ .e-pv-properties-line-start,
2323
+ .e-pv-properties-line-end,
2324
+ .e-pv-properties-line-style {
2325
+ width: 170px;
2326
+ }
2327
+
2328
+ .e-bigger .e-pv-properties-line-start,
2329
+ .e-bigger .e-pv-properties-line-end,
2330
+ .e-bigger .e-pv-properties-line-style {
2331
+ width: 248px;
2332
+ }
2333
+
2334
+ .e-pv-scale-ratio-src-unit,
2335
+ .e-pv-scale-ratio-dest-unit,
2336
+ .e-pv-depth-unit {
2337
+ width: 200px;
2338
+ }
2339
+
2340
+ .e-bigger .e-pv-scale-ratio-src-unit,
2341
+ .e-bigger .e-pv-scale-ratio-dest-unit,
2342
+ .e-bigger .e-pv-depth-unit {
2343
+ height: 40px;
2344
+ width: 248px;
2345
+ }
2346
+
2347
+ .e-pv-line-styles-container {
2348
+ line-height: 0;
2349
+ padding: 17px;
2350
+ }
2351
+
2352
+ .e-pv-line-styles-item {
2353
+ border-bottom-width: 2px;
2354
+ box-sizing: border-box;
2355
+ display: inline-block;
2356
+ width: 100%;
2357
+ }
2358
+
2359
+ .e-pv-line-styles-content {
2360
+ border-bottom-width: 2px;
2361
+ display: inline-block;
2362
+ width: 100%;
2363
+ }
2364
+
2365
+ .e-pv-properties-line-style-content {
2366
+ float: left;
2367
+ line-height: 16px;
2368
+ width: 44px;
2369
+ line-height: 20px;
2370
+ }
2371
+
2372
+ .e-pv-properties-line-start.e-btn,
2373
+ .e-pv-properties-line-end.e-btn {
2374
+ height: 32px;
2375
+ padding: 4px 11px;
2376
+ }
2377
+
2378
+ .e-bigger .e-pv-properties-line-start.e-btn,
2379
+ .e-bigger .e-pv-properties-line-end.e-btn,
2380
+ .e-bigger .e-pv-properties-line-style.e-btn {
2381
+ height: 40px;
2382
+ }
2383
+
2384
+ .e-pv-properties-line-style.e-btn {
2385
+ height: 32px;
2386
+ line-height: 0;
2387
+ padding: 11px 4px;
2388
+ white-space: pre;
2389
+ }
2390
+
2391
+ .e-pv-properties-line-start.e-btn .e-caret,
2392
+ .e-pv-properties-line-end.e-btn .e-caret {
2393
+ display: inline;
2394
+ line-height: 16px;
2395
+ margin-left: 83px;
2396
+ }
2397
+
2398
+ .e-bigger .e-pv-properties-line-start.e-btn .e-caret,
2399
+ .e-bigger .e-pv-properties-line-end.e-btn .e-caret {
2400
+ margin-left: 145px;
2401
+ }
2402
+
2403
+ .e-pv-line-styles-content-container {
2404
+ float: left;
2405
+ font-size: 0;
2406
+ margin-right: 7.5px;
2407
+ margin-top: 2.5px;
2408
+ width: 120px;
2409
+ }
2410
+
2411
+ .e-bigger .e-pv-line-styles-content-container {
2412
+ margin-top: 5.5px;
2413
+ width: 180px;
2414
+ }
2415
+
2416
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2417
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2418
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn,
2419
+ .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp ul {
2420
+ height: 32px;
2421
+ width: auto;
2422
+ }
2423
+
2424
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2425
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2426
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn {
2427
+ padding: 0 8px;
2428
+ }
2429
+
2430
+ .e-pv-annotation-shape-icon,
2431
+ .e-pv-annotation-calibrate-icon,
2432
+ .e-pv-handwritten-icon {
2433
+ margin-right: 4px;
2434
+ }
2435
+
2436
+ .e-pv-properties-opacity-indicator {
2437
+ margin-left: 141px;
2438
+ }
2439
+
2440
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu {
2441
+ border-radius: 2px;
2442
+ }
2443
+
2444
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2445
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2446
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn,
2447
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item,
2448
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-pv-stamp-icon,
2449
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-caret {
2450
+ line-height: 30px;
2451
+ }
2452
+
2453
+ .e-bigger .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
2454
+ .e-bigger .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn {
2455
+ height: 32px;
2456
+ line-height: 25px;
2457
+ margin: -4px 0;
2458
+ padding: 0 1.5px;
2459
+ width: 32px;
2460
+ }
2461
+
2462
+ .e-bigger .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
2463
+ padding-top: 0;
2464
+ }
2465
+
2466
+ .e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-pv-zoom-drop-down-container {
2467
+ width: 93px;
2468
+ }
2469
+
2470
+ .e-pv-toolbar.e-toolbar .e-tbar-btn > :first-child {
2471
+ line-height: 22px;
2472
+ min-height: 22px;
2473
+ }
2474
+
2475
+ .e-bigger .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input:focus {
2476
+ padding-left: 0;
2477
+ }
2478
+
2479
+ .e-bigger .e-pv-password-popup.e-dialog,
2480
+ .e-pv-mobile-view .e-pv-password-popup.e-dialog {
2481
+ height: 240px;
2482
+ }
2483
+
2484
+ .e-bigger .e-pv-notification-popup.e-dialog,
2485
+ .e-pv-mobile-view .e-pv-notification-popup.e-dialog {
2486
+ height: 195px;
2487
+ }
2488
+
2489
+ .e-bigger .e-pv-notification-popup.e-pv-notification-large-content.e-dialog,
2490
+ .e-pv-mobile-view .e-pv-notification-popup.e-pv-notification-large-content.e-dialog {
2491
+ height: 220px;
2492
+ }
2493
+
2494
+ .e-bigger .e-pv-corrupted-popup.e-dialog,
2495
+ .e-pv-mobile-view .e-pv-corrupted-popup.e-dialog {
2496
+ height: 198px;
2497
+ }
2498
+
2499
+ .e-bigger .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2500
+ .e-bigger .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2501
+ .e-pv-mobile-view .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2502
+ .e-pv-mobile-view .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
2503
+ padding-top: 6px;
2504
+ }
2505
+
2506
+ .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
2507
+ .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
2508
+ top: 0;
2509
+ }
2510
+
2511
+ .e-bigger .e-pv-toolbar.e-rtl .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
2512
+ padding-right: 0;
2513
+ }
2514
+
2515
+ .e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl input.e-input.e-control.e-keyboard,
2516
+ .e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl input.e-input.e-control.e-keyboard,
2517
+ .e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl input.e-input.e-control.e-keyboard,
2518
+ .e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl input.e-input.e-control.e-keyboard {
2519
+ padding-left: 0;
2520
+ padding-right: 12px;
2521
+ }
2522
+
2523
+ .e-pv-sidebar-content-container.e-left {
2524
+ left: 38px;
2525
+ }
2526
+
2527
+ .e-pv-sidebar-content-container.e-right {
2528
+ right: 38px;
2529
+ }
2530
+
2531
+ .e-pv-sidebar-toolbar-splitter.e-left {
2532
+ left: 38px;
2533
+ }
2534
+
2535
+ .e-pv-sidebar-toolbar-splitter.e-right {
2536
+ right: 38px;
2537
+ }
2538
+
2539
+ .e-pv-sidebar-resizer.e-left {
2540
+ left: 202px;
2541
+ }
2542
+
2543
+ .e-pv-sidebar-resizer.e-right {
2544
+ right: 202px;
2545
+ }
2546
+
2547
+ .e-pdfviewer .e-checkbox-wrapper .e-frame + .e-label,
2548
+ .e-pdfviewer .e-css.e-checkbox-wrapper .e-frame + .e-label {
2549
+ margin-right: 10px;
2550
+ }
2551
+
2552
+ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
2553
+ float: left;
2554
+ font-size: 14px;
2555
+ padding-left: 1px;
2556
+ padding-right: 1px;
2557
+ position: absolute;
2558
+ }
2559
+
2560
+ .e-bigger .e-pv-properties-window {
2561
+ max-width: 577px;
2562
+ min-height: 498px;
2563
+ }
2564
+
2565
+ .e-bigger .e-pv-scale-ratio-window {
2566
+ max-width: 580px;
2567
+ }
2568
+
2569
+ .e-pdfviewer .e-treeview .e-list-item {
2570
+ white-space: pre-wrap;
2571
+ word-break: break-word;
2572
+ }
2573
+
2574
+ .e-pdfviewer .e-treeview .e-list-text {
2575
+ width: 100%;
2576
+ }
2577
+
2578
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-icon-collapsible,
2579
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-icon-expandable,
2580
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-input,
2581
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-list-url {
2582
+ margin-top: 3px;
2583
+ position: absolute;
2584
+ }
2585
+
2586
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper.e-hide {
2587
+ display: none;
2588
+ }
2589
+
2590
+ .e-pdfviewer .e-editable-inline {
2591
+ padding: 7px 8px 42px;
2592
+ }
2593
+
2594
+ .e-pv-comment-textbox {
2595
+ min-height: 22px;
2596
+ }
2597
+
2598
+ .e-pdfviewer .e-editable-value-wrapper {
2599
+ color: #d2d0ce;
2600
+ font-size: 14px;
2601
+ line-height: normal;
2602
+ min-height: 22px;
2603
+ padding: 2px 8px 3px;
2604
+ }
2605
+
2606
+ .e-pdfviewer .e-pv-comment-textbox .e-editable-value-wrapper {
2607
+ color: #d2d0ce;
2608
+ font-size: 14px;
2609
+ line-height: normal;
2610
+ min-height: 24px;
2611
+ padding: 2px 8px 3px 32px;
2612
+ }
2613
+
2614
+ .e-pdfviewer .e-inplaceeditor .e-editable-action-buttons {
2615
+ float: right;
2616
+ padding-bottom: 7px;
2617
+ padding-top: 5px;
2618
+ position: relative;
2619
+ right: 8px;
2620
+ }
2621
+
2622
+ .e-pdfviewer .e-pv-reply-div .e-inplaceeditor .e-editable-action-buttons {
2623
+ float: right;
2624
+ padding-bottom: 7px;
2625
+ padding-top: 5px;
2626
+ position: relative;
2627
+ right: 8px;
2628
+ }
2629
+
2630
+ .e-pv-comment-title-container {
2631
+ height: 36px;
2632
+ }
2633
+
2634
+ .e-pv-reply-title-container {
2635
+ height: 36px;
2636
+ }
2637
+
2638
+ .e-pv-more-options-button.e-btn {
2639
+ background: transparent;
2640
+ border: 0;
2641
+ border-radius: 4px;
2642
+ box-shadow: none;
2643
+ float: right;
2644
+ padding: 4px 7px 4px 7px;
2645
+ }
2646
+
2647
+ .e-pdfviewer .e-editable-inline .e-btn.e-outline.e-primary,
2648
+ .e-pdfviewer .e-editable-inline .e-btn.e-outline {
2649
+ border-color: transparent;
2650
+ }
2651
+
2652
+ .e-pdfviewer .e-editable-inline .e-editable-form {
2653
+ margin-bottom: 1px;
2654
+ }
2655
+
2656
+ .e-pdfviewer .e-editable-inline .e-clear-icon {
2657
+ padding-right: 2px;
2658
+ }
2659
+
2660
+ .e-pdfviewer .e-btn-cancel {
2661
+ font-size: 14px;
2662
+ padding-left: 5px;
2663
+ padding-right: 5px;
2664
+ }
2665
+
2666
+ .e-pdfviewer .e-btn-save {
2667
+ font-size: 14px;
2668
+ margin-right: 12px;
2669
+ padding-left: 7px;
2670
+ padding-right: 7px;
2671
+ }
2672
+
2673
+ .e-pdfviewer .e-btn-save.e-outline.e-primary:disabled {
2674
+ background-color: transparent;
2675
+ border-radius: 2px;
2676
+ color: #a19f9d;
2677
+ }
2678
+
2679
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-panel .e-acrdn-content {
2680
+ box-shadow: 0 0 0 8px #201f1e inset;
2681
+ padding: 8px;
2682
+ }
2683
+
2684
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-header {
2685
+ line-height: 32px;
2686
+ min-height: 32px;
2687
+ }
2688
+
2689
+ .e-contextmenu-wrapper .e-pv-context-menu .e-menu-item {
2690
+ height: 38px;
2691
+ }
2692
+
2693
+ .e-pv-comment-panel {
2694
+ background-color: #201f1e;
2695
+ border: 1px solid #292827;
2696
+ border-width: 1px 1px 0;
2697
+ opacity: 1;
2698
+ overflow: hidden;
2699
+ position: absolute;
2700
+ top: 57px;
2701
+ width: 300px;
2702
+ z-index: 100;
2703
+ }
2704
+
2705
+ .e-pv-comment-panel-title-container {
2706
+ background-color: #201f1e;
2707
+ border-color: #292827;
2708
+ border-style: double;
2709
+ border-width: 0 1px 1px 0;
2710
+ height: 45px;
2711
+ position: relative;
2712
+ }
2713
+
2714
+ .e-pv-comment-panel-title {
2715
+ color: #d2d0ce;
2716
+ font-size: 14px;
2717
+ font-weight: 600;
2718
+ left: 15px;
2719
+ position: absolute;
2720
+ text-align: left;
2721
+ top: 14px;
2722
+ }
2723
+
2724
+ .e-pv-comment-panel-title-close-div.e-btn {
2725
+ background: transparent;
2726
+ border: none;
2727
+ box-shadow: none;
2728
+ height: 38px;
2729
+ position: absolute;
2730
+ right: 11px;
2731
+ top: 5px;
2732
+ width: 32px;
2733
+ padding: 4px;
2734
+ }
2735
+
2736
+ .e-pv-title-close-icon {
2737
+ color: #0078d4;
2738
+ color: #a19f9d;
2739
+ }
2740
+
2741
+ .e-pv-comments-panel-text {
2742
+ font-size: 15px;
2743
+ padding-left: 85px;
2744
+ }
2745
+
2746
+ .e-pv-comments-content-container {
2747
+ background-color: #201f1e;
2748
+ border-color: #292827;
2749
+ border-style: double;
2750
+ border-width: 0 1px 1px 0;
2751
+ height: calc(100% - 45px);
2752
+ overflow: auto;
2753
+ }
2754
+
2755
+ .e-pv-comments-container {
2756
+ background-color: #201f1e;
2757
+ border-radius: 2px;
2758
+ left: 7px;
2759
+ right: 7px;
2760
+ }
2761
+
2762
+ .e-pv-comment-title {
2763
+ color: #0078d4;
2764
+ color: #f3f2f1;
2765
+ font-size: 14px;
2766
+ font-weight: 600;
2767
+ max-width: 237px;
2768
+ padding-left: 32px;
2769
+ padding-top: 5px;
2770
+ position: absolute;
2771
+ }
2772
+
2773
+ .e-pv-reply-title {
2774
+ color: #0078d4;
2775
+ color: #f3f2f1;
2776
+ font-size: 14px;
2777
+ font-weight: 600;
2778
+ max-width: 212px;
2779
+ padding-left: 8px;
2780
+ padding-top: 5px;
2781
+ position: absolute;
2782
+ }
2783
+
2784
+ .e-pv-comments-hover {
2785
+ background-color: #252423;
2786
+ }
2787
+
2788
+ .e-pv-comments-select {
2789
+ background-color: #292827;
2790
+ }
2791
+
2792
+ .e-pv-comments-select .e-pv-comment-textbox .e-editable-value-wrapper {
2793
+ color: #f3f2f1;
2794
+ }
2795
+
2796
+ .e-pv-comments-leave {
2797
+ background-color: #201f1e;
2798
+ }
2799
+
2800
+ .e-pdfviewer .e-accordion {
2801
+ background-color: #201f1e;
2802
+ border: transparent;
2803
+ }
2804
+
2805
+ .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp {
2806
+ border: 0;
2807
+ display: block;
2808
+ }
2809
+
2810
+ .e-dropdown-popup.e-lib.e-popup.e-control.e-pv-handwritten-popup.e-popup-open ul {
2811
+ padding-bottom: 6px;
2812
+ padding-top: 6px;
2813
+ }
2814
+
2815
+ .e-bigger .e-dropdown-popup.e-lib.e-popup.e-control.e-pv-handwritten-popup .e-btn.e-outline.e-primary {
2816
+ min-height: 49px;
2817
+ min-width: 152px;
2818
+ }
2819
+
2820
+ .e-menu-icon.e-pv-stamp-icon.e-pv-icon {
2821
+ margin-top: 0;
2822
+ padding-left: 7px;
2823
+ }
2824
+
2825
+ .e-pdfviewer .e-inplaceeditor {
2826
+ display: block;
2827
+ }
2828
+
2829
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
2830
+ display: none;
2831
+ }
2832
+
2833
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
2834
+ border-bottom: 0;
2835
+ word-break: break-all;
2836
+ }
2837
+
2838
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper {
2839
+ display: block;
2840
+ }
2841
+
2842
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper:hover {
2843
+ background: transparent;
2844
+ }
2845
+
2846
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-container {
2847
+ background: transparent;
2848
+ width: 229px;
2849
+ }
2850
+
2851
+ .e-pv-status-div {
2852
+ height: 20px;
2853
+ left: 8px;
2854
+ position: relative;
2855
+ width: 20px;
2856
+ }
2857
+
2858
+ .e-pv-status-container {
2859
+ padding-bottom: 5px;
2860
+ padding-top: 2px;
2861
+ }
2862
+
2863
+ .e-pdfviewer .e-input-group.e-control-wrapper.e-editable-elements.e-input-focus {
2864
+ caret-color: #007bff;
2865
+ }
2866
+
2867
+ .e-pv-reply-div {
2868
+ margin-top: 3px;
2869
+ }
2870
+
2871
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header,
2872
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header {
2873
+ background: #201f1e;
2874
+ }
2875
+
2876
+ .e-pdfviewer .e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:focus,
2877
+ .e-pdfviewer .e-accordion .e-acrdn-item.e-selected > .e-acrdn-header {
2878
+ background: #201f1e;
2879
+ box-shadow: none;
2880
+ }
2881
+
2882
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
2883
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content,
2884
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
2885
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
2886
+ color: #0078d4;
2887
+ font-size: 14px;
2888
+ font-weight: 600;
2889
+ }
2890
+
2891
+ .e-content-placeholder.e-pdfviewer.e-placeholder-pdfviewer {
2892
+ background-size: 100%;
2893
+ }
2894
+
2895
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-panel .e-acrdn-content {
2896
+ line-height: normal;
2897
+ }
2898
+
2899
+ .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
2900
+ margin-top: 10px;
2901
+ padding-bottom: 5px;
2902
+ }
2903
+
2904
+ .e-pdfviewer .e-pv-signature-window .e-footer-content .e-pv-clearbtn {
2905
+ float: left;
2906
+ }
2907
+
2908
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2909
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2910
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2911
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-underlinetext.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2912
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-left-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2913
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-right-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2914
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-center-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
2915
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-justfiy-align.e-pv-tbar-btn.e-tooltip.textprop-option-active {
2916
+ background: #252423;
2917
+ border-color: #252423;
2918
+ }
2919
+
2920
+ .e-pv-comment-panel-resizer {
2921
+ background: #201f1e;
2922
+ border: 0;
2923
+ border-width: 0;
2924
+ color: inherit;
2925
+ cursor: ew-resize;
2926
+ height: calc(100%);
2927
+ position: absolute;
2928
+ width: 8px;
2929
+ z-index: 105;
2930
+ }
2931
+
2932
+ .e-pv-comment-panel-resizer.e-left {
2933
+ left: 300px;
2934
+ }
2935
+
2936
+ .e-pv-comment-panel-resizer.e-right {
2937
+ right: 300px;
2938
+ }
2939
+
2940
+ .e-pv-align {
2941
+ cursor: pointer;
2942
+ float: right;
2943
+ font-size: 20px;
2944
+ margin-right: 16px;
2945
+ margin-top: 10px;
2946
+ }
2947
+
2948
+ .e-pv-align-border {
2949
+ border: 1px dotted #252423;
2950
+ border-radius: 5px;
2951
+ cursor: pointer;
2952
+ display: inline-block;
2953
+ width: 170px;
2954
+ }
2955
+
2956
+ .e-pv-font-sign {
2957
+ border: 1px solid #d2d0ce;
2958
+ border-radius: 5px;
2959
+ display: inline-block;
2960
+ font-size: 13px;
2961
+ height: 88px;
2962
+ margin: 15px;
2963
+ padding-top: 40px;
2964
+ text-align: center;
2965
+ width: 311px;
2966
+ word-wrap: break-word;
2967
+ max-width: 300px;
2968
+ padding-top: 36px;
2969
+ }
2970
+
2971
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
2972
+ color: #a19f9d;
2973
+ }
2974
+
2975
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item,
2976
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-menu-icon,
2977
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-caret {
2978
+ color: #a19f9d;
2979
+ }
2980
+
2981
+ .e-pv-stamp-template-container .e-menu-container .e-menu {
2982
+ background-color: transparent;
2983
+ border-color: transparent;
2984
+ }
2985
+
2986
+ .e-pv-custom-annotation-thickness-container,
2987
+ .e-pv-custom-annotation-opacity-container {
2988
+ background-color: transparent;
2989
+ border-color: transparent;
2990
+ }
2991
+
2992
+ .e-pdfviewer-signatureformfields.e-pv-signature-focus,
2993
+ .e-pdfviewer-signatureformfields-signature.e-pv-signature-focus {
2994
+ outline: #000 dotted 2px;
2995
+ }
2996
+
2997
+ .e-pv-checkbox-container {
2998
+ -moz-user-select: none;
2999
+ -ms-user-select: none;
3000
+ -webkit-user-select: none;
3001
+ cursor: pointer;
3002
+ display: block;
3003
+ margin-bottom: 0;
3004
+ position: relative;
3005
+ user-select: none;
3006
+ }
3007
+
3008
+ .e-pv-text-selection-none {
3009
+ -ms-user-select: none;
3010
+ -webkit-user-select: none;
3011
+ user-select: none;
3012
+ }
3013
+
3014
+ .e-pv-checkbox-container input {
3015
+ cursor: pointer;
3016
+ height: 0;
3017
+ opacity: 0;
3018
+ position: absolute;
3019
+ width: 0;
3020
+ }
3021
+
3022
+ .e-pv-checkbox-div {
3023
+ border: 1px solid #000;
3024
+ display: inline;
3025
+ height: 100%;
3026
+ left: 0;
3027
+ position: absolute;
3028
+ text-align: center;
3029
+ top: 0;
3030
+ width: 100%;
3031
+ }
3032
+
3033
+ .e-pv-cb-checked {
3034
+ border: solid #000;
3035
+ border-left-color: transparent;
3036
+ border-top-color: transparent;
3037
+ border-width: 3px;
3038
+ position: absolute;
3039
+ transform: rotate(45deg);
3040
+ }
3041
+
3042
+ .e-pv-cb-unchecked {
3043
+ border: 1px;
3044
+ border-width: 1px;
3045
+ }
3046
+
3047
+ .e-pv-radiobtn-container {
3048
+ -moz-user-select: none;
3049
+ -ms-user-select: none;
3050
+ -webkit-user-select: none;
3051
+ cursor: pointer;
3052
+ display: block;
3053
+ margin-bottom: 0;
3054
+ position: relative;
3055
+ user-select: none;
3056
+ }
3057
+
3058
+ .e-pv-radiobtn-container input {
3059
+ cursor: pointer;
3060
+ opacity: 0;
3061
+ position: absolute;
3062
+ }
3063
+
3064
+ .e-pv-radiobtn-div {
3065
+ border: 1px solid #000;
3066
+ border-radius: 50%;
3067
+ height: 100%;
3068
+ left: 0;
3069
+ position: absolute;
3070
+ top: 0;
3071
+ width: 100%;
3072
+ }
3073
+
3074
+ .e-pv-radio-btn {
3075
+ border: 0;
3076
+ clip: rect(0 0 0 0);
3077
+ height: 1px;
3078
+ margin: -1px;
3079
+ overflow: hidden;
3080
+ padding: 0;
3081
+ position: absolute;
3082
+ width: 1px;
3083
+ }
3084
+
3085
+ .e-pv-radio-btn + span {
3086
+ display: block;
3087
+ }
3088
+
3089
+ .e-pv-radio-btn + .e-pv-radiobtn-span::before {
3090
+ content: '';
3091
+ display: block;
3092
+ height: inherit;
3093
+ width: inherit;
3094
+ }
3095
+
3096
+ .e-pv-radio-btn:checked + .e-pv-radiobtn-span::before {
3097
+ background: #000;
3098
+ border-radius: 50%;
3099
+ }
3100
+
3101
+ .e-pv-properties-text-edit-prop,
3102
+ .e-pv-properties-visibility-style-prop,
3103
+ .e-pv-properties-font-items-container {
3104
+ display: -ms-flexbox;
3105
+ display: flex;
3106
+ -ms-flex-pack: space-evenly;
3107
+ justify-content: space-evenly;
3108
+ }
3109
+
3110
+ .e-pv-properties-form-field-name-main-div,
3111
+ .e-pv-properties-form-field-value-main-div {
3112
+ padding-right: 12px;
3113
+ }
3114
+
3115
+ .e-pv-properties-form-field-name-main-div,
3116
+ .e-pv-properties-form-field-tooltip-main-div,
3117
+ .e-pv-properties-form-field-value-main-div,
3118
+ .e-pv-properties-form-field-visibility-main-div {
3119
+ width: 232px;
3120
+ }
3121
+
3122
+ .e-pv-properties-text-edit-prop {
3123
+ padding-top: 35px;
3124
+ }
3125
+
3126
+ .e-pv-properties-visibility-style-prop {
3127
+ padding-bottom: 12px;
3128
+ padding-top: 12px;
3129
+ }
3130
+
3131
+ .e-pv-properties-checkbox-main-div-prop {
3132
+ display: -ms-flexbox;
3133
+ display: flex;
3134
+ -ms-flex-direction: row;
3135
+ flex-direction: row;
3136
+ -ms-flex-pack: justify;
3137
+ justify-content: space-between;
3138
+ padding-top: 20px;
3139
+ }
3140
+
3141
+ .e-pv-bold-icon-div,
3142
+ .e-pv-italic-icon-div,
3143
+ .e-pv-strikeout-icon-div,
3144
+ .e-pv-underlinetext-icon-div,
3145
+ .e-pv-left-align-icon-div,
3146
+ .e-pv-center-align-icon-div,
3147
+ .e-pv-right-align-icon-div {
3148
+ padding: 4px 8px;
3149
+ }
3150
+
3151
+ .e-pv-bold-icon-div:hover,
3152
+ .e-pv-italic-icon-div:hover,
3153
+ .e-pv-strikeout-icon-div:hover,
3154
+ .e-pv-underlinetext-icon-div:hover,
3155
+ .e-pv-left-align-icon-div:hover,
3156
+ .e-pv-center-align-icon-div:hover,
3157
+ .e-pv-right-align-icon-div:hover {
3158
+ background-color: #292827;
3159
+ border-color: #292827;
3160
+ }
3161
+
3162
+ .e-pv-bold-icon-div:active,
3163
+ .e-pv-italic-icon-div:active,
3164
+ .e-pv-strikeout-icon-div:active,
3165
+ .e-pv-underlinetext-icon-div:active,
3166
+ .e-pv-left-align-icon-div:active,
3167
+ .e-pv-center-align-icon-div:active,
3168
+ .e-pv-right-align-icon-div:active {
3169
+ background-color: #252423;
3170
+ border-color: #252423;
3171
+ }
3172
+
3173
+ .e-pv-properties-fill-color-style-prop,
3174
+ .e-pv-properties-stroke-color-style-prop,
3175
+ .e-pv-properties-stroke-thickness-style-prop {
3176
+ padding: 12px 20px 12px 1px;
3177
+ }
3178
+
3179
+ .e-pv-formfield-fontcolor-icon,
3180
+ .e-pv-formfield-strokecolor-icon,
3181
+ .e-pv-formfield-strokethickness-icon {
3182
+ background: #1b1a19;
3183
+ border-radius: 2px;
3184
+ height: auto;
3185
+ margin-top: 8px;
3186
+ }
3187
+
3188
+ .e-pv-properties-format-text-style-prop {
3189
+ padding: 15px 15px 15px 1px;
3190
+ }
3191
+
3192
+ .e-pv-properties-font-family-container {
3193
+ margin-right: 15px;
3194
+ width: 122px;
3195
+ }
3196
+
3197
+ .e-pv-properties-font-size-container {
3198
+ border-right-color: #292827;
3199
+ border-right-style: solid;
3200
+ border-right-width: 1px;
3201
+ margin-right: 15px;
3202
+ padding-right: 15px;
3203
+ width: 92px;
3204
+ }
3205
+
3206
+ .e-pv-formfield-maxlength {
3207
+ padding-left: 20px;
3208
+ }
3209
+
3210
+ .e-pv-left-align-icon-div,
3211
+ .e-pv-center-align-icon-div,
3212
+ .e-pv-right-align-icon-div {
3213
+ padding-left: 6px;
3214
+ }
3215
+
3216
+ .e-pv-properties-font-color-container,
3217
+ .e-pv-properties-color-container-style-prop {
3218
+ display: -ms-flexbox;
3219
+ display: flex;
3220
+ padding-top: 20px;
3221
+ }
3222
+
3223
+ .e-pv-formfield-textcolor {
3224
+ margin-right: 10px;
3225
+ }
3226
+
3227
+ .e-pv-formfield-maxlength-icon {
3228
+ -ms-flex-align: center;
3229
+ align-items: center;
3230
+ display: -ms-flexbox;
3231
+ display: flex;
3232
+ padding-right: 14px;
3233
+ padding-right: 8px;
3234
+ }
3235
+
3236
+ .e-pv-formfield-textcolor-icon {
3237
+ background: #1b1a19;
3238
+ border-radius: 2px;
3239
+ width: inherit;
3240
+ height: auto;
3241
+ }
3242
+
3243
+ .e-pv-properties-formfield-maxlength-text-label,
3244
+ .e-pv-formfield-maxlength {
3245
+ padding-left: 1px;
3246
+ width: 62px;
3247
+ }
3248
+
3249
+ .e-pv-formfield-maxlength-group {
3250
+ display: -ms-flexbox;
3251
+ display: flex;
3252
+ padding-left: 30px;
3253
+ }
3254
+
3255
+ .e-pv-properties-form-field-list-add-div {
3256
+ display: -ms-flexbox;
3257
+ display: flex;
3258
+ padding-bottom: 12px;
3259
+ padding-top: 16px;
3260
+ }
3261
+
3262
+ .e-pv-properties-list-item-edit-prop {
3263
+ margin-right: 15px;
3264
+ width: 295px;
3265
+ margin-right: 12px;
3266
+ width: 318px;
3267
+ }
3268
+
3269
+ .e-pv-properties-form-field-window {
3270
+ max-width: 456px;
3271
+ }
3272
+
3273
+ .e-pv-properties-formfield-textarea {
3274
+ min-width: 318px;
3275
+ }
3276
+
3277
+ .e-pv-properties-export-value-edit-prop {
3278
+ width: 295px;
3279
+ width: 318px;
3280
+ }
3281
+
3282
+ .e-pv-properties-form-field-list-btn-div {
3283
+ -ms-flex-align: center;
3284
+ align-items: center;
3285
+ display: -ms-flexbox;
3286
+ display: flex;
3287
+ height: 36px;
3288
+ margin-top: 10px;
3289
+ text-align: center;
3290
+ height: 32px;
3291
+ margin-top: 25px;
3292
+ }
3293
+
3294
+ .e-pv-properties-form-field-export-value-main-div {
3295
+ padding-bottom: 12px;
3296
+ padding-top: 0;
3297
+ width: 335px;
3298
+ }
3299
+
3300
+ .e-pv-properties-form-field-group-btn-div {
3301
+ display: -ms-grid;
3302
+ display: grid;
3303
+ }
3304
+
3305
+ .e-pv-properties-form-field-option-dropdown-list-div {
3306
+ padding-top: 0;
3307
+ }
3308
+
3309
+ .e-pv-properties-form-field-btn-textarea-container {
3310
+ display: -ms-flexbox;
3311
+ display: flex;
3312
+ width: 385px;
3313
+ padding-top: 0;
3314
+ }
3315
+
3316
+ .e-pv-properties-dropdown-btn {
3317
+ -ms-flex-align: center;
3318
+ align-items: center;
3319
+ display: -ms-flexbox;
3320
+ display: flex;
3321
+ height: 36px;
3322
+ text-align: center;
3323
+ width: 75px;
3324
+ }
3325
+
3326
+ .e-pv-show-designer-name {
3327
+ -ms-flex-align: center;
3328
+ align-items: center;
3329
+ color: #000;
3330
+ display: -ms-grid;
3331
+ display: grid;
3332
+ height: 100%;
3333
+ overflow: hidden;
3334
+ text-align: center;
3335
+ text-overflow: ellipsis;
3336
+ white-space: nowrap;
3337
+ width: 100%;
3338
+ }
3339
+
3340
+ .e-pv-formfield-li-element {
3341
+ list-style: none;
3342
+ padding-left: 10px;
3343
+ }
3344
+
3345
+ .e-pv-li-select {
3346
+ background-color: #0078d4;
3347
+ }
3348
+
3349
+ .e-pv-formfield-li-element.e-pv-li-select {
3350
+ background-color: #0078d4;
3351
+ color: #fff;
3352
+ }
3353
+
3354
+ .e-pv-formfield-li-element:hover {
3355
+ background-color: #0078d4;
3356
+ color: #fff;
3357
+ }
3358
+
3359
+ .e-pv-form-designer-ul-list-items {
3360
+ padding-left: 1px;
3361
+ }
3362
+
3363
+ .e-pv-form-field-property-header.e-dialog .e-dlg-header .e-dlg-header-content {
3364
+ font-size: 16px;
3365
+ font-weight: 500;
3366
+ }
3367
+
3368
+ .e-pv-form-field-property-header {
3369
+ -ms-user-select: none;
3370
+ -webkit-user-select: none;
3371
+ color: #f3f2f1;
3372
+ display: block;
3373
+ font-family: 'Segoe UI';
3374
+ height: 24px;
3375
+ font-size: 16px;
3376
+ font-style: normal;
3377
+ font-weight: 500;
3378
+ line-height: 23px;
3379
+ margin-top: 5px;
3380
+ mix-blend-mode: normal;
3381
+ opacity: 1;
3382
+ overflow: hidden;
3383
+ text-overflow: ellipsis;
3384
+ user-select: none;
3385
+ vertical-align: top;
3386
+ white-space: nowrap;
3387
+ width: 80%;
3388
+ }
3389
+
3390
+ .e-pv-form-field-property-header-general {
3391
+ font-family: 'Segoe UI';
3392
+ height: 24px;
3393
+ font-size: 14px;
3394
+ font-style: normal;
3395
+ line-height: 22px;
3396
+ }
3397
+
3398
+ .e-pv-properties-formfield-formatting {
3399
+ color: #d2d0ce;
3400
+ font-family: Roboto;
3401
+ font-size: 14px;
3402
+ font-style: normal;
3403
+ font-weight: normal;
3404
+ height: 22px;
3405
+ line-height: 22px;
3406
+ width: 64px;
3407
+ }
3408
+
3409
+ .e-pv-properties-form-field-font-style {
3410
+ background: #1b1a19;
3411
+ border-radius: 2px;
3412
+ display: -ms-flexbox;
3413
+ display: flex;
3414
+ height: 36px;
3415
+ -ms-flex-pack: space-evenly;
3416
+ justify-content: space-evenly;
3417
+ width: 154px;
3418
+ -ms-flex-align: center;
3419
+ align-items: center;
3420
+ border: 1px solid #a19f9d;
3421
+ height: 32px;
3422
+ width: 163px;
3423
+ }
3424
+
3425
+ .e-pv-properties-form-field-font-align {
3426
+ background: #1b1a19;
3427
+ border-radius: 2px;
3428
+ display: -ms-flexbox;
3429
+ display: flex;
3430
+ height: 36px;
3431
+ -ms-flex-pack: space-evenly;
3432
+ justify-content: space-evenly;
3433
+ margin-right: 15px;
3434
+ width: 120px;
3435
+ -ms-flex-align: center;
3436
+ align-items: center;
3437
+ border: 1px solid #292827;
3438
+ height: 32px;
3439
+ border: 1px solid #a19f9d;
3440
+ }
3441
+
3442
+ .e-pv-properties-formfield-label {
3443
+ color: #d2d0ce;
3444
+ font-family: Roboto;
3445
+ font-size: 14px;
3446
+ font-style: normal;
3447
+ font-weight: normal;
3448
+ font-family: 'Segoe UI';
3449
+ font-weight: 600;
3450
+ margin-bottom: 4px;
3451
+ height: 22px;
3452
+ line-height: 22px;
3453
+ }
3454
+
3455
+ .e-pv-formfield-maxlength .e-input-group.e-control-wrapper .e-input-group-icon {
3456
+ min-width: 18px;
3457
+ }
3458
+
3459
+ .e-pv-properties-form-field-window {
3460
+ height: 479px;
3461
+ }
3462
+
3463
+ .e-pv-properties-header-spliter {
3464
+ border-bottom-color: #0078d4;
3465
+ border-bottom-style: solid;
3466
+ border-bottom-width: 0;
3467
+ left: 0;
3468
+ padding-top: 38px;
3469
+ position: absolute;
3470
+ width: 100%;
3471
+ }
3472
+
3473
+ .e-pv-properties-bottom-spliter {
3474
+ border-bottom-color: #0078d4;
3475
+ border-bottom-style: solid;
3476
+ border-bottom-width: 0;
3477
+ left: 0;
3478
+ margin-bottom: 0;
3479
+ padding-top: 0;
3480
+ width: 100%;
3481
+ }
3482
+
3483
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
3484
+ background-color: #201f1e;
3485
+ padding: 0 7px;
3486
+ }
3487
+
3488
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
3489
+ padding: 0 7px;
3490
+ }
3491
+
3492
+ .e-pv-signature-dialog-height {
3493
+ height: 555px;
3494
+ min-height: 555px;
3495
+ }
3496
+
3497
+ .e-bigger .e-pv-signature-dialog-height {
3498
+ min-height: 592px;
3499
+ }
3500
+
3501
+ .e-pv-signature-dialog-blazor-height {
3502
+ height: 535px;
3503
+ min-height: 555px;
3504
+ }
3505
+
3506
+ .e-pv-handwritten-signature-canvas {
3507
+ height: 366px;
3508
+ width: 712px;
3509
+ }
3510
+
3511
+ .e-pv-toolbar-scroll .e-toolbar-pop.e-popup-open {
3512
+ overflow: auto;
3513
+ }
3514
+
3515
+ .e-pv-canvas-signature {
3516
+ width: 702px;
3517
+ max-width: 702px;
3518
+ }
3519
+
3520
+ .e-pv-canvas-signature-blazor {
3521
+ width: 702px;
3522
+ }
3523
+
3524
+ .e-pv-font-appearance-style {
3525
+ padding: 15px 18px;
3526
+ }
3527
+
3528
+ .e-pv-font-appearance-style-blazor {
3529
+ padding: 15px 18px;
3530
+ }