jsuites 5.2.2 → 5.3.2

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.
package/dist/jsuites.css CHANGED
@@ -169,7 +169,2911 @@ div[data-before]:before {
169
169
  100% {
170
170
  opacity: 1;
171
171
  }
172
- }
172
+ }
173
+
174
+ .jpanel {
175
+ position: absolute;
176
+ box-sizing: border-box;
177
+ z-index: 10;
178
+ }
179
+
180
+ .jpanel:focus {
181
+ outline: 2px solid black;
182
+ outline-offset: -1px;
183
+ }
184
+
185
+ .jpanel-action {
186
+ position: absolute;
187
+ width: 8px;
188
+ height: 8px;
189
+ background-color: white;
190
+ border:1px solid black;
191
+ box-sizing: border-box;
192
+ pointer-events: auto;
193
+ z-index: 1000;
194
+ }
195
+
196
+ .jpanel-action[data-position="n-resize"] {
197
+ top: -4px;
198
+ left: calc(50% - 4px);
199
+ }
200
+
201
+ .jpanel-action[data-position="ne-resize"] {
202
+ top: -4px;
203
+ left: calc(100% - 4px);
204
+ }
205
+
206
+ .jpanel-action[data-position="e-resize"] {
207
+ top: calc(50% - 4px);
208
+ left: calc(100% - 4px);
209
+ }
210
+
211
+ .jpanel-action[data-position="se-resize"] {
212
+ top: calc(100% - 4px);
213
+ left: calc(100% - 4px);
214
+ }
215
+
216
+ .jpanel-action[data-position="s-resize"] {
217
+ top: calc(100% - 4px);
218
+ left: calc(50% - 4px);
219
+ }
220
+
221
+ .jpanel-action[data-position="sw-resize"] {
222
+ top: calc(100% - 4px);
223
+ left: -4px;
224
+ }
225
+
226
+ .jpanel-action[data-position="w-resize"] {
227
+ top: calc(50% - 4px);
228
+ left: -4px;
229
+ }
230
+
231
+ .jpanel-action[data-position="nw-resize"] {
232
+ top: -4px;
233
+ left: -4px;
234
+ }
235
+
236
+ .jpanel-action[data-position="nw-resize"] {
237
+ top: -4px;
238
+ left: -4px;
239
+ }
240
+
241
+ .jpanel-action[data-action="rotate"] {
242
+ top: -50px;
243
+ left: calc(50% - 12px);
244
+ width: 24px;
245
+ height: 24px;
246
+ border: 0;
247
+ cursor: move;
248
+ background-color: transparent;
249
+ }
250
+
251
+ .jpanel-action[data-action="rotate"]:before {
252
+ content: 'refresh';
253
+ font-family: 'Material Icons';
254
+ font-size: 24px;
255
+ }
256
+
257
+ .jpanel-action[data-action="rotate"]:after {
258
+ position: absolute;
259
+ content: '';
260
+ bottom: -22px;
261
+ left: calc(50%);
262
+ width: 1px;
263
+ height: 28px;
264
+ background-color: black;
265
+ }
266
+ /** Loading */
267
+ .jloading {
268
+ position:fixed;
269
+ z-index:10001;
270
+ width:100%;
271
+ left:0;
272
+ right:0;
273
+ top:0;
274
+ bottom:0;
275
+ background-color: rgba(0,0,0,0.7);
276
+ }
277
+
278
+ .jloading::after {
279
+ content:'';
280
+ display:block;
281
+ margin:0 auto;
282
+ margin-top:50vh;
283
+ width:40px;
284
+ height:40px;
285
+ border-style:solid;
286
+ border-color:white;
287
+ border-top-color:transparent;
288
+ border-width:4px;
289
+ border-radius:50%;
290
+ -webkit-animation: jspin .8s linear infinite;
291
+ animation: jspin .8s linear infinite;
292
+ }
293
+
294
+ .jloading.jspin {
295
+ background-color:transparent;
296
+ }
297
+
298
+ .jloading.jspin::after {
299
+ margin:0 auto;
300
+ margin-top:80px;
301
+ border-color:#aaa;
302
+ border-top-color:transparent;
303
+ }
304
+
305
+ /** Animations **/
306
+ .jfade-in {
307
+ animation: jfade-in 2s forwards;
308
+ }
309
+
310
+ .jfade-out {
311
+ animation: jfade-out 1s forwards;
312
+ }
313
+
314
+ .jslide-left-in {
315
+ position: relative;
316
+ animation: jslide-left-in 0.4s forwards;
317
+ }
318
+
319
+ .jslide-left-out {
320
+ position: relative;
321
+ animation: jslide-left-out 0.4s forwards;
322
+ }
323
+
324
+ .jslide-right-in {
325
+ position: relative;
326
+ animation: jslide-right-in 0.4s forwards;
327
+ }
328
+
329
+ .jslide-right-out {
330
+ position: relative;
331
+ animation: jslide-right-out 0.4s forwards;
332
+ }
333
+
334
+ .jslide-top-in {
335
+ position: relative;
336
+ animation: jslide-top-in 0.4s forwards;
337
+ }
338
+
339
+ .jslide-top-out {
340
+ position: relative;
341
+ animation: jslide-top-out 0.2s forwards;
342
+ }
343
+
344
+ .jslide-bottom-in {
345
+ position: relative;
346
+ animation: jslide-bottom-in 0.4s forwards;
347
+ }
348
+
349
+ .jslide-bottom-out {
350
+ position: relative;
351
+ animation: jslide-bottom-out 0.1s forwards;
352
+ }
353
+
354
+ .jslide-left-in > div {
355
+ -webkit-transform: translateZ(0px);
356
+ -webkit-transform: translate3d(0,0,0);
357
+ }
358
+
359
+ .jslide-left-out > div {
360
+ -webkit-transform: translateZ(0px);
361
+ -webkit-transform: translate3d(0,0,0);
362
+ }
363
+
364
+ .jslide-right-in > div {
365
+ -webkit-transform: translateZ(0px);
366
+ -webkit-transform: translate3d(0,0,0);
367
+ }
368
+
369
+ .jslide-right-out > div {
370
+ -webkit-transform: translateZ(0px);
371
+ -webkit-transform: translate3d(0,0,0);
372
+ }
373
+
374
+ .jspin {
375
+ animation: jspin 2s infinite linear;
376
+ }
377
+
378
+ /** Fadein and Fadeout **/
379
+ @keyframes jfade-in {
380
+ 0% { opacity: 0; }
381
+ 100% { opacity: 100; }
382
+ }
383
+
384
+ @-webkit-keyframes jfade-in {
385
+ 0% { opacity: 0; }
386
+ 100% { opacity: 100; }
387
+ }
388
+
389
+ @keyframes jfade-out {
390
+ 0% { opacity: 100; }
391
+ 100% { opacity: 0; }
392
+ }
393
+
394
+ @-webkit-keyframes jfade-out {
395
+ 0% { opacity: 100; }
396
+ 100% { opacity: 0; }
397
+ }
398
+
399
+ /** Keyframes Left to Right **/
400
+ @keyframes jslide-left-in {
401
+ 0% { left: -100%; }
402
+ 100% { left: 0%; }
403
+ }
404
+
405
+ @-webkit-keyframes jslide-left-in {
406
+ 0% { left: -100%; }
407
+ 100% { left: 0%; }
408
+ }
409
+
410
+ @keyframes jslide-left-out {
411
+ 0% { left: 0%; }
412
+ 100% { left: -100%; }
413
+ }
414
+
415
+ @-webkit-keyframes jslide-left-out {
416
+ 0% { left: 0%; }
417
+ 100% { left: -100%; }
418
+ }
419
+
420
+ /** Keyframes Right to Left **/
421
+ @keyframes jslide-right-in {
422
+ 0% { left: 100%; }
423
+ 100% { left: 0%; }
424
+ }
425
+
426
+ @-webkit-keyframes jslide-right-in
427
+ {
428
+ 0% { left: 100%; }
429
+ 100% { left: 0%; }
430
+ }
431
+
432
+ @keyframes jslide-right-out {
433
+ 0% { left: 0%; }
434
+ 100% { left: 100%; }
435
+ }
436
+
437
+ @-webkit-keyframes jslide-right-out {
438
+ 0% { left: 0%; }
439
+ 100% { left: 100%; }
440
+ }
441
+
442
+ /** Keyframes Top to Bottom **/
443
+ @keyframes jslide-top-in {
444
+ 0% { transform: translateY(-100%); }
445
+ 100% { transform: translateY(0%); }
446
+ }
447
+
448
+ @-webkit-keyframes jslide-top-in {
449
+ 0% { transform: translateY(-100%); }
450
+ 100% { -webkit-transform: translateY(0%); }
451
+ }
452
+
453
+ @keyframes jslide-top-out {
454
+ 0% { transform: translateY(0%); }
455
+ 100% { transform: translateY(-100%); }
456
+ }
457
+
458
+ @-webkit-keyframes jslide-top-out {
459
+ 0% { -webkit-transform: translateY(0%); }
460
+ 100% { -webkit-transform: translateY(-100%); }
461
+ }
462
+
463
+ /** Keyframes Bottom to Top **/
464
+ @keyframes jslide-bottom-in {
465
+ 0% { transform: translateY(100%); }
466
+ 100% { transform: translateY(0%); }
467
+ }
468
+
469
+ @-webkit-keyframes jslide-bottom-in {
470
+ 0% { transform: translateY(100%); }
471
+ 100% { -webkit-transform: translateY(0%); }
472
+ }
473
+
474
+ @keyframes jslide-bottom-out {
475
+ 0% { transform: translateY(0%); }
476
+ 100% { transform: translateY(100%); }
477
+ }
478
+
479
+ @-webkit-keyframes jslide-bottom-out {
480
+ 0% { -webkit-transform: translateY(0%); }
481
+ 100% { -webkit-transform: translateY(100%); }
482
+ }
483
+
484
+ @-webkit-keyframes jspin {
485
+ from {
486
+ -webkit-transform:rotate(0deg);
487
+ }
488
+ to {
489
+ -webkit-transform:rotate(359deg);
490
+ }
491
+ }
492
+
493
+ @keyframes jspin {
494
+ from {
495
+ transform:rotate(0deg);
496
+ }
497
+ to {
498
+ transform:rotate(359deg);
499
+ }
500
+ }
501
+ .jcalendar {
502
+ position:absolute;
503
+ z-index:9000;
504
+ display:none;
505
+ box-sizing:border-box;
506
+ -webkit-touch-callout: none;
507
+ -webkit-user-select: none;
508
+ -khtml-user-select: none;
509
+ -moz-user-select: none;
510
+ -ms-user-select: none;
511
+ user-select: none;
512
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
513
+ -webkit-tap-highlight-color: transparent;
514
+ min-width:280px;
515
+ }
516
+
517
+ .jcalendar.jcalendar-focus {
518
+ display:block;
519
+ }
520
+
521
+ .jcalendar .jcalendar-backdrop {
522
+ position:fixed;
523
+ top:0px;
524
+ left:0px;
525
+ z-index:9000;
526
+ min-width:100%;
527
+ min-height:100%;
528
+ background-color:rgba(0,0,0,0.5);
529
+ border:0px;
530
+ padding:0px;
531
+ display:none;
532
+ }
533
+
534
+ .jcalendar .jcalendar-container {
535
+ position:relative;
536
+ box-sizing:border-box;
537
+ }
538
+
539
+ .jcalendar .jcalendar-content {
540
+ position:absolute;
541
+ z-index:9001;
542
+ -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
543
+ -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
544
+ box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
545
+ background-color:#fff;
546
+ }
547
+
548
+ .jcalendar-header {
549
+ text-align:center;
550
+ }
551
+
552
+ .jcalendar-header span {
553
+ margin-right:4px;
554
+ font-size:1.1em;
555
+ font-weight:bold;
556
+ }
557
+
558
+ .jcalendar-prev {
559
+ cursor:pointer;
560
+ background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z%27 fill=%27%23000%27 /%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3C/svg%3E");
561
+ background-position:center;
562
+ background-repeat:no-repeat;
563
+ }
564
+
565
+ .jcalendar-next {
566
+ cursor:pointer;
567
+ background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z%27 fill=%27%23000%27 /%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3C/svg%3E");
568
+ background-position:center;
569
+ background-repeat:no-repeat;
570
+ }
571
+
572
+ .jcalendar-weekday {
573
+ font-weight: 600;
574
+ background-color: #fcfcfc;
575
+ padding: 14px;
576
+ }
577
+
578
+ .jcalendar-table {
579
+ padding: 10px;
580
+ }
581
+
582
+ .jcalendar-table > table {
583
+ width:100%;
584
+ background-color:#fff;
585
+ }
586
+
587
+ .jcalendar-table > table > thead {
588
+ cursor: pointer;
589
+ }
590
+
591
+ .jcalendar-table thead td {
592
+ padding: 10px;
593
+ height: 40px;
594
+ }
595
+
596
+ .jcalendar-table > table > tbody > tr {
597
+ height: 34px;
598
+ }
599
+
600
+ .jcalendar-table > table > tbody td {
601
+ box-sizing:border-box;
602
+ cursor:pointer;
603
+ padding:9px;
604
+ font-size:0.9em;
605
+ }
606
+
607
+ .jcalendar-table tfoot td {
608
+ padding:10px;
609
+ }
610
+
611
+ .jcalendar-months td, .jcalendar-years td {
612
+ height:24px;
613
+ }
614
+
615
+ .jcalendar-input {
616
+ padding-right:18px;
617
+ background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27gray%27%3E%3Cpath d=%27M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");
618
+ background-position:top 50% right 5px;
619
+ background-repeat:no-repeat;
620
+ box-sizing: border-box;
621
+ }
622
+
623
+ .jcalendar-done {
624
+ -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
625
+ -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
626
+ box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
627
+ background-color:#fff;
628
+ }
629
+
630
+ .jcalendar-update {
631
+ border:1px solid #ccc;
632
+ background-color:#fff;
633
+ border-radius:4px;
634
+ padding:5px;
635
+ width:100%;
636
+ }
637
+
638
+ .jcalendar-container select {
639
+ width:55px;
640
+ display:inline-block;
641
+ border:0px;
642
+ padding:4px;
643
+ text-align:center;
644
+ font-size:1.1em;
645
+ user-select:none;
646
+ margin-right:10px;
647
+ }
648
+
649
+ .jcalendar-container select:first-child {
650
+ margin-right:2px;
651
+ }
652
+
653
+ .jcalendar-selected {
654
+ background-color:#eee;
655
+ }
656
+
657
+ .jcalendar-reset, .jcalendar-confirm {
658
+ text-transform:uppercase;
659
+ cursor:pointer;
660
+ color: var(--jactive-color);
661
+ }
662
+
663
+ .jcalendar-controls {
664
+ padding:15px;
665
+
666
+ -webkit-box-sizing: border-box;
667
+ box-sizing: border-box;
668
+ vertical-align:middle;
669
+
670
+ display: -webkit-box;
671
+ display: -moz-box;
672
+ display: -ms-flexbox;
673
+ display: -webkit-flex;
674
+ display: flex;
675
+
676
+ -webkit-flex-flow: row wrap;
677
+ justify-content: space-between;
678
+ align-items:center;
679
+ }
680
+
681
+ .jcalendar-controls div {
682
+ font-weight:bold;
683
+ }
684
+
685
+ .jcalendar-fullsize {
686
+ position:fixed;
687
+ width:100%;
688
+ top:0px;
689
+ left:0px;
690
+ }
691
+
692
+ .jcalendar-fullsize .jcalendar-content
693
+ {
694
+ position:fixed;
695
+ width:100%;
696
+ left:0px;
697
+ bottom:0px;
698
+ }
699
+
700
+ .jcalendar-focus.jcalendar-fullsize .jcalendar-backdrop {
701
+ display:block;
702
+ }
703
+
704
+ .jcalendar-sunday {
705
+ color: red;
706
+ }
707
+ .jcalendar-disabled {
708
+ color: #ccc;
709
+ }
710
+
711
+ .jcalendar-time {
712
+ display:flex;
713
+ }
714
+
715
+ .jcalendar_warning {
716
+ color: red;
717
+ }
718
+
719
+ .jcalendar-hide-controls .jcalendar-controls {
720
+ display: none;
721
+ }
722
+
723
+ .jcolor {
724
+ display: none;
725
+ outline: none;
726
+ position: absolute;
727
+ }
728
+
729
+ .jcolor-input {
730
+ padding-right: 24px !important;
731
+ background: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27black%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z%27/%3E%3C/svg%3E") top 50% right 4px no-repeat, content-box;
732
+ box-sizing: border-box;
733
+ }
734
+
735
+ .jcolor-content {
736
+ position: absolute;
737
+ z-index: 9000;
738
+ user-select: none;
739
+ -webkit-font-smoothing: antialiased;
740
+ font-size: .875rem;
741
+ letter-spacing: .2px;
742
+ -webkit-border-radius: 4px;
743
+ border-radius: 4px;
744
+ -webkit-box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
745
+ box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
746
+ background-color:#fff;
747
+ box-sizing: border-box;
748
+ min-width: 260px;
749
+ }
750
+
751
+ .jmodal .jcolor-content {
752
+ position: fixed;
753
+ }
754
+
755
+ .jcolor-controls {
756
+ display: flex;
757
+ padding: 10px;
758
+ border-bottom: 1px solid #eee;
759
+ margin-bottom: 5px;
760
+ }
761
+
762
+ .jcolor-controls div {
763
+ flex: 1;
764
+ font-size: 1em;
765
+ color: var(--jactive-color);
766
+ text-transform: uppercase;
767
+ font-weight: bold;
768
+ box-sizing: border-box;
769
+ }
770
+
771
+ .jcolor-content table {
772
+ border-collapse: collapse;
773
+ box-sizing: border-box;
774
+ }
775
+
776
+ .jcolor-focus {
777
+ display:block;
778
+ }
779
+
780
+ .jcolor table {
781
+ width:100%;
782
+ height:100%;
783
+ min-height: 160px;
784
+ }
785
+
786
+ .jcolor td {
787
+ padding: 7px;
788
+ }
789
+
790
+ .jcolor-selected {
791
+ background-repeat:no-repeat;
792
+ background-size: 16px;
793
+ background-position: center;
794
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z%27 fill=%27white%27/%3E%3C/svg%3E");
795
+ }
796
+
797
+ .jcolor-fullscreen {
798
+ position: fixed;
799
+ left: 0px;
800
+ bottom: 0px;
801
+ width:100%;
802
+ max-height: 290px;
803
+ border-radius: 0px;
804
+ box-sizing: border-box;
805
+ }
806
+
807
+ .jcolor-fullscreen .jcolor-controls {
808
+ padding: 15px;
809
+ -webkit-box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
810
+ -moz-box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
811
+ box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
812
+ }
813
+
814
+ .jcolor-reset {
815
+ text-align: left;
816
+ }
817
+
818
+ .jcolor-close {
819
+ text-align: right;
820
+ }
821
+
822
+ .jcolor-backdrop {
823
+ position: fixed;
824
+ top: 0px;
825
+ left: 0px;
826
+ min-width: 100%;
827
+ min-height: 100%;
828
+ background-color: rgba(0,0,0,0.5);
829
+ border: 0px;
830
+ padding: 0px;
831
+ z-index: 8000;
832
+ display: none;
833
+
834
+ -webkit-touch-callout: none; /* iOS Safari */
835
+ -webkit-user-select: none; /* Safari */
836
+ -khtml-user-select: none; /* Konqueror HTML */
837
+ -moz-user-select: none; /* Firefox */
838
+ -ms-user-select: none; /* Internet Explorer/Edge */
839
+ user-select: none; /* Non-prefixed version, currently
840
+ supported by Chrome and Opera */
841
+ }
842
+
843
+ .jcolor-content .jtabs-content {
844
+ padding: 7px;
845
+ }
846
+
847
+ .jcolor-grid tr:first-child > td:first-child {
848
+ border-top-left-radius: 3px;
849
+ }
850
+
851
+ .jcolor-grid tr:first-child > td:last-child {
852
+ border-top-right-radius: 3px;
853
+ }
854
+
855
+ .jcolor-grid tr:last-child > td:first-child {
856
+ border-bottom-left-radius: 3px;
857
+ }
858
+
859
+ .jcolor-grid tr:last-child > td:last-child {
860
+ border-bottom-right-radius: 3px;
861
+ }
862
+
863
+ .jcolor-hsl {
864
+ box-sizing: border-box;
865
+ }
866
+
867
+ .jcolor-hsl > div {
868
+ height: 100%;
869
+ position: relative;
870
+ }
871
+
872
+ .jcolor-hsl canvas {
873
+ display: block;
874
+ border-radius: 4px;
875
+ -webkit-user-drag: none;
876
+ }
877
+
878
+ .jcolor-point {
879
+ height: 5px;
880
+ width: 5px;
881
+ background-color: #000;
882
+ position: absolute;
883
+ top: 50%;
884
+ left: 50%;
885
+ transform: translate(-50%, -50%);
886
+ border-radius: 50%;
887
+ }
888
+
889
+ .jcolor-sliders {
890
+ padding: 10px 20px 10px 10px;
891
+ }
892
+
893
+ .jcolor-sliders input {
894
+ -webkit-appearance: none;
895
+
896
+ height: 12px;
897
+ width: 80%;
898
+
899
+ background: #d3d3d3;
900
+ opacity: 1;
901
+
902
+ border-radius: 30px;
903
+ outline: none;
904
+ }
905
+
906
+ .jcolor-sliders-input-subcontainer {
907
+ display: flex;
908
+ justify-content: space-between;
909
+ align-items: center;
910
+ }
911
+
912
+ .jcolor-sliders-input-container {
913
+ margin-top: 4px;
914
+ line-height: 0.8em;
915
+ text-align: left;
916
+ }
917
+
918
+ .jcolor-sliders-input-container > label {
919
+ font-size: 10px;
920
+ text-transform: uppercase;
921
+ color: #bbbbbd;
922
+ }
923
+
924
+ .jcolor-sliders-input-subcontainer > input {
925
+ border: 0px;
926
+ padding: 1px;
927
+ }
928
+
929
+ .jcolor-sliders-input-container input::-webkit-slider-thumb {
930
+ -webkit-appearance: none;
931
+ height: 12px;
932
+ width: 12px;
933
+ border-radius: 50%;
934
+ background: #000;
935
+ border: 2px solid #fff;
936
+ cursor: pointer;
937
+ }
938
+
939
+ .jcolor-sliders-input-container input::-moz-range-thumb {
940
+ -webkit-appearance: none;
941
+ height: 12px;
942
+ width: 12px;
943
+ border-radius: 50%;
944
+ background: #000;
945
+ border: 2px solid #fff;
946
+ cursor: pointer;
947
+ }
948
+
949
+ .jcolor-sliders-final-color {
950
+ padding: 6px;
951
+ user-select: all;
952
+ margin-top: 10px;
953
+ text-align: center;
954
+ }
955
+
956
+ .jcolor-sliders-final-color > div:nth-child(2) {
957
+ width: 71px;
958
+ text-transform: uppercase;
959
+ }
960
+
961
+ .jcolor .jtabs .jtabs-headers-container .jtabs-controls {
962
+ display: none !important;
963
+ }
964
+
965
+ .jcolor .jtabs .jtabs-headers-container {
966
+ display: flex !important;
967
+ justify-content: center;
968
+ padding: 4px;
969
+ }
970
+
971
+ .jcolor .jtabs-headers > div:not(.jtabs-border) {
972
+ padding: 2px !important;
973
+ padding-left: 15px !important;
974
+ padding-right: 15px !important;
975
+ font-size: 0.8em;
976
+ }
977
+ .jcontextmenu {
978
+ position:fixed;
979
+ z-index:10000;
980
+ background:#fff;
981
+ color: #555;
982
+ font-size: 11px;
983
+ -webkit-user-select: none;
984
+ -moz-user-select: none;
985
+ user-select: none;
986
+ -webkit-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
987
+ -moz-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
988
+ box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
989
+ border: 1px solid #C6C6C6;
990
+ padding: 0px;
991
+ padding-top:4px;
992
+ padding-bottom:4px;
993
+ margin:0px;
994
+ outline:none;
995
+ display:none;
996
+ }
997
+
998
+ .jcontextmenu.jcontextmenu-focus {
999
+ display:inline-block;
1000
+ }
1001
+
1002
+ .jcontextmenu > div {
1003
+ box-sizing: border-box;
1004
+ display: flex;
1005
+ padding: 8px 8px 8px 32px;
1006
+ width: 250px;
1007
+ position: relative;
1008
+ cursor: default;
1009
+ font-size: 11px;
1010
+ font-family:sans-serif;
1011
+ text-align: left;
1012
+ -webkit-box-align: center;
1013
+ align-items: center;
1014
+ }
1015
+
1016
+ .jcontextmenu > div::before {
1017
+ content: attr(data-icon);
1018
+ font-family: 'Material Icons' !important;
1019
+ font-size: 15px;
1020
+ position: absolute;
1021
+ left: 9px;
1022
+ line-height: 24px;
1023
+ }
1024
+
1025
+ .jcontextmenu.symbols > div::before {
1026
+ font-family: 'Material Symbols Outlined' !important;
1027
+ }
1028
+
1029
+ .jcontextmenu > div.header {
1030
+ display: none;
1031
+ }
1032
+
1033
+ .jcontextmenu > div a {
1034
+ color: #555;
1035
+ text-decoration: none;
1036
+ flex: 1;
1037
+ cursor: pointer;
1038
+ }
1039
+
1040
+ .jcontextmenu > div span {
1041
+ margin-right: 10px;
1042
+ font-size: 0.9em;
1043
+ }
1044
+
1045
+ .jcontextmenu .jcontextmenu-disabled a {
1046
+ color: #ccc;
1047
+ }
1048
+
1049
+ .jcontextmenu .jcontextmenu-disabled::before {
1050
+ color: #ccc;
1051
+ }
1052
+
1053
+ .jcontextmenu > div:hover {
1054
+ background: #ebebeb;
1055
+ }
1056
+
1057
+ .jcontextmenu hr {
1058
+ border: 1px solid #e9e9e9;
1059
+ border-bottom: 0;
1060
+ margin-top:5px;
1061
+ margin-bottom:5px;
1062
+ }
1063
+
1064
+ .jcontextmenu > hr:hover {
1065
+ background: transparent;
1066
+ }
1067
+
1068
+ .jcontextmenu .jcontextmenu {
1069
+ top: 4px;
1070
+ left: 99%;
1071
+ opacity: 0;
1072
+ position: absolute;
1073
+ }
1074
+
1075
+ .jcontextmenu > div:hover > .jcontextmenu {
1076
+ display: block;
1077
+ opacity: 1;
1078
+ -webkit-transform: translate(0, 0) scale(1);
1079
+ transform: translate(0, 0) scale(1);
1080
+ pointer-events: auto;
1081
+ }
1082
+
1083
+ @media only screen and (max-width: 420px) {
1084
+ .jcontextmenu {
1085
+ top: initial !important;
1086
+ left: 0px !important;
1087
+ bottom: 0px !important;
1088
+ width: 100vw;
1089
+ height: 260px;
1090
+ overflow: scroll;
1091
+ animation: jslide-bottom-in 0.4s forwards;
1092
+ padding-top: 0px;
1093
+ }
1094
+ .jcontextmenu div {
1095
+ width: 100%;
1096
+ text-align: center;
1097
+ border-bottom: 1px solid #ccc;
1098
+ padding: 15px;
1099
+ }
1100
+ .jcontextmenu > div.header {
1101
+ background-color: lightgray;
1102
+ padding: 5px;
1103
+ top: 0px;
1104
+ position: sticky;
1105
+ z-index: 2;
1106
+ }
1107
+ .jcontextmenu > div.header > a.title {
1108
+ text-align: left;
1109
+ }
1110
+
1111
+ .jcontextmenu > div.header > a.close {
1112
+ text-align: right;
1113
+ }
1114
+ .jcontextmenu a {
1115
+ font-size: 1.4em;
1116
+ text-transform: uppercase;
1117
+ }
1118
+ .jcontextmenu span {
1119
+ display: none;
1120
+ }
1121
+ .jcontextmenu span {
1122
+ display: none;
1123
+ }
1124
+ .jcontextmenu hr {
1125
+ display: none;
1126
+ }
1127
+ }
1128
+
1129
+ .jdropdown {
1130
+ cursor:pointer;
1131
+ -webkit-touch-callout: none;
1132
+ -webkit-user-select: none;
1133
+ -khtml-user-select: none;
1134
+ -moz-user-select: none;
1135
+ -ms-user-select: none;
1136
+ user-select: none;
1137
+ box-sizing: border-box;
1138
+ background:#fff;
1139
+ -webkit-tap-highlight-color: transparent;
1140
+ display: inline-block;
1141
+ }
1142
+
1143
+ .jdropdown-backdrop {
1144
+ position:fixed;
1145
+ top:0px;
1146
+ left:0px;
1147
+ min-width:100%;
1148
+ min-height:100%;
1149
+ background-color:rgba(0,0,0,0.5);
1150
+ border:0px;
1151
+ padding:0px;
1152
+ z-index:8000;
1153
+ display:none;
1154
+ }
1155
+
1156
+ .jdropdown[disabled] {
1157
+ opacity: 0.5;
1158
+ pointer-events: none;
1159
+ }
1160
+
1161
+ .jdropdown-focus {
1162
+ position:relative;
1163
+ }
1164
+
1165
+ .jdropdown-focus .jdropdown-container {
1166
+ transform: translate3d(0,0,0);
1167
+ }
1168
+
1169
+ .jdropdown-default.jdropdown-focus .jdropdown-header {
1170
+ outline:auto 5px -webkit-focus-ring-color;
1171
+ }
1172
+
1173
+ .jdropdown-default.jdropdown-focus .jdropdown-header.jdropdown-add {
1174
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2724px%27 height=%2724px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z%27/%3E%3C/svg%3E");
1175
+ }
1176
+
1177
+ .jdropdown-container-header {
1178
+ padding:0px;
1179
+ margin:0px;
1180
+ position:relative;
1181
+ box-sizing: border-box;
1182
+ }
1183
+
1184
+ .jdropdown-header {
1185
+ width:100%;
1186
+ appearance: none;
1187
+ background-repeat: no-repeat;
1188
+ background-position:top 50% right 5px;
1189
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3Cpath d=%27M7 10l5 5 5-5H7z%27 fill=%27gray%27/%3E%3C/svg%3E");
1190
+ text-overflow: ellipsis;
1191
+ cursor:pointer;
1192
+ box-sizing: border-box;
1193
+ -webkit-appearance: none;
1194
+ -moz-appearance: none;
1195
+ padding-right:30px !important;
1196
+ }
1197
+
1198
+ .jdropdown-insert-button {
1199
+ font-size: 1.4em;
1200
+ text-transform: uppercase;
1201
+ position:absolute;
1202
+ right: 30px;
1203
+ top: 4px;
1204
+ display:none;
1205
+ }
1206
+
1207
+ .jdropdown-container {
1208
+ min-width: inherit;
1209
+ transform: translate3d(-10000px,0,0);
1210
+ position:absolute;
1211
+ z-index:9001;
1212
+ }
1213
+
1214
+ .jdropdown-close {
1215
+ display:none;
1216
+ font-size:1em;
1217
+ color: var(--jactive-color);
1218
+ text-transform:uppercase;
1219
+ text-align:right;
1220
+ padding:12px;
1221
+ font-weight:bold;
1222
+ }
1223
+
1224
+ .jdropdown-content {
1225
+ min-width:inherit;
1226
+ margin:0px;
1227
+ box-sizing:border-box;
1228
+ }
1229
+
1230
+ .jdropdown-content:empty {
1231
+ }
1232
+
1233
+ .jdropdown-item {
1234
+ white-space: nowrap;
1235
+ text-align: left;
1236
+ text-overflow: ellipsis;
1237
+ overflow-x: hidden;
1238
+ color: #000;
1239
+ display: flex;
1240
+ align-items: center;
1241
+ }
1242
+
1243
+ .jdropdown-description {
1244
+ text-overflow: ellipsis;
1245
+ overflow: hidden;
1246
+ line-height: 1.5em;
1247
+ }
1248
+
1249
+ .jdropdown-image {
1250
+ margin-right:10px;
1251
+ width: 32px;
1252
+ height: 32px;
1253
+ border-radius:20px;
1254
+ }
1255
+
1256
+ .jdropdown-image-small {
1257
+ width:24px;
1258
+ height:24px;
1259
+ }
1260
+
1261
+ .jdropdown-icon {
1262
+ margin-right:10px;
1263
+ font-size: 30px;
1264
+ margin-left: -5px;
1265
+ }
1266
+
1267
+ .jdropdown-icon-small {
1268
+ font-size: 24px;
1269
+ margin-left: 0px;
1270
+ }
1271
+
1272
+ .jdropdown-title {
1273
+ font-size: 0.7em;
1274
+ text-overflow: ellipsis;
1275
+ overflow-x: hidden;
1276
+ display: block;
1277
+ }
1278
+
1279
+ /** Default visual **/
1280
+
1281
+ .jdropdown-default .jdropdown-header {
1282
+ border:1px solid #ccc;
1283
+ padding:5px;
1284
+ padding-left:10px;
1285
+ padding-right:16px;
1286
+ }
1287
+
1288
+ .jdropdown-default .jdropdown-container {
1289
+ background-color:#fff;
1290
+ }
1291
+
1292
+ .jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-header {
1293
+ padding-right:50px;
1294
+ }
1295
+
1296
+ .jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-insert-button {
1297
+ display:block;
1298
+ }
1299
+
1300
+ .jdropdown-default .jdropdown-content
1301
+ {
1302
+ min-width:inherit;
1303
+ border:1px solid #8fb1e3;
1304
+ margin:0px;
1305
+ background-color:#fff;
1306
+ box-sizing:border-box;
1307
+ min-height:10px;
1308
+ max-height:215px;
1309
+ overflow-y:auto;
1310
+ }
1311
+
1312
+ .jdropdown-default .jdropdown-item
1313
+ {
1314
+ padding:4px;
1315
+ padding-left:8px;
1316
+ padding-right:40px;
1317
+ }
1318
+
1319
+ .jdropdown-default .jdropdown-item:hover
1320
+ {
1321
+ background-color:#1f93ff;
1322
+ color:#fff;
1323
+ }
1324
+
1325
+ .jdropdown-default .jdropdown-cursor
1326
+ {
1327
+ background-color:#eee;
1328
+ }
1329
+
1330
+ .jdropdown-default .jdropdown-selected
1331
+ {
1332
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=);
1333
+ background-repeat:no-repeat;
1334
+ background-position:top 50% right 5px;
1335
+ background-color:#1f93ff;
1336
+ color:#fff;
1337
+ }
1338
+
1339
+ .jdropdown-default .jdropdown-group {
1340
+ margin-top:5px;
1341
+ }
1342
+
1343
+ .jdropdown-default .jdropdown-group .jdropdown-item {
1344
+ padding-left:16px;
1345
+ }
1346
+
1347
+ .jdropdown-default .jdropdown-group-name {
1348
+ padding-left: 8px;
1349
+ font-weight: bold;
1350
+ text-align: left;
1351
+ }
1352
+
1353
+ .jdropdown-default .jdropdown-reset_ {
1354
+ content:'x';
1355
+ position:absolute;
1356
+ top:0;
1357
+ right:0;
1358
+ margin:5px;
1359
+ margin-right:10px;
1360
+ font-size:12px;
1361
+ width:12px;
1362
+ cursor:pointer;
1363
+ text-shadow: 0px 0px 5px #fff;
1364
+ display:none;
1365
+ line-height: 1.8em;
1366
+ }
1367
+
1368
+ .jdropdown-default.jdropdown-focus .jdropdown-reset_ {
1369
+ display:block;
1370
+ }
1371
+
1372
+ /** Default render for mobile **/
1373
+
1374
+ .jdropdown-picker.jdropdown-focus .jdropdown-backdrop {
1375
+ display:block;
1376
+ }
1377
+
1378
+ .jdropdown-picker .jdropdown-header {
1379
+ outline: none;
1380
+ }
1381
+
1382
+ .jdropdown-picker .jdropdown-container
1383
+ {
1384
+ position:fixed;
1385
+ bottom:0px;
1386
+ left:0px;
1387
+ border-bottom:1px solid #e6e6e8;
1388
+ width:100%;
1389
+ background-color:#fff;
1390
+ box-sizing: border-box;
1391
+ }
1392
+
1393
+ .jdropdown-picker .jdropdown-close
1394
+ {
1395
+ -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1396
+ -moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1397
+ box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1398
+ background-color:#fff;
1399
+ display:block;
1400
+ }
1401
+
1402
+ .jdropdown-picker .jdropdown-content
1403
+ {
1404
+ overflow-y:scroll;
1405
+ height:280px;
1406
+ background-color:#fafafa;
1407
+ border-top:1px solid #e6e6e8;
1408
+ }
1409
+
1410
+ .jdropdown-picker .jdropdown-group-name
1411
+ {
1412
+ font-size: 1em;
1413
+ text-transform: uppercase;
1414
+ padding-top:10px;
1415
+ padding-bottom:10px;
1416
+ display: block;
1417
+ border-bottom: 1px solid #e6e6e8;
1418
+ padding-left:20px;
1419
+ padding-right:20px;
1420
+ text-align:center;
1421
+ font-weight:bold;
1422
+ }
1423
+
1424
+ .jdropdown-picker .jdropdown-item
1425
+ {
1426
+ font-size: 1em;
1427
+ text-transform: uppercase;
1428
+ padding-top:10px;
1429
+ padding-bottom:10px;
1430
+ border-bottom: 1px solid #e6e6e8;
1431
+ padding-left:20px;
1432
+ padding-right:20px;
1433
+ }
1434
+
1435
+ .jdropdown-picker .jdropdown-selected
1436
+ {
1437
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=);
1438
+ background-repeat:no-repeat;
1439
+ background-position:top 50% right 15px;
1440
+ background-color:#1f93ff;
1441
+ color:#fff;
1442
+ }
1443
+
1444
+ .jdropdown-picker .jdropdown-cursor
1445
+ {
1446
+ background-color:#1f93ff;
1447
+ color:#fff;
1448
+ }
1449
+
1450
+ /** Default render for mobile searchbar **/
1451
+
1452
+ .jdropdown-searchbar.jdropdown-focus
1453
+ {
1454
+ position:fixed;
1455
+ top:0px !important;
1456
+ left:0px !important;
1457
+ width:100% !important;
1458
+ height:100% !important;
1459
+ background-color:#fafafa;
1460
+ padding:0px;
1461
+ z-index:9001;
1462
+ overflow-y:scroll;
1463
+ will-change: scroll-position;
1464
+ -webkit-overflow-scrolling: touch;
1465
+ }
1466
+
1467
+ .jdropdown-searchbar.jdropdown-focus .jdropdown-container-header
1468
+ {
1469
+ position: fixed;
1470
+ top: 0px;
1471
+ left: 0px;
1472
+ z-index: 9002;
1473
+ padding: 6px;
1474
+ background-color:#fff;
1475
+ box-shadow: 0 1px 2px rgba(0,0,0,.1);
1476
+ width: 100%;
1477
+ height: 40px;
1478
+ }
1479
+
1480
+ .jdropdown-searchbar.jdropdown-focus .jdropdown-header
1481
+ {
1482
+ border: 0px !important;
1483
+ background-position-x: 0% !important;
1484
+ background-position-y: 40% !important;
1485
+ background-repeat: no-repeat;
1486
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTUuNSAxNGgtLjc5bC0uMjgtLjI3QzE1LjQxIDEyLjU5IDE2IDExLjExIDE2IDkuNSAxNiA1LjkxIDEzLjA5IDMgOS41IDNTMyA1LjkxIDMgOS41IDUuOTEgMTYgOS41IDE2YzEuNjEgMCAzLjA5LS41OSA0LjIzLTEuNTdsLjI3LjI4di43OWw1IDQuOTlMMjAuNDkgMTlsLTQuOTktNXptLTYgMEM3LjAxIDE0IDUgMTEuOTkgNSA5LjVTNy4wMSA1IDkuNSA1IDE0IDcuMDEgMTQgOS41IDExLjk5IDE0IDkuNSAxNHoiIGZpbGw9IiNlNmU2ZTgiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+);
1487
+ padding-left: 30px !important;
1488
+ padding-right: 60px !important;
1489
+ }
1490
+
1491
+ .jdropdown-searchbar.jdropdown-focus .jdropdown-close
1492
+ {
1493
+ display:block;
1494
+ }
1495
+
1496
+ .jdropdown-searchbar .jdropdown-header {
1497
+ outline: none;
1498
+ }
1499
+
1500
+ .jdropdown-searchbar .jdropdown-container
1501
+ {
1502
+ margin-top: 40px;
1503
+ width:100%;
1504
+ }
1505
+
1506
+ .jdropdown-searchbar .jdropdown-close
1507
+ {
1508
+ position:fixed;
1509
+ top:0px;
1510
+ right:0px;
1511
+ }
1512
+
1513
+ .jdropdown-searchbar .jdropdown-content
1514
+ {
1515
+ margin-top:10px;
1516
+ }
1517
+
1518
+ .jdropdown-searchbar .jdropdown-group
1519
+ {
1520
+ margin-top:10px;
1521
+ margin-bottom:15px;
1522
+ background-color:#fff;
1523
+ }
1524
+
1525
+ .jdropdown-searchbar .jdropdown-group-name
1526
+ {
1527
+ border-top: 1px solid #e6e6e8;
1528
+ border-bottom: 1px solid #e6e6e8;
1529
+ padding:10px;
1530
+ padding-left:12px;
1531
+ font-weight:bold;
1532
+ }
1533
+
1534
+ .jdropdown-searchbar .jdropdown-group-arrow
1535
+ {
1536
+ float:right;
1537
+ width:24px;
1538
+ height:24px;
1539
+ background-repeat:no-repeat;
1540
+ }
1541
+
1542
+ .jdropdown-searchbar .jdropdown-group-arrow-down
1543
+ {
1544
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNNy40MSA4LjU5TDEyIDEzLjE3bDQuNTktNC41OEwxOCAxMGwtNiA2LTYtNiAxLjQxLTEuNDF6Ii8+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgwVjB6Ii8+PC9zdmc+);
1545
+ }
1546
+
1547
+ .jdropdown-searchbar .jdropdown-group-arrow-up
1548
+ {
1549
+ background-image: url(data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTcuNDEgMTUuNDFMMTIgMTAuODNsNC41OSA0LjU4TDE4IDE0bC02LTYtNiA2eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);
1550
+ }
1551
+
1552
+ .jdropdown-searchbar .jdropdown-item
1553
+ {
1554
+ padding-top:10px;
1555
+ padding-bottom:10px;
1556
+ border-bottom: 1px solid #e6e6e8;
1557
+ padding-left:15px;
1558
+ padding-right:40px;
1559
+ background-color:#fff;
1560
+ font-size:0.9em;
1561
+ }
1562
+
1563
+ .jdropdown-searchbar .jdropdown-description {
1564
+ text-overflow: ellipsis;
1565
+ overflow: hidden;
1566
+ max-width: calc(100% - 20px);
1567
+ }
1568
+
1569
+ .jdropdown-searchbar .jdropdown-content > .jdropdown-item:first-child
1570
+ {
1571
+ border-top: 1px solid #e6e6e8;
1572
+ }
1573
+
1574
+ .jdropdown-searchbar .jdropdown-selected
1575
+ {
1576
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==);
1577
+ background-repeat:no-repeat;
1578
+ background-position:top 50% right 15px;
1579
+ }
1580
+
1581
+ /** List render **/
1582
+
1583
+ .jdropdown-list
1584
+ {
1585
+ }
1586
+
1587
+ .jdropdown-list .jdropdown-container
1588
+ {
1589
+ display:block;
1590
+ }
1591
+
1592
+ .jdropdown-list .jdropdown-header
1593
+ {
1594
+ display:none;
1595
+ }
1596
+
1597
+ .jdropdown-list .jdropdown-group
1598
+ {
1599
+ background-color:#fff;
1600
+ }
1601
+
1602
+ .jdropdown-list .jdropdown-group-name
1603
+ {
1604
+ border-bottom: 1px solid #e6e6e8;
1605
+ padding-top:10px;
1606
+ padding-bottom:10px;
1607
+ font-weight:bold;
1608
+ }
1609
+
1610
+ .jdropdown-list .jdropdown-item
1611
+ {
1612
+ padding-top:10px;
1613
+ padding-bottom:10px;
1614
+ border-bottom: 1px solid #e6e6e8;
1615
+ padding-left:10px;
1616
+ padding-right:40px;
1617
+ background-color:#fff;
1618
+ }
1619
+
1620
+ .jdropdown-list .jdropdown-selected
1621
+ {
1622
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==);
1623
+ background-repeat:no-repeat;
1624
+ background-position:top 50% right 10px;
1625
+ }
1626
+
1627
+ @media only screen and (max-width : 800px)
1628
+ {
1629
+ .jdropdown-list {
1630
+ width:100% !important;
1631
+ border:0px;
1632
+ padding:0px;
1633
+ }
1634
+
1635
+ .jdropdown-list .jdropdown-container {
1636
+ min-width:100%;
1637
+ }
1638
+
1639
+ .jdropdown-searchbar.jdropdown-focus .jdropdown-description {
1640
+ text-transform: uppercase;
1641
+ }
1642
+ }
1643
+
1644
+ .app .jdropdown-item {
1645
+ text-transform:uppercase;
1646
+ }
1647
+
1648
+ .jdropdown-create-container {
1649
+ margin: 10px;
1650
+ border: 1px solid #ccc;
1651
+ border-radius: 2px;
1652
+ padding: 6px;
1653
+ }
1654
+
1655
+ .jdropdown-color {
1656
+ background-color: #fff;
1657
+ border: 1px solid transparent;
1658
+ border-radius: 12px;
1659
+ width: 12px;
1660
+ height: 12px;
1661
+ margin-right: 6px;
1662
+ }
1663
+
1664
+ .jdropdown-item[data-disabled] {
1665
+ opacity: 0.5;
1666
+ pointer-events: none;
1667
+ }
1668
+ .jeditor-container {
1669
+ border:1px solid #ccc;
1670
+ box-sizing: border-box;
1671
+ }
1672
+
1673
+ .jeditor-container.with-margin {
1674
+ background-color: #f2f2f2;
1675
+ max-width: 1200px;
1676
+ }
1677
+
1678
+ .jeditor-dragging {
1679
+ border:1px dashed #000;
1680
+ }
1681
+
1682
+ .jeditor {
1683
+ outline:none;
1684
+ word-break: break-word;
1685
+ }
1686
+
1687
+ .jeditor-container.with-margin .jeditor {
1688
+ background-color: #fff;
1689
+ margin: 80px;
1690
+ min-height: 800px;
1691
+ padding: 80px;
1692
+ max-width: 800px;
1693
+ }
1694
+
1695
+ .jeditor[data-placeholder]:empty:before {
1696
+ content: attr(data-placeholder);
1697
+ color: lightgray;
1698
+ }
1699
+
1700
+ /** Snippet **/
1701
+
1702
+ .jsnippet {
1703
+ margin-top:15px;
1704
+ cursor:pointer;
1705
+ border: 1px solid #ccc;
1706
+ position:relative;
1707
+ }
1708
+
1709
+ .jsnippet:focus {
1710
+ outline: none;
1711
+ }
1712
+
1713
+ .jsnippet img {
1714
+ width:100%;
1715
+ }
1716
+
1717
+ .jsnippet .jsnippet-title {
1718
+ padding:15px;
1719
+ font-size:1.4em;
1720
+ }
1721
+
1722
+ .jsnippet .jsnippet-description {
1723
+ padding-left:15px;
1724
+ padding-right:15px;
1725
+ font-size:1em;
1726
+ }
1727
+
1728
+ .jsnippet .jsnippet-host {
1729
+ padding:15px;
1730
+ text-transform:uppercase;
1731
+ font-size:0.8em;
1732
+ color:#777;
1733
+ text-align:right;
1734
+ }
1735
+
1736
+ .jsnippet .jsnippet-url {
1737
+ display:none;
1738
+ }
1739
+
1740
+ .jeditor .jsnippet:after {
1741
+ content: 'close';
1742
+ font-family: 'Material icons';
1743
+ font-size: 24px;
1744
+ width: 24px;
1745
+ height: 24px;
1746
+ line-height: 24px;
1747
+ cursor: pointer;
1748
+ text-shadow: 0px 0px 2px #fff;
1749
+ position: absolute;
1750
+ top: 12px;
1751
+ right: 12px;
1752
+ }
1753
+
1754
+ .jsnippet * {
1755
+ -webkit-user-select: none;
1756
+ -khtml-user-select: none;
1757
+ -moz-user-select: none;
1758
+ -o-user-select: none;
1759
+ user-select: none;
1760
+
1761
+ -webkit-user-drag: none;
1762
+ -khtml-user-drag: none;
1763
+ -moz-user-drag: none;
1764
+ -o-user-drag: none;
1765
+ }
1766
+
1767
+ .jeditor img {
1768
+ border:2px solid transparent;
1769
+ box-sizing: border-box;
1770
+ }
1771
+
1772
+ .jeditor img.resizing {
1773
+ -webkit-user-select: none;
1774
+ -khtml-user-select: none;
1775
+ -moz-user-select: none;
1776
+ -o-user-select: none;
1777
+ user-select: none;
1778
+
1779
+ -webkit-user-drag: none;
1780
+ -khtml-user-drag: none;
1781
+ -moz-user-drag: none;
1782
+ -o-user-drag: none;
1783
+ }
1784
+
1785
+ .jeditor img:focus {
1786
+ border: 2px solid #0096FD;
1787
+ outline: #0096FD;
1788
+ }
1789
+
1790
+ .jeditor .pdf {
1791
+ background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512;%27 xml:space=%27preserve%27%3E%3Cpath style=%27fill:%23C30B15;%27 d=%27M511.344,274.266C511.77,268.231,512,262.143,512,256C512,114.615,397.385,0,256,0S0,114.615,0,256 c0,117.769,79.53,216.949,187.809,246.801L511.344,274.266z%27/%3E%3Cpath style=%27fill:%2385080E;%27 d=%27M511.344,274.266L314.991,77.913L119.096,434.087l68.714,68.714C209.522,508.787,232.385,512,256,512 C391.243,512,501.976,407.125,511.344,274.266z%27/%3E%3Cpolygon style=%27fill:%23FFFFFF;%27 points=%27278.328,333.913 255.711,77.913 119.096,77.913 119.096,311.652 %27/%3E%3Cpolygon style=%27fill:%23E8E6E6;%27 points=%27392.904,311.652 392.904,155.826 337.252,133.565 314.991,77.913 255.711,77.913 256.067,333.913 %27/%3E%3Cpolygon style=%27fill:%23FFFFFF;%27 points=%27314.991,155.826 314.991,77.913 392.904,155.826 %27/%3E%3Crect x=%27119.096%27 y=%27311.652%27 style=%27fill:%23FC0F1A;%27 width=%27273.809%27 height=%27122.435%27/%3E%3Cg%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M204.871,346.387c13.547,0,21.341,6.659,21.341,18.465c0,12.412-7.795,19.601-21.341,19.601h-9.611 v14.909h-13.471v-52.975L204.871,346.387L204.871,346.387z M195.26,373.858h8.93c5.904,0,9.308-2.952,9.308-8.552 c0-5.525-3.406-8.324-9.308-8.324h-8.93V373.858z%27/%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M257.928,346.387c16.649,0,28.152,10.746,28.152,26.487c0,15.666-11.655,26.488-28.683,26.488 h-22.25v-52.975H257.928z M248.619,388.615h9.611c8.249,0,14.151-6.357,14.151-15.665c0-9.384-6.205-15.817-14.757-15.817h-9.006 V388.615z%27/%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M308.563,356.982v12.26h23.763v10.596h-23.763v19.525h-13.471v-52.975h39.277v10.595h-25.806 V356.982z%27/%3E%3C/g%3E%3C/svg%3E%0A");
1792
+ background-repeat: no-repeat;
1793
+ background-size: cover;
1794
+ width:60px;
1795
+ height:60px;
1796
+ }
1797
+
1798
+ .jeditor-toolbar {
1799
+ width: fit-content;
1800
+ max-width: 100%;
1801
+ box-sizing: border-box;
1802
+ margin: 10px;
1803
+ }
1804
+
1805
+ .toolbar-on-top .jeditor-toolbar {
1806
+ width: initial;
1807
+ margin: 0px;
1808
+ box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
1809
+ display: block;
1810
+ }
1811
+
1812
+ .toolbar-on-top .jeditor {
1813
+ padding: 15px;
1814
+ }
1815
+
1816
+ .toolbar-on-top .jtoolbar .material-icons {
1817
+ font-size: 24px;
1818
+ transform: initial;
1819
+ margin: 4px;
1820
+ }
1821
+
1822
+ .toolbar-on-top .jtoolbar .jpicker-header {
1823
+ font-size: 1em;
1824
+ margin-top: 4px;
1825
+ margin-bottom: 4px;
1826
+ }
1827
+
1828
+ .jeditor table {
1829
+ border-collapse: collapse;
1830
+ }
1831
+
1832
+ .jeditor table td {
1833
+ border: 1px solid #bbb;
1834
+ height: 2em;
1835
+ }
1836
+
1837
+ .jeditor table td:focus {
1838
+ border: 1px solid blue;
1839
+ }
1840
+
1841
+ .jeditor .line-break {
1842
+ border-top: 1px dashed #ccc;
1843
+ display: flex;
1844
+ justify-content: center;
1845
+ pointer-events: none;
1846
+ }
1847
+
1848
+ .jeditor .line-break:before {
1849
+ content: 'New page';
1850
+ background-color: #fff;
1851
+ color: #ccc;
1852
+ margin: -1em;
1853
+ padding: 6px;
1854
+ position: absolute;
1855
+ }
1856
+ .jfloating {
1857
+ position:fixed;
1858
+ bottom:0px;
1859
+ right:0px;
1860
+ margin-right:5px;
1861
+
1862
+ -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2);
1863
+ -moz-box-shadow: 0 2px 10px rgba(0,0,0,.2);
1864
+ border:1px solid #ccc;
1865
+ background-color:#fff;
1866
+ box-sizing: border-box;
1867
+ padding-top:50px !important;
1868
+ z-index:9002;
1869
+ border-radius: 8px;
1870
+ }
1871
+
1872
+ .jfloating.jfloating-big {
1873
+ width: 510px !important;
1874
+ height: 472px !important;
1875
+ }
1876
+
1877
+ .jfloating.jfloating-small {
1878
+ width: 300px !important;
1879
+ height: 320px !important;
1880
+ }
1881
+
1882
+ .jfloating.jfloating-large {
1883
+ width: 600px !important;
1884
+ height: 600px !important;
1885
+ }
1886
+
1887
+ .jfloating:before {
1888
+ position:absolute;
1889
+ top:0;
1890
+ left:0;
1891
+ width:100%;
1892
+ content:attr(title);
1893
+ padding:15px;
1894
+ box-sizing: border-box;
1895
+ font-size:1.2em;
1896
+ box-shadow: 1px 1px 3px rgba(0,0,0,.2);
1897
+ background-color: #fff;
1898
+ border-radius: 8px 8px 0px 0px;
1899
+ background-color: #404040;
1900
+ font-size: .93rem;
1901
+ font-weight: 600;
1902
+ color: white;
1903
+ letter-spacing: .5px;
1904
+ }
1905
+
1906
+ .jfloating:after {
1907
+ content:'';
1908
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23FFF%27 d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
1909
+ position:absolute;
1910
+ top:0;
1911
+ right:0;
1912
+ margin:14px;
1913
+ font-size:24px;
1914
+ width:24px;
1915
+ height:24px;
1916
+ cursor:pointer;
1917
+ text-shadow: 0px 0px 5px #fff;
1918
+ }
1919
+
1920
+ .jfloating_content {
1921
+ padding:20px;
1922
+ overflow-y:auto;
1923
+ max-height:100%;
1924
+ box-sizing: border-box;
1925
+ height: -webkit-fill-available;
1926
+ }
1927
+
1928
+ .jfloating.jfloating-minimized {
1929
+ height: 50px !important;
1930
+ }
1931
+
1932
+ .jfloating.jfloating-minimized .jfloating_content {
1933
+ display: none;
1934
+ }
1935
+
1936
+ .jmodal {
1937
+ position:fixed;
1938
+ top:50%;
1939
+ left:50%;
1940
+ width:60%;
1941
+ height:60%;
1942
+ -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.2);
1943
+ -moz-box-shadow: 0 2px 12px rgba(0,0,0,.2);
1944
+ border:1px solid #ccc;
1945
+ background-color:#fff;
1946
+ transform: translate(-50%, -50%);
1947
+ box-sizing: border-box;
1948
+ z-index:9002;
1949
+ border-radius: 4px;
1950
+ display: flex;
1951
+ flex-direction: column;
1952
+ }
1953
+
1954
+ .jmodal_title {
1955
+ padding: 20px;
1956
+ height: 70px;
1957
+ box-sizing: border-box;
1958
+ font-size: 1.4em;
1959
+ background-color: #fff;
1960
+ border-radius: 8px 8px 0px 0px;
1961
+ pointer-events: none;
1962
+ display: flex;
1963
+ -webkit-align-items: center;
1964
+ -webkit-box-align: center;
1965
+ align-items: center;
1966
+ border-bottom: 1px solid #eee;
1967
+ }
1968
+
1969
+ .jmodal_title > div {
1970
+ font-size: 1.4em;
1971
+ }
1972
+
1973
+ .jmodal_title[data-icon]:before {
1974
+ content: attr(data-icon);
1975
+ font-family: 'Material Icons' !important;
1976
+ width: 24px;
1977
+ height: 24px;
1978
+ font-size: 24px;
1979
+ margin-right: 10px;
1980
+ line-height: 24px;
1981
+ }
1982
+
1983
+ .jmodal_content {
1984
+ padding: 20px;
1985
+ overflow-y: auto;
1986
+ height: 100%;
1987
+ box-sizing: border-box;
1988
+ scrollbar-width: thin;
1989
+ scrollbar-color: #333 transparent;
1990
+ }
1991
+
1992
+ .jmodal_title:empty {
1993
+ display: none;
1994
+ }
1995
+
1996
+ .jmodal_title:empty + .jmodal_content {
1997
+ height: 100%;
1998
+ }
1999
+
2000
+ .jmodal_content::-webkit-scrollbar {
2001
+ height: 12px;
2002
+ }
2003
+
2004
+ .jmodal_content::-webkit-scrollbar {
2005
+ width: 12px;
2006
+ }
2007
+
2008
+ .jmodal_content::-webkit-scrollbar-track {
2009
+ border: 1px solid #fff;
2010
+ background: #eee;
2011
+ }
2012
+
2013
+ .jmodal_content::-webkit-scrollbar-thumb {
2014
+ border: 1px solid #fff;
2015
+ background: #888;
2016
+ }
2017
+
2018
+ .jmodal:after {
2019
+ content: '';
2020
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2021
+ position: absolute;
2022
+ top: 0;
2023
+ right: 0;
2024
+ margin: 25px;
2025
+ font-size: 24px;
2026
+ width: 24px;
2027
+ height: 24px;
2028
+ cursor: pointer;
2029
+ text-shadow: 0px 0px 5px #fff;
2030
+ }
2031
+
2032
+ .jmodal_fullscreen {
2033
+ width: 100% !important;
2034
+ height: 100% !important;
2035
+ top: 0px;
2036
+ left: 0px;
2037
+ transform: none;
2038
+ border: 0px;
2039
+ border-radius: 0px;
2040
+ }
2041
+
2042
+ .jmodal_backdrop {
2043
+ position: fixed;
2044
+ top: 0px;
2045
+ left: 0px;
2046
+ min-width: 100%;
2047
+ min-height: 100%;
2048
+ background-color: rgba(0,0,0,0.2);
2049
+ border: 0px;
2050
+ padding: 0px;
2051
+ z-index: 8000;
2052
+ display: none;
2053
+
2054
+ -webkit-touch-callout: none; /* iOS Safari */
2055
+ -webkit-user-select: none; /* Safari */
2056
+ -khtml-user-select: none; /* Konqueror HTML */
2057
+ -moz-user-select: none; /* Firefox */
2058
+ -ms-user-select: none; /* Internet Explorer/Edge */
2059
+ user-select: none; /* Non-prefixed version, currently
2060
+ supported by Chrome and Opera */
2061
+ }
2062
+
2063
+ .jmodal_content .jcalendar .jcalendar-content,
2064
+ .jmodal_content .jdropdown-container {
2065
+ position: fixed;
2066
+ }
2067
+
2068
+ .jnotification {
2069
+ position: fixed;
2070
+ z-index: 10000;
2071
+ -webkit-box-sizing: border-box;
2072
+ box-sizing: border-box;
2073
+ padding: 10px;
2074
+ bottom: 0px;
2075
+ }
2076
+
2077
+ .jnotification-container {
2078
+ -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
2079
+ box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
2080
+ padding: 12px;
2081
+ border-radius: 8px;
2082
+
2083
+ background-color: #000;
2084
+ background: rgba(92,92,92,1);
2085
+ background: linear-gradient(0deg, rgba(92,92,92,1) 0%, rgba(77,77,77,1) 100%);
2086
+ color: #fff;
2087
+ width: 320px;
2088
+ margin: 30px;
2089
+ padding: 20px;
2090
+ }
2091
+
2092
+ .jnotification-close {
2093
+ content: '';
2094
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 24 24%27 fill=%27white%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2095
+ font-size: 20px;
2096
+ width: 20px;
2097
+ height: 20px;
2098
+ cursor: pointer;
2099
+ }
2100
+
2101
+ .jnotification-title {
2102
+ font-weight: bold;
2103
+ }
2104
+
2105
+ .jnotification-header {
2106
+ display: flex;
2107
+ padding-bottom: 5px;
2108
+ }
2109
+
2110
+ .jnotification-header:empty {
2111
+ display: none;
2112
+ }
2113
+
2114
+ .jnotification-image {
2115
+ margin-right: 5px;
2116
+ }
2117
+
2118
+ .jnotification-image:empty {
2119
+ display: none;
2120
+ }
2121
+
2122
+ .jnotification-image img {
2123
+ width: 24px;
2124
+ }
2125
+
2126
+ .jnotification-name {
2127
+ text-transform: uppercase;
2128
+ font-size: 0.9em;
2129
+ flex: 1;
2130
+ letter-spacing: 0.1em;
2131
+ }
2132
+
2133
+ .jnotification-error .jnotification-container {
2134
+ background: rgb(182,38,6);
2135
+ background: linear-gradient(0deg, rgba(170,41,13,1) 0%, rgba(149,11,11,1) 100%);
2136
+ }
2137
+
2138
+ @media (max-width: 800px) {
2139
+ .jnotification {
2140
+ top: calc(0px + var(--jsafe-area-top));
2141
+ width: 100%;
2142
+ }
2143
+ .jnotification-container {
2144
+ background: rgba(255,255,255,0.95);
2145
+ border: 1px solid #eee;
2146
+ color: #444;
2147
+ margin: 0px;
2148
+ width: initial;
2149
+ }
2150
+ .jnotification-error .jnotification-container {
2151
+ background: rgba(255,255,255,0.95);
2152
+ color: #790909;
2153
+ }
2154
+ .jnotification-close {
2155
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 24 24%27 fill=%27black%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2156
+ }
2157
+ }
2158
+
2159
+ .jnotification-header {
2160
+ display: -webkit-box;
2161
+ display: -webkit-flex;
2162
+ display: -ms-flexbox;
2163
+ display: flex;
2164
+ -webkit-box-pack: start;
2165
+ -webkit-justify-content: flex-start;
2166
+ -ms-flex-pack: start;
2167
+ justify-content: flex-start;
2168
+ -webkit-box-align: center;
2169
+ -webkit-align-items: center;
2170
+ -ms-flex-align: center;
2171
+ align-items: center;
2172
+ }
2173
+ .jpicker {
2174
+ cursor: pointer;
2175
+ white-space: nowrap;
2176
+ display: inline-flex;
2177
+ -webkit-user-select: none;
2178
+ -moz-user-select: none;
2179
+ -ms-user-select: none;
2180
+ user-select: none;
2181
+ outline: none;
2182
+ position: relative;
2183
+ min-height: 26px;
2184
+ }
2185
+
2186
+ .jpicker-header {
2187
+ background-repeat: no-repeat;
2188
+ background-position: top 50% right 5px;
2189
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3Cpath d=%27M7 10l5 5 5-5H7z%27 fill=%27gray%27/%3E%3C/svg%3E");
2190
+ text-overflow: ellipsis;
2191
+ cursor: pointer;
2192
+ box-sizing: border-box;
2193
+ text-align: left;
2194
+ outline: none;
2195
+ line-height: 24px;
2196
+ padding: 2px 35px 2px 12px;
2197
+ border-radius: 4px;
2198
+ }
2199
+
2200
+ .jpicker-header:hover {
2201
+ background-color: #f2f2f2;
2202
+ }
2203
+
2204
+ .jpicker-content {
2205
+ position: absolute;
2206
+ top: 0;
2207
+ display: none;
2208
+ box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
2209
+ border-radius: 4px;
2210
+ background-color: #fff;
2211
+ padding: 4px;
2212
+ z-index: 50;
2213
+ text-align: left;
2214
+ max-height: 250px;
2215
+ scrollbar-width: thin;
2216
+ scrollbar-color: #333 transparent;
2217
+ }
2218
+
2219
+ .jpicker-content::-webkit-scrollbar {
2220
+ width: 8px;
2221
+ }
2222
+
2223
+ .jpicker-content::-webkit-scrollbar-track {
2224
+ background: #eee;
2225
+ }
2226
+
2227
+ .jpicker-content::-webkit-scrollbar-thumb {
2228
+ background: #888;
2229
+ }
2230
+
2231
+ .jpicker-content > div {
2232
+ padding: 6px;
2233
+ padding-left: 15px;
2234
+ padding-right: 15px;
2235
+ }
2236
+
2237
+ .jpicker-focus > .jpicker-content {
2238
+ display: block;
2239
+ }
2240
+
2241
+ .jpicker-content > div:hover {
2242
+ background-color:#efefef;
2243
+ }
2244
+
2245
+ .jpicker-content > div:empty {
2246
+ opacity: 0;
2247
+ }
2248
+
2249
+ .jpicker-header > i, .jpicker-header > div {
2250
+ display: block;
2251
+ }
2252
+
2253
+ .jpicker-focus > .jpicker-content.jpicker-columns {
2254
+ display: flex !important ;
2255
+ justify-content: center;
2256
+ flex-wrap: wrap;
2257
+ }
2258
+
2259
+ .jpicker-focus .jpicker-content.jpicker-grid {
2260
+ display: inline-grid;
2261
+ }
2262
+
2263
+
2264
+
2265
+ .jprogressbar
2266
+ {
2267
+ cursor:pointer;
2268
+ -webkit-touch-callout: none;
2269
+ -webkit-user-select: none;
2270
+ -khtml-user-select: none;
2271
+ -moz-user-select: none;
2272
+ -ms-user-select: none;
2273
+ user-select: none;
2274
+ box-sizing: border-box;
2275
+ background:#fff;
2276
+ -webkit-tap-highlight-color: transparent;
2277
+ display: inline-block;
2278
+ box-sizing: border-box;
2279
+ cursor:pointer;
2280
+ border:1px solid #ccc;
2281
+ position:relative;
2282
+ }
2283
+
2284
+ .jprogressbar::before {
2285
+ content:attr(data-value);
2286
+ position:absolute;
2287
+ margin:5px;
2288
+ margin-left:10px;
2289
+ }
2290
+
2291
+ .jprogressbar-header::placeholder
2292
+ {
2293
+ color:#000;
2294
+ }
2295
+
2296
+ .jprogressbar::focus {
2297
+ outline: auto 5px -webkit-focus-ring-color;
2298
+ }
2299
+
2300
+ .jprogressbar > div {
2301
+ background-color: #eee;
2302
+ background-color: red;
2303
+ box-sizing: border-box;
2304
+ height:31px;
2305
+ }
2306
+ .jrating {
2307
+ display:flex;
2308
+ }
2309
+ .jrating > div {
2310
+ width:24px;
2311
+ height:24px;
2312
+ line-height:24px;
2313
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z%27 fill=%27gray%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2314
+ }
2315
+
2316
+ .jrating .jrating-over {
2317
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27black%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2318
+ opacity: 0.7;
2319
+ }
2320
+
2321
+ .jrating .jrating-selected {
2322
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27red%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2323
+ }
2324
+
2325
+ .jsearch {
2326
+ position: relative;
2327
+ display: none;
2328
+ -webkit-user-select: none;
2329
+ -moz-user-select: none;
2330
+ -ms-user-select: none;
2331
+ user-select: none;
2332
+ }
2333
+
2334
+ .jsearch_container {
2335
+ position: absolute;
2336
+ box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 2px 6px 2px rgba(60,64,67,0.149);
2337
+ border: none;
2338
+ -webkit-border-radius: 4px;
2339
+ border-radius: 4px;
2340
+ width: 280px;
2341
+ padding: 8px 0;
2342
+ z-index: 1;
2343
+
2344
+ -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
2345
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
2346
+ -webkit-transition: opacity .218s;
2347
+ transition: opacity .218s;
2348
+ background: #fff;
2349
+ border: 1px solid rgba(0,0,0,.2);
2350
+ cursor: pointer;
2351
+ margin: 0;
2352
+ min-width: 300px;
2353
+ outline: none;
2354
+ width: auto;
2355
+ -webkit-user-select: none;
2356
+ -moz-user-select: none;
2357
+ -ms-user-select: none;
2358
+ user-select: none;
2359
+ }
2360
+
2361
+ .jsearch_container:empty:after {
2362
+ content: attr(data-placeholder);
2363
+ }
2364
+
2365
+ .jsearch_container > div {
2366
+ color: #333;
2367
+ cursor: pointer;
2368
+ display: -webkit-box;
2369
+ display: -webkit-flex;
2370
+ display: flex;
2371
+ padding: 5px 10px;
2372
+ user-select: none;
2373
+ -webkit-align-items: center;
2374
+ align-items: center;
2375
+
2376
+ -webkit-user-select: none;
2377
+ -moz-user-select: none;
2378
+ -ms-user-select: none;
2379
+ user-select: none;
2380
+ }
2381
+
2382
+ .jsearch_container > div:hover {
2383
+ background-color: #e8eaed;
2384
+ }
2385
+
2386
+ .jsearch_container > div > img {
2387
+ width: 32px;
2388
+ height: 32px;
2389
+ user-select: none;
2390
+ border-radius: 16px;
2391
+ margin-right: 2px;
2392
+ }
2393
+
2394
+ .jsearch_container > div > div {
2395
+ overflow: hidden;
2396
+ text-overflow: ellipsis;
2397
+ margin-left: 2px;
2398
+ max-width: 300px;
2399
+ white-space: nowrap;
2400
+ user-select: none;
2401
+ }
2402
+
2403
+ .jsearch_container .selected {
2404
+ background-color: #e8eaed;
2405
+ }
2406
+ .jslider {
2407
+ outline: none;
2408
+ }
2409
+
2410
+ .jslider-focus {
2411
+ width: 100% !important;
2412
+ height: 100% !important;
2413
+ }
2414
+
2415
+ .jslider-focus img {
2416
+ display: none;
2417
+ }
2418
+
2419
+ .jslider img {
2420
+ width: 100px;
2421
+ }
2422
+
2423
+ .jslider-left::before {
2424
+ position: fixed;
2425
+ left: 15px;
2426
+ top: 50%;
2427
+ content:'arrow_back_ios';
2428
+ color: #fff;
2429
+ width: 30px;
2430
+ height: 30px;
2431
+ font-family: 'Material Icons';
2432
+ font-size: 30px;
2433
+ /* before it was 0px 0px 0px #000 */
2434
+ text-shadow: 0px 0px 6px rgb(56,56,56);
2435
+ text-align: center;
2436
+ cursor: pointer;
2437
+ }
2438
+
2439
+ .jslider-right::after {
2440
+ position: fixed;
2441
+ right: 15px;
2442
+ top: 50%;
2443
+ content: 'arrow_forward_ios';
2444
+ color: #fff;
2445
+ width: 30px;
2446
+ height: 30px;
2447
+ font-family: 'Material Icons';
2448
+ font-size: 30px;
2449
+ /* before it was 0px 0px 0px #000 */
2450
+ text-shadow: 0px 0px 6px rgb(56,56,56);
2451
+ text-align: center;
2452
+ cursor: pointer;
2453
+ }
2454
+
2455
+ .jslider-close {
2456
+ width:24px;
2457
+ height:24px;
2458
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27white%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2459
+ position:fixed;
2460
+ top:15px;
2461
+ right:15px;
2462
+ cursor:pointer;
2463
+ z-index:3000;
2464
+
2465
+ display: block !important;
2466
+ }
2467
+
2468
+ .jslider-counter {
2469
+ height:24px;
2470
+ background-color: transparent;
2471
+ position:fixed;
2472
+ left: 50%;
2473
+ transform: translateX(-50%);
2474
+ bottom: 15px;
2475
+ cursor:pointer;
2476
+ z-index:3000;
2477
+
2478
+ display: flex;
2479
+ display: -webkit-flex;
2480
+ -webkit-justify-content: center;
2481
+ -webkit-align-items: center;
2482
+ -webkit-flex-direction: row;
2483
+ justify-content: center;
2484
+ align-items: center;
2485
+ flex-direction: row;
2486
+ }
2487
+
2488
+ .jslider-caption {
2489
+ position: fixed;
2490
+ max-width: 90vw;
2491
+ text-overflow: ellipsis;
2492
+ white-space: nowrap;
2493
+ overflow: hidden;
2494
+ top:15px;
2495
+ left: 15px;
2496
+ z-index:3000;
2497
+ color: #FFF;
2498
+ font-size: 1rem;
2499
+
2500
+ display: block !important;
2501
+ }
2502
+
2503
+ .jslider-counter div {
2504
+ width: 10px;
2505
+ height: 10px;
2506
+ background: #fff;
2507
+ border-radius: 50%;
2508
+ margin: 0px 5px;
2509
+
2510
+ display: block !important;
2511
+ }
2512
+
2513
+ .jslider-counter .jslider-counter-focus {
2514
+ background-color: cornflowerblue;
2515
+ pointer-events: none;
2516
+ }
2517
+
2518
+ .jslider-focus {
2519
+ position:fixed;
2520
+ left:0;
2521
+ top:0;
2522
+ width: 100%;
2523
+ min-height:100%;
2524
+ max-height:100%;
2525
+ z-index:2000;
2526
+ margin:0px;
2527
+ box-sizing:border-box;
2528
+
2529
+ background-color:rgba(0,0,0,0.8);
2530
+ -webkit-transition-duration: .05s;
2531
+ transition-duration: .05s;
2532
+ display: flex;
2533
+ -ms-flex-align: center;
2534
+ -webkit-align-items: center;
2535
+ -webkit-box-align: center;
2536
+
2537
+ align-items: center;
2538
+ }
2539
+
2540
+ .jslider-focus img {
2541
+ width: 50vw;
2542
+ height: auto;
2543
+ box-sizing: border-box;
2544
+ margin:0 auto;
2545
+ vertical-align:middle;
2546
+ display:none;
2547
+ }
2548
+
2549
+ .jslider-focus img.jslider-vertical {
2550
+ width: auto;
2551
+ /* before it was 50vh */
2552
+ height: 80vh;
2553
+ }
2554
+
2555
+ @media only screen and (max-width: 576px) {
2556
+ .jslider-focus img.jslider-vertical {
2557
+ width: 99vw !important;
2558
+ height: auto !important;
2559
+ }
2560
+
2561
+ .jslider-focus img {
2562
+ width: 100vw !important;
2563
+ height: auto !important;
2564
+ }
2565
+ }
2566
+
2567
+ .jslider-grid {
2568
+ display: -ms-grid;
2569
+ display: grid;
2570
+ grid-gap: 1px;
2571
+ position: relative;
2572
+ }
2573
+
2574
+ .jslider-grid[data-number='2'] {
2575
+ -ms-grid-columns: 1fr 50%;
2576
+ grid-template-columns: 1fr 50%;
2577
+ }
2578
+
2579
+ .jslider-grid[data-number='3'] {
2580
+ -ms-grid-columns: 1fr 33%;
2581
+ grid-template-columns: 1fr 33%;
2582
+ }
2583
+
2584
+ .jslider-grid[data-number='4'] {
2585
+ -ms-grid-columns: 1fr 25%;
2586
+ grid-template-columns: 1fr 25%;
2587
+ }
2588
+
2589
+ .jslider-grid img {
2590
+ display: none;
2591
+ width: 100%;
2592
+ height: 100%;
2593
+ object-fit: cover;
2594
+ }
2595
+
2596
+ .jslider-grid[data-total]:after {
2597
+ content: attr(data-total) "+";
2598
+ font-size: 1.5em;
2599
+ position:absolute;
2600
+ color: #fff;
2601
+ right: 15px;
2602
+ bottom: 6px;
2603
+ }
2604
+
2605
+ .jslider-grid img:first-child {
2606
+ -ms-grid-column: 1;
2607
+ -ms-grid-row: 1;
2608
+ grid-column: 1;
2609
+ grid-row: 1;
2610
+ display: block;
2611
+ }
2612
+
2613
+ .jslider-grid[data-number='2'] img:nth-child(2) {
2614
+ -ms-grid-column: 2;
2615
+ -ms-grid-row: 1;
2616
+ grid-column: 2;
2617
+ grid-row: 1;
2618
+ display: block;
2619
+ }
2620
+
2621
+ .jslider-grid[data-number='3'] img:first-child {
2622
+ -ms-grid-column: 1 / 2;
2623
+ -ms-grid-row: 1 / 4;
2624
+ grid-column: 1 / 2;
2625
+ grid-row: 1 / 4;
2626
+ }
2627
+
2628
+ .jslider-grid[data-number='3'] img:nth-child(2) {
2629
+ -ms-grid-column: 2;
2630
+ -ms-grid-row: 1;
2631
+ grid-column: 2;
2632
+ grid-row: 1;
2633
+ display: block;
2634
+ }
2635
+
2636
+ .jslider-grid[data-number='3'] img:nth-child(3) {
2637
+ -ms-grid-column: 2;
2638
+ -ms-grid-row: 2;
2639
+ grid-column: 2;
2640
+ grid-row: 2;
2641
+ display: block;
2642
+ }
2643
+
2644
+ .jslider-grid[data-number='4'] img:first-child {
2645
+ -ms-grid-column: 1 / 2;
2646
+ -ms-grid-row: 1 / 4;
2647
+ grid-column: 1 / 2;
2648
+ grid-row: 1 / 4;
2649
+ }
2650
+
2651
+ .jslider-grid[data-number='4'] img:nth-child(2) {
2652
+ -ms-grid-column: 2;
2653
+ -ms-grid-row: 1;
2654
+ grid-column: 2;
2655
+ grid-row: 1;
2656
+ display: block;
2657
+ }
2658
+
2659
+ .jslider-grid[data-number='4'] img:nth-child(3) {
2660
+ -ms-grid-column: 2;
2661
+ -ms-grid-row: 2;
2662
+ grid-column: 2;
2663
+ grid-row: 2;
2664
+ display: block;
2665
+ }
2666
+
2667
+ .jslider-grid[data-number='4'] img:nth-child(4) {
2668
+ -ms-grid-column: 2;
2669
+ -ms-grid-row: 3;
2670
+ grid-column: 2;
2671
+ grid-row: 3;
2672
+ display: block;
2673
+ }
2674
+
2675
+ .jtabs {
2676
+ max-width: 100vw;
2677
+ position: relative;
2678
+ }
2679
+
2680
+ .jtabs .jtabs-headers-container {
2681
+ display: flex;
2682
+ align-items: center;
2683
+ }
2684
+
2685
+ .jtabs .jtabs-headers {
2686
+ display: flex;
2687
+ align-items: center;
2688
+ overflow: hidden;
2689
+ position: relative;
2690
+ }
2691
+
2692
+ .jtabs .jtabs-headers > div:not(.jtabs-border) {
2693
+ padding: 8px;
2694
+ padding-left: 20px;
2695
+ padding-right: 20px;
2696
+ margin-left: 1px;
2697
+ margin-right: 1px;
2698
+ background-color: #f1f1f1;
2699
+ cursor: pointer;
2700
+ white-space: nowrap;
2701
+ text-align: center;
2702
+ }
2703
+
2704
+ .jtabs .jtabs-headers > div.jtabs-selected {
2705
+ background-color: #e8e8e8;
2706
+ color: #000;
2707
+ }
2708
+
2709
+ .jtabs .jtabs-headers > div > div {
2710
+ color: #555;
2711
+ width: 100%;
2712
+ overflow: hidden;
2713
+ }
2714
+
2715
+ .jtabs .jtabs-headers i {
2716
+ display: block;
2717
+ margin: auto;
2718
+ }
2719
+
2720
+ .jtabs .jtabs-content {
2721
+ box-sizing: border-box;
2722
+ }
2723
+
2724
+ .jtabs .jtabs-content > div {
2725
+ display: none;
2726
+ box-sizing: border-box;
2727
+ }
2728
+
2729
+ .jtabs .jtabs-content > div.jtabs-selected {
2730
+ display: block;
2731
+ }
2732
+
2733
+ .jtabs .jtabs-border {
2734
+ position: absolute;
2735
+ height: 2px;
2736
+ background-color: #888;
2737
+ transform-origin: left;
2738
+ transition: all .2s cubic-bezier(0.4,0,0.2,1);
2739
+ transition-property: color,left,transform;
2740
+ display: none;
2741
+ pointer-events: none;
2742
+ }
2743
+
2744
+ .jtabs-animation .jtabs-border {
2745
+ display: initial;
2746
+ }
2747
+
2748
+ .jtabs .jtabs-controls {
2749
+ margin: 3px;
2750
+ margin-left: 10px;
2751
+ display: flex;
2752
+ min-width: 82px;
2753
+ }
2754
+
2755
+ .jtabs .jtabs-controls > div {
2756
+ cursor: pointer;
2757
+ background-position: center;
2758
+ background-repeat: no-repeat;
2759
+ width: 24px;
2760
+ height: 24px;
2761
+ line-height: 24px;
2762
+ }
2763
+
2764
+ .jtabs .jtabs-prev {
2765
+ margin-left: 10px;
2766
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z%27/%3E%3C/svg%3E");
2767
+ }
2768
+
2769
+ .jtabs .jtabs-prev.disabled {
2770
+ margin-left: 10px;
2771
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27lightgray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z%27/%3E%3C/svg%3E");
2772
+ }
2773
+
2774
+ .jtabs .jtabs-next {
2775
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z%27/%3E%3C/svg%3E");
2776
+ }
2777
+
2778
+ .jtabs .jtabs-next.disabled {
2779
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27lightgray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z%27/%3E%3C/svg%3E");
2780
+ }
2781
+
2782
+ .jtabs .jtabs-add {
2783
+ background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 height=%2724%27 viewBox=%270 0 24 24%27 width=%2724%27%3E%3Cpath d=%27M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z%27 fill=%27%23bbbbbb%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2784
+ }
2785
+
2786
+ /** Modern skin **/
2787
+
2788
+ .jtabs.jtabs-modern .jtabs-headers > div:not(.jtabs-border) {
2789
+ padding: 4px;
2790
+ padding-left: 10px;
2791
+ padding-right: 10px;
2792
+ background-color: #fff;
2793
+ }
2794
+
2795
+ .jtabs.jtabs-modern .jtabs-headers > .jtabs-selected {
2796
+ color: #000;
2797
+ }
2798
+
2799
+ .jtabs.jtabs-modern .jtabs-headers > .jtabs-selected .material-icons {
2800
+ color: #000;
2801
+ }
2802
+
2803
+ .jtabs.jtabs-modern .jtabs-headers {
2804
+ background: #EEEEEF !important;
2805
+ padding: 2px;
2806
+ border-radius: 4px;
2807
+ }
2808
+
2809
+ .jtabs.jtabs-modern .jtabs-headers .jtabs-border {
2810
+ border-color: #EEEEEF !important;
2811
+ }
2812
+
2813
+ .jtabs.jtabs-modern .jtabs-border {
2814
+ background-color: rgba(194, 197, 188, 0.884);
2815
+ }
2816
+ .jtags {
2817
+ display: flex;
2818
+ flex-wrap: wrap;
2819
+ -ms-flex-direction: row;
2820
+ -webkit-flex-direction: row;
2821
+ flex-direction: row;
2822
+ -ms-flex-pack: flex-start;
2823
+ -webkit-justify-content: space-between;
2824
+ justify-content: flex-start;
2825
+ padding: 1px;
2826
+ border: 1px solid #ccc;
2827
+ position: relative;
2828
+ }
2829
+
2830
+ .jtags.jtags-empty:not(.jtags-focus)::before {
2831
+ position: absolute;
2832
+ margin: 3px;
2833
+ color: #ccc;
2834
+ content: attr(data-placeholder);
2835
+ top: 0;
2836
+ margin-left: 6px;
2837
+ }
2838
+
2839
+ .jtags > div {
2840
+ padding: 6px 22px 6px 10px;
2841
+ font-size: 0.9em;
2842
+ position: relative;
2843
+ border-radius: 1px;
2844
+ margin: 2px;
2845
+ display: block;
2846
+ outline: none;
2847
+ }
2848
+
2849
+ .jtags > div:empty:before {
2850
+ content: " ";
2851
+ white-space: pre;
2852
+ }
2853
+
2854
+ .jtags > div::after {
2855
+ content: 'x';
2856
+ position: absolute;
2857
+ top: 7px;
2858
+ right: 4px;
2859
+ width: 12px;
2860
+ height: 12px;
2861
+ cursor: pointer;
2862
+ font-size: 0.9em;
2863
+ line-height: 1em;
2864
+ display: none;
2865
+ }
2866
+
2867
+ .jtags_label {
2868
+ background-color: #e4e4e4 !important;
2869
+ }
2870
+
2871
+ .jtags_label::after {
2872
+ display: inline-block !important;
2873
+ }
2874
+
2875
+ .jtags_error::after {
2876
+ color: #fff !important;
2877
+ }
2878
+
2879
+ .jtags_error {
2880
+ background-color: #d93025 !important;
2881
+ color: #fff;
2882
+ }
2883
+
2884
+ .jtoolbar-container {
2885
+ border-radius: 2px;
2886
+ box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
2887
+ display: inline-flex !important;
2888
+ }
2889
+
2890
+ .jtoolbar {
2891
+ cursor: pointer;
2892
+ white-space: nowrap;
2893
+ display: flex;
2894
+ padding:4px;
2895
+ -webkit-user-select: none;
2896
+ -moz-user-select: none;
2897
+ -ms-user-select: none;
2898
+ user-select: none;
2899
+ font-size: 13px;
2900
+ }
2901
+
2902
+ .jtoolbar-disabled {
2903
+ pointer-events: none;
2904
+ opacity: 0.4;
2905
+ }
2906
+
2907
+ .jtoolbar-mobile {
2908
+ display: flex;
2909
+ position:fixed;
2910
+ bottom: 0;
2911
+ margin: 0;
2912
+ left: 0;
2913
+ width: 100%;
2914
+ background: #f7f7f8;
2915
+ z-index: 1;
2916
+ box-sizing: border-box;
2917
+ box-shadow: 0 -1px 2px rgba(0,0,0,.1);
2918
+ border-radius: 0px;
2919
+ }
2920
+
2921
+ .jtoolbar > div {
2922
+ display: inline-flex;
2923
+ align-items: center;
2924
+ box-sizing: border-box;
2925
+ vertical-align:middle;
2926
+ justify-content: space-evenly;
2927
+ }
2928
+
2929
+ .jtoolbar-mobile > div {
2930
+ display: flex;
2931
+ width: 100%;
2932
+ }
2933
+
2934
+ .jtoolbar .jtoolbar-item {
2935
+ text-align: center;
2936
+ margin: auto;
2937
+ padding: 2px;
2938
+ padding-left:4px;
2939
+ padding-right:4px;
2940
+ }
2941
+
2942
+ .jtoolbar-mobile .jtoolbar-item {
2943
+ position: relative;
2944
+ flex:1;
2945
+ }
2946
+
2947
+ .jtoolbar .jtoolbar-divisor {
2948
+ width: 2px;
2949
+ height: 18px;
2950
+ padding: 0px;
2951
+ margin-left: 4px;
2952
+ margin-right: 4px;
2953
+ background-color: #ddd;
2954
+ }
2955
+
2956
+ .jtoolbar .jtoolbar-label {
2957
+ padding-left: 8px;
2958
+ padding-right: 8px;
2959
+ }
2960
+
2961
+
2962
+
2963
+ .jtoolbar-mobile a
2964
+ {
2965
+ text-decoration:none;
2966
+ display:inline-block;
2967
+ }
2968
+
2969
+ .jtoolbar-mobile i {
2970
+ display: inline-flex !important;
2971
+ color:#929292;
2972
+ }
2973
+
2974
+ .jtoolbar-mobile span {
2975
+ font-size:0.7em;
2976
+ display:block;
2977
+ color:#929292;
2978
+ }
2979
+
2980
+ .jtoolbar-mobile .jtoolbar-selected a, .jtoolbar-mobile .jtoolbar-selected i, .jtoolbar-mobile .jtoolbar-selected span {
2981
+ color:var(--jactive-color) !important;
2982
+ background-color:transparent;
2983
+ }
2984
+
2985
+ .jtoolbar-item {
2986
+ -webkit-user-select: none;
2987
+ -moz-user-select: none;
2988
+ -ms-user-select: none;
2989
+ user-select: none;
2990
+ }
2991
+
2992
+ .jtoolbar-item i {
2993
+ display: block;
2994
+ color:#333;
2995
+ }
2996
+
2997
+ .jtoolbar-item:hover {
2998
+ background-color:#f2f2f2;
2999
+ }
3000
+
3001
+
3002
+ .jtoolbar .jpicker {
3003
+ padding-left:0px;
3004
+ padding-right:0px;
3005
+ }
3006
+
3007
+ .jtoolbar .jpicker-header {
3008
+ height: 24px;
3009
+ line-height: 24px;
3010
+ padding: 0px;
3011
+ padding-right: 20px;
3012
+ padding-left: 8px;
3013
+ background-position: top 50% right 0px;
3014
+ display: flex;
3015
+ align-items: center;
3016
+ font-size: 0.9em;
3017
+ }
3018
+
3019
+ .jtoolbar .jpicker-content > div {
3020
+ padding: 6px;
3021
+ }
3022
+
3023
+ .jtoolbar-active {
3024
+ background-color:#eee;
3025
+ }
3026
+
3027
+ .jtoolbar .fa {
3028
+ width: 18px;
3029
+ height: 18px;
3030
+ display: block;
3031
+ line-height: 18px;
3032
+ font-size: 14px;
3033
+ }
3034
+
3035
+ .jtoolbar .material-icons {
3036
+ font-size: 18px;
3037
+ width: 24px;
3038
+ height: 24px;
3039
+ display: block;
3040
+ line-height: 24px;
3041
+ transform: rotate(0.03deg);
3042
+ text-align: center;
3043
+ }
3044
+
3045
+ .jtoolbar .jtoolbar-arrow {
3046
+ background-repeat: no-repeat;
3047
+ background-position: center;
3048
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27black%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z%27/%3E%3C/svg%3E");
3049
+ width: 24px;
3050
+ height: 16px;
3051
+ margin-left: 4px;
3052
+ border-left: 1px solid #f2f2f2;
3053
+ }
3054
+
3055
+ .jtoolbar-floating {
3056
+ position: absolute;
3057
+ display: none;
3058
+ box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
3059
+ border-radius: 4px;
3060
+ background-color: #fff;
3061
+ padding: 4px;
3062
+ z-index: 50;
3063
+ text-align: left;
3064
+ margin-right: 20px;
3065
+ }
3066
+
3067
+ .jtoolbar-floating .jtoolbar-divisor {
3068
+ display: none;
3069
+ }
3070
+
3071
+ .jtoolbar-arrow-selected .jtoolbar-floating {
3072
+ display: flex;
3073
+ flex-wrap: wrap;
3074
+ }
3075
+
3076
+
173
3077
  /** Loading */
174
3078
  .jloading {
175
3079
  position:fixed;