@authme/identity-verification 2.8.57 → 2.8.59

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,2422 @@
1
+ @mixin keyframe($name, $from, $to) {
2
+ @keyframes #{$name} {
3
+ from {
4
+ transform: $from;
5
+ }
6
+
7
+ to {
8
+ transform: $to;
9
+ }
10
+ }
11
+ }
12
+
13
+ @mixin rotateAnimation() {
14
+ $left: perspective(100vw) rotateY(30deg) scale(0.9);
15
+ $right: perspective(100vw) rotateY(-30deg) scale(0.9);
16
+ $top: perspective(100vw) rotateX(30deg) scale(0.9);
17
+ $bottom: perspective(100vw) rotateX(-30deg) scale(0.9);
18
+
19
+ @include keyframe(slideinLeft, unset, $left);
20
+ @include keyframe(slideinLeftToDefault, $left, unset);
21
+ @include keyframe(slideinRight, unset, $right);
22
+ @include keyframe(slideinRightToDefault, $right, unset);
23
+ @include keyframe(slideinTop, unset, $top);
24
+ @include keyframe(slideinTopToDefault, $top, unset);
25
+ @include keyframe(slideinBottom, unset, $bottom);
26
+ @include keyframe(slideinBottomToDefault, $bottom, unset);
27
+ }
28
+
29
+ .ocr-container {
30
+ .text {
31
+ position: absolute;
32
+ z-index: var(--authme-layers-3-z-index);
33
+ display: flex;
34
+ align-items: center;
35
+ flex-direction: column;
36
+ justify-content: flex-end;
37
+ width: 100%;
38
+ text-align: center;
39
+ }
40
+ .direction-panel {
41
+ margin: 0 auto;
42
+ top: 50%;
43
+ left: 50%;
44
+ transform: translate(-50%, -50%);
45
+ position: absolute;
46
+ z-index: 200;
47
+
48
+ // 手機版縮小 padding、gap 和文字大小
49
+ @media (max-width: 767px) {
50
+ padding: 8px 12px !important;
51
+ gap: 6px !important;
52
+ border-radius: 14px !important;
53
+ width: auto !important;
54
+ min-width: auto !important;
55
+ height: auto !important;
56
+ }
57
+
58
+ .direction-icon {
59
+ // 手機版圖示容器縮小一半
60
+ @media (max-width: 767px) {
61
+ width: 36px !important;
62
+ height: 36px !important;
63
+
64
+ svg {
65
+ width: 36px !important;
66
+ height: 36px !important;
67
+ }
68
+ }
69
+ }
70
+
71
+ .status-text {
72
+ display: inline-block;
73
+
74
+ // 手機版文字縮小
75
+ @media (max-width: 767px) {
76
+ font-size: 14px !important;
77
+ }
78
+
79
+ svg {
80
+ width: 72px;
81
+ height: 72px;
82
+ flex-shrink: 0;
83
+
84
+ // 手機版尺寸縮小一半
85
+ @media (max-width: 767px) {
86
+ width: 36px !important;
87
+ height: 36px !important;
88
+ }
89
+ }
90
+
91
+ // Direction-specific layouts
92
+ &.direction-left {
93
+ flex-direction: row; // Icon on left, text on right
94
+ }
95
+
96
+ &.direction-right {
97
+ flex-direction: row-reverse; // Text on left, icon on right
98
+ }
99
+
100
+ &.direction-up {
101
+ flex-direction: column; // Icon on top, text below
102
+ }
103
+
104
+ &.direction-down {
105
+ flex-direction: column-reverse; // Text on top, icon below
106
+ }
107
+ }
108
+ }
109
+ .lottie-mask {
110
+ z-index: var(--authme-layers-3-z-index);
111
+ position: absolute;
112
+ top: 0;
113
+ left: 0;
114
+ display: none;
115
+ height: 100%;
116
+ width: 100%;
117
+ background: black;
118
+ }
119
+
120
+ .anti-fraud-instruction-container {
121
+ z-index: var(--authme-layers-5-z-index);
122
+ position: absolute;
123
+ top: 0;
124
+ left: 0;
125
+ display: none;
126
+ opacity: 1;
127
+ height: 100%;
128
+ width: 100%;
129
+
130
+ &__text {
131
+ position: absolute;
132
+ margin-top: 12px;
133
+ width: 100%;
134
+ top: calc(50vh + min(120px, 15vw));
135
+ left: 0;
136
+ text-align: center;
137
+ color: #ffffff;
138
+ border-radius: 8px;
139
+ padding: 0 1em;
140
+ line-height: 32px;
141
+ font-size: 18px;
142
+ font-weight: 700;
143
+ letter-spacing: 0.05em;
144
+ }
145
+
146
+ .anti-fraud-instruction-animation-container {
147
+ max-width: 630px;
148
+ margin: auto;
149
+ max-height: 326px;
150
+ position: absolute;
151
+ top: 0px;
152
+ left: 0px;
153
+ right: 0px;
154
+ bottom: 15%;
155
+
156
+ // 手機版尺寸縮小一半
157
+ @media (max-width: 767px) {
158
+ max-width: 315px;
159
+ max-height: 163px;
160
+ }
161
+ }
162
+
163
+ .btn-container {
164
+ position: fixed;
165
+ left: 0;
166
+ right: 0;
167
+ margin: auto;
168
+ width: 100vw;
169
+ z-index: 1;
170
+ top: calc(50vh + min(200px, 50vw));
171
+ max-width: 343px;
172
+
173
+ .confirm-btn {
174
+ width: 374px !important;
175
+ height: 48px;
176
+ background: var(--authme__button_primary);
177
+ border: unset;
178
+ font-weight: 600;
179
+ font-size: 17px;
180
+ line-height: 22px;
181
+ color: var(--authme__button_primary---text);
182
+
183
+ &:disabled {
184
+ color: #ffffff;
185
+ background: #e1e3e5;
186
+ }
187
+ }
188
+ }
189
+ }
190
+
191
+ .confirm_container {
192
+ z-index: 200;
193
+ position: fixed;
194
+ left: 0;
195
+ bottom: 0;
196
+ right: 0;
197
+ display: none;
198
+ width: 100vw;
199
+ height: 100vh;
200
+
201
+ &.show {
202
+ display: flex !important;
203
+ align-items: end;
204
+ }
205
+
206
+ @media (min-width: 769px) {
207
+ &.show {
208
+ align-items: center;
209
+ justify-content: center;
210
+ }
211
+ }
212
+
213
+ .confirm-image-container {
214
+ background: var(--authme-container-bg-color);
215
+ padding: 32px 24px;
216
+ border: 1px solid #f5f5f5;
217
+ border-radius: 20px 20px 0px 0px;
218
+ width: 100vw;
219
+
220
+ .confirm-image-wapper {
221
+ display: flex;
222
+ flex-direction: column;
223
+ height: 100%;
224
+ width: 100%;
225
+ }
226
+ &-extra {
227
+ padding: 16px 24px;
228
+ overflow: scroll;
229
+ top: 60px;
230
+ }
231
+ .image-type-text {
232
+ text-align: center;
233
+ font-size: 20px;
234
+ font-weight: 700;
235
+ line-height: 30px;
236
+ letter-spacing: 0.8px;
237
+ color: #212121;
238
+ }
239
+
240
+ .image-line {
241
+ border: 1px solid #eeeeee;
242
+ margin-top: 24px;
243
+
244
+ &.desktop {
245
+ display: none;
246
+ }
247
+
248
+ &-extra {
249
+ margin-bottom: 10px;
250
+ }
251
+ }
252
+
253
+ .image-container {
254
+ // background: var(--authme-container-bg-color);
255
+ // box-shadow: 0px 4px 60px rgba(4, 6, 15, 0.05);
256
+ // border-radius: 12px;
257
+ padding: 8px;
258
+ max-width: 400px;
259
+ margin: auto;
260
+ margin-top: 24px;
261
+ max-height: 50%;
262
+
263
+ canvas {
264
+ display: flex;
265
+ z-index: 102;
266
+ max-height: 30vh;
267
+ max-width: 400px;
268
+ width: -webkit-fill-available;
269
+ overflow: hidden;
270
+ border-radius: 12px;
271
+ object-fit: contain;
272
+ }
273
+
274
+ &-extra {
275
+ height: 65%;
276
+ margin-top: 16px;
277
+ width: 100%;
278
+
279
+ canvas {
280
+ // max-height: 100%;
281
+ // width: unset;
282
+ margin: auto;
283
+ }
284
+ }
285
+ }
286
+
287
+ .image-footer {
288
+ width: 100%;
289
+ z-index: var(--authme-layers-3-z-index);
290
+ // background: var(--authme-container-bg-color);
291
+
292
+ button {
293
+ width: 100%;
294
+ height: 48px;
295
+ border-radius: 24px;
296
+ font-weight: 700;
297
+ font-size: 16px;
298
+ }
299
+
300
+ .btn-retry {
301
+ border: 1px solid var(--authme__button_primary_outline);
302
+ color: var(--authme__button_primary_outline---text);
303
+ background: unset;
304
+ margin-top: 16px;
305
+ box-shadow: 4px 4px 16px var(--atuhme-btn-shadow);
306
+ }
307
+
308
+ .btn-retry:hover {
309
+ border: 1px solid var(--atuhme-btn-active);
310
+ background-color: var(--authme-retry-btn-active);
311
+ }
312
+
313
+ .btn-complete {
314
+ background-color: var(--authme__button_primary);
315
+ margin-top: 16px;
316
+ color: var(--authme__button_primary---text);
317
+ border: unset;
318
+ box-shadow: 4px 4px 16px var(--atuhme-btn-shadow);
319
+ }
320
+
321
+ .btn-complete:hover {
322
+ background-color: var(--atuhme-btn-active);
323
+ }
324
+ }
325
+
326
+ @media (min-width: 769px) {
327
+ width: unset;
328
+ border-radius: 8px;
329
+ width: 600px;
330
+ padding: 38px 24px 40px 24px;
331
+
332
+ &-extra {
333
+ padding: 38px 24px 40px 24px;
334
+ }
335
+ .image-line {
336
+ max-width: 537px;
337
+ margin: auto;
338
+ margin-top: 14px;
339
+ margin-bottom: 20px;
340
+
341
+ &.desktop {
342
+ display: block;
343
+ }
344
+
345
+ &-extra {
346
+ margin-top: 14px;
347
+ }
348
+ }
349
+
350
+ .image-container {
351
+ margin-bottom: 20px;
352
+
353
+ &-extra {
354
+ margin-top: 24px;
355
+ }
356
+ }
357
+
358
+ .image-footer {
359
+ display: flex;
360
+ justify-content: center;
361
+ flex-direction: row;
362
+
363
+ button {
364
+ width: 165px;
365
+ margin-top: unset;
366
+ }
367
+
368
+ .btn-complete {
369
+ margin-right: 16px;
370
+ }
371
+ }
372
+ }
373
+ }
374
+ }
375
+
376
+ // .confirm-image-container {
377
+ // position: fixed;
378
+ // left: 0;
379
+ // bottom: 0;
380
+ // right: 0;
381
+ // display: none;
382
+ // background: var(--authme-container-bg-color);
383
+ // padding: 32px 24px;
384
+ // border: 1px solid #f5f5f5;
385
+ // border-radius: 20px 20px 0px 0px;
386
+ // z-index: 200;
387
+ // max-height: 90%;
388
+
389
+ // .confirm-image-wapper {
390
+ // display: flex;
391
+ // flex-direction: column;
392
+ // height: 100%;
393
+ // width: 100%;
394
+ // }
395
+
396
+ // &-extra {
397
+ // padding: 16px 24px;
398
+ // overflow: scroll;
399
+ // top: 60px;
400
+ // }
401
+
402
+ // .image-type-text {
403
+ // text-align: center;
404
+ // font-size: 20px;
405
+ // font-weight: 700;
406
+ // line-height: 30px;
407
+ // letter-spacing: 0.8px;
408
+ // color: #212121;
409
+ // }
410
+
411
+ // .image-line {
412
+ // border: 1px solid #eeeeee;
413
+ // margin-top: 24px;
414
+
415
+ // &.desktop {
416
+ // display: none;
417
+ // }
418
+
419
+ // &-extra {
420
+ // margin-bottom: 10px;
421
+ // }
422
+ // }
423
+
424
+ // .image-container {
425
+ // background: var(--authme-container-bg-color);
426
+ // box-shadow: 0px 4px 60px rgba(4, 6, 15, 0.05);
427
+ // border-radius: 12px;
428
+ // padding: 8px;
429
+ // max-width: 400px;
430
+ // margin: auto;
431
+ // margin-top: 24px;
432
+ // max-height: 50%;
433
+
434
+ // canvas {
435
+ // display: flex;
436
+ // z-index: 102;
437
+ // max-height: 30vh;
438
+ // max-width: 400px;
439
+ // width: -webkit-fill-available;
440
+ // overflow: hidden;
441
+ // border-radius: 12px;
442
+ // object-fit: contain;
443
+ // }
444
+
445
+ // &-extra {
446
+ // height: 65%;
447
+ // margin-top: 16px;
448
+ // width: 100%;
449
+
450
+ // canvas {
451
+ // max-height: 100%;
452
+ // width: unset;
453
+ // margin: auto;
454
+ // }
455
+ // }
456
+ // }
457
+
458
+ // .image-footer {
459
+ // width: 100%;
460
+ // z-index: var(--authme-layers-3-z-index);
461
+ // background: var(--authme-container-bg-color);
462
+
463
+ // button {
464
+ // width: 100%;
465
+ // height: 48px;
466
+ // border-radius: 24px;
467
+ // font-weight: 700;
468
+ // font-size: 16px;
469
+ // }
470
+
471
+ // .btn-retry {
472
+ // border: 1px solid var(--authme__button_primary_outline);
473
+ // color: var(--authme__button_primary_outline---text);
474
+ // background: unset;
475
+ // margin-top: 16px;
476
+ // box-shadow: 4px 4px 16px var(--atuhme-btn-shadow);
477
+ // }
478
+
479
+ // .btn-retry:hover {
480
+ // border: 1px solid var(--atuhme-btn-active);
481
+ // background-color: var(--authme-retry-btn-active);
482
+ // }
483
+
484
+ // .btn-complete {
485
+ // background-color: var(--authme__button_primary);
486
+ // margin-top: 16px;
487
+ // color: var(--authme__button_primary---text);
488
+ // border: unset;
489
+ // box-shadow: 4px 4px 16px var(--atuhme-btn-shadow);
490
+ // }
491
+
492
+ // .btn-complete:hover {
493
+ // background-color: var(--atuhme-btn-active);
494
+ // }
495
+ // }
496
+
497
+ // @media (min-width: 769px) {
498
+ // position: absolute;
499
+ // top: calc(50vh - 250px);
500
+ // left: calc(50vw - 300px);
501
+ // right: 0;
502
+ // bottom: 0;
503
+ // border-radius: 8px;
504
+ // width: 600px;
505
+ // height: fit-content;
506
+ // padding: 38px 24px 40px 24px;
507
+ // &-extra {
508
+ // padding: 38px 24px 40px 24px;
509
+ // }
510
+ // .image-line {
511
+ // max-width: 537px;
512
+ // margin: auto;
513
+ // margin-top: 14px;
514
+ // margin-bottom: 20px;
515
+
516
+ // &.desktop {
517
+ // display: block;
518
+ // }
519
+
520
+ // &-extra {
521
+ // margin-top: 14px;
522
+ // }
523
+ // }
524
+
525
+ // .image-container {
526
+ // margin-bottom: 20px;
527
+
528
+ // &-extra {
529
+ // margin-top: 24px;
530
+ // }
531
+ // }
532
+
533
+ // .image-footer {
534
+ // display: flex;
535
+ // justify-content: center;
536
+ // flex-direction: row;
537
+
538
+ // button {
539
+ // width: 165px;
540
+ // margin-top: unset;
541
+ // }
542
+
543
+ // .btn-complete {
544
+ // margin-right: 16px;
545
+ // }
546
+ // }
547
+ // }
548
+ // }
549
+
550
+ .check-other-image-container {
551
+ position: fixed;
552
+ left: calc(50% - 168px);
553
+ bottom: 0px;
554
+ display: none;
555
+ background: var(--authme-container-bg-color);
556
+ border: 1px solid #f5f5f5;
557
+ border-radius: 20px;
558
+ padding: 25px 8px 20px 8px;
559
+
560
+ z-index: 200;
561
+ // width: 336px;
562
+ // height: 162px;
563
+
564
+ .check-other-image-wapper {
565
+ display: flex;
566
+ flex-direction: column;
567
+ height: 100%;
568
+ width: 100%;
569
+ }
570
+
571
+ &-extra {
572
+ bottom: 0px;
573
+ left: 0px;
574
+ border-radius: 20px 20px 0px 0px;
575
+ width: 100%;
576
+ height: 37.5%;
577
+ }
578
+
579
+ .image-type-text {
580
+ text-align: center;
581
+ font-size: 20px;
582
+ font-weight: 700;
583
+ line-height: 30px;
584
+ letter-spacing: 0.8px;
585
+ color: #212121;
586
+
587
+ &-extra {
588
+ margin-top: 20px;
589
+ }
590
+ }
591
+
592
+ .image-line {
593
+ border-top: 1px solid #eeeeee;
594
+ margin-top: 24px;
595
+ flex: 1;
596
+
597
+ &.desktop {
598
+ display: none;
599
+ }
600
+ }
601
+
602
+ .image-footer {
603
+ width: 100%;
604
+ display: flex;
605
+ z-index: var(--authme-layers-3-z-index);
606
+ // background: var(--authme-container-bg-color);
607
+ text-align: center;
608
+ flex-direction: column;
609
+
610
+ &-extra {
611
+ justify-content: center;
612
+
613
+ button {
614
+ width: 94%;
615
+ height: 48px;
616
+ border-radius: 24px;
617
+ font-weight: 700;
618
+ font-size: 16px;
619
+ }
620
+
621
+ .btn-end {
622
+ border: 1px solid var(--authme__button_primary_outline);
623
+ color: var(--authme__button_primary_outline---text);
624
+ background: unset;
625
+ margin-top: 16px;
626
+ }
627
+
628
+ .btn-continue {
629
+ background-color: var(--authme__button_primary);
630
+ margin-top: 16px;
631
+ color: var(--authme__button_primary---text);
632
+ border: unset;
633
+ }
634
+ }
635
+
636
+ button {
637
+ width: 100%;
638
+ height: 48px;
639
+ border-radius: 24px;
640
+ font-weight: 700;
641
+ font-size: 16px;
642
+ }
643
+
644
+ .btn-end {
645
+ border: 1px solid var(--authme__button_primary_outline);
646
+ color: var(--authme__button_primary_outline---text);
647
+ background: unset;
648
+ margin-top: 13px;
649
+ margin-right: 12px;
650
+ }
651
+
652
+ .btn-continue {
653
+ background-color: var(--authme__button_primary);
654
+ margin-top: 13px;
655
+ color: var(--authme__button_primary---text);
656
+ border: unset;
657
+ }
658
+ }
659
+ }
660
+
661
+ .video-container {
662
+ video.front {
663
+ -webkit-transform: rotateY(180deg);
664
+ -ms-transform: rotateY(180deg);
665
+ -moz-transform: rotateY(180deg);
666
+ -o-transform: rotateY(180deg);
667
+ transform: rotateY(180deg);
668
+ }
669
+
670
+ .video-container__close.authme-hide {
671
+ display: none;
672
+ }
673
+
674
+ .title {
675
+ top: calc(30vh - 52px);
676
+ justify-content: start;
677
+
678
+ .title-text {
679
+ height: 100%;
680
+ max-width: 80%;
681
+ text-align: center;
682
+ color: #ffffff;
683
+ border-radius: 8px;
684
+ line-height: 28px;
685
+ font-size: 20px;
686
+ font-weight: 700;
687
+ letter-spacing: 0.05em;
688
+ }
689
+ }
690
+
691
+ //todo
692
+ .title-sk {
693
+ top: calc(30vh + 100px);
694
+ justify-content: start;
695
+
696
+ .title-sk-text {
697
+ height: 100%;
698
+ max-width: 80%;
699
+ text-align: center;
700
+ color: #ffffff;
701
+ border-radius: 8px;
702
+ padding: 8px 14px;
703
+ line-height: 28px;
704
+ font-size: 20px;
705
+ font-weight: 700;
706
+ letter-spacing: 0.05em;
707
+ white-space: break-spaces;
708
+
709
+ &-extra {
710
+ background: #505050;
711
+ }
712
+ }
713
+ }
714
+
715
+ .hint-text {
716
+ width: 100vw;
717
+ position: absolute;
718
+ top: calc(50vh - 44px);
719
+ font-size: 60px;
720
+ color: rgba(255, 255, 255, 0.7);
721
+ height: 100px;
722
+ text-align: center;
723
+ line-height: 88px;
724
+ font-weight: 700;
725
+ letter-spacing: 0.05em;
726
+ }
727
+
728
+ .status {
729
+ &.show {
730
+ display: flex !important;
731
+ }
732
+
733
+ .status-text {
734
+ &.non-empty {
735
+ padding: 8px 14px;
736
+ }
737
+
738
+ @media (min-width: 768px) {
739
+ &.non-empty {
740
+ padding: 12px 14px;
741
+ }
742
+ }
743
+ }
744
+ }
745
+
746
+ .card-border-container {
747
+ position: absolute;
748
+ transform: perspective(400px);
749
+ inset: 0;
750
+
751
+ &__border {
752
+ position: absolute;
753
+ z-index: 100;
754
+ left: 0;
755
+ right: 0;
756
+ top: 0;
757
+ bottom: 0;
758
+ box-shadow: rgba(0, 0, 0, 0.65) 0 0 0 2000px;
759
+ opacity: 0.9;
760
+ margin: auto;
761
+ max-height: 60vh;
762
+ max-width: 95vw;
763
+ border-radius: 12px;
764
+
765
+ animation-duration: 2s;
766
+ animation-timing-function: linear;
767
+
768
+ --b: 3px;
769
+ --c: var(--authme__scan_frame);
770
+ --w: 27px;
771
+ --r: 12px;
772
+
773
+ &-extra {
774
+ margin-top: 125px;
775
+ }
776
+
777
+ &.pass {
778
+ --c: var(--authme__scan_frame_hint_success);
779
+ }
780
+
781
+ &.error {
782
+ --c: var(--authme-scanner-error-color);
783
+ }
784
+
785
+ &::before {
786
+ content: '';
787
+ position: absolute;
788
+ top: 0;
789
+ left: 0;
790
+ right: 0;
791
+ bottom: 0;
792
+ background: var(--c, red);
793
+ padding: 3px;
794
+ border-radius: var(--r);
795
+ mask:
796
+ linear-gradient(#fff 0 0) top / calc(100% - 2 * var(--w)) var(--b),
797
+ linear-gradient(#fff 0 0) bottom/calc(100% - 2 * var(--w)) var(--b),
798
+ linear-gradient(#fff 0 0) left / var(--b) calc(100% - 2 * var(--w)),
799
+ linear-gradient(#fff 0 0) right / var(--b) calc(100% - 2 * var(--w)),
800
+ linear-gradient(#fff 0 0) content-box,
801
+ linear-gradient(#fff 0 0);
802
+ mask-composite: exclude;
803
+ mask-repeat: no-repeat;
804
+ }
805
+
806
+ @include rotateAnimation();
807
+ }
808
+ }
809
+
810
+ .scan {
811
+ z-index: 2;
812
+ position: absolute;
813
+ top: 0;
814
+ bottom: 0;
815
+ left: 0;
816
+ right: 0;
817
+ margin: auto;
818
+ display: none;
819
+ }
820
+
821
+ .success_container {
822
+ position: absolute;
823
+ top: 0;
824
+ left: 0;
825
+ width: 100%;
826
+ height: 100%;
827
+ display: flex;
828
+ justify-content: center;
829
+ align-items: center;
830
+ .block {
831
+ background: rgba(255, 255, 255, 0.8);
832
+ gap: 8px;
833
+ padding: 20px 48px;
834
+ color: var(--Grayscale-900, #545454);
835
+ font-size: 16px;
836
+ display: flex;
837
+ flex-direction: column;
838
+ justify-content: center;
839
+ align-items: center;
840
+ border-radius: 8px;
841
+ box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
842
+ .img {
843
+ height: 60px;
844
+ width: 60px;
845
+ background-image: var(--authme-check-icon-image);
846
+ background-repeat: no-repeat;
847
+ background-position: center;
848
+ background-size: contain;
849
+ z-index: var(--authme-layers-3-z-index);
850
+ }
851
+ }
852
+ }
853
+
854
+ .arrow_container {
855
+ position: absolute;
856
+ top: 0;
857
+ left: 0;
858
+ width: 100%;
859
+ height: 100%;
860
+ display: flex;
861
+ justify-content: center;
862
+ align-items: center;
863
+ }
864
+
865
+ .arrow {
866
+ /*
867
+ * 這個樣式是防偽動畫的包裝,而防偽提示動畫卡片的長寬比是 7/11,
868
+ * 寬度固定為螢幕的 40%,所以設置為 40vw,高度則設定為 40% * 7/11,即 25.2vw
869
+ * 而最大高度及最小寬度也是根據最大及最小寬度響應,所以 min-height = 150 * (7/11) = 94.5px,max-height = 400 * (7/11) = 252px
870
+ */
871
+ height: 335.45px;
872
+ width: 501px;
873
+ min-height: 94.5px;
874
+ min-width: 150px;
875
+ max-height: 252px;
876
+ max-width: 400px;
877
+ z-index: var(--authme-layers-3-z-index);
878
+
879
+ // 手機版尺寸縮小一半
880
+ @media (max-width: 767px) {
881
+ height: 167.73px;
882
+ width: 250.5px;
883
+ min-height: 47.25px;
884
+ min-width: 75px;
885
+ max-height: 126px;
886
+ max-width: 200px;
887
+ }
888
+ }
889
+
890
+ .scan svg {
891
+ filter: var(--authme-lottie-scan-color);
892
+ }
893
+
894
+ .success svg {
895
+ filter: var(--authme-lottie-success-color);
896
+ }
897
+
898
+ .arrow svg {
899
+ filter: var(--authme-lottie-arrow-color);
900
+ }
901
+
902
+ .statement {
903
+ position: absolute;
904
+ z-index: var(--authme-layers-3-z-index);
905
+ bottom: 48px;
906
+ width: 100%;
907
+ text-align: center;
908
+ color: #f1f2f3;
909
+ font-size: 14px;
910
+ letter-spacing: 0.8px;
911
+ }
912
+
913
+ .camera-switch__hint {
914
+ position: absolute;
915
+ padding: 8px 14px;
916
+ bottom: calc(10% + 20px);
917
+ right: calc(5% + 65px);
918
+ font-weight: 400 !important;
919
+ font-size: 14px;
920
+ line-height: 20px;
921
+ max-width: 95%;
922
+ text-align: center;
923
+ // white-space: pre;
924
+ background: rgba(60, 60, 60, 0.7);
925
+ border-radius: 8px;
926
+ color: #ffffff;
927
+ word-break: break-all;
928
+ opacity: 1;
929
+ transition: opacity 0.3s ease-in;
930
+ }
931
+
932
+ .camera-switch-container {
933
+ cursor: pointer;
934
+ position: absolute;
935
+ width: 54px;
936
+ height: 54px;
937
+ bottom: 10%;
938
+ right: 5%;
939
+ border-radius: 50%;
940
+ background-color: rgba(60, 60, 60, 0.7);
941
+ display: flex;
942
+ justify-content: center;
943
+
944
+ .camera-switch {
945
+ margin: auto;
946
+ width: 24px;
947
+ height: 24px;
948
+ display: flex;
949
+ justify-content: center;
950
+
951
+ .camera-switch__text {
952
+ color: white;
953
+ position: absolute;
954
+ }
955
+ }
956
+
957
+ .camera-switch::after {
958
+ content: ' ';
959
+ display: block;
960
+ background-image: var(--authme-camera-icon-image);
961
+ width: 24px;
962
+ height: 24px;
963
+ margin: auto;
964
+ background-position: center;
965
+ background-repeat: no-repeat;
966
+ }
967
+ }
968
+ }
969
+
970
+ // fix style when bootstrap-css missing
971
+ button:not(:disabled),
972
+ [type='button']:not(:disabled),
973
+ [type='reset']:not(:disabled),
974
+ [type='submit']:not(:disabled) {
975
+ cursor: pointer;
976
+ }
977
+ }
978
+
979
+ .ocr-confirm-container {
980
+ .data-confirm {
981
+ position: absolute;
982
+ top: 0px;
983
+ width: 100vw;
984
+ height: calc(100vh - 60px);
985
+ padding: 0 16px;
986
+ background: white;
987
+ margin-top: 60px;
988
+
989
+ .data-type {
990
+ max-width: 500px;
991
+ margin: auto;
992
+ margin-top: 24px;
993
+ margin-bottom: 6px;
994
+ font-weight: 700;
995
+ font-size: 18px;
996
+ }
997
+ }
998
+
999
+ .data {
1000
+ padding-bottom: 124px;
1001
+ }
1002
+
1003
+ .card-type {
1004
+ margin: 20px 0px;
1005
+ font-weight: 700;
1006
+ line-height: 20px;
1007
+ letter-spacing: 0.05em;
1008
+ color: #041b2f;
1009
+ }
1010
+
1011
+ .data-column {
1012
+ max-width: 500px;
1013
+ margin: auto;
1014
+ margin-top: 24px;
1015
+ margin-bottom: 6px;
1016
+
1017
+ .title {
1018
+ font-weight: 700;
1019
+ font-size: 14px;
1020
+ line-height: 20px;
1021
+ letter-spacing: 0.05em;
1022
+ margin-bottom: 4px;
1023
+ letter-spacing: 0.05em;
1024
+ color: #474a53;
1025
+ }
1026
+
1027
+ .content {
1028
+ font-weight: 400;
1029
+ font-size: 14px;
1030
+ line-height: 20px;
1031
+ letter-spacing: 0.05em;
1032
+ color: #474a53;
1033
+ width: 100%;
1034
+ max-width: 500px;
1035
+ height: 36px;
1036
+ border: 1px solid #e1e3e5;
1037
+ padding-left: 14px;
1038
+ border-radius: 4px;
1039
+
1040
+ &.textarea {
1041
+ resize: none;
1042
+ padding-top: 8px;
1043
+ padding-bottom: 8px;
1044
+ height: auto;
1045
+ }
1046
+ }
1047
+
1048
+ .content::placeholder {
1049
+ color: #cccfd3;
1050
+ }
1051
+ }
1052
+
1053
+ .button-panel {
1054
+ position: fixed;
1055
+ bottom: 0;
1056
+ left: 0;
1057
+ height: 100px;
1058
+ width: 100vw;
1059
+ box-shadow: unset;
1060
+ padding: 0 16px;
1061
+ background: white;
1062
+ }
1063
+
1064
+ .confirm-btn {
1065
+ margin-top: 12px;
1066
+ width: calc(100vw - 32px);
1067
+ max-width: 343px;
1068
+ height: 48px;
1069
+ background: var(--authme__button_primary);
1070
+ border: unset;
1071
+ }
1072
+
1073
+ .confirm-btn:disabled {
1074
+ background: #e1e3e5;
1075
+ }
1076
+
1077
+ .header {
1078
+ height: 60px;
1079
+ position: fixed;
1080
+ inset: 0px;
1081
+
1082
+ background: white;
1083
+ display: grid;
1084
+ grid-template-columns: repeat(3, 1fr);
1085
+ column-gap: 16px;
1086
+ grid-template-rows: 60px;
1087
+ place-items: center;
1088
+ z-index: var(--authme-layers-4-z-index);
1089
+ box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
1090
+
1091
+ .header-title {
1092
+ font-size: 18px;
1093
+ line-height: 20px;
1094
+ }
1095
+
1096
+ .header-img {
1097
+ max-height: 24px;
1098
+ }
1099
+ }
1100
+
1101
+ @media only screen and (max-width: 768px) {
1102
+ .header {
1103
+ .header-title {
1104
+ font-size: 14px;
1105
+ }
1106
+
1107
+ .header-img {
1108
+ max-height: 20px;
1109
+ }
1110
+ }
1111
+
1112
+ .button-panel {
1113
+ box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
1114
+ }
1115
+ }
1116
+
1117
+ // fix style when bootstrap-css missing
1118
+ button:not(:disabled),
1119
+ [type='button']:not(:disabled),
1120
+ [type='reset']:not(:disabled),
1121
+ [type='submit']:not(:disabled) {
1122
+ cursor: pointer;
1123
+ }
1124
+
1125
+ .d-flex {
1126
+ display: flex !important;
1127
+ }
1128
+
1129
+ .justify-content-center {
1130
+ justify-content: center !important;
1131
+ }
1132
+ }
1133
+
1134
+ .space {
1135
+ flex: 1;
1136
+ }
1137
+
1138
+ .authme-select-container {
1139
+ height: 100%;
1140
+ position: fixed;
1141
+ top: 60px;
1142
+ left: 0px;
1143
+ width: 100%;
1144
+ inset: 0px;
1145
+ padding: 10px 16px;
1146
+ background: var(--authme-container-bg-color);
1147
+ display: flex;
1148
+ flex-direction: column;
1149
+ z-index: 200;
1150
+
1151
+ .menu-header {
1152
+ display: flex;
1153
+ flex-direction: row;
1154
+ align-items: center;
1155
+ padding: 0px;
1156
+ width: 100%;
1157
+ height: 42px;
1158
+ left: 0px;
1159
+ top: 20px;
1160
+
1161
+ .menu-header-left {
1162
+ display: flex;
1163
+ flex-direction: row;
1164
+ align-items: center;
1165
+ padding: 8px 24px;
1166
+ gap: 5px;
1167
+ width: 30%;
1168
+ height: 100%;
1169
+ flex: none;
1170
+ order: 0;
1171
+ align-self: stretch;
1172
+ flex-grow: 1;
1173
+
1174
+ .menu-header-back {
1175
+ display: none; //hide back image
1176
+ width: 24px;
1177
+ height: 24px;
1178
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAD7SURBVHgB3ZU9EoIwEIVXuQA3MCWl3EA7y3ACh5voSeQIWFI53sCSztYypR2+jHGGwYT8NvpmdhIW+B4hP0v061pQgDjnazQXhECUbdsK07NL8tQIniOYCkpiMIFLHfH1t7l3nH+RAX6wvec0gqqq9iFwKesIJHwYhmaUcoZbDWLhswYp4EYDDbwGvKEAfRlgtTA09xRwKd0qEio+WlGEsmmi7/tnURQdujt6L8sNrmX+SgHKdEnAHoCe0eWxJpnpBmBCY5Ij35GHrBtNTbrcxUylGkx6TY5yOotiTHwOOxZi4lVwQky8K5rGpJyrCaElk6E5yT7gW/prvQCHpnbdSHXj/AAAAABJRU5ErkJggg==');
1179
+ }
1180
+ }
1181
+
1182
+ .menu-header-right {
1183
+ display: flex;
1184
+ flex-direction: row;
1185
+ justify-content: flex-end;
1186
+ align-items: center;
1187
+ padding: 8px 24px 8px 8px;
1188
+ gap: 10px;
1189
+ width: 30%;
1190
+ height: 100%;
1191
+ flex: none;
1192
+ order: 2;
1193
+ align-self: stretch;
1194
+ flex-grow: 1;
1195
+
1196
+ .menu-header-close {
1197
+ width: 24px;
1198
+ height: 24px;
1199
+ background-image: var(--authme-close-icon-image);
1200
+ }
1201
+ }
1202
+
1203
+ .menu-header-title {
1204
+ display: flex;
1205
+ flex-direction: row;
1206
+ align-items: center;
1207
+ padding: 0px;
1208
+ gap: 10px;
1209
+ height: 100%;
1210
+ flex: none;
1211
+ order: 1;
1212
+ flex-grow: 0;
1213
+
1214
+ .menu-header-title-text {
1215
+ height: 100%;
1216
+ font-style: normal;
1217
+ font-size: 18px;
1218
+ line-height: 28px;
1219
+ display: flex;
1220
+ align-items: center;
1221
+ text-align: center;
1222
+ letter-spacing: 0.05em;
1223
+ color: #474a53;
1224
+ flex: none;
1225
+ order: 0;
1226
+ flex-grow: 1;
1227
+ }
1228
+ }
1229
+ }
1230
+
1231
+ .menu-content {
1232
+ display: flex;
1233
+ flex-direction: column;
1234
+ height: calc(100vh - 42px - 10px);
1235
+ overflow-y: scroll;
1236
+ overflow-x: hidden;
1237
+ align-items: center;
1238
+
1239
+ .country-select {
1240
+ display: flex;
1241
+ flex-direction: column;
1242
+ align-items: flex-start;
1243
+ padding: 0px;
1244
+ gap: 8px;
1245
+ width: 90%;
1246
+ left: 24px;
1247
+ top: 110px;
1248
+ margin-bottom: 24px;
1249
+ max-width: 375px;
1250
+
1251
+ .country-select-label {
1252
+ max-width: 375px;
1253
+ height: 20px;
1254
+ font-style: normal;
1255
+ font-size: 14px;
1256
+ line-height: 20px;
1257
+ color: #2f2f2f;
1258
+ flex: none;
1259
+ order: 0;
1260
+ flex-grow: 0;
1261
+ }
1262
+
1263
+ .country-select-dropdown {
1264
+ box-sizing: border-box;
1265
+ display: flex;
1266
+ flex-direction: row;
1267
+ align-items: center;
1268
+
1269
+ gap: 8px;
1270
+ width: 100%;
1271
+ height: var(--authme-item-height);
1272
+
1273
+ flex: none;
1274
+ order: 0;
1275
+ flex-grow: 0;
1276
+ position: relative;
1277
+
1278
+ .country-select-dropdown-frame {
1279
+ display: flex;
1280
+ flex-direction: row;
1281
+ justify-content: center;
1282
+ align-items: center;
1283
+ padding: 0px;
1284
+ gap: 8px;
1285
+ width: 100%;
1286
+ height: 100%;
1287
+ flex: none;
1288
+ order: 0;
1289
+ flex-grow: 0;
1290
+ border: 1px solid #ebebeb;
1291
+ transition: border
1292
+ var(--authme-country-select-dropdown-transition-duration) ease;
1293
+ border-radius: 8px;
1294
+ padding: 12px 16px;
1295
+ background: var(--authme-container-bg-color);
1296
+
1297
+ .country-select-dropdown-text {
1298
+ width: 267px;
1299
+ height: 20px;
1300
+ font-style: normal;
1301
+ font-weight: 400;
1302
+ font-size: 14px;
1303
+ line-height: 20px;
1304
+ color: #474a53;
1305
+ order: 1;
1306
+ flex-grow: 1;
1307
+ }
1308
+
1309
+ .country-select-dropdown-icon {
1310
+ display: none; // hide country select dropdown icon
1311
+ width: 20px;
1312
+ height: 20px;
1313
+ flex: none;
1314
+ order: 2;
1315
+ flex-grow: 0;
1316
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADpSURBVHgB7Y89bsJAFITnLYlE6SNQpoiUNOnJDUIXRVa05ZZwAuAE0GEqjDA/HdwADkCB4AIcAQqEBXgfuwU/QoCFROmvnDfzNAMkJDwMXQquq7JaUIU1yt2gNrgVdKXKcoTiayqd8/3q4qCLS6PWkTmyQ8T9v39VvPbM6jrCEMSfIULnbkPLr1QZoU2AkSFwtd2qF6wuZd7ZcmjbS5Oca4Hvnu/NYx8ewpto3TCWHxBNhOCC3lHFtiJGc/WSzg/OpsY+PM5zVcm4TtMZ5U7glW75U4hhNh2P3j++lkR4E4xcO/B8JCQ8lz0ipFKJiExXnwAAAABJRU5ErkJggg==');
1317
+ }
1318
+ }
1319
+
1320
+ .dropdown-country-list {
1321
+ position: absolute;
1322
+ display: none;
1323
+ background-color: var(--authme-container-bg-color);
1324
+ width: 100%;
1325
+ max-width: 375px;
1326
+ overflow: auto;
1327
+ z-index: 1;
1328
+ top: var(--authme-item-height);
1329
+ left: 0;
1330
+ border: 1px solid var(--authme-custom__primary-1);
1331
+ border-top: none;
1332
+ max-height: calc(var(--authme-item-height) * 3);
1333
+ border-radius: 0px 0px 8px 8px;
1334
+ transition: border
1335
+ var(--authme-country-select-dropdown-transition-duration) ease;
1336
+ animation-duration: var(
1337
+ --authme-country-select-dropdown-animation-duration
1338
+ );
1339
+
1340
+ .dropdown-country-list-item {
1341
+ display: flex;
1342
+ flex-direction: row;
1343
+ align-items: center;
1344
+ padding: 0px;
1345
+ gap: 8px;
1346
+ width: 100%;
1347
+ height: var(--authme-item-height);
1348
+ background: var(--authme-container-bg-color);
1349
+ padding: 12px 16px;
1350
+ flex: none;
1351
+ order: 0;
1352
+ flex-grow: 0;
1353
+
1354
+ .dropdown-country-list-item-frame {
1355
+ display: flex;
1356
+ flex-direction: row;
1357
+ justify-content: center;
1358
+ align-items: center;
1359
+ padding: 0px;
1360
+ gap: 8px;
1361
+ width: 100%;
1362
+ height: 20px;
1363
+ flex: none;
1364
+ order: 0;
1365
+ flex-grow: 0;
1366
+ position: relative;
1367
+
1368
+ .dropdown-country-list-item-text {
1369
+ width: 267px;
1370
+ height: 20px;
1371
+ font-style: normal;
1372
+ font-weight: 400;
1373
+ font-size: 14px;
1374
+ line-height: 20px;
1375
+ color: #474a53;
1376
+ order: 1;
1377
+ flex-grow: 1;
1378
+ }
1379
+ }
1380
+ }
1381
+
1382
+ .dropdown-country-list-item:hover {
1383
+ background: var(--authme-container-bg-active-color);
1384
+ }
1385
+ }
1386
+ }
1387
+
1388
+ .country-select-dropdown.active {
1389
+ .country-select-dropdown-frame {
1390
+ border: 1px solid var(--authme-custom__primary-1);
1391
+ border-bottom: none;
1392
+ border-radius: 8px 8px 0px 0px;
1393
+ }
1394
+
1395
+ .dropdown-country-list {
1396
+ display: block;
1397
+ animation-name: dropdown-open;
1398
+ }
1399
+ }
1400
+
1401
+ .country-select-dropdown.closing {
1402
+ animation-duration: 0.3s;
1403
+
1404
+ .country-select-dropdown-frame {
1405
+ border: 1px solid var(--authme-container-border-color);
1406
+ border-bottom: none;
1407
+ border-radius: 8px 8px 0px 0px;
1408
+ }
1409
+
1410
+ .dropdown-country-list {
1411
+ display: block;
1412
+ border: 1px solid var(--authme-container-border-color);
1413
+ overflow: hidden;
1414
+ border-top: none;
1415
+ animation-name: dropdown-close;
1416
+ }
1417
+ }
1418
+
1419
+ @keyframes dropdown-open {
1420
+ from {
1421
+ max-height: 0px;
1422
+ }
1423
+ to {
1424
+ max-height: calc(var(--authme-item-height) * 3);
1425
+ }
1426
+ }
1427
+
1428
+ @keyframes dropdown-close {
1429
+ from {
1430
+ max-height: calc(var(--authme-item-height) * 3);
1431
+ }
1432
+ to {
1433
+ max-height: 0px;
1434
+ }
1435
+ }
1436
+ }
1437
+
1438
+ .card-type-select {
1439
+ --authme-card-type-idcard-icon: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAARCAYAAADHeGwwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGUSURBVHgBrVQxTsMwFH12LOjIDQgnAC6AyIIEC3SkgjZsZSqcgHKDMtGtRa2ADaYisTRwAXoEHyFrUezPT9qKNg0U0Twpiv397Be/2E8cl88rkmyDINaQL7QQoq4EUZ1I3EngGTnCAkcENBS33XjxbrcZIEec+FVYQzU1XfT9qvsJ7GIJrABBu93Uk/6MQBTBFQIVLIGIoPmlMwXGNgXIESqz2n9x4VALxHYJ0cbO/hlyFXDoKFk8BpGP/usNvL3BNKV0WvUF5u0UhOvpA5MtYMQAkia9kAthmmIdBNJkTFXf/seQyIK3H8DSNh/mS1jlcV+nKQWYNTjcSD2FFG9+B/0nnrjq82Y3R4VoHe89FzsHMxdxaNSuBB2mp/96ipKfK+mD/efYoOmRC7z1NOxwG14xseuhc9vgVwMLkNoBbSHxHGE2vRCPB3GrVK7W+RuuxgP6vtPcWCzgJTb8KZOsRFtFIzFrTfgTT+GfeBzFgV7EUxypA06+WolzCDmCE3qTL4VWRlLRMWjBLJdBcwKwIRxb/AKxrZKBs1z5YAAAAABJRU5ErkJggg==');
1440
+ --authme-card-type-passport-icon: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAWCAYAAAAmaHdCAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGCSURBVHgB1VQxTgJREH3zIdGSI6w3gAOYsI0JWgClRgU6rJQTiCcQOjpBCa3YoLFhJbGGG7hH2FLi7h+HjwkmLO5uQuMrdv/8TN5/82YydHx+UVGsWwzKIDlcImqmibnJTD0FDJEQGigx0ErL2VoQ9PsdBwlxWq1DB3yZ/jPr/TWLwLdA5GG/4GxKCycZP1tI8R18P29iZg9vIw+abNgFNx6J4jEYljmTeBWgJ6ku1Nej3OTW0tcIJqOSfK2fyEUwr8E+HMI+mEn8JCrz0STMWWiuyWEmXtwgtVvCWLwxqmgGpfPR5SxMTCGDgMpS1lRuMkj5jvxto1CLukglwbwrairAp2fkG3XIYvJyu7xXTjSJXZYuqDbUztSYCvNyBqyroqId1p11EkNU6Jp2MuelPEektCXOwT7qhqVvHrbli1eIAYUtIFTJyVn9A6tZWYHgDu47e7FIBg/rif9DyVaM3U53COwxobjYUkkha7UIYjctC7ohhl1zEG+wfoNIe9qnxjce0ZNSjSrRegAAAABJRU5ErkJggg==');
1441
+ --authme-card-type-driverlicense-icon: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAARCAYAAADHeGwwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGWSURBVHgBrVRLUgIxEH2dSVkuOcLoBfQECmWVVepCWUopsMQVRwBuwE5WCgWlLlnh0kEvwBHmCLiUmqRtvjLMKFjMW2TSL0m/5E3SdJ2/Kyi2dQalkCx8IqpqYq4yU0sBXSQIC1wxUNfSd8fJO52GhwRxUyzBGi7rZbJYLLkjII0tsAN4zWbDn8chgSCAS4QCtkDA8OXjxwrMbPKQIHQs+/GahrXpEGdpgMz5vy9CvIDlR2lbS0wKCmNuIZC7LRUJUTuJUVu+MFGBye55iOOLaojv907wJmOZs8li68BTJrIaRv/4Hy8w3b0rCTkyRvZB2v1xdxcmNXKcyJTdlTjOIhekumD7ibkF85hoYcmX0WkFvlxd/OctWoDtIca+/xYLntv3dfnUsQZRAZIfybiSrLWVgcrkJDPk8qWqzKvMQv+p3djbTMBoSRz0kbkI7+69N4RR3jy0Ck0dTN+MtWaIjU+QOR1IO4jwR+chwZdpOfCxBlpK6kAqXzkndQgJQir0gTwKXxvFWcfIIzLb1aCIAOwQjs1+A4FtmhTh4v5SAAAAAElFTkSuQmCC');
1442
+ --authme-card-type-healthcard-icon: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFmSURBVHgB7ZRPUsIwFMa/pBmHJUfAE3gE6lJdKEsZhS7riiNQbtCd7MSBUZduxKXlBh4hR2Ar0+SZtiDQ8mdsO8OG30ybJi/vfclL+oAjh4bdth7anLRPYFWUi2SMeYIReUTsmQPvKBEN3BDgC/Ndi4KPRv0AJXLnuNCKOmJ10HHc2gywUYATIBgM+nLRXxMIQ9QYQxsFCAnSNHKjwDxNAUqE77ROxhQ/BRDISfPedRiy6WSE3uqFyQp8fdrg2l4bm3x4cat5gPOL2FlbCLjKeEOJZf43C8TBWTe1ru7cFr2D6FWBqs4sK+NeSfWzAtEqk0DLwKDen23OjxI2B12n3XfeopgkBUmgyTgRqF956Wmvw0ffND72kP+QW64HwiKV8mXYP/2/QP2SbTNpjoEIk51qrabb5uXewVtSDuS+ecKU1G9zpJ2mqUMoEVOhz8xPIYXi1LAUnqCK1aCMAPQUlm7gyD5+AelqfP7PlLbqAAAAAElFTkSuQmCC');
1443
+ --authme-card-type-residentcard-icon: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGKSURBVHgB7ZQxUsJAFIb/3eyoJUeIJ5ATKJaMhVDKKMQOqxzBeAKxkk4cGLVDGy1hPIFHyBFo1ew+XwxBTCBxhszY8M0ku5u3b//s27cPWPPfiKPmWUuS6RBECcXiCyE8JYg8InErgUcUiAFqBHQU9+1w8cGgO0aBHDttGE2umv/oOG37A6hgBTaAca/X9ePxL4EggC0EWliBgOBz4y8UmIZpjAJRmdbX50sIMYG0nqC1i93qKQoRGA1LsDaHID4P4lwwnzXO6DJbZgKNk7YjkA6nIFzMJ0xaYPRiQ9KIF7fn3Moz237VD7vGwljqlDe0+ol/iEzNkOTx28YipHHi7hY075I7iWcr4ZLegREei0y3TlfTHbjfzd6BF09716oiQYdJ98wsSovJTvTn5CZN9/3r0NZBDssE/JwxGs22x+d0Htvv+t1t/EkgOsTk5JSzkeipILozxugJlpAdogweonLg581TXFLfuPK5Da5DKBCu0Dt8KXylJdUtjRvo1WpQSgBmAsvUsSaPL4jehWLhDXhaAAAAAElFTkSuQmCC');
1444
+ display: flex;
1445
+ flex-direction: column;
1446
+ align-items: flex-start;
1447
+ padding: 0px;
1448
+ gap: 8px;
1449
+ width: 90%;
1450
+ max-width: 375px;
1451
+ left: 24px;
1452
+ top: 218px;
1453
+
1454
+ .card-type-select-label {
1455
+ width: 327px;
1456
+ height: 20px;
1457
+ font-style: normal;
1458
+ font-size: 14px;
1459
+ line-height: 20px;
1460
+ color: #2f2f2f;
1461
+ flex: none;
1462
+ order: 0;
1463
+ flex-grow: 0;
1464
+ }
1465
+
1466
+ .card-out-frame {
1467
+ box-sizing: border-box;
1468
+ display: flex;
1469
+ align-items: center;
1470
+ padding: 12px 16px;
1471
+ gap: 8px;
1472
+ width: 100%;
1473
+ height: 56px;
1474
+ background: var(--authme-container-bg-color);
1475
+ border: 1px solid #ebebeb;
1476
+ border-radius: 8px;
1477
+ transition: border 500ms;
1478
+ position: relative;
1479
+ overflow: hidden;
1480
+ user-select: none;
1481
+ cursor: pointer;
1482
+
1483
+ .card-in-frame {
1484
+ display: flex;
1485
+ flex-direction: row;
1486
+ justify-content: center;
1487
+ align-items: center;
1488
+ padding: 0px;
1489
+ gap: 8px;
1490
+ width: 100%;
1491
+ height: 20px;
1492
+
1493
+ .card-label {
1494
+ cursor: pointer;
1495
+ width: 267px;
1496
+ height: 20px;
1497
+ font-style: normal;
1498
+ font-weight: 400;
1499
+ font-size: 14px;
1500
+ line-height: 20px;
1501
+ color: #474a53;
1502
+ order: 0;
1503
+ flex-grow: 1;
1504
+ display: flex;
1505
+ align-items: center;
1506
+ }
1507
+
1508
+ .card-label::before {
1509
+ content: ' ';
1510
+ display: block;
1511
+ width: 24px;
1512
+ height: 17px;
1513
+ margin-right: 6px;
1514
+ background-image: var(--authme-card-type-idcard-icon);
1515
+ }
1516
+
1517
+ .card-label.idcard::before {
1518
+ content: ' ';
1519
+ background-image: var(--authme-card-type-idcard-icon);
1520
+ }
1521
+
1522
+ .card-label.passport::before {
1523
+ content: ' ';
1524
+ width: 17px;
1525
+ height: 22px;
1526
+ margin-right: 13px;
1527
+ background-image: var(--authme-card-type-passport-icon);
1528
+ }
1529
+
1530
+ .card-label.driverlicense::before {
1531
+ content: ' ';
1532
+ background-image: var(--authme-card-type-driverlicense-icon);
1533
+ }
1534
+
1535
+ .card-label.healthcard::before {
1536
+ content: ' ';
1537
+ height: 21px;
1538
+ background-image: var(--authme-card-type-healthcard-icon);
1539
+ }
1540
+
1541
+ .card-label.residentcard::before {
1542
+ content: ' ';
1543
+ height: 21px;
1544
+ background-image: var(--authme-card-type-residentcard-icon);
1545
+ }
1546
+
1547
+ .card-icon {
1548
+ width: 16px;
1549
+ height: 16px;
1550
+ display: flex;
1551
+ align-items: center;
1552
+ justify-self: center;
1553
+ border-radius: 50%;
1554
+ border: var(--authme__document-menu_fouce---fouce-point) solid 1px;
1555
+ }
1556
+
1557
+ .card-in-frame {
1558
+ .card-icon::after {
1559
+ content: ' ';
1560
+ width: 8px;
1561
+ height: 8px;
1562
+ border-radius: 50%;
1563
+ background-color: var(
1564
+ --authme__document-menu_fouce---fouce-point
1565
+ );
1566
+ display: block;
1567
+ margin: auto;
1568
+ opacity: 0;
1569
+ transition: opacity 500ms;
1570
+ }
1571
+ }
1572
+ }
1573
+ }
1574
+
1575
+ .card-out-frame:after {
1576
+ content: '';
1577
+ display: block;
1578
+ position: absolute;
1579
+ width: 100%;
1580
+ height: 100%;
1581
+ top: 0;
1582
+ left: 0;
1583
+ pointer-events: none;
1584
+ background-image: radial-gradient(
1585
+ circle,
1586
+ var(--authme__document-menu_fouce) 10%,
1587
+ transparent 10.01%
1588
+ );
1589
+ background-repeat: no-repeat;
1590
+ background-position: 50%;
1591
+ transform: scale(10, 10);
1592
+ opacity: 0;
1593
+ transition:
1594
+ transform 0.3s,
1595
+ opacity 0.5s;
1596
+ }
1597
+
1598
+ .card-out-frame:active:after {
1599
+ transform: scale(0, 0);
1600
+ opacity: 0.3;
1601
+ transition: 0s;
1602
+ }
1603
+
1604
+ .card-out-frame.active {
1605
+ border-color: var(--authme__document-menu_fouce);
1606
+
1607
+ .card-in-frame {
1608
+ .card-icon::after {
1609
+ content: ' ';
1610
+ width: 8px;
1611
+ height: 8px;
1612
+ border-radius: 50%;
1613
+ background-color: var(--authme__document-menu_fouce---fouce-point);
1614
+ display: block;
1615
+ margin: auto;
1616
+ transition: opacity 500ms;
1617
+ }
1618
+ }
1619
+ }
1620
+ }
1621
+
1622
+ .menu-content-footer {
1623
+ margin-top: 50px;
1624
+ padding: 10px 10px 40px;
1625
+ width: 100%;
1626
+
1627
+ .menu-content-footer-content {
1628
+ margin: 0 auto;
1629
+ font-size: var(--authme-font-small);
1630
+ color: var(--authme-menu-footer);
1631
+
1632
+ .footer-confirm-button {
1633
+ width: 90%;
1634
+ margin: 0 auto;
1635
+ height: 48px;
1636
+ background: var(--authme__button_primary);
1637
+ box-shadow: 4px 4px 16px var(--atuhme-btn-shadow);
1638
+ border-radius: 24px;
1639
+ color: var(--authme__button_primary---text);
1640
+ display: flex;
1641
+ justify-content: center;
1642
+ align-items: center;
1643
+ font-size: var(--authme-font-mid);
1644
+ max-width: 375px;
1645
+ cursor: pointer;
1646
+
1647
+ transition:
1648
+ border 500ms,
1649
+ background-color 300ms;
1650
+ position: relative;
1651
+ overflow: hidden;
1652
+ user-select: none;
1653
+ }
1654
+
1655
+ .footer-confirm-button:after {
1656
+ content: '';
1657
+ display: block;
1658
+ position: absolute;
1659
+ width: 100%;
1660
+ height: 100%;
1661
+ top: 0;
1662
+ left: 0;
1663
+ pointer-events: none;
1664
+ background-image: radial-gradient(
1665
+ circle,
1666
+ var(--authme-secondary) 10%,
1667
+ transparent 10.01%
1668
+ );
1669
+ background-repeat: no-repeat;
1670
+ background-position: 50%;
1671
+ transform: scale(10, 10);
1672
+ opacity: 0;
1673
+ transition:
1674
+ transform 0.3s,
1675
+ opacity 0.5s;
1676
+ }
1677
+
1678
+ .footer-confirm-button:active:after {
1679
+ transform: scale(0, 0);
1680
+ opacity: 0.3;
1681
+ transition: 0s;
1682
+ }
1683
+
1684
+ .footer-confirm-button.disable {
1685
+ pointer-events: none;
1686
+ background-color: var(--authme-disable);
1687
+ }
1688
+
1689
+ .footer-statement {
1690
+ margin-top: 10px;
1691
+ text-align: center;
1692
+ }
1693
+ }
1694
+ }
1695
+ }
1696
+ }
1697
+
1698
+ .image-footer {
1699
+ width: 100%;
1700
+ display: flex;
1701
+ z-index: var(--authme-layers-3-z-index);
1702
+ // background: var(--authme-container-bg-color);
1703
+ text-align: center;
1704
+ flex-direction: column;
1705
+
1706
+ &-extra {
1707
+ justify-content: center;
1708
+
1709
+ button {
1710
+ width: 94%;
1711
+ height: 48px;
1712
+ border-radius: 24px;
1713
+ font-weight: 700;
1714
+ font-size: 16px;
1715
+ }
1716
+
1717
+ .btn-end {
1718
+ border: 1px solid var(--authme__button_primary_outline);
1719
+ color: var(--authme__button_primary_outline---text);
1720
+ background: unset;
1721
+ margin-top: 16px;
1722
+ }
1723
+
1724
+ .btn-continue {
1725
+ background-color: var(--authme__button_primary);
1726
+ margin-top: 16px;
1727
+ color: var(--authme__button_primary---text);
1728
+ border: unset;
1729
+ }
1730
+ }
1731
+
1732
+ button {
1733
+ width: 100%;
1734
+ height: 48px;
1735
+ border-radius: 24px;
1736
+ font-weight: 700;
1737
+ font-size: 16px;
1738
+ }
1739
+
1740
+ .btn-end {
1741
+ border: 1px solid var(--authme__button_primary_outline);
1742
+ color: var(--authme__button_primary_outline---text);
1743
+ background: unset;
1744
+ margin-top: 13px;
1745
+ margin-right: 12px;
1746
+ }
1747
+
1748
+ .btn-continue {
1749
+ background-color: var(--authme__button_primary);
1750
+ margin-top: 13px;
1751
+ color: var(--authme__button_primary---text);
1752
+ border: unset;
1753
+ }
1754
+ }
1755
+
1756
+ .video-container__modal {
1757
+ position: absolute;
1758
+ top: 0;
1759
+ left: 0;
1760
+ width: 100%;
1761
+ height: 100%;
1762
+ background-color: #fff;
1763
+ z-index: 2048;
1764
+ display: flex;
1765
+ flex-direction: column;
1766
+ justify-content: space-between;
1767
+ .video-container__modal-header-container {
1768
+ position: relative;
1769
+ height: 42px;
1770
+ display: flex;
1771
+ align-items: center;
1772
+ .video-container__modal-header {
1773
+ color: var(--Grayscale-900, #545454);
1774
+ text-align: center;
1775
+ font-size: 18px;
1776
+ font-style: normal;
1777
+ font-weight: 700;
1778
+ line-height: 28px; /* 155.556% */
1779
+ letter-spacing: 0.9px;
1780
+ width: calc(100% - 48px * 2);
1781
+ word-break: break-word;
1782
+ margin: 0 auto;
1783
+ text-overflow: ellipsis;
1784
+ overflow: hidden;
1785
+ text-wrap: nowrap;
1786
+ }
1787
+ .video-container__modal-close {
1788
+ position: absolute;
1789
+ top: 50%;
1790
+ margin-top: -12px;
1791
+ right: 24px;
1792
+ &:hover {
1793
+ cursor: pointer;
1794
+ }
1795
+ }
1796
+ }
1797
+ .video-container__modal-body-container {
1798
+ flex-grow: 1;
1799
+ overflow-y: auto;
1800
+ box-sizing: border-box;
1801
+ padding: 24px;
1802
+ }
1803
+ .video-container__modal-body {
1804
+ max-width: 630px;
1805
+ margin: 0 auto;
1806
+ }
1807
+ .video-container__modal-title {
1808
+ color: var(--Grayscale-900, #545454);
1809
+ font-size: 18px;
1810
+ font-weight: 700;
1811
+ line-height: 28px; /* 155.556% */
1812
+ letter-spacing: 0.9px;
1813
+ }
1814
+ .video-container__modal-subtitle {
1815
+ color: var(--Grayscale-900, #545454);
1816
+ font-size: 14px;
1817
+ font-weight: 400;
1818
+ line-height: normal;
1819
+ letter-spacing: 0.2px;
1820
+ margin-top: 4px;
1821
+ }
1822
+ .video-container__modal-image {
1823
+ margin-top: 24px;
1824
+ width: 100%;
1825
+ }
1826
+ .video-container__modal-content {
1827
+ margin-top: 24px;
1828
+ color: var(--Grayscale-900, #545454);
1829
+ font-size: 14px;
1830
+ font-style: normal;
1831
+ font-weight: 400;
1832
+ line-height: 28px; /* 200% */
1833
+ word-break: break-word;
1834
+ }
1835
+ .video-container__modal-footer-container {
1836
+ height: 127px;
1837
+ // box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.1);
1838
+ }
1839
+ .video-container__modal-confirm {
1840
+ border-radius: 24px;
1841
+ background: var(--authme-primary);
1842
+ box-shadow: 4px 4px 16px 0px var(--atuhme-btn-shadow);
1843
+ color: var(--Others-White, #fff);
1844
+ text-align: center;
1845
+ font-size: 16px;
1846
+ font-weight: 700;
1847
+ line-height: 28px; /* 175% */
1848
+ letter-spacing: 0.8px;
1849
+ min-height: 48px;
1850
+ padding: 8px 16px;
1851
+ box-sizing: border-box;
1852
+ // width: calc(100% - 24px * 2);
1853
+ margin: 9px auto 0 auto;
1854
+ // max-width: 327px;
1855
+ &:hover {
1856
+ cursor: pointer;
1857
+ }
1858
+ }
1859
+ .video-container__modal-copy-right {
1860
+ margin-top: 10px;
1861
+ color: var(--authme-gray_400);
1862
+ text-align: center;
1863
+ font-size: 12px;
1864
+ font-weight: 400;
1865
+ line-height: 20px; /* 166.667% */
1866
+ letter-spacing: 0.8px;
1867
+ }
1868
+ }
1869
+
1870
+ .video-container__modal_fraudIntro {
1871
+ position: absolute;
1872
+ top: 0;
1873
+ left: 0;
1874
+ width: 100%;
1875
+ height: 100%;
1876
+ background-color: #fff;
1877
+ z-index: 2048;
1878
+ display: flex;
1879
+ flex-direction: column;
1880
+ justify-content: space-between;
1881
+ .video-container__modal-header-container {
1882
+ position: relative;
1883
+ height: 42px;
1884
+ display: flex;
1885
+ align-items: center;
1886
+ .video-container__modal-header {
1887
+ color: var(--Grayscale-900, #545454);
1888
+ text-align: center;
1889
+ font-size: 18px;
1890
+ font-style: normal;
1891
+ font-weight: 700;
1892
+ line-height: 28px; /* 155.556% */
1893
+ letter-spacing: 0.9px;
1894
+ width: calc(100% - 48px * 2);
1895
+ word-break: break-word;
1896
+ margin: 0 auto;
1897
+ text-overflow: ellipsis;
1898
+ overflow: hidden;
1899
+ text-wrap: nowrap;
1900
+ }
1901
+ .video-container__modal-close {
1902
+ position: absolute;
1903
+ top: 50%;
1904
+ margin-top: -12px;
1905
+ right: 24px;
1906
+ &:hover {
1907
+ cursor: pointer;
1908
+ }
1909
+ }
1910
+ }
1911
+ .video-container__modal-body-container {
1912
+ flex-grow: 1;
1913
+ overflow-y: auto;
1914
+ box-sizing: border-box;
1915
+ padding: 24px;
1916
+ }
1917
+ .video-container__modal-body {
1918
+ max-width: 630px;
1919
+ margin: 0 auto;
1920
+ }
1921
+ .video-container__modal-title {
1922
+ color: var(--Grayscale-900, #545454);
1923
+ font-size: 18px;
1924
+ font-weight: 700;
1925
+ line-height: 28px; /* 155.556% */
1926
+ letter-spacing: 0.9px;
1927
+ }
1928
+ .video-container__modal-label {
1929
+ /* Auto layout */
1930
+ display: flex;
1931
+ flex-direction: row;
1932
+ justify-content: center;
1933
+ align-items: center;
1934
+ margin-bottom: 16px;
1935
+ margin-top: 16px;
1936
+ &:first-child {
1937
+ margin-top: 0;
1938
+ }
1939
+ span {
1940
+ background-color: #25608a;
1941
+ border-radius: 15px;
1942
+ padding: 4px 16px;
1943
+ color: #fff;
1944
+ font-weight: 500;
1945
+ font-size: 14px;
1946
+ line-height: 22px;
1947
+ }
1948
+ }
1949
+ .video-container__modal-body2 {
1950
+ font-size: 14px;
1951
+ line-height: 22px;
1952
+ color: #212121;
1953
+ margin-bottom: 8px;
1954
+ }
1955
+ .video-container__modal-body3 {
1956
+ font-size: 12px;
1957
+ line-height: 20px;
1958
+ text-align: center;
1959
+ color: #616161;
1960
+ }
1961
+ .video-container__modal-image-container {
1962
+ margin-top: 24px;
1963
+ box-sizing: border-box;
1964
+ padding: 8px;
1965
+ border-radius: 8px;
1966
+ background-color: #f2f2f2;
1967
+ .video-container__modal-image {
1968
+ width: 100%;
1969
+ }
1970
+ }
1971
+ .video-container__modal-content {
1972
+ margin-top: 24px;
1973
+ color: var(--Grayscale-900, #545454);
1974
+ font-size: 14px;
1975
+ font-style: normal;
1976
+ font-weight: 400;
1977
+ line-height: 28px; /* 200% */
1978
+ word-break: break-word;
1979
+ }
1980
+ .video-container__modal-footer-container {
1981
+ height: 127px;
1982
+ // box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.1);
1983
+ }
1984
+ .video-container__modal-confirm {
1985
+ border-radius: 24px;
1986
+ background: var(--authme-primary);
1987
+ box-shadow: 4px 4px 16px 0px var(--atuhme-btn-shadow);
1988
+ color: var(--Others-White, #fff);
1989
+ text-align: center;
1990
+ font-size: 16px;
1991
+ font-weight: 700;
1992
+ line-height: 28px; /* 175% */
1993
+ letter-spacing: 0.8px;
1994
+ min-height: 48px;
1995
+ padding: 8px 16px;
1996
+ box-sizing: border-box;
1997
+ // width: calc(100% - 24px * 2);
1998
+ margin: 9px auto 0 auto;
1999
+ // max-width: 327px;
2000
+ &:hover {
2001
+ cursor: pointer;
2002
+ }
2003
+ }
2004
+ }
2005
+
2006
+ .authme-confirm-popup-layer {
2007
+ position: absolute;
2008
+ top: 0;
2009
+ left: 0;
2010
+ width: 100vw;
2011
+ height: 100%;
2012
+ z-index: 2048;
2013
+ display: flex;
2014
+ align-items: end;
2015
+ justify-content: center;
2016
+ &::before {
2017
+ content: '';
2018
+ position: absolute;
2019
+ top: 0;
2020
+ left: 0;
2021
+ width: 100vw;
2022
+ height: 100vh;
2023
+ background-color: #000;
2024
+ opacity: 0.6;
2025
+ }
2026
+
2027
+ .authme-confirm-popup {
2028
+ position: relative;
2029
+ z-index: 1;
2030
+ background-color: #fff;
2031
+ border-radius: 20px 20px 0 0;
2032
+ box-sizing: border-box;
2033
+ padding: 32px 24px;
2034
+ min-height: 50vh;
2035
+ width: 100%;
2036
+
2037
+ display: flex;
2038
+ flex-direction: column;
2039
+
2040
+ @media (min-width: 768px) {
2041
+ min-height: 70vh;
2042
+ width: 768px;
2043
+ }
2044
+ @media (min-width: 1024px) {
2045
+ min-height: 90vh;
2046
+ width: 820px;
2047
+ }
2048
+ .authme-confirm-popup-header {
2049
+ box-sizing: border-box;
2050
+ text-align: center;
2051
+ height: 54px;
2052
+ display: flex;
2053
+ flex-direction: column;
2054
+ justify-content: start;
2055
+ align-items: center;
2056
+ overflow: hidden;
2057
+ line-height: 1.3;
2058
+ @media (min-width: 768px) {
2059
+ height: 60px;
2060
+ }
2061
+ .authme-confirm-popup-title {
2062
+ }
2063
+ }
2064
+
2065
+ .authme-confirm-popup-body {
2066
+ box-sizing: border-box;
2067
+ flex-grow: 1;
2068
+ margin-bottom: 32px;
2069
+ .authme-confirm-popup-image-container {
2070
+ border-radius: 12px;
2071
+ border: 1px solid #f5f5f5;
2072
+ box-sizing: border-box;
2073
+ padding: 8px;
2074
+ @media (min-width: 768px) {
2075
+ padding: 16px;
2076
+ }
2077
+ .authme-confirm-popup-image {
2078
+ border-radius: 12px;
2079
+ width: 100%;
2080
+ object-fit: contain;
2081
+ }
2082
+ }
2083
+ }
2084
+
2085
+ .authme-confirm-popup-button-container {
2086
+ display: flex;
2087
+ flex-direction: column;
2088
+ gap: 16px;
2089
+ .authme-confirm-popup-button {
2090
+ display: flex;
2091
+ align-items: center;
2092
+ justify-content: center;
2093
+ height: 48px;
2094
+ border-radius: calc(48px / 2);
2095
+ margin: auto;
2096
+ max-width: 374px !important;
2097
+ @media (min-width: 768px) {
2098
+ height: 82px;
2099
+ border-radius: calc(82px / 2);
2100
+ }
2101
+ &:hover {
2102
+ cursor: pointer;
2103
+ }
2104
+ }
2105
+ }
2106
+ }
2107
+ }
2108
+
2109
+ #authme_frame_image {
2110
+ &.svg-tilt {
2111
+ perspective: 100vh;
2112
+ }
2113
+ }
2114
+
2115
+ // TODO check frame style
2116
+ #authme_frame_border {
2117
+ rect {
2118
+ // fill: none;
2119
+ }
2120
+ }
2121
+
2122
+ #authme_frame_image_svg.front {
2123
+ transform: rotateY(180deg);
2124
+ }
2125
+
2126
+ #authme_frame_image_svg.front.svg-tilt {
2127
+ transform: rotateY(180deg) rotateX(60deg) translateY(6.5%);
2128
+ }
2129
+
2130
+ #authme_frame_image_svg.svg-tilt {
2131
+ transform: rotateX(-60deg) translateY(6.5%);
2132
+ }
2133
+
2134
+ .video-container__popupview {
2135
+ position: absolute;
2136
+ top: 0;
2137
+ left: 0;
2138
+ width: 100vw;
2139
+ height: 100vh;
2140
+ z-index: 4096;
2141
+ display: flex;
2142
+ align-items: center;
2143
+ justify-content: center;
2144
+ background: rgba(0, 0, 0, 0.5);
2145
+ .video-container__popupview-container {
2146
+ width: 278px;
2147
+ min-height: 138px;
2148
+ border-radius: 12px;
2149
+ box-sizing: border-box;
2150
+ padding: 16px;
2151
+ // gap: 10px;
2152
+ display: flex;
2153
+ flex-direction: column;
2154
+ justify-content: center;
2155
+ align-items: center;
2156
+ background-color: #ffffff;
2157
+
2158
+ @media (min-width: 768px) {
2159
+ width: 512px;
2160
+ max-width: 600px;
2161
+ min-height: 246px;
2162
+ padding: 40px 24px 24px 24px;
2163
+ }
2164
+
2165
+ .video-container__popupview-title-container {
2166
+ .video-container__popupview-title {
2167
+ @media (min-width: 768px) {
2168
+ }
2169
+ }
2170
+ }
2171
+ .video-container__popupview-content-container {
2172
+ .video-container__popupview-content {
2173
+ margin: 12px 0 24px 0;
2174
+ @media (min-width: 768px) {
2175
+ margin: 16px 0 40px 0;
2176
+ }
2177
+ }
2178
+ }
2179
+ .video-container__popupview-footer-container {
2180
+ width: 100%;
2181
+ display: flex;
2182
+ justify-content: center;
2183
+ gap: 16px;
2184
+ .video-container__popupview-confirm {
2185
+ display: flex;
2186
+ justify-content: center;
2187
+ align-items: center;
2188
+ &:hover {
2189
+ cursor: pointer;
2190
+ }
2191
+ }
2192
+ .video-container__popupview-cancel {
2193
+ display: flex;
2194
+ justify-content: center;
2195
+ align-items: center;
2196
+ &:hover {
2197
+ cursor: pointer;
2198
+ }
2199
+ }
2200
+ }
2201
+ }
2202
+ }
2203
+
2204
+ .video-container__ocrResultModal {
2205
+ position: absolute;
2206
+ top: 0;
2207
+ left: 0;
2208
+ width: 100vw;
2209
+ height: 100%;
2210
+ background: #fff;
2211
+ .video-container__ocrResultModal-header-container {
2212
+ box-sizing: border-box;
2213
+ padding: 42px 20px 0 20px;
2214
+ @media (min-width: 820px) {
2215
+ background-color: #f7f7f7;
2216
+ }
2217
+ }
2218
+ .video-container__ocrResultModal-body-container {
2219
+ box-sizing: border-box;
2220
+ padding: 20px;
2221
+ padding-bottom: calc(140px + 10px);
2222
+ height: calc(100vh - calc(140px + 10px));
2223
+ display: flex;
2224
+ flex-direction: column;
2225
+ }
2226
+ .video-container__ocrResultModal-body {
2227
+ overflow-y: auto;
2228
+ height: 100%;
2229
+ }
2230
+ .video-container__ocrResultModal-title {
2231
+ font-weight: 500;
2232
+ font-size: 22px;
2233
+ color: #29a86f;
2234
+ margin-bottom: 8px;
2235
+ @media (min-width: 768px) {
2236
+ }
2237
+ }
2238
+ .video-container__ocrResultModal-subtitle {
2239
+ font-size: 14px;
2240
+ color: #757575;
2241
+ padding-bottom: 16px;
2242
+ @media (min-width: 768px) {
2243
+ }
2244
+ }
2245
+ .video-container__ocrResultModal-footer-container {
2246
+ position: fixed;
2247
+ bottom: 0;
2248
+ left: 0;
2249
+ width: 100%;
2250
+ display: flex;
2251
+ justify-content: center;
2252
+ align-items: center;
2253
+ flex-direction: column;
2254
+ box-shadow: 0px -4px 12px 0px #4040400f;
2255
+ box-sizing: border-box;
2256
+ padding: 12px 20px 16px 20px;
2257
+ background-color: #fff;
2258
+
2259
+ @media (min-width: 820px) {
2260
+ padding: 24px 20px;
2261
+ box-shadow: unset;
2262
+ &::before {
2263
+ content: '';
2264
+ position: absolute;
2265
+ top: 0;
2266
+ left: 24px;
2267
+ width: calc(100% - 24px * 2);
2268
+ height: 0;
2269
+ border: 1px solid #e1e1e1;
2270
+ }
2271
+ }
2272
+ }
2273
+ .video-container__ocrResultModal-countdown-container {
2274
+ display: flex;
2275
+ justify-content: center;
2276
+ align-items: center;
2277
+ font-weight: 500;
2278
+ font-size: 16px;
2279
+ color: #404040;
2280
+ margin-bottom: 4px;
2281
+ @media (min-width: 768px) {
2282
+ color: #343434;
2283
+ font-size: 22px;
2284
+ }
2285
+ }
2286
+ .video-container__ocrResultModal-countdown {
2287
+ font-weight: 500;
2288
+ font-size: 22px;
2289
+ color: #f7453f;
2290
+ }
2291
+ .video-container__ocrResultModal-hint {
2292
+ margin-bottom: 16px;
2293
+ font-weight: 400;
2294
+ font-size: 14px;
2295
+ color: #8f8f8f;
2296
+ @media (min-width: 768px) {
2297
+ font-size: 18px;
2298
+ color: #343434;
2299
+ }
2300
+ }
2301
+ .video-container__ocrResultModal-close {
2302
+ position: absolute;
2303
+ top: 19.25px;
2304
+ right: 30.25px;
2305
+ &:hover {
2306
+ cursor: pointer;
2307
+ }
2308
+ }
2309
+ .video-container__ocrResultModal-confirm {
2310
+ max-width: 374px;
2311
+ display: flex;
2312
+ justify-content: center;
2313
+ align-items: center;
2314
+ &:hover {
2315
+ cursor: pointer;
2316
+ }
2317
+ }
2318
+
2319
+ .video-container__ocrResultModal-group-item {
2320
+ box-sizing: border-box;
2321
+ margin-bottom: 12px;
2322
+
2323
+ width: 100%;
2324
+
2325
+ @media (min-width: 768px) {
2326
+ width: 50%;
2327
+ display: inline-block;
2328
+ &:nth-child(odd) {
2329
+ padding-right: 12px;
2330
+ }
2331
+ &:nth-child(even) {
2332
+ padding-left: 12px;
2333
+ }
2334
+ }
2335
+
2336
+ .hidden {
2337
+ height: 0;
2338
+ }
2339
+
2340
+ @media (min-width: 768px) {
2341
+ .hidden {
2342
+ height: auto;
2343
+ }
2344
+ }
2345
+
2346
+ .video-container__ocrResultModal-label {
2347
+ font-size: 18px;
2348
+ color: #666666;
2349
+ margin-bottom: 11px;
2350
+ }
2351
+
2352
+ .video-container__ocrResultModal-input {
2353
+ border-radius: 6px;
2354
+ border-width: 1px;
2355
+ box-sizing: border-box;
2356
+ padding: 12px;
2357
+ font-size: 16px;
2358
+ color: #404040;
2359
+ width: 100%;
2360
+ border: 1px solid rgba(189, 189, 189, 1);
2361
+
2362
+ &:focus {
2363
+ outline: none;
2364
+ border-color: #29a86f;
2365
+ }
2366
+
2367
+ &::placeholder {
2368
+ color: #9f9f9f;
2369
+ }
2370
+
2371
+ &.error {
2372
+ border-color: #f7453f;
2373
+ &:focus {
2374
+ border-color: #f7453f;
2375
+ }
2376
+ }
2377
+ }
2378
+
2379
+ @media (min-width: 768px) {
2380
+ .video-container__ocrResultModal-input {
2381
+ color: #343434;
2382
+ }
2383
+
2384
+ &::placeholder {
2385
+ color: #9f9f9f;
2386
+ }
2387
+ }
2388
+
2389
+ .video-container__ocrResultModal-error {
2390
+ margin-top: 4px;
2391
+ font-weight: 400;
2392
+ font-size: 16px;
2393
+ color: #f7453f;
2394
+ }
2395
+
2396
+ .drop_menu_title {
2397
+ color: #404040;
2398
+ }
2399
+ .drop_menu_title[data-value=''] {
2400
+ color: #9f9f9f;
2401
+ }
2402
+
2403
+ @media (min-width: 768px) {
2404
+ .drop_menu_title {
2405
+ color: #343434;
2406
+ }
2407
+ .drop_menu_title[data-value=''] {
2408
+ color: #9f9f9f;
2409
+ }
2410
+ }
2411
+ }
2412
+ }
2413
+
2414
+ .non-empty {
2415
+ padding: 24px 32px;
2416
+ }
2417
+
2418
+ @media (min-width: 768px) {
2419
+ .non-empty {
2420
+ padding: 24px 32px;
2421
+ }
2422
+ }