@ekyc_qoobiss/qbs-ect-cmp 1.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +26 -0
  3. package/dist/assets/animations/face/LookDown.gif +0 -0
  4. package/dist/assets/animations/face/LookLeft.gif +0 -0
  5. package/dist/assets/animations/face/LookRight.gif +0 -0
  6. package/dist/assets/animations/face/LookUp.gif +0 -0
  7. package/dist/assets/animations/face/TiltLeft.gif +0 -0
  8. package/dist/assets/animations/face/TiltRight.gif +0 -0
  9. package/dist/assets/animations/face/general.gif +0 -0
  10. package/dist/assets/animations/id/present-id.gif +0 -0
  11. package/dist/assets/animations/id/straighten-id.gif +0 -0
  12. package/dist/assets/animations/id/tilt-id.gif +0 -0
  13. package/dist/assets/buletin/metadata.json +1 -0
  14. package/dist/assets/buletin/model.json +1 -0
  15. package/dist/assets/buletin/weights.bin +0 -0
  16. package/dist/assets/buletin-v2/metadata.json +1 -0
  17. package/dist/assets/buletin-v2/model.json +1 -0
  18. package/dist/assets/buletin-v2/weights.bin +0 -0
  19. package/dist/assets/canvas-masks/face_green.svg +8 -0
  20. package/dist/assets/canvas-masks/face_white.svg +8 -0
  21. package/dist/assets/canvas-masks/id_green.svg +6 -0
  22. package/dist/assets/canvas-masks/id_white.svg +6 -0
  23. package/dist/assets/capture-error/idError.png +0 -0
  24. package/dist/assets/capture-error/idError.svg +8 -0
  25. package/dist/assets/capture-error/selfieError.png +0 -0
  26. package/dist/assets/capture-error/selfieError.svg +11 -0
  27. package/dist/assets/complete.svg +4 -0
  28. package/dist/assets/howtos/circle.svg +11 -0
  29. package/dist/assets/howtos/idscan.svg +293 -0
  30. package/dist/assets/howtos/liveness.svg +97 -0
  31. package/dist/assets/landing/device.svg +14 -0
  32. package/dist/assets/landing/id.svg +3 -0
  33. package/dist/assets/landing/info.svg +3 -0
  34. package/dist/assets/landing/validation.svg +16 -0
  35. package/dist/cjs/agreement-check_12.cjs.entry.js +6143 -0
  36. package/dist/cjs/index-9ebcada7.js +1487 -0
  37. package/dist/cjs/index.cjs.js +2 -0
  38. package/dist/cjs/loader-dots.cjs.entry.js +19 -0
  39. package/dist/cjs/loader.cjs.js +21 -0
  40. package/dist/cjs/qbs-ect-cmp.cjs.js +19 -0
  41. package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
  42. package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
  43. package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
  44. package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
  45. package/dist/collection/assets/capture-error/idError.svg +8 -0
  46. package/dist/collection/assets/capture-error/selfieError.svg +11 -0
  47. package/dist/collection/assets/complete.svg +4 -0
  48. package/dist/collection/assets/howtos/circle.svg +11 -0
  49. package/dist/collection/assets/howtos/idscan.svg +293 -0
  50. package/dist/collection/assets/howtos/liveness.svg +97 -0
  51. package/dist/collection/assets/landing/device.svg +14 -0
  52. package/dist/collection/assets/landing/id.svg +3 -0
  53. package/dist/collection/assets/landing/info.svg +3 -0
  54. package/dist/collection/assets/landing/validation.svg +16 -0
  55. package/dist/collection/collection-manifest.json +24 -0
  56. package/dist/collection/components/agreement-check/agreement-check.css +0 -0
  57. package/dist/collection/components/agreement-check/agreement-check.js +75 -0
  58. package/dist/collection/components/agreement-info/agreement-info.css +0 -0
  59. package/dist/collection/components/agreement-info/agreement-info.js +72 -0
  60. package/dist/collection/components/capture-error/capture-error.css +0 -0
  61. package/dist/collection/components/capture-error/capture-error.js +107 -0
  62. package/dist/collection/components/controls/camera/camera.css +43 -0
  63. package/dist/collection/components/controls/camera/camera.js +306 -0
  64. package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
  65. package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
  66. package/dist/collection/components/end-redirect/end-redirect.css +128 -0
  67. package/dist/collection/components/end-redirect/end-redirect.js +25 -0
  68. package/dist/collection/components/how-to-info/how-to-info.css +0 -0
  69. package/dist/collection/components/how-to-info/how-to-info.js +105 -0
  70. package/dist/collection/components/id-back-capture/id-back-capture.css +35 -0
  71. package/dist/collection/components/id-back-capture/id-back-capture.js +201 -0
  72. package/dist/collection/components/id-capture/id-capture.css +35 -0
  73. package/dist/collection/components/id-capture/id-capture.js +201 -0
  74. package/dist/collection/components/identification-component/identification-component.css +999 -0
  75. package/dist/collection/components/identification-component/identification-component.js +397 -0
  76. package/dist/collection/components/landing-validation/landing-validation.css +0 -0
  77. package/dist/collection/components/landing-validation/landing-validation.js +78 -0
  78. package/dist/collection/components/selfie-capture/selfie-capture.css +22 -0
  79. package/dist/collection/components/selfie-capture/selfie-capture.js +198 -0
  80. package/dist/collection/components/sms-code-validation/sms-code-validation.css +0 -0
  81. package/dist/collection/components/sms-code-validation/sms-code-validation.js +91 -0
  82. package/dist/collection/global.js +0 -0
  83. package/dist/collection/helpers/ApiCall.js +153 -0
  84. package/dist/collection/helpers/Cameras.js +98 -0
  85. package/dist/collection/helpers/Events.js +79 -0
  86. package/dist/collection/helpers/ML5.js +20 -0
  87. package/dist/collection/helpers/Stream.js +223 -0
  88. package/dist/collection/helpers/canvas.js +10 -0
  89. package/dist/collection/helpers/index.js +54 -0
  90. package/dist/collection/helpers/security.js +25 -0
  91. package/dist/collection/helpers/store.js +15 -0
  92. package/dist/collection/helpers/textValues.js +82 -0
  93. package/dist/collection/index.js +1 -0
  94. package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +206 -0
  95. package/dist/collection/libs/FaceML5Detector/FacePose.js +84 -0
  96. package/dist/collection/libs/IDML5Detector/IDML5Detector.js +110 -0
  97. package/dist/collection/libs/IDML5Detector/IDPose.js +5 -0
  98. package/dist/collection/models/ICamera.js +1 -0
  99. package/dist/collection/models/IConstraints.js +1 -0
  100. package/dist/collection/models/IDevice.js +1 -0
  101. package/dist/collection/utils/utils.js +10 -0
  102. package/dist/esm/agreement-check_12.entry.js +6128 -0
  103. package/dist/esm/index-3fe6775c.js +1457 -0
  104. package/dist/esm/index.js +1 -0
  105. package/dist/esm/loader-dots.entry.js +15 -0
  106. package/dist/esm/loader.js +17 -0
  107. package/dist/esm/polyfills/core-js.js +11 -0
  108. package/dist/esm/polyfills/css-shim.js +1 -0
  109. package/dist/esm/polyfills/dom.js +79 -0
  110. package/dist/esm/polyfills/es5-html-element.js +1 -0
  111. package/dist/esm/polyfills/index.js +34 -0
  112. package/dist/esm/polyfills/system.js +6 -0
  113. package/dist/esm/qbs-ect-cmp.js +17 -0
  114. package/dist/index.cjs.js +1 -0
  115. package/dist/index.js +1 -0
  116. package/dist/loader/cdn.js +3 -0
  117. package/dist/loader/index.cjs.js +3 -0
  118. package/dist/loader/index.d.ts +12 -0
  119. package/dist/loader/index.es2017.js +3 -0
  120. package/dist/loader/index.js +4 -0
  121. package/dist/loader/package.json +11 -0
  122. package/dist/qbs-ect-cmp/index.esm.js +0 -0
  123. package/dist/qbs-ect-cmp/p-3ef0bad2.entry.js +1373 -0
  124. package/dist/qbs-ect-cmp/p-3fa495e4.js +2 -0
  125. package/dist/qbs-ect-cmp/p-a69bb428.entry.js +1 -0
  126. package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -0
  127. package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -0
  128. package/dist/types/components/agreement-check/agreement-check.d.ts +11 -0
  129. package/dist/types/components/agreement-info/agreement-info.d.ts +13 -0
  130. package/dist/types/components/capture-error/capture-error.d.ts +11 -0
  131. package/dist/types/components/controls/camera/camera.d.ts +33 -0
  132. package/dist/types/components/controls/loader-dots/loader-dots.d.ts +3 -0
  133. package/dist/types/components/end-redirect/end-redirect.d.ts +4 -0
  134. package/dist/types/components/how-to-info/how-to-info.d.ts +13 -0
  135. package/dist/types/components/id-back-capture/id-back-capture.d.ts +26 -0
  136. package/dist/types/components/id-capture/id-capture.d.ts +26 -0
  137. package/dist/types/components/identification-component/identification-component.d.ts +31 -0
  138. package/dist/types/components/landing-validation/landing-validation.d.ts +11 -0
  139. package/dist/types/components/selfie-capture/selfie-capture.d.ts +26 -0
  140. package/dist/types/components/sms-code-validation/sms-code-validation.d.ts +14 -0
  141. package/dist/types/components.d.ts +262 -0
  142. package/dist/types/global.d.ts +0 -0
  143. package/dist/types/helpers/ApiCall.d.ts +12 -0
  144. package/dist/types/helpers/Cameras.d.ts +8 -0
  145. package/dist/types/helpers/Events.d.ts +12 -0
  146. package/dist/types/helpers/ML5.d.ts +8 -0
  147. package/dist/types/helpers/Stream.d.ts +58 -0
  148. package/dist/types/helpers/canvas.d.ts +2 -0
  149. package/dist/types/helpers/index.d.ts +4 -0
  150. package/dist/types/helpers/security.d.ts +4 -0
  151. package/dist/types/helpers/store.d.ts +10 -0
  152. package/dist/types/helpers/textValues.d.ts +78 -0
  153. package/dist/types/index.d.ts +1 -0
  154. package/dist/types/libs/FaceML5Detector/FaceML5Detector.d.ts +43 -0
  155. package/dist/types/libs/FaceML5Detector/FacePose.d.ts +37 -0
  156. package/dist/types/libs/IDML5Detector/IDML5Detector.d.ts +22 -0
  157. package/dist/types/libs/IDML5Detector/IDPose.d.ts +4 -0
  158. package/dist/types/models/ICamera.d.ts +10 -0
  159. package/dist/types/models/IConstraints.d.ts +21 -0
  160. package/dist/types/models/IDevice.d.ts +11 -0
  161. package/dist/types/stencil-public-runtime.d.ts +1581 -0
  162. package/dist/types/utils/utils.d.ts +2 -0
  163. package/package.json +51 -0
@@ -0,0 +1,999 @@
1
+ /* inter-cyrillic-ext-400-normal*/
2
+ @font-face {
3
+ font-family: 'Inter';
4
+ font-style: normal;
5
+ font-display: swap;
6
+ font-weight: 400;
7
+ src: url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
8
+ unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
9
+ }
10
+ /* inter-cyrillic-400-normal*/
11
+ @font-face {
12
+ font-family: 'Inter';
13
+ font-style: normal;
14
+ font-display: swap;
15
+ font-weight: 400;
16
+ src: url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
17
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
18
+ }
19
+ /* inter-greek-ext-400-normal*/
20
+ @font-face {
21
+ font-family: 'Inter';
22
+ font-style: normal;
23
+ font-display: swap;
24
+ font-weight: 400;
25
+ src: url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
26
+ unicode-range: U+1F00-1FFF;
27
+ }
28
+ /* inter-greek-400-normal*/
29
+ @font-face {
30
+ font-family: 'Inter';
31
+ font-style: normal;
32
+ font-display: swap;
33
+ font-weight: 400;
34
+ src: url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
35
+ unicode-range: U+0370-03FF;
36
+ }
37
+ /* inter-vietnamese-400-normal*/
38
+ @font-face {
39
+ font-family: 'Inter';
40
+ font-style: normal;
41
+ font-display: swap;
42
+ font-weight: 400;
43
+ src: url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
44
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
45
+ }
46
+ /* inter-latin-ext-400-normal*/
47
+ @font-face {
48
+ font-family: 'Inter';
49
+ font-style: normal;
50
+ font-display: swap;
51
+ font-weight: 400;
52
+ src: url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
53
+ unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
54
+ }
55
+ /* inter-latin-400-normal*/
56
+ @font-face {
57
+ font-family: 'Inter';
58
+ font-style: normal;
59
+ font-display: swap;
60
+ font-weight: 400;
61
+ src: url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
62
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
63
+ }
64
+
65
+ /* inter-cyrillic-ext-900-normal*/
66
+ @font-face {
67
+ font-family: 'Inter';
68
+ font-style: normal;
69
+ font-display: swap;
70
+ font-weight: 900;
71
+ src: url('./files/inter-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
72
+ unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
73
+ }
74
+ /* inter-cyrillic-900-normal*/
75
+ @font-face {
76
+ font-family: 'Inter';
77
+ font-style: normal;
78
+ font-display: swap;
79
+ font-weight: 900;
80
+ src: url('./files/inter-cyrillic-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
81
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
82
+ }
83
+ /* inter-greek-ext-900-normal*/
84
+ @font-face {
85
+ font-family: 'Inter';
86
+ font-style: normal;
87
+ font-display: swap;
88
+ font-weight: 900;
89
+ src: url('./files/inter-greek-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
90
+ unicode-range: U+1F00-1FFF;
91
+ }
92
+ /* inter-greek-900-normal*/
93
+ @font-face {
94
+ font-family: 'Inter';
95
+ font-style: normal;
96
+ font-display: swap;
97
+ font-weight: 900;
98
+ src: url('./files/inter-greek-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
99
+ unicode-range: U+0370-03FF;
100
+ }
101
+ /* inter-vietnamese-900-normal*/
102
+ @font-face {
103
+ font-family: 'Inter';
104
+ font-style: normal;
105
+ font-display: swap;
106
+ font-weight: 900;
107
+ src: url('./files/inter-vietnamese-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
108
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
109
+ }
110
+ /* inter-latin-ext-900-normal*/
111
+ @font-face {
112
+ font-family: 'Inter';
113
+ font-style: normal;
114
+ font-display: swap;
115
+ font-weight: 900;
116
+ src: url('./files/inter-latin-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
117
+ unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
118
+ }
119
+ /* inter-latin-900-normal*/
120
+ @font-face {
121
+ font-family: 'Inter';
122
+ font-style: normal;
123
+ font-display: swap;
124
+ font-weight: 900;
125
+ src: url('./files/inter-latin-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
126
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
127
+ }
128
+
129
+ /* inter-cyrillic-ext-700-normal*/
130
+ @font-face {
131
+ font-family: 'Inter';
132
+ font-style: normal;
133
+ font-display: swap;
134
+ font-weight: 700;
135
+ src: url('./files/inter-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
136
+ unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
137
+ }
138
+ /* inter-cyrillic-700-normal*/
139
+ @font-face {
140
+ font-family: 'Inter';
141
+ font-style: normal;
142
+ font-display: swap;
143
+ font-weight: 700;
144
+ src: url('./files/inter-cyrillic-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
145
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
146
+ }
147
+ /* inter-greek-ext-700-normal*/
148
+ @font-face {
149
+ font-family: 'Inter';
150
+ font-style: normal;
151
+ font-display: swap;
152
+ font-weight: 700;
153
+ src: url('./files/inter-greek-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
154
+ unicode-range: U+1F00-1FFF;
155
+ }
156
+ /* inter-greek-700-normal*/
157
+ @font-face {
158
+ font-family: 'Inter';
159
+ font-style: normal;
160
+ font-display: swap;
161
+ font-weight: 700;
162
+ src: url('./files/inter-greek-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
163
+ unicode-range: U+0370-03FF;
164
+ }
165
+ /* inter-vietnamese-700-normal*/
166
+ @font-face {
167
+ font-family: 'Inter';
168
+ font-style: normal;
169
+ font-display: swap;
170
+ font-weight: 700;
171
+ src: url('./files/inter-vietnamese-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
172
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
173
+ }
174
+ /* inter-latin-ext-700-normal*/
175
+ @font-face {
176
+ font-family: 'Inter';
177
+ font-style: normal;
178
+ font-display: swap;
179
+ font-weight: 700;
180
+ src: url('./files/inter-latin-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
181
+ unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
182
+ }
183
+ /* inter-latin-700-normal*/
184
+ @font-face {
185
+ font-family: 'Inter';
186
+ font-style: normal;
187
+ font-display: swap;
188
+ font-weight: 700;
189
+ src: url('./files/inter-latin-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
190
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
191
+ }
192
+
193
+ /* inter-cyrillic-ext-600-normal*/
194
+ @font-face {
195
+ font-family: 'Inter';
196
+ font-style: normal;
197
+ font-display: swap;
198
+ font-weight: 600;
199
+ src: url('./files/inter-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
200
+ unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
201
+ }
202
+ /* inter-cyrillic-600-normal*/
203
+ @font-face {
204
+ font-family: 'Inter';
205
+ font-style: normal;
206
+ font-display: swap;
207
+ font-weight: 600;
208
+ src: url('./files/inter-cyrillic-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
209
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
210
+ }
211
+ /* inter-greek-ext-600-normal*/
212
+ @font-face {
213
+ font-family: 'Inter';
214
+ font-style: normal;
215
+ font-display: swap;
216
+ font-weight: 600;
217
+ src: url('./files/inter-greek-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
218
+ unicode-range: U+1F00-1FFF;
219
+ }
220
+ /* inter-greek-600-normal*/
221
+ @font-face {
222
+ font-family: 'Inter';
223
+ font-style: normal;
224
+ font-display: swap;
225
+ font-weight: 600;
226
+ src: url('./files/inter-greek-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
227
+ unicode-range: U+0370-03FF;
228
+ }
229
+ /* inter-vietnamese-600-normal*/
230
+ @font-face {
231
+ font-family: 'Inter';
232
+ font-style: normal;
233
+ font-display: swap;
234
+ font-weight: 600;
235
+ src: url('./files/inter-vietnamese-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
236
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
237
+ }
238
+ /* inter-latin-ext-600-normal*/
239
+ @font-face {
240
+ font-family: 'Inter';
241
+ font-style: normal;
242
+ font-display: swap;
243
+ font-weight: 600;
244
+ src: url('./files/inter-latin-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
245
+ unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
246
+ }
247
+ /* inter-latin-600-normal*/
248
+ @font-face {
249
+ font-family: 'Inter';
250
+ font-style: normal;
251
+ font-display: swap;
252
+ font-weight: 600;
253
+ src: url('./files/inter-latin-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
254
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
255
+ }
256
+
257
+ /* inter-cyrillic-ext-400-normal*/
258
+ @font-face {
259
+ font-family: 'Inter';
260
+ font-style: normal;
261
+ font-display: swap;
262
+ font-weight: 400;
263
+ src: url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
264
+ unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
265
+ }
266
+ /* inter-cyrillic-400-normal*/
267
+ @font-face {
268
+ font-family: 'Inter';
269
+ font-style: normal;
270
+ font-display: swap;
271
+ font-weight: 400;
272
+ src: url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
273
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
274
+ }
275
+ /* inter-greek-ext-400-normal*/
276
+ @font-face {
277
+ font-family: 'Inter';
278
+ font-style: normal;
279
+ font-display: swap;
280
+ font-weight: 400;
281
+ src: url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
282
+ unicode-range: U+1F00-1FFF;
283
+ }
284
+ /* inter-greek-400-normal*/
285
+ @font-face {
286
+ font-family: 'Inter';
287
+ font-style: normal;
288
+ font-display: swap;
289
+ font-weight: 400;
290
+ src: url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
291
+ unicode-range: U+0370-03FF;
292
+ }
293
+ /* inter-vietnamese-400-normal*/
294
+ @font-face {
295
+ font-family: 'Inter';
296
+ font-style: normal;
297
+ font-display: swap;
298
+ font-weight: 400;
299
+ src: url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
300
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
301
+ }
302
+ /* inter-latin-ext-400-normal*/
303
+ @font-face {
304
+ font-family: 'Inter';
305
+ font-style: normal;
306
+ font-display: swap;
307
+ font-weight: 400;
308
+ src: url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
309
+ unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
310
+ }
311
+ /* inter-latin-400-normal*/
312
+ @font-face {
313
+ font-family: 'Inter';
314
+ font-style: normal;
315
+ font-display: swap;
316
+ font-weight: 400;
317
+ src: url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
318
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
319
+ }
320
+
321
+
322
+ * {
323
+ font-family: 'Inter', sans-serif;
324
+ }
325
+ h1 {
326
+ font-weight: 900;
327
+ letter-spacing: 0.01em;
328
+ color: #1f2024;
329
+ font-size: 3.2vh;
330
+ margin: 0;
331
+ line-height: 3.5vh;
332
+ }
333
+ .row-validare h1 {
334
+ font-size: 27px;
335
+ line-height: 29px;
336
+ }
337
+ body {
338
+ margin: 0;
339
+ padding: 0;
340
+ height: 100vh;
341
+ position: relative;
342
+ /*height: 100vh;*/
343
+ /*height: calc(var(--vh, 1vh) * 100);*/
344
+ /*margin: 0 auto;*/
345
+ /*max-width: 100%;*/
346
+ }
347
+
348
+ .container {
349
+ width: 100%;
350
+ height: 100%;
351
+ background-color: #fff;
352
+ max-width: 991px;
353
+ margin: auto;
354
+ position: relative;
355
+ overflow: hidden;
356
+ }
357
+ .row {
358
+ padding: 3.5vh 2.5vh;
359
+ height: 100%;
360
+ overflow: hidden;
361
+ position: relative;
362
+ /*display: flex;*/
363
+ /*align-items: center;*/
364
+ }
365
+ .ctheight-100 {
366
+ height: 99vh;
367
+ }
368
+ .d-flex {
369
+ display: flex;
370
+ }
371
+ .space-between {
372
+ justify-content: space-between;
373
+ }
374
+ .img-info img {
375
+ width: 0.8vh;
376
+ z-index: 5;
377
+ position: relative;
378
+ }
379
+ .img-info {
380
+ width: 7vh;
381
+ height: 7vh;
382
+ border-radius: 100%;
383
+ display: flex;
384
+ align-items: center;
385
+ justify-content: center;
386
+ background: radial-gradient(100% 100% at 50% 0%, #d3b6e9 0%, #fbc2bd 100%);
387
+ }
388
+ .i-effect {
389
+ animation: 2.5s infinite transition-i;
390
+ position: absolute;
391
+ z-index: 2;
392
+ border-radius: 100%;
393
+ background: radial-gradient(100% 100% at 50% 0%, #d3b6e9 0%, #fbc2bd 100%);
394
+ }
395
+ .two-buttons {
396
+ margin-top: 3vh;
397
+ justify-content: center;
398
+ }
399
+ .align-center {
400
+ align-items: center;
401
+ }
402
+ .main-text {
403
+ font-weight: 400;
404
+ color: #71727a;
405
+ }
406
+ .font-size-2 {
407
+ font-size: 2vh;
408
+ }
409
+ .row-validare .font-size-2 {
410
+ font-size: 17px;
411
+ line-height: 19px;
412
+ }
413
+ .img-text {
414
+ display: flex;
415
+ align-items: center;
416
+ margin-bottom: 3vh;
417
+ }
418
+ .img-text .bg-img img {
419
+ width: 100%;
420
+ padding: 2vh;
421
+ }
422
+ .img-text h3 {
423
+ color: #333333;
424
+ font-weight: 700;
425
+ font-size: 2.3vh;
426
+ margin: 0;
427
+ }
428
+ .img-text .bg-img {
429
+ background: #e1e3e9;
430
+ border-radius: 30%;
431
+ width: 11vh;
432
+ height: 11vh;
433
+ display: flex;
434
+ align-items: center;
435
+ justify-content: center;
436
+ flex: none;
437
+ margin-right: 3vh;
438
+ }
439
+ .font-weight-bold {
440
+ font-weight: bold;
441
+ }
442
+ .font-size-18 {
443
+ font-size: 1.8vh;
444
+ }
445
+ .row-validare .font-size-18 {
446
+ font-size: 15px;
447
+ line-height: 16px;
448
+ }
449
+ a {
450
+ font-size: inherit;
451
+ color: inherit;
452
+ text-decoration: none;
453
+ }
454
+ .color-black {
455
+ color: #000;
456
+ }
457
+ .main-button {
458
+ background: #47b6a2;
459
+ box-shadow: 0 6px 8px rgba(71, 182, 162, 0.2);
460
+ border-radius: 25px;
461
+ text-align: center;
462
+ width: 100%;
463
+ padding: 2vh;
464
+ color: #fff;
465
+ border: 0;
466
+ font-size: 2vh;
467
+ }
468
+ .main-button:disabled {
469
+ color: #71727a;
470
+ }
471
+ .normal-button {
472
+ background: #47b6a2;
473
+ box-shadow: 0 6px 8px rgba(71, 182, 162, 0.2);
474
+ border-radius: 25px;
475
+ text-align: center;
476
+ padding: 2vh;
477
+ margin-right: 1vw;
478
+ margin-left: 1vw;
479
+ color: #fff;
480
+ border: 0;
481
+ font-size: 2vh;
482
+ }
483
+ .red-button {
484
+ background: #b67171;
485
+ }
486
+ .row-validare .main-button {
487
+ font-size: 17px;
488
+ }
489
+ .text-right {
490
+ text-align: right;
491
+ }
492
+ .mb-1 {
493
+ margin-bottom: 1vh;
494
+ }
495
+ .mb-0 {
496
+ margin-bottom: 0;
497
+ }
498
+ .row-validare.row {
499
+ padding: 29px 21px;
500
+ }
501
+ .row-validare .main-button {
502
+ padding: 16px;
503
+ }
504
+ .row-validare .btn-buletin {
505
+ position: relative;
506
+ width: 100%;
507
+ bottom: 0;
508
+ }
509
+ .row-validare .main-input {
510
+ padding: 14px 12px;
511
+ border-radius: 12px;
512
+ font-weight: 700;
513
+ border: 2px solid #464e58;
514
+ font-size: 19px;
515
+ }
516
+ .main-input {
517
+ width: 100%;
518
+ padding: 22px 26px;
519
+ border: 3px solid #464e58;
520
+ border-radius: 20px;
521
+ font-weight: 600;
522
+ font-size: 2.3vh;
523
+ font-family: 'Inter', sans-serif;
524
+ }
525
+ .second-input {
526
+ width: 46px;
527
+ height: 46px;
528
+ font-weight: 700;
529
+ font-size: 16px;
530
+ font-family: 'Inter', sans-serif;
531
+ text-align: center;
532
+ border: 2px solid #c5c6cc;
533
+ border-radius: 12px;
534
+ outline: none;
535
+ padding: 2px;
536
+ }
537
+ .second-input:not(:placeholder-shown) {
538
+ border: 2px solid #47b6a2;
539
+ color: #47b6a2;
540
+ }
541
+ .mt-9 {
542
+ margin-top: 9%;
543
+ }
544
+ .second-input::placeholder {
545
+ color: #fff;
546
+ opacity: 0;
547
+ }
548
+ .second-input:focus {
549
+ border: 2px solid #464e58;
550
+ color: #464e58;
551
+ }
552
+ .second-input.error {
553
+ border: 2px solid #b67171;
554
+ }
555
+ .second-input.error:focus {
556
+ border: 3px solid #b67171;
557
+ color: #b67171;
558
+ padding: 1px;
559
+ }
560
+ .second-input.error:not(:placeholder-shown) {
561
+ border: 3px solid #b67171;
562
+ color: #b67171;
563
+ padding: 2px;
564
+ }
565
+ .second-input-container {
566
+ margin-top: 30%;
567
+ display: flex;
568
+ flex-wrap: wrap;
569
+ justify-content: space-between;
570
+ }
571
+ .input-container {
572
+ display: flex;
573
+ flex-wrap: wrap;
574
+ }
575
+ .mt-15 {
576
+ margin-top: 15%;
577
+ }
578
+ .row-validare .mt-15 {
579
+ margin-top: 40px;
580
+ }
581
+ .mb-15 {
582
+ margin-bottom: 15%;
583
+ }
584
+ .row-validare .mb-15 {
585
+ margin-bottom: 40px;
586
+ }
587
+ .mb-20 {
588
+ margin-bottom: 20%;
589
+ }
590
+ .row-validare .mb-1 {
591
+ margin-bottom: 20px;
592
+ }
593
+ .row-validare .mb-20 {
594
+ margin-bottom: 60px;
595
+ }
596
+ .mt-90 {
597
+ margin-top: 90px;
598
+ }
599
+ .op-05 {
600
+ opacity: 0.5;
601
+ }
602
+ .color-red {
603
+ color: #b67171;
604
+ }
605
+ .error-text {
606
+ position: relative;
607
+ top: 50px;
608
+ margin-bottom: 0;
609
+ margin-top: 0;
610
+ }
611
+ .top-50 {
612
+ top: 50px;
613
+ }
614
+ .mt-25 {
615
+ margin-top: 25%;
616
+ }
617
+ .text-center {
618
+ text-align: center;
619
+ }
620
+ .scale-2 {
621
+ transform: scale(2);
622
+ }
623
+ .mt-20 {
624
+ margin-top: 20%;
625
+ }
626
+ .div-ci img {
627
+ width: 100%;
628
+ }
629
+ .div-ci {
630
+ margin-top: 10%;
631
+ }
632
+ .mt-10 {
633
+ margin-top: 10vh;
634
+ }
635
+ .pos-relative {
636
+ position: relative;
637
+ }
638
+ .btn-buletin {
639
+ position: fixed;
640
+ width: calc(100% - 5vh);
641
+ bottom: 5vh;
642
+ }
643
+ .buletin-container img {
644
+ width: 60%;
645
+ }
646
+ .buletin-container > img {
647
+ margin-top: 10vh;
648
+ }
649
+ .buletin-container {
650
+ text-align: center;
651
+ }
652
+ .bg-black {
653
+ background-color: #242426;
654
+ }
655
+ .color-white {
656
+ color: #fff;
657
+ }
658
+ .chenar-buletin {
659
+ margin-top: 3em;
660
+ text-align: center;
661
+ }
662
+ .chenar-buletin .ci-img {
663
+ width: 96%;
664
+ }
665
+ .chenar-buletin .face-img,
666
+ .chenar-buletin .chenar-img {
667
+ left: 4%;
668
+ width: 92%;
669
+ top: -20px;
670
+ min-height: 55vw;
671
+ display: flex;
672
+ position: absolute;
673
+ align-items: center;
674
+ background-color: rgba(255, 255, 255, 0.2);
675
+ justify-content: center;
676
+ }
677
+ .chenar-buletin img {
678
+ width: auto;
679
+ height: 100%;
680
+ top: 0;
681
+ left: 0;
682
+ position: absolute;
683
+ border-radius: 10px;
684
+ z-index: 4;
685
+ }
686
+ .chenar-buletin .face-img {
687
+ background-color: rgba(255, 255, 255, 0.3);
688
+ }
689
+ .buletin-container .w-40 {
690
+ width: 40%;
691
+ }
692
+ .animation {
693
+ width: 100%;
694
+ height: 100%;
695
+ /* opacity: 60%; */
696
+ }
697
+ .color-black-2 {
698
+ color: #71727a;
699
+ }
700
+ .font-size-3 {
701
+ font-size: 3vh;
702
+ }
703
+ .font-weight-900 {
704
+ font-weight: 900;
705
+ }
706
+ .mt-8 {
707
+ margin-top: 8vh;
708
+ }
709
+ .mt-12 {
710
+ margin-top: 12vh;
711
+ }
712
+ .mt-30-i {
713
+ margin-top: 30% !important;
714
+ }
715
+ .chenar-buletin .face-img {
716
+ left: -2%;
717
+ width: 104%;
718
+ top: -40px;
719
+ }
720
+ .pl-2-5 {
721
+ padding-left: 2.5vh;
722
+ }
723
+ .container-coin {
724
+ background-color: transparent;
725
+ perspective: 1000px;
726
+ rotate: 120deg 0deg;
727
+ }
728
+ .dot-effect {
729
+ position: fixed;
730
+ bottom: 13vh;
731
+ width: calc(100% - 5vh);
732
+ text-align: center;
733
+ display: flex;
734
+ align-items: center;
735
+ justify-content: center;
736
+ }
737
+ .coin-flip {
738
+ animation: flip 0.4s ease-in;
739
+ animation-delay: 0.5s;
740
+ transform-style: preserve-3d;
741
+ animation-fill-mode: forwards;
742
+ visibility: hidden;
743
+ }
744
+
745
+ .coin-scale {
746
+ animation: show 0.4s ease-in;
747
+ animation-delay: 0.5s;
748
+ transform-style: preserve-3d;
749
+ animation-fill-mode: forwards;
750
+ }
751
+
752
+ @keyframes transition-i {
753
+ from {
754
+ width: 0;
755
+ height: 0;
756
+ opacity: 1;
757
+ }
758
+ 80% {
759
+ width: 10vh;
760
+ height: 10vh;
761
+ opacity: 0.5;
762
+ }
763
+ 100% {
764
+ opacity: 0;
765
+ }
766
+ }
767
+ @keyframes flip {
768
+ 0% {
769
+ transform: rotateX(140deg);
770
+ visibility: visible;
771
+ }
772
+
773
+ 25% {
774
+ transform: rotateX(120deg);
775
+ visibility: visible;
776
+ }
777
+
778
+ 50% {
779
+ transform: rotateX(90deg);
780
+ visibility: visible;
781
+ }
782
+
783
+ 75% {
784
+ transform: rotateX(75deg);
785
+ visibility: visible;
786
+ }
787
+
788
+ 100% {
789
+ transform: rotateX(0deg);
790
+ visibility: visible;
791
+ }
792
+ }
793
+
794
+ @keyframes show {
795
+ 0% {
796
+ transform: scale(0);
797
+ }
798
+
799
+ 25% {
800
+ transform: scale(0.2);
801
+ }
802
+
803
+ 40% {
804
+ transform: scale(0.4);
805
+ }
806
+
807
+ 50% {
808
+ transform: scale(0.5);
809
+ }
810
+
811
+ 60% {
812
+ transform: scale(0.6);
813
+ }
814
+
815
+ 70% {
816
+ transform: scale(0.7);
817
+ }
818
+
819
+ 100% {
820
+ transform: scale(1);
821
+ }
822
+ }
823
+ @keyframes rise {
824
+ 0% {
825
+ visibility: hidden;
826
+ }
827
+
828
+ 50% {
829
+ visibility: visible;
830
+ }
831
+
832
+ 100% {
833
+ visibility: visible;
834
+ }
835
+ }
836
+ .dot-shuttle {
837
+ position: relative;
838
+ left: -15px;
839
+ width: 12px;
840
+ height: 12px;
841
+ border-radius: 6px;
842
+ background-color: #47b6a2;
843
+ color: transparent;
844
+ margin: -1px 0;
845
+ opacity: 1;
846
+ }
847
+
848
+ .dot-shuttle::before {
849
+ opacity: 0.5;
850
+ }
851
+ .dot-shuttle::after {
852
+ opacity: 0.5;
853
+ }
854
+ .dot-shuttle::before,
855
+ .dot-shuttle::after {
856
+ content: '';
857
+ display: inline-block;
858
+ position: absolute;
859
+ top: 0;
860
+ width: 12px;
861
+ height: 12px;
862
+ border-radius: 6px;
863
+ background-color: #47b6a2;
864
+ color: transparent;
865
+ }
866
+
867
+ .dot-shuttle::before {
868
+ left: 15px;
869
+ animation: dotShuttle 2s infinite ease-out;
870
+ }
871
+
872
+ .dot-shuttle::after {
873
+ left: 30px;
874
+ }
875
+ .buletin-container.rotate-x img {
876
+ animation: transform-rotate-x 2s infinite ease-in;
877
+ }
878
+ .rotateimg90 {
879
+ animation: transform-rotate-x2 2s forwards;
880
+ animation-delay: 1s;
881
+ position: absolute;
882
+ }
883
+ .rotateimg180 {
884
+ animation: transform-rotate-x3 2s forwards;
885
+ animation-delay: 3s;
886
+ position: absolute;
887
+ opacity: 0;
888
+ }
889
+ .buletin-back {
890
+ display: flex;
891
+ justify-content: center;
892
+ }
893
+ @keyframes transform-rotate-x3 {
894
+ from {
895
+ transform: rotateY(-90deg);
896
+ opacity: 1;
897
+ }
898
+ to {
899
+ transform: rotateY(0deg);
900
+ opacity: 1;
901
+ }
902
+ }
903
+ @keyframes transform-rotate-x2 {
904
+ to {
905
+ transform: rotateY(90deg);
906
+ }
907
+ }
908
+ @keyframes transform-rotate-x {
909
+ to {
910
+ transform: perspective(600px) rotateX(40deg);
911
+ }
912
+ }
913
+ @keyframes dotShuttle {
914
+ 0%,
915
+ 50%,
916
+ 100% {
917
+ transform: translateX(0);
918
+ opacity: 1;
919
+ }
920
+ 25% {
921
+ transform: translateX(-45px);
922
+ opacity: 0.5;
923
+ }
924
+ 75% {
925
+ transform: translateX(45px);
926
+ opacity: 0.5;
927
+ }
928
+ }
929
+ @media only screen and (max-width: 350px) {
930
+ .second-input {
931
+ width: 36px;
932
+ height: 36px;
933
+ }
934
+ }
935
+ @media only screen and (max-width: 390px) {
936
+ .second-input {
937
+ width: 40px;
938
+ height: 40px;
939
+ }
940
+ }
941
+
942
+ @media only screen and (min-width: 530px) and (max-width: 767px) {
943
+ .chenar-buletin .face-img {
944
+ width: 70%;
945
+ min-height: auto;
946
+ margin: auto;
947
+ left: 15%;
948
+ right: auto;
949
+ top: -15vh;
950
+ }
951
+ }
952
+ @media only screen and (min-width: 600px) and (max-width: 767px) {
953
+ .max-h img {
954
+ margin-left: 15%;
955
+ margin-right: 15%;
956
+ }
957
+ .max-h {
958
+ display: flex;
959
+ align-items: center;
960
+ }
961
+ }
962
+ @media only screen and (max-width: 991px) {
963
+ .buletin-container img {
964
+ max-width: 220px;
965
+ }
966
+ }
967
+ @media only screen and (min-width: 767px) {
968
+ .container {
969
+ max-width: 530px;
970
+ margin: 40px auto;
971
+ border-radius: 20px;
972
+ box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
973
+ }
974
+ body {
975
+ height: 90vh;
976
+ }
977
+ .btn-buletin {
978
+ max-width: 490px;
979
+ bottom: 7vh;
980
+ }
981
+ .buletin-container img {
982
+ width: 45%;
983
+ }
984
+ .chenar-buletin .face-img,
985
+ .chenar-buletin .chenar-img {
986
+ min-height: 300px;
987
+ }
988
+ .chenar-buletin .face-img {
989
+ width: 80%;
990
+ min-height: auto;
991
+ margin: auto;
992
+ left: 10%;
993
+ right: auto;
994
+ top: -10vh;
995
+ }
996
+ .dot-effect {
997
+ max-width: 490px;
998
+ }
999
+ }