infinity-forge 14.4.2 → 14.4.4

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.
@@ -0,0 +1,1277 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ button,
8
+ a {
9
+ outline: unset !important;
10
+ cursor: pointer;
11
+ }
12
+
13
+ html {
14
+ font-family: sans-serif;
15
+ line-height: 1.15;
16
+ -webkit-text-size-adjust: 100%;
17
+ -ms-text-size-adjust: 100%;
18
+ -ms-overflow-style: scrollbar;
19
+ -webkit-tap-highlight-color: transparent;
20
+ }
21
+
22
+ .row {
23
+ display: flex;
24
+ gap: 15px;
25
+ }
26
+
27
+ @-ms-viewport {
28
+ width: device-width;
29
+ }
30
+
31
+ article,
32
+ aside,
33
+ dialog,
34
+ figcaption,
35
+ figure,
36
+ footer,
37
+ header,
38
+ hgroup,
39
+ main,
40
+ nav,
41
+ section {
42
+ display: block;
43
+ }
44
+
45
+ body {
46
+ margin: 0;
47
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif,
48
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
49
+ font-size: 1rem;
50
+ font-weight: normal;
51
+ line-height: 1.5;
52
+ color: #212529;
53
+ text-align: left;
54
+ background-color: #fff;
55
+ }
56
+
57
+ [tabindex='-1']:focus {
58
+ outline: none !important;
59
+ }
60
+
61
+ hr {
62
+ box-sizing: content-box;
63
+ height: 0;
64
+ overflow: visible;
65
+ }
66
+
67
+ h1,
68
+ h2,
69
+ h3,
70
+ h4,
71
+ h5,
72
+ h6 {
73
+ margin-top: 0;
74
+ margin-bottom: 0.5rem;
75
+ }
76
+
77
+ p {
78
+ margin-top: 0;
79
+ margin-bottom: 1rem;
80
+ }
81
+
82
+ abbr[title],
83
+ abbr[data-original-title] {
84
+ text-decoration: underline;
85
+ -webkit-text-decoration: underline dotted;
86
+ text-decoration: underline dotted;
87
+ cursor: help;
88
+ border-bottom: 0;
89
+ }
90
+ address {
91
+ margin-bottom: 1rem;
92
+ font-style: normal;
93
+ line-height: inherit;
94
+ }
95
+ ol,
96
+ ul,
97
+ dl {
98
+ margin-top: 0;
99
+ margin-bottom: 1rem;
100
+ }
101
+ ol ol,
102
+ ul ul,
103
+ ol ul,
104
+ ul ol {
105
+ margin-bottom: 0;
106
+ }
107
+ dt {
108
+ font-weight: bold;
109
+ }
110
+ dd {
111
+ margin-bottom: 0.5rem;
112
+ margin-left: 0;
113
+ }
114
+ blockquote {
115
+ margin: 0 0 1rem;
116
+ }
117
+ dfn {
118
+ font-style: italic;
119
+ }
120
+ b,
121
+ strong {
122
+ font-weight: bolder;
123
+ }
124
+ small {
125
+ font-size: 80%;
126
+ }
127
+ sub,
128
+ sup {
129
+ position: relative;
130
+ font-size: 75%;
131
+ line-height: 0;
132
+ vertical-align: baseline;
133
+ }
134
+ sub {
135
+ bottom: -0.25em;
136
+ }
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ a {
142
+ color: #007bff;
143
+ text-decoration: none;
144
+ background-color: transparent;
145
+ -webkit-text-decoration-skip: objects;
146
+ }
147
+ a:hover {
148
+ color: #0056b3;
149
+ text-decoration: underline;
150
+ }
151
+
152
+ a:not([href]):not([tabindex]) {
153
+ text-decoration: none;
154
+ }
155
+ a:not([href]):not([tabindex]):focus,
156
+ a:not([href]):not([tabindex]):hover {
157
+ text-decoration: none;
158
+ }
159
+ a:not([href]):not([tabindex]):focus {
160
+ outline: 0;
161
+ }
162
+
163
+ pre,
164
+ code,
165
+ kbd,
166
+ samp {
167
+ font-family: monospace, monospace;
168
+ font-size: 1em;
169
+ }
170
+ pre {
171
+ margin-top: 0;
172
+
173
+ margin-bottom: 1rem;
174
+ overflow: auto;
175
+ -ms-overflow-style: scrollbar;
176
+ }
177
+
178
+ figure {
179
+ margin: 0 0 1rem;
180
+ }
181
+
182
+ img {
183
+ vertical-align: middle;
184
+ border-style: none;
185
+ }
186
+ svg:not(:root) {
187
+ overflow: hidden;
188
+ }
189
+
190
+ a,
191
+ area,
192
+ button,
193
+ [role='button'],
194
+ input:not([type='range']),
195
+ label,
196
+ select,
197
+ summary,
198
+ textarea {
199
+ -ms-touch-action: manipulation;
200
+ touch-action: manipulation;
201
+ }
202
+
203
+ table {
204
+ border-collapse: collapse;
205
+ }
206
+ caption {
207
+ padding-top: 0.75rem;
208
+ padding-bottom: 0.75rem;
209
+ color: #868e96;
210
+ text-align: left;
211
+ caption-side: bottom;
212
+ }
213
+ th {
214
+ text-align: inherit;
215
+ }
216
+
217
+ label {
218
+ display: inline-block;
219
+ margin-bottom: 0.5rem;
220
+ }
221
+
222
+ button {
223
+ border-radius: 0;
224
+ }
225
+
226
+ button:focus {
227
+ outline: 1px dotted;
228
+ outline: 5px auto -webkit-focus-ring-color;
229
+ }
230
+ input,
231
+ button,
232
+ select,
233
+ optgroup,
234
+ textarea {
235
+ margin: 0;
236
+ font-family: inherit;
237
+ font-size: inherit;
238
+ line-height: inherit;
239
+ }
240
+ button,
241
+ input {
242
+ overflow: visible;
243
+ }
244
+ button,
245
+ select {
246
+ text-transform: none;
247
+ }
248
+
249
+ button,
250
+ html [type='button'],
251
+ [type='reset'],
252
+ [type='submit'] {
253
+ -webkit-appearance: button;
254
+ }
255
+
256
+ button::-moz-focus-inner,
257
+ [type='button']::-moz-focus-inner,
258
+ [type='reset']::-moz-focus-inner,
259
+ [type='submit']::-moz-focus-inner {
260
+ padding: 0;
261
+ border-style: none;
262
+ }
263
+ input[type='radio'],
264
+ input[type='checkbox'] {
265
+ box-sizing: border-box;
266
+ padding: 0;
267
+ }
268
+ input[type='date'],
269
+ input[type='time'],
270
+ input[type='datetime-local'],
271
+ input[type='month'] {
272
+ -webkit-appearance: listbox;
273
+ }
274
+ textarea {
275
+ overflow: auto;
276
+ resize: vertical;
277
+ }
278
+ fieldset {
279
+ min-width: 0;
280
+ padding: 0;
281
+ margin: 0;
282
+ border: 0;
283
+ }
284
+ input[id*="-focus"] {
285
+ width: unset !important;
286
+ height: unset !important;
287
+ position: absolute !important;
288
+ top: 0 !important;
289
+ left: 0 !important;
290
+ opacity: 0 !important;
291
+ pointer-events: none;
292
+ }
293
+
294
+ legend {
295
+ display: block;
296
+ width: 100%;
297
+ max-width: 100%;
298
+ padding: 0;
299
+ margin-bottom: 0.5rem;
300
+ font-size: 1.5rem;
301
+ line-height: inherit;
302
+ color: inherit;
303
+ white-space: normal;
304
+ }
305
+ progress {
306
+ vertical-align: baseline;
307
+ }
308
+
309
+ [type='number']::-webkit-inner-spin-button,
310
+ [type='number']::-webkit-outer-spin-button {
311
+ height: auto;
312
+ }
313
+ [type='search'] {
314
+ outline-offset: -2px;
315
+ -webkit-appearance: none;
316
+ }
317
+
318
+ [type='search']::-webkit-search-cancel-button,
319
+ [type='search']::-webkit-search-decoration {
320
+ -webkit-appearance: none;
321
+ }
322
+
323
+ ::-webkit-file-upload-button {
324
+ font: inherit;
325
+ -webkit-appearance: button;
326
+ }
327
+
328
+ output {
329
+ display: inline-block;
330
+ }
331
+ summary {
332
+ display: list-item;
333
+ }
334
+ template {
335
+ display: none;
336
+ }
337
+
338
+ [hidden] {
339
+ display: none !important;
340
+ }
341
+
342
+ ul,
343
+ ul li {
344
+ list-style-type: none;
345
+ padding-left: 0;
346
+ }
347
+
348
+ @keyframes placeHolderShimmer {
349
+ 0% {
350
+ background-position: 0px 0;
351
+ }
352
+ 100% {
353
+ background-position: 100vw 0;
354
+ }
355
+ }
356
+
357
+ #__next {
358
+ position: relative;
359
+ z-index: 1;
360
+ }
361
+
362
+ .conntent_form_infinity_forge .button-flag {
363
+ background: transparent;
364
+ border: none;
365
+ padding: 0;
366
+ transition: all 0.2s;
367
+ margin: 0 15px 15px 0;
368
+ }
369
+
370
+ .conntent_form_infinity_forge .button-flag img {
371
+ max-width: 50px;
372
+ width: auto !important;
373
+ height: 30px;
374
+ }
375
+
376
+ .conntent_form_infinity_forge .button-flag:hover {
377
+ box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2) !important;
378
+ }
379
+
380
+ body:has(> [id*='enabled-overflow-tooltip']) {
381
+ overflow: hidden;
382
+ }
383
+
384
+
385
+ .swal2-popup {
386
+ max-width: 480px !important;
387
+ border-radius: 12px !important;
388
+ }
389
+
390
+ .swal2-icon {
391
+ justify-content: center;
392
+ width: 80px;
393
+ height:80px;
394
+ margin: -8px auto 24px;
395
+ border: 4px solid transparent;
396
+ border-radius: 50%;
397
+ cursor: default;
398
+ user-select: none;
399
+ transform: scale(.8);
400
+ }
401
+ .toast-progress {
402
+ position: absolute;
403
+ left: 0;
404
+ bottom: 0;
405
+ height: 4px;
406
+ background-color: #000;
407
+ opacity: .4
408
+ }
409
+
410
+ .toast-title {
411
+ font-weight: 700
412
+ }
413
+
414
+ .toast-message {
415
+ word-wrap: break-word
416
+ }
417
+
418
+ .toast-message a,.toast-message label {
419
+ color: #526484
420
+ }
421
+
422
+ .toast-message a:hover {
423
+ color: #ccc;
424
+ text-decoration: none
425
+ }
426
+
427
+ .swal2-popup.swal2-toast {
428
+ flex-direction: row;
429
+ align-items: center;
430
+ width: auto;
431
+ padding: 10px;
432
+ overflow-y: hidden;
433
+ background: #fff;
434
+ box-shadow: 0 0 10px #d9d9d9
435
+ }
436
+
437
+ .swal2-popup.swal2-toast .swal2-header {
438
+ flex-direction: row
439
+ }
440
+
441
+ .swal2-popup.swal2-toast .swal2-title {
442
+ flex-grow: 1;
443
+ justify-content: flex-start;
444
+ margin: 0 9.6px;
445
+ font-size: 16px
446
+ }
447
+
448
+ .swal2-popup.swal2-toast .swal2-footer {
449
+ margin: 8px 0 0;
450
+ padding: 8px 0 0;
451
+ font-size: 12.8px
452
+ }
453
+
454
+ .swal2-popup.swal2-toast .swal2-close {
455
+ position: static;
456
+ width: 12.8px;
457
+ height: 12.8px;
458
+ line-height: 12.8px
459
+ }
460
+
461
+ .swal2-popup.swal2-toast .swal2-content {
462
+ justify-content: flex-start;
463
+ font-size: 16px
464
+ }
465
+
466
+ .swal2-popup.swal2-toast .swal2-icon {
467
+ width: 32px;
468
+ min-width: 32px;
469
+ height: 32px;
470
+ margin: 0
471
+ }
472
+
473
+ .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
474
+ display: flex;
475
+ align-items: center;
476
+ font-size: 28.8px;
477
+ font-weight: 700
478
+ }
479
+
480
+ @media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
481
+ .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
482
+ font-size: 4px
483
+ }
484
+ }
485
+
486
+ .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
487
+ width: 32px;
488
+ height: 32px
489
+ }
490
+
491
+ .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
492
+ top: 14px;
493
+ width: 22px
494
+ }
495
+
496
+ .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
497
+ left: 5px
498
+ }
499
+
500
+ .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
501
+ right: 5px
502
+ }
503
+
504
+ .swal2-popup.swal2-toast .swal2-actions {
505
+ flex-basis: auto!important;
506
+ width: auto;
507
+ height: auto;
508
+ margin: 0 5px
509
+ }
510
+
511
+ .actions ul li .swal2-popup.swal2-toast .swal2-actions a,.dual-listbox .swal2-popup.swal2-toast .swal2-actions .dual-listbox__button,.swal2-popup.swal2-toast .swal2-actions .actions ul li a,.swal2-popup.swal2-toast .swal2-actions .btn,.swal2-popup.swal2-toast .swal2-actions .dual-listbox .dual-listbox__button {
512
+ margin: 0 8px
513
+ }
514
+
515
+ .swal2-popup.swal2-toast .swal2-styled {
516
+ margin: 0 8px;
517
+ padding: 5px 10px;
518
+ font-size: 16px
519
+ }
520
+
521
+ .swal2-popup.swal2-toast .swal2-styled:focus {
522
+ box-shadow: 0 0 0 1px #fff,0 0 0 3px rgba(115,58,234,.4)
523
+ }
524
+
525
+ .swal2-popup.swal2-toast .swal2-success {
526
+ border-color: #0fca7a
527
+ }
528
+
529
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
530
+ position: absolute;
531
+ width: 25.6px;
532
+ height: 48px;
533
+ transform: rotate(45deg);
534
+ border-radius: 50%
535
+ }
536
+
537
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
538
+ top: -12.8px;
539
+ left: -8px;
540
+ border-radius: 64px 0 0 64px;
541
+ transform: rotate(-45deg);
542
+ transform-origin: 32px 32px
543
+ }
544
+
545
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
546
+ top: -4px;
547
+ left: 15px;
548
+ border-radius: 0 64px 64px 0;
549
+ transform-origin: 0 24px
550
+ }
551
+
552
+ .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
553
+ width: 32px;
554
+ height: 32px
555
+ }
556
+
557
+ .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
558
+ top: 0;
559
+ left: 7px;
560
+ width: 7px;
561
+ height: 43px
562
+ }
563
+
564
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
565
+ height: 5px
566
+ }
567
+
568
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
569
+ top: 18px;
570
+ left: 3px;
571
+ width: 12px
572
+ }
573
+
574
+ .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
575
+ top: 15px;
576
+ right: 3px;
577
+ width: 22px
578
+ }
579
+
580
+ .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
581
+ animation: swal2-toast-animate-success-line-tip .75s
582
+ }
583
+
584
+ .swal2-popup.swal2-toast.swal2-hide {
585
+ animation: swal2-toast-hide .1s forwards
586
+ }
587
+
588
+ .swal2-container {
589
+ display: flex;
590
+ position: fixed;
591
+ z-index: 1060;
592
+ top: 0;
593
+ right: 0;
594
+ bottom: 0;
595
+ left: 0;
596
+ flex-direction: row;
597
+ align-items: center;
598
+ justify-content: center;
599
+ padding: 10px;
600
+ overflow-x: hidden;
601
+ transition: background-color .1s;
602
+ -webkit-overflow-scrolling: touch
603
+ }
604
+
605
+ .swal2-container.swal2-backdrop-show {
606
+ background: rgba(28,43,70,.4)
607
+ }
608
+
609
+ .swal2-container.swal2-backdrop-hide {
610
+ background: 0 0!important
611
+ }
612
+
613
+ .swal2-container.swal2-top {
614
+ align-items: flex-start
615
+ }
616
+
617
+ .swal2-container.swal2-top-left,.swal2-container.swal2-top-start {
618
+ align-items: flex-start;
619
+ justify-content: flex-start
620
+ }
621
+
622
+ .swal2-container.swal2-top-end,.swal2-container.swal2-top-right {
623
+ align-items: flex-start;
624
+ justify-content: flex-end
625
+ }
626
+
627
+ .swal2-container.swal2-center {
628
+ align-items: center
629
+ }
630
+
631
+ .swal2-container.swal2-center-left,.swal2-container.swal2-center-start {
632
+ align-items: center;
633
+ justify-content: flex-start
634
+ }
635
+
636
+ .swal2-container.swal2-center-end,.swal2-container.swal2-center-right {
637
+ align-items: center;
638
+ justify-content: flex-end
639
+ }
640
+
641
+ .swal2-container.swal2-bottom {
642
+ align-items: flex-end
643
+ }
644
+
645
+ .swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start {
646
+ align-items: flex-end;
647
+ justify-content: flex-start
648
+ }
649
+
650
+ .swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right {
651
+ align-items: flex-end;
652
+ justify-content: flex-end
653
+ }
654
+
655
+ .swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child {
656
+ margin-top: auto
657
+ }
658
+
659
+ .swal2-container.swal2-grow-fullscreen>.swal2-modal {
660
+ display: flex!important;
661
+ flex: 1;
662
+ align-self: stretch;
663
+ justify-content: center
664
+ }
665
+
666
+ .swal2-container.swal2-grow-row>.swal2-modal {
667
+ display: flex!important;
668
+ flex: 1;
669
+ align-content: center;
670
+ justify-content: center
671
+ }
672
+
673
+ .swal2-container.swal2-grow-column {
674
+ flex: 1;
675
+ flex-direction: column
676
+ }
677
+
678
+ .swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top {
679
+ align-items: center
680
+ }
681
+
682
+ .swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start {
683
+ align-items: flex-start
684
+ }
685
+
686
+ .swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right {
687
+ align-items: flex-end
688
+ }
689
+
690
+ .swal2-container.swal2-grow-column>.swal2-modal {
691
+ display: flex!important;
692
+ flex: 1;
693
+ align-content: center;
694
+ justify-content: center
695
+ }
696
+
697
+ .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
698
+ margin: auto
699
+ }
700
+
701
+ @media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
702
+ .swal2-container .swal2-modal {
703
+ margin: 0!important
704
+ }
705
+ }
706
+
707
+ .swal2-container {
708
+ font-size: 16px !important;
709
+ }
710
+
711
+ .swal2-popup {
712
+ display: none;
713
+ position: relative;
714
+ box-sizing: border-box;
715
+ flex-direction: column;
716
+ font-size: 16px !important;
717
+ justify-content: center;
718
+ width: 480px;
719
+ max-width: 100%;
720
+ padding: 44px 40px;
721
+ border: none;
722
+ border-radius: 4px;
723
+ background: #fff;
724
+ font-family: inherit;
725
+ font-size: 1rem
726
+ }
727
+
728
+ .swal2-popup:focus {
729
+ outline: 0
730
+ }
731
+
732
+ .swal2-popup.swal2-loading {
733
+ overflow-y: hidden
734
+ }
735
+
736
+ .swal2-header {
737
+ display: flex;
738
+ flex-direction: column;
739
+ align-items: center
740
+ }
741
+
742
+ .swal2-title {
743
+ position: relative;
744
+ max-width: 100%;
745
+ margin: 0 0 10.24px;
746
+ padding: 0;
747
+ color: #364a63;
748
+ font-size: 24px;
749
+ font-weight: 700;
750
+ text-align: center;
751
+ text-transform: none;
752
+ word-wrap: break-word
753
+ }
754
+
755
+ .swal2-html-container {
756
+ margin-bottom: 16px
757
+ }
758
+
759
+ .swal2-actions {
760
+ display: flex;
761
+ z-index: 1;
762
+ flex-wrap: wrap;
763
+ align-items: center;
764
+ justify-content: center;
765
+ width: 100%;
766
+ margin: 16px auto 0
767
+ }
768
+
769
+ .actions ul li .swal2-actions a,.dual-listbox .swal2-actions .dual-listbox__button,.swal2-actions .actions ul li a,.swal2-actions .btn,.swal2-actions .dual-listbox .dual-listbox__button {
770
+ margin: 0 12px
771
+ }
772
+
773
+ .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
774
+ opacity: .4
775
+ }
776
+
777
+ .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
778
+ background-image: linear-gradient(rgba(31,43,58,.1),rgba(31,43,58,.1))
779
+ }
780
+
781
+ .swal2-actions:not(.swal2-loading) .swal2-styled:active {
782
+ background-image: linear-gradient(rgba(31,43,58,.2),rgba(31,43,58,.2))
783
+ }
784
+
785
+ .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
786
+ box-sizing: border-box;
787
+ width: 40px;
788
+ height: 40px;
789
+ margin: 7.5px;
790
+ padding: 0;
791
+ animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
792
+ border: 4px solid transparent;
793
+ border-radius: 100%;
794
+ border-color: transparent;
795
+ background-color: transparent!important;
796
+ color: transparent;
797
+ cursor: default;
798
+ user-select: none
799
+ }
800
+
801
+ .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
802
+ margin-right: 48px;
803
+ margin-left: 48px
804
+ }
805
+
806
+ .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
807
+ content: "";
808
+ display: inline-block;
809
+ width: 24px;
810
+ height: 24px;
811
+ animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
812
+ border: 4px solid #b4c4d7;
813
+ border-radius: 50%;
814
+ margin-left: 8px;
815
+ border-right-color: transparent;
816
+ box-shadow: 1px 1px 1px #fff
817
+ }
818
+
819
+ .swal2-styled {
820
+ margin: 8px;
821
+ box-shadow: none;
822
+ padding: 8px 16px;
823
+ font-size: 15px;
824
+ line-height: 20px;
825
+ border-radius: 8px;
826
+ min-width: 144px
827
+ }
828
+
829
+ .swal2-loading .swal2-styled {
830
+ min-width: 0
831
+ }
832
+
833
+ .swal2-styled:not([disabled]) {
834
+ cursor: pointer
835
+ }
836
+
837
+ .swal2-styled.swal2-confirm {
838
+ border: 0;
839
+ border-radius: 4px;
840
+ background: initial;
841
+ background-color: #0fca7a;
842
+ color: #fff
843
+ }
844
+
845
+ .swal2-styled.swal2-confirm:focus {
846
+ outline: 0
847
+ }
848
+
849
+ .swal2-styled.swal2-cancel {
850
+ border: 0;
851
+ border-radius: 4px;
852
+ background: initial;
853
+ background-color: #f2426e;
854
+ color: #fff
855
+ }
856
+
857
+ .swal2-styled.swal2-cancel:focus {
858
+ outline: 0
859
+ }
860
+
861
+ .swal2-styled::-moz-focus-inner {
862
+ border: 0
863
+ }
864
+
865
+ .swal2-footer {
866
+ justify-content: center;
867
+ margin: 20px 0 0;
868
+ padding: 16px 0 0;
869
+ border-top: 1px solid #eee;
870
+ color: #5a7ca7;
871
+ font-size: 16px
872
+ }
873
+
874
+ .swal2-timer-progress-bar {
875
+ position: absolute;
876
+ bottom: 0;
877
+ left: 0;
878
+ width: 100%;
879
+ height: 4px;
880
+ background: rgba(31,43,58,.2)
881
+ }
882
+
883
+ .swal2-image {
884
+ max-width: 100%;
885
+ margin: 0 auto 24px
886
+ }
887
+
888
+ .swal2-close {
889
+ position: absolute;
890
+ z-index: 2;
891
+ top: 0;
892
+ right: 0;
893
+ justify-content: center;
894
+ width: 19.2px;
895
+ height: 19.2px;
896
+ padding: 0;
897
+ overflow: hidden;
898
+ transition: color .1s ease-out;
899
+ border: none;
900
+ border-radius: 0;
901
+ outline: initial;
902
+ background: 0 0;
903
+ color: #f7f8fa;
904
+ font-family: serif;
905
+ font-size: 40px;
906
+ line-height: 1.2;
907
+ cursor: pointer
908
+ }
909
+
910
+ .swal2-close:hover {
911
+ transform: none;
912
+ background: 0 0;
913
+ color: #f2426e
914
+ }
915
+
916
+ .swal2-close::-moz-focus-inner {
917
+ border: 0
918
+ }
919
+
920
+ .swal2-content {
921
+ z-index: 1;
922
+ justify-content: center;
923
+ margin: 0;
924
+ padding: 0;
925
+ color: #8094ae;
926
+ font-size: 14px;
927
+ font-weight: 400;
928
+ line-height: normal;
929
+ text-align: center;
930
+ word-wrap: break-word
931
+ }
932
+
933
+ .swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea {
934
+ margin: 16px auto
935
+ }
936
+
937
+ .swal2-file,.swal2-input,.swal2-textarea {
938
+ box-sizing: border-box;
939
+ width: 100%;
940
+ transition: border-color .3s,box-shadow .3s;
941
+ border: 1px solid #dbdfea;
942
+ border-radius: 4px;
943
+ background: inherit;
944
+ box-shadow: none;
945
+ color: inherit;
946
+ font-size: 14px
947
+ }
948
+
949
+ .swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror {
950
+ border-color: #f2426e!important;
951
+ box-shadow: 0 0 2px #f2426e!important
952
+ }
953
+
954
+ .swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus {
955
+ border: 1px solid #733aea;
956
+ outline: 0;
957
+ box-shadow: 0 0 0 3px rgba(115,58,234,.1)
958
+ }
959
+
960
+ .swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder {
961
+ color: #f7f8fa
962
+ }
963
+
964
+ .swal2-range {
965
+ margin: 16px auto;
966
+ background: #fff
967
+ }
968
+
969
+ .swal2-range input {
970
+ width: 80%
971
+ }
972
+
973
+ .swal2-range output {
974
+ width: 20%;
975
+ color: inherit;
976
+ font-weight: 600;
977
+ text-align: center
978
+ }
979
+
980
+ .swal2-range input,.swal2-range output {
981
+ height: 44px;
982
+ padding: 0;
983
+ font-size: 14px;
984
+ line-height: 44px
985
+ }
986
+
987
+ .swal2-input {
988
+ height: 44px;
989
+ padding: 0 16px
990
+ }
991
+
992
+ .swal2-input[type=number] {
993
+ max-width: 160px
994
+ }
995
+
996
+ .swal2-file {
997
+ background: inherit;
998
+ font-size: 14px
999
+ }
1000
+
1001
+ .swal2-textarea {
1002
+ height: 108px;
1003
+ padding: 12px
1004
+ }
1005
+
1006
+ .swal2-select {
1007
+ min-width: 50%;
1008
+ max-width: 100%;
1009
+ padding: 6px 10px;
1010
+ background: inherit;
1011
+ color: inherit;
1012
+ font-size: 14px
1013
+ }
1014
+
1015
+ .swal2-checkbox,.swal2-radio {
1016
+ align-items: center;
1017
+ justify-content: center;
1018
+ background: #fff;
1019
+ color: inherit
1020
+ }
1021
+
1022
+ .swal2-checkbox label,.swal2-radio label {
1023
+ margin: 0 9.6px;
1024
+ font-size: 14px
1025
+ }
1026
+
1027
+ .swal2-checkbox input,.swal2-radio input {
1028
+ margin: 0 6.4px
1029
+ }
1030
+
1031
+ .swal2-validation-message {
1032
+ display: none;
1033
+ align-items: center;
1034
+ justify-content: center;
1035
+ padding: 16px;
1036
+ overflow: hidden;
1037
+ background: #fff;
1038
+ color: #728fb3;
1039
+ font-size: 16px;
1040
+ font-weight: 300
1041
+ }
1042
+
1043
+ .swal2-validation-message::before {
1044
+ content: "!";
1045
+ display: inline-block;
1046
+ width: 24px;
1047
+ min-width: 24px;
1048
+ height: 24px;
1049
+ margin: 0 16px;
1050
+ border-radius: 50%;
1051
+ background-color: #f2426e;
1052
+ color: #fff;
1053
+ font-weight: 600;
1054
+ line-height: 24px;
1055
+ text-align: center
1056
+ }
1057
+
1058
+ .swal2-icon {
1059
+ position: relative;
1060
+ box-sizing: content-box;
1061
+ justify-content: center;
1062
+ width: 80px;
1063
+ height: 80px;
1064
+ margin: -8px auto 24px;
1065
+ border: 4px solid transparent;
1066
+ border-radius: 50%;
1067
+ font-family: inherit;
1068
+ line-height: 80px;
1069
+ cursor: default;
1070
+ user-select: none;
1071
+ transform: scale(.8)
1072
+ }
1073
+
1074
+ .swal2-icon .swal2-icon-content {
1075
+ display: flex;
1076
+ align-items: center;
1077
+ font-size: 60px
1078
+ }
1079
+
1080
+ .swal2-icon.swal2-error {
1081
+ border-color: #f2426e;
1082
+ color: #f2426e
1083
+ }
1084
+
1085
+ .swal2-icon.swal2-error .swal2-x-mark {
1086
+ position: relative;
1087
+ flex-grow: 1
1088
+ }
1089
+
1090
+ .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
1091
+ display: block;
1092
+ position: absolute;
1093
+ top: 37px;
1094
+ width: 47px;
1095
+ height: 5px;
1096
+ border-radius: 2px;
1097
+ background-color: #f2426e
1098
+ }
1099
+
1100
+ .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
1101
+ left: 17px;
1102
+ transform: rotate(45deg)
1103
+ }
1104
+
1105
+ .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
1106
+ right: 16px;
1107
+ transform: rotate(-45deg)
1108
+ }
1109
+
1110
+ .swal2-icon.swal2-error.swal2-icon-show {
1111
+ animation: swal2-animate-error-icon .5s
1112
+ }
1113
+
1114
+ .swal2-icon.swal2-success {
1115
+ border-color: #0fca7a;
1116
+ color: #0fca7a
1117
+ }
1118
+
1119
+ .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
1120
+ position: absolute;
1121
+ width: 60px;
1122
+ height: 120px;
1123
+ transform: rotate(45deg);
1124
+ border-radius: 50%
1125
+ }
1126
+
1127
+ .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
1128
+ top: -7px;
1129
+ left: -33.016px;
1130
+ transform: rotate(-45deg);
1131
+ transform-origin: 60px 60px;
1132
+ border-radius: 120px 0 0 120px
1133
+ }
1134
+
1135
+ .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
1136
+ top: -11px;
1137
+ left: 30px;
1138
+ transform: rotate(-45deg);
1139
+ transform-origin: 0 60px;
1140
+ border-radius: 0 120px 120px 0
1141
+ }
1142
+
1143
+ .swal2-icon.swal2-success .swal2-success-ring {
1144
+ position: absolute;
1145
+ z-index: 2;
1146
+ top: -4px;
1147
+ left: -4px;
1148
+ box-sizing: content-box;
1149
+ width: 100%;
1150
+ height: 100%;
1151
+ border: 4px solid rgba(15,202,122,.3);
1152
+ border-radius: 50%
1153
+ }
1154
+
1155
+ .swal2-icon.swal2-success .swal2-success-fix {
1156
+ position: absolute;
1157
+ z-index: 1;
1158
+ top: 8px;
1159
+ left: 26px;
1160
+ width: 7px;
1161
+ height: 90px;
1162
+ transform: rotate(-45deg)
1163
+ }
1164
+
1165
+ .swal2-icon.swal2-success [class^=swal2-success-line] {
1166
+ display: block;
1167
+ position: absolute;
1168
+ z-index: 2;
1169
+ height: 5px;
1170
+ border-radius: 2px;
1171
+ background-color: #0fca7a
1172
+ }
1173
+
1174
+ .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
1175
+ top: 46px;
1176
+ left: 14px;
1177
+ width: 25px;
1178
+ transform: rotate(45deg)
1179
+ }
1180
+
1181
+ .swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
1182
+ top: 38px;
1183
+ right: 8px;
1184
+ width: 47px;
1185
+ transform: rotate(-45deg)
1186
+ }
1187
+
1188
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
1189
+ animation: swal2-animate-success-line-tip .75s
1190
+ }
1191
+
1192
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
1193
+ animation: swal2-animate-success-line-long .75s
1194
+ }
1195
+
1196
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
1197
+ animation: swal2-rotate-success-circular-line 4.25s ease-in
1198
+ }
1199
+
1200
+ .swal2-progress-steps {
1201
+ align-items: center;
1202
+ margin: 0 0 20px;
1203
+ padding: 0;
1204
+ background: inherit;
1205
+ font-weight: 600
1206
+ }
1207
+
1208
+ .swal2-progress-steps li {
1209
+ display: inline-block;
1210
+ position: relative
1211
+ }
1212
+
1213
+ .swal2-progress-steps .swal2-progress-step {
1214
+ z-index: 20;
1215
+ width: 32px;
1216
+ height: 32px;
1217
+ border-radius: 32px;
1218
+ background: #3085d6;
1219
+ color: #fff;
1220
+ line-height: 32px;
1221
+ text-align: center
1222
+ }
1223
+
1224
+ .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
1225
+ background: #3085d6
1226
+ }
1227
+
1228
+ .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step {
1229
+ background: #add8e6;
1230
+ color: #fff
1231
+ }
1232
+
1233
+ .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
1234
+ background: #add8e6
1235
+ }
1236
+
1237
+ .swal2-progress-steps .swal2-progress-step-line {
1238
+ z-index: 10;
1239
+ width: 40px;
1240
+ height: 6.4px;
1241
+ margin: 0 -1px;
1242
+ background: #3085d6
1243
+ }
1244
+
1245
+ [class^=swal2] {
1246
+ -webkit-tap-highlight-color: transparent
1247
+ }
1248
+
1249
+ .swal2-show {
1250
+ animation: swal2-show .3s
1251
+ }
1252
+
1253
+ .swal2-hide {
1254
+ animation: swal2-hide .15s forwards
1255
+ }
1256
+
1257
+ .swal2-noanimation {
1258
+ transition: none
1259
+ }
1260
+
1261
+ .swal2-scrollbar-measure {
1262
+ position: absolute;
1263
+ top: -9999px;
1264
+ width: 50px;
1265
+ height: 50px;
1266
+ overflow: scroll
1267
+ }
1268
+
1269
+ .swal2-rtl .swal2-close {
1270
+ right: auto;
1271
+ left: 0
1272
+ }
1273
+
1274
+ .swal2-rtl .swal2-timer-progress-bar {
1275
+ right: 0;
1276
+ left: auto
1277
+ }