@ekyc_qoobiss/qbs-ect-cmp 1.2.0

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 (173) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +49 -0
  3. package/dist/assets/canvas-masks/face_green.svg +8 -0
  4. package/dist/assets/canvas-masks/face_white.svg +8 -0
  5. package/dist/assets/canvas-masks/id_green.svg +6 -0
  6. package/dist/assets/canvas-masks/id_white.svg +6 -0
  7. package/dist/assets/complete.svg +4 -0
  8. package/dist/assets/landing/device.svg +14 -0
  9. package/dist/assets/landing/id.svg +3 -0
  10. package/dist/assets/landing/info.svg +3 -0
  11. package/dist/assets/landing/validation.svg +16 -0
  12. package/dist/assets/ml5-preload.png +0 -0
  13. package/dist/cjs/agreement-check_17.cjs.entry.js +9549 -0
  14. package/dist/cjs/index-79f82518.js +1568 -0
  15. package/dist/cjs/index.cjs.js +2 -0
  16. package/dist/cjs/loader-dots.cjs.entry.js +19 -0
  17. package/dist/cjs/loader.cjs.js +22 -0
  18. package/dist/cjs/qbs-ect-cmp.cjs.js +23 -0
  19. package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
  20. package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
  21. package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
  22. package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
  23. package/dist/collection/assets/complete.svg +4 -0
  24. package/dist/collection/assets/landing/device.svg +14 -0
  25. package/dist/collection/assets/landing/id.svg +3 -0
  26. package/dist/collection/assets/landing/info.svg +3 -0
  27. package/dist/collection/assets/landing/validation.svg +16 -0
  28. package/dist/collection/collection-manifest.json +29 -0
  29. package/dist/collection/components/common/agreement-check/agreement-check.css +0 -0
  30. package/dist/collection/components/common/agreement-check/agreement-check.js +95 -0
  31. package/dist/collection/components/common/capture-error/capture-error.css +0 -0
  32. package/dist/collection/components/common/capture-error/capture-error.js +73 -0
  33. package/dist/collection/components/common/how-to-info/how-to-info.css +0 -0
  34. package/dist/collection/components/common/how-to-info/how-to-info.js +98 -0
  35. package/dist/collection/components/common/id-back-capture/id-back-capture.css +35 -0
  36. package/dist/collection/components/common/id-back-capture/id-back-capture.js +212 -0
  37. package/dist/collection/components/common/id-capture/id-capture.css +35 -0
  38. package/dist/collection/components/common/id-capture/id-capture.js +213 -0
  39. package/dist/collection/components/common/selfie-capture/selfie-capture.css +7 -0
  40. package/dist/collection/components/common/selfie-capture/selfie-capture.js +222 -0
  41. package/dist/collection/components/controls/camera/camera.css +47 -0
  42. package/dist/collection/components/controls/camera/camera.js +309 -0
  43. package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
  44. package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
  45. package/dist/collection/components/flow/agreement-info/agreement-info.css +0 -0
  46. package/dist/collection/components/flow/agreement-info/agreement-info.js +73 -0
  47. package/dist/collection/components/flow/end-redirect/end-redirect.css +128 -0
  48. package/dist/collection/components/flow/end-redirect/end-redirect.js +26 -0
  49. package/dist/collection/components/flow/error-end/error-end.css +0 -0
  50. package/dist/collection/components/flow/error-end/error-end.js +64 -0
  51. package/dist/collection/components/flow/id-double-side/id-double-side.css +0 -0
  52. package/dist/collection/components/flow/id-double-side/id-double-side.js +284 -0
  53. package/dist/collection/components/flow/id-single-side/id-single-side.css +0 -0
  54. package/dist/collection/components/flow/id-single-side/id-single-side.js +225 -0
  55. package/dist/collection/components/flow/landing-validation/landing-validation.css +0 -0
  56. package/dist/collection/components/flow/landing-validation/landing-validation.js +88 -0
  57. package/dist/collection/components/flow/mobile-redirect/mobile-redirect.css +10 -0
  58. package/dist/collection/components/flow/mobile-redirect/mobile-redirect.js +128 -0
  59. package/dist/collection/components/flow/sms-code-validation/sms-code-validation.css +0 -0
  60. package/dist/collection/components/flow/sms-code-validation/sms-code-validation.js +115 -0
  61. package/dist/collection/components/flow/user-liveness/user-liveness.css +0 -0
  62. package/dist/collection/components/flow/user-liveness/user-liveness.js +214 -0
  63. package/dist/collection/components/identification-component/identification-component.css +1043 -0
  64. package/dist/collection/components/identification-component/identification-component.js +355 -0
  65. package/dist/collection/global.js +0 -0
  66. package/dist/collection/helpers/ApiCall.js +113 -0
  67. package/dist/collection/helpers/Cameras.js +98 -0
  68. package/dist/collection/helpers/Events.js +39 -0
  69. package/dist/collection/helpers/ML5.js +35 -0
  70. package/dist/collection/helpers/Stream.js +223 -0
  71. package/dist/collection/helpers/canvas.js +10 -0
  72. package/dist/collection/helpers/index.js +54 -0
  73. package/dist/collection/helpers/security.js +25 -0
  74. package/dist/collection/helpers/store.js +39 -0
  75. package/dist/collection/helpers/textValues.js +128 -0
  76. package/dist/collection/index.js +1 -0
  77. package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +227 -0
  78. package/dist/collection/libs/FaceML5Detector/FacePose.js +85 -0
  79. package/dist/collection/libs/IDML5Detector/IDML5Detector.js +101 -0
  80. package/dist/collection/libs/IDML5Detector/IDPose.js +8 -0
  81. package/dist/collection/models/FlowStatus.js +12 -0
  82. package/dist/collection/models/IAddRequest.js +1 -0
  83. package/dist/collection/models/IAgreement.js +1 -0
  84. package/dist/collection/models/ICamera.js +1 -0
  85. package/dist/collection/models/IConstraints.js +1 -0
  86. package/dist/collection/models/IDevice.js +1 -0
  87. package/dist/collection/models/IGeneration.js +1 -0
  88. package/dist/collection/models/ILinkSend.js +1 -0
  89. package/dist/collection/models/ILogResult.js +1 -0
  90. package/dist/collection/models/IOrderStatus.js +1 -0
  91. package/dist/collection/models/IOtpCheck.js +1 -0
  92. package/dist/collection/models/IOtpSend.js +1 -0
  93. package/dist/collection/models/IUploadFile.js +1 -0
  94. package/dist/collection/models/OrderStatuses.js +7 -0
  95. package/dist/collection/utils/utils.js +10 -0
  96. package/dist/esm/agreement-check_17.entry.js +9529 -0
  97. package/dist/esm/index-9d69e511.js +1538 -0
  98. package/dist/esm/index.js +1 -0
  99. package/dist/esm/loader-dots.entry.js +15 -0
  100. package/dist/esm/loader.js +18 -0
  101. package/dist/esm/polyfills/core-js.js +11 -0
  102. package/dist/esm/polyfills/css-shim.js +1 -0
  103. package/dist/esm/polyfills/dom.js +79 -0
  104. package/dist/esm/polyfills/es5-html-element.js +1 -0
  105. package/dist/esm/polyfills/index.js +34 -0
  106. package/dist/esm/polyfills/system.js +6 -0
  107. package/dist/esm/qbs-ect-cmp.js +18 -0
  108. package/dist/index.cjs.js +1 -0
  109. package/dist/index.js +1 -0
  110. package/dist/loader/cdn.js +3 -0
  111. package/dist/loader/index.cjs.js +3 -0
  112. package/dist/loader/index.d.ts +21 -0
  113. package/dist/loader/index.es2017.js +3 -0
  114. package/dist/loader/index.js +4 -0
  115. package/dist/loader/package.json +11 -0
  116. package/dist/qbs-ect-cmp/index.esm.js +0 -0
  117. package/dist/qbs-ect-cmp/p-06e42b28.js +2 -0
  118. package/dist/qbs-ect-cmp/p-4c8e922b.entry.js +1 -0
  119. package/dist/qbs-ect-cmp/p-b65cc797.entry.js +1373 -0
  120. package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -0
  121. package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -0
  122. package/dist/types/components/common/agreement-check/agreement-check.d.ts +12 -0
  123. package/dist/types/components/common/capture-error/capture-error.d.ts +10 -0
  124. package/dist/types/components/common/how-to-info/how-to-info.d.ts +12 -0
  125. package/dist/types/components/common/id-back-capture/id-back-capture.d.ts +28 -0
  126. package/dist/types/components/common/id-capture/id-capture.d.ts +28 -0
  127. package/dist/types/components/common/selfie-capture/selfie-capture.d.ts +30 -0
  128. package/dist/types/components/controls/camera/camera.d.ts +33 -0
  129. package/dist/types/components/controls/loader-dots/loader-dots.d.ts +3 -0
  130. package/dist/types/components/flow/agreement-info/agreement-info.d.ts +13 -0
  131. package/dist/types/components/flow/end-redirect/end-redirect.d.ts +4 -0
  132. package/dist/types/components/flow/error-end/error-end.d.ts +6 -0
  133. package/dist/types/components/flow/id-double-side/id-double-side.d.ts +27 -0
  134. package/dist/types/components/flow/id-single-side/id-single-side.d.ts +23 -0
  135. package/dist/types/components/flow/landing-validation/landing-validation.d.ts +10 -0
  136. package/dist/types/components/flow/mobile-redirect/mobile-redirect.d.ts +22 -0
  137. package/dist/types/components/flow/sms-code-validation/sms-code-validation.d.ts +16 -0
  138. package/dist/types/components/flow/user-liveness/user-liveness.d.ts +22 -0
  139. package/dist/types/components/identification-component/identification-component.d.ts +24 -0
  140. package/dist/types/components.d.ts +370 -0
  141. package/dist/types/global.d.ts +0 -0
  142. package/dist/types/helpers/ApiCall.d.ts +19 -0
  143. package/dist/types/helpers/Cameras.d.ts +8 -0
  144. package/dist/types/helpers/Events.d.ts +8 -0
  145. package/dist/types/helpers/ML5.d.ts +10 -0
  146. package/dist/types/helpers/Stream.d.ts +70 -0
  147. package/dist/types/helpers/canvas.d.ts +2 -0
  148. package/dist/types/helpers/index.d.ts +4 -0
  149. package/dist/types/helpers/security.d.ts +4 -0
  150. package/dist/types/helpers/store.d.ts +16 -0
  151. package/dist/types/helpers/textValues.d.ts +107 -0
  152. package/dist/types/index.d.ts +1 -0
  153. package/dist/types/libs/FaceML5Detector/FaceML5Detector.d.ts +40 -0
  154. package/dist/types/libs/FaceML5Detector/FacePose.d.ts +36 -0
  155. package/dist/types/libs/IDML5Detector/IDML5Detector.d.ts +22 -0
  156. package/dist/types/libs/IDML5Detector/IDPose.d.ts +7 -0
  157. package/dist/types/models/FlowStatus.d.ts +11 -0
  158. package/dist/types/models/IAddRequest.d.ts +6 -0
  159. package/dist/types/models/IAgreement.d.ts +3 -0
  160. package/dist/types/models/ICamera.d.ts +10 -0
  161. package/dist/types/models/IConstraints.d.ts +21 -0
  162. package/dist/types/models/IDevice.d.ts +11 -0
  163. package/dist/types/models/IGeneration.d.ts +3 -0
  164. package/dist/types/models/ILinkSend.d.ts +3 -0
  165. package/dist/types/models/ILogResult.d.ts +3 -0
  166. package/dist/types/models/IOrderStatus.d.ts +4 -0
  167. package/dist/types/models/IOtpCheck.d.ts +3 -0
  168. package/dist/types/models/IOtpSend.d.ts +3 -0
  169. package/dist/types/models/IUploadFile.d.ts +4 -0
  170. package/dist/types/models/OrderStatuses.d.ts +6 -0
  171. package/dist/types/stencil-public-runtime.d.ts +1637 -0
  172. package/dist/types/utils/utils.d.ts +2 -0
  173. package/package.json +52 -0
@@ -0,0 +1,1043 @@
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
+ .container-video {
358
+ height: 99vh;
359
+ text-align: center;
360
+ position: relative;
361
+ overflow: hidden;
362
+ }
363
+ .row {
364
+ padding: 3.5vh 2.5vh;
365
+ height: 100%;
366
+ overflow: hidden;
367
+ position: relative;
368
+ /*display: flex;*/
369
+ /*align-items: center;*/
370
+ }
371
+ .ctheight-100 {
372
+ height: 99vh;
373
+ }
374
+ .d-flex {
375
+ display: flex;
376
+ }
377
+ .space-between {
378
+ justify-content: space-between;
379
+ }
380
+ .img-info img {
381
+ width: 0.8vh;
382
+ z-index: 5;
383
+ position: relative;
384
+ }
385
+ .img-info {
386
+ width: 7vh;
387
+ height: 7vh;
388
+ border-radius: 100%;
389
+ display: flex;
390
+ align-items: center;
391
+ justify-content: center;
392
+ background: radial-gradient(100% 100% at 50% 0%, #d3b6e9 0%, #fbc2bd 100%);
393
+ }
394
+ .i-effect {
395
+ animation: 2.5s infinite transition-i;
396
+ position: absolute;
397
+ z-index: 2;
398
+ border-radius: 100%;
399
+ background: radial-gradient(100% 100% at 50% 0%, #d3b6e9 0%, #fbc2bd 100%);
400
+ }
401
+ .two-buttons {
402
+ margin-top: 3vh;
403
+ justify-content: center;
404
+ }
405
+ .align-center {
406
+ align-items: center;
407
+ }
408
+ .main-text {
409
+ font-weight: 400;
410
+ color: #71727a;
411
+ }
412
+ .font-size-2 {
413
+ font-size: 2vh;
414
+ }
415
+ .row-validare .font-size-2 {
416
+ font-size: 17px;
417
+ line-height: 19px;
418
+ }
419
+ .img-text {
420
+ display: flex;
421
+ align-items: center;
422
+ margin-bottom: 3vh;
423
+ }
424
+ .img-text .bg-img img {
425
+ width: 100%;
426
+ padding: 2vh;
427
+ }
428
+ .img-text h3 {
429
+ color: #333333;
430
+ font-weight: 700;
431
+ font-size: 2.3vh;
432
+ margin: 0;
433
+ }
434
+ .img-text .bg-img {
435
+ background: #e1e3e9;
436
+ border-radius: 30%;
437
+ width: 11vh;
438
+ height: 11vh;
439
+ display: flex;
440
+ align-items: center;
441
+ justify-content: center;
442
+ flex: none;
443
+ margin-right: 3vh;
444
+ }
445
+ .font-weight-bold {
446
+ font-weight: bold;
447
+ }
448
+ .font-size-18 {
449
+ font-size: 1.8vh;
450
+ }
451
+ .row-validare .font-size-18 {
452
+ font-size: 15px;
453
+ line-height: 16px;
454
+ }
455
+ a {
456
+ font-size: inherit;
457
+ color: inherit;
458
+ text-decoration: none;
459
+ }
460
+ .color-black {
461
+ color: #000;
462
+ }
463
+ .main-button {
464
+ background: #1feaa6;
465
+ box-shadow: 0 6px 8px rgba(71, 182, 162, 0.2);
466
+ border-radius: 25px;
467
+ text-align: center;
468
+ width: 100%;
469
+ padding: 2vh;
470
+ color: #fff;
471
+ border: 0;
472
+ font-size: 2vh;
473
+ }
474
+ .main-button:disabled {
475
+ color: #71727a;
476
+ }
477
+ .normal-button {
478
+ background: #1feaa6;
479
+ box-shadow: 0 6px 8px rgba(71, 182, 162, 0.2);
480
+ border-radius: 25px;
481
+ text-align: center;
482
+ padding: 2vh;
483
+ margin-right: 1vw;
484
+ margin-left: 1vw;
485
+ color: #fff;
486
+ border: 0;
487
+ font-size: 2vh;
488
+ }
489
+ .red-button {
490
+ background: #ff535d;
491
+ }
492
+ .row-validare .main-button {
493
+ font-size: 17px;
494
+ }
495
+ .text-right {
496
+ text-align: right;
497
+ }
498
+ .mb-1 {
499
+ margin-bottom: 1vh;
500
+ }
501
+ .mb-0 {
502
+ margin-bottom: 0;
503
+ }
504
+ .row-validare.row {
505
+ padding: 29px 21px;
506
+ }
507
+ .row-validare .main-button {
508
+ padding: 16px;
509
+ }
510
+ .row-validare .btn-buletin {
511
+ position: relative;
512
+ width: 100%;
513
+ bottom: 0;
514
+ }
515
+ .show-bottom {
516
+ bottom: -2vh;
517
+ }
518
+ .row-validare .main-input {
519
+ padding: 14px 12px;
520
+ border-radius: 12px;
521
+ font-weight: 700;
522
+ border: 2px solid #464e58;
523
+ font-size: 19px;
524
+ }
525
+ .main-input {
526
+ width: 100%;
527
+ padding: 22px 26px;
528
+ border: 3px solid #464e58;
529
+ border-radius: 20px;
530
+ font-weight: 600;
531
+ font-size: 2.3vh;
532
+ font-family: 'Inter', sans-serif;
533
+ }
534
+ .second-input {
535
+ width: 46px;
536
+ height: 46px;
537
+ font-weight: 700;
538
+ font-size: 16px;
539
+ font-family: 'Inter', sans-serif;
540
+ text-align: center;
541
+ border: 2px solid #c5c6cc;
542
+ border-radius: 12px;
543
+ outline: none;
544
+ padding: 2px;
545
+ }
546
+ .second-input:not(:placeholder-shown) {
547
+ border: 2px solid #1feaa6;
548
+ color: #1feaa6;
549
+ }
550
+ .mt-9 {
551
+ margin-top: 9%;
552
+ }
553
+ .second-input::placeholder {
554
+ color: #fff;
555
+ opacity: 0;
556
+ }
557
+ .second-input:focus {
558
+ border: 2px solid #464e58;
559
+ color: #464e58;
560
+ }
561
+ .second-input.error {
562
+ border: 2px solid #b67171;
563
+ }
564
+ .second-input.error:focus {
565
+ border: 3px solid #b67171;
566
+ color: #b67171;
567
+ padding: 1px;
568
+ }
569
+ .second-input.error:not(:placeholder-shown) {
570
+ border: 3px solid #b67171;
571
+ color: #b67171;
572
+ padding: 2px;
573
+ }
574
+ .second-input-container {
575
+ margin-top: 30%;
576
+ display: flex;
577
+ flex-wrap: wrap;
578
+ justify-content: space-between;
579
+ }
580
+ .input-container {
581
+ display: flex;
582
+ flex-wrap: wrap;
583
+ }
584
+ .mt-15 {
585
+ margin-top: 15%;
586
+ }
587
+ .row-validare .mt-15 {
588
+ margin-top: 40px;
589
+ }
590
+ .mb-15 {
591
+ margin-bottom: 15%;
592
+ }
593
+ .row-validare .mb-15 {
594
+ margin-bottom: 40px;
595
+ }
596
+ .mb-20 {
597
+ margin-bottom: 20%;
598
+ }
599
+ .row-validare .mb-1 {
600
+ margin-bottom: 20px;
601
+ }
602
+ .row-validare .mb-20 {
603
+ margin-bottom: 60px;
604
+ }
605
+ .mt-90 {
606
+ margin-top: 90px;
607
+ }
608
+ .op-05 {
609
+ opacity: 0.5;
610
+ }
611
+ .color-red {
612
+ color: #b67171;
613
+ }
614
+ .error-text {
615
+ position: relative;
616
+ top: 50px;
617
+ margin-bottom: 0;
618
+ margin-top: 0;
619
+ }
620
+ .top-50 {
621
+ top: 50px;
622
+ }
623
+ .mt-25 {
624
+ margin-top: 25%;
625
+ }
626
+ .text-center {
627
+ text-align: center;
628
+ }
629
+ .scale-2 {
630
+ transform: scale(2);
631
+ }
632
+ .mt-20 {
633
+ margin-top: 20%;
634
+ }
635
+ .div-ci img {
636
+ max-height: 60vh;
637
+ max-width: 80vw;
638
+ }
639
+ .div-ci {
640
+ text-align: center;
641
+ }
642
+ .mt-10 {
643
+ margin-top: 10vh;
644
+ }
645
+ .pos-relative {
646
+ position: relative;
647
+ }
648
+
649
+ .pos-absolute {
650
+ position: absolute;
651
+ }
652
+ .btn-buletin {
653
+ text-align: center;
654
+ }
655
+ .buletin-container img {
656
+ width: 60%;
657
+ }
658
+ .buletin-container > img {
659
+ margin-top: 10vh;
660
+ }
661
+ .buletin-container {
662
+ text-align: center;
663
+ }
664
+ .bg-black {
665
+ background-color: #242426;
666
+ }
667
+ .color-white {
668
+ color: #fff;
669
+ }
670
+ .chenar-buletin {
671
+ margin-top: 3em;
672
+ text-align: center;
673
+ }
674
+ .chenar-buletin .ci-img {
675
+ width: 96%;
676
+ }
677
+ .chenar-buletin .face-img,
678
+ .chenar-buletin .chenar-img {
679
+ left: 4%;
680
+ width: 92%;
681
+ top: -20px;
682
+ min-height: 55vw;
683
+ display: flex;
684
+ position: absolute;
685
+ align-items: center;
686
+ background-color: rgba(255, 255, 255, 0.2);
687
+ justify-content: center;
688
+ }
689
+ .chenar-buletin img {
690
+ width: auto;
691
+ height: 100%;
692
+ top: 0;
693
+ left: 0;
694
+ position: absolute;
695
+ border-radius: 10px;
696
+ z-index: 4;
697
+ }
698
+ .chenar-buletin .face-img {
699
+ background-color: rgba(255, 255, 255, 0.3);
700
+ }
701
+ .buletin-container .w-40 {
702
+ width: 40%;
703
+ }
704
+ .animation {
705
+ width: 100%;
706
+ height: 100%;
707
+ /* opacity: 60%; */
708
+ }
709
+ .color-black-2 {
710
+ color: #71727a;
711
+ }
712
+ .font-size-3 {
713
+ font-size: 3vh;
714
+ }
715
+ .font-weight-900 {
716
+ font-weight: 900;
717
+ }
718
+ .mt-8 {
719
+ margin-top: 8vh;
720
+ }
721
+ .mt-12 {
722
+ margin-top: 12vh;
723
+ }
724
+ .mt-30-i {
725
+ margin-top: 30% !important;
726
+ }
727
+ .chenar-buletin .face-img {
728
+ left: -2%;
729
+ width: 104%;
730
+ top: -40px;
731
+ }
732
+ .pl-2-5 {
733
+ padding-left: 2.5vh;
734
+ }
735
+ .container-coin {
736
+ background-color: transparent;
737
+ perspective: 1000px;
738
+ rotate: 120deg 0deg;
739
+ }
740
+ .dot-effect {
741
+ position: fixed;
742
+ bottom: 13vh;
743
+ width: calc(100% - 5vh);
744
+ text-align: center;
745
+ display: flex;
746
+ align-items: center;
747
+ justify-content: center;
748
+ }
749
+ .coin-flip {
750
+ animation: flip 0.4s ease-in;
751
+ animation-delay: 0.5s;
752
+ transform-style: preserve-3d;
753
+ animation-fill-mode: forwards;
754
+ visibility: hidden;
755
+ }
756
+
757
+ .coin-scale {
758
+ animation: show 0.4s ease-in;
759
+ animation-delay: 0.5s;
760
+ transform-style: preserve-3d;
761
+ animation-fill-mode: forwards;
762
+ }
763
+
764
+ .scroll {
765
+ margin: 4px, 4px;
766
+ padding: 4px;
767
+ height: 70vh;
768
+ overflow-x: hidden;
769
+ overflow-y: auto;
770
+ }
771
+
772
+ .video-demo {
773
+ z-index: 0;
774
+ width: 100%;
775
+ height: 100%;
776
+ border-radius: 20px;
777
+ }
778
+
779
+ .video-capture {
780
+ padding: 2.5vh 2.5vh;
781
+ margin-top: 3em;
782
+ text-align: center;
783
+ position: relative;
784
+ }
785
+
786
+ .capture-title {
787
+ z-index: 4;
788
+ margin-top: 3vh;
789
+ position: absolute;
790
+ bottom: 5vh;
791
+ padding: 2.5vh 2.5vh;
792
+ }
793
+
794
+ @keyframes transition-i {
795
+ from {
796
+ width: 0;
797
+ height: 0;
798
+ opacity: 1;
799
+ }
800
+ 80% {
801
+ width: 10vh;
802
+ height: 10vh;
803
+ opacity: 0.5;
804
+ }
805
+ 100% {
806
+ opacity: 0;
807
+ }
808
+ }
809
+ @keyframes flip {
810
+ 0% {
811
+ transform: rotateX(140deg);
812
+ visibility: visible;
813
+ }
814
+
815
+ 25% {
816
+ transform: rotateX(120deg);
817
+ visibility: visible;
818
+ }
819
+
820
+ 50% {
821
+ transform: rotateX(90deg);
822
+ visibility: visible;
823
+ }
824
+
825
+ 75% {
826
+ transform: rotateX(75deg);
827
+ visibility: visible;
828
+ }
829
+
830
+ 100% {
831
+ transform: rotateX(0deg);
832
+ visibility: visible;
833
+ }
834
+ }
835
+
836
+ @keyframes show {
837
+ 0% {
838
+ transform: scale(0);
839
+ }
840
+
841
+ 25% {
842
+ transform: scale(0.2);
843
+ }
844
+
845
+ 40% {
846
+ transform: scale(0.4);
847
+ }
848
+
849
+ 50% {
850
+ transform: scale(0.5);
851
+ }
852
+
853
+ 60% {
854
+ transform: scale(0.6);
855
+ }
856
+
857
+ 70% {
858
+ transform: scale(0.7);
859
+ }
860
+
861
+ 100% {
862
+ transform: scale(1);
863
+ }
864
+ }
865
+ @keyframes rise {
866
+ 0% {
867
+ visibility: hidden;
868
+ }
869
+
870
+ 50% {
871
+ visibility: visible;
872
+ }
873
+
874
+ 100% {
875
+ visibility: visible;
876
+ }
877
+ }
878
+ .dot-shuttle {
879
+ position: relative;
880
+ left: -15px;
881
+ width: 12px;
882
+ height: 12px;
883
+ border-radius: 6px;
884
+ background-color: #1feaa6;
885
+ color: transparent;
886
+ margin: -1px 0;
887
+ opacity: 1;
888
+ }
889
+
890
+ .dot-shuttle::before {
891
+ opacity: 0.5;
892
+ }
893
+ .dot-shuttle::after {
894
+ opacity: 0.5;
895
+ }
896
+ .dot-shuttle::before,
897
+ .dot-shuttle::after {
898
+ content: '';
899
+ display: inline-block;
900
+ position: absolute;
901
+ top: 0;
902
+ width: 12px;
903
+ height: 12px;
904
+ border-radius: 6px;
905
+ background-color: #1feaa6;
906
+ color: transparent;
907
+ }
908
+
909
+ .dot-shuttle::before {
910
+ left: 0;
911
+ animation: dotShuttle 2s infinite ease-out;
912
+ }
913
+
914
+ .dot-shuttle::after {
915
+ left: 0;
916
+ animation: dotShuttle 2s infinite ease-out;
917
+ animation-delay: 1s;
918
+ }
919
+ .buletin-container.rotate-x img {
920
+ animation: transform-rotate-x 2s infinite ease-in;
921
+ }
922
+ .rotateimg90 {
923
+ animation: transform-rotate-x2 2s forwards;
924
+ animation-delay: 1s;
925
+ position: absolute;
926
+ }
927
+ .rotateimg180 {
928
+ animation: transform-rotate-x3 2s forwards;
929
+ animation-delay: 3s;
930
+ position: absolute;
931
+ opacity: 0;
932
+ }
933
+ .buletin-back {
934
+ display: flex;
935
+ justify-content: center;
936
+ }
937
+ @keyframes transform-rotate-x3 {
938
+ from {
939
+ transform: rotateY(-90deg);
940
+ opacity: 1;
941
+ }
942
+ to {
943
+ transform: rotateY(0deg);
944
+ opacity: 1;
945
+ }
946
+ }
947
+ @keyframes transform-rotate-x2 {
948
+ to {
949
+ transform: rotateY(90deg);
950
+ }
951
+ }
952
+ @keyframes transform-rotate-x {
953
+ to {
954
+ transform: perspective(600px) rotateX(40deg);
955
+ }
956
+ }
957
+ @keyframes dotShuttle {
958
+ 0%,
959
+ 50%,
960
+ 100% {
961
+ transform: translateX(0);
962
+ opacity: 1;
963
+ }
964
+ 25% {
965
+ transform: translateX(-30px);
966
+ opacity: 0.5;
967
+ }
968
+ 75% {
969
+ transform: translateX(30px);
970
+ opacity: 0.5;
971
+ }
972
+ }
973
+ @media only screen and (max-width: 350px) {
974
+ .second-input {
975
+ width: 36px;
976
+ height: 36px;
977
+ }
978
+ }
979
+ @media only screen and (max-width: 390px) {
980
+ .second-input {
981
+ width: 40px;
982
+ height: 40px;
983
+ }
984
+ }
985
+
986
+ @media only screen and (min-width: 530px) and (max-width: 767px) {
987
+ .chenar-buletin .face-img {
988
+ width: 70%;
989
+ min-height: auto;
990
+ margin: auto;
991
+ left: 15%;
992
+ right: auto;
993
+ top: -15vh;
994
+ }
995
+ }
996
+ @media only screen and (min-width: 600px) and (max-width: 767px) {
997
+ .max-h img {
998
+ margin-left: 15%;
999
+ margin-right: 15%;
1000
+ }
1001
+ .max-h {
1002
+ display: flex;
1003
+ align-items: center;
1004
+ }
1005
+ }
1006
+ @media only screen and (max-width: 991px) {
1007
+ .buletin-container img {
1008
+ max-width: 220px;
1009
+ }
1010
+ }
1011
+ @media only screen and (min-width: 767px) {
1012
+ .container {
1013
+ max-width: 530px;
1014
+ margin: 40px auto;
1015
+ border-radius: 20px;
1016
+ box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
1017
+ }
1018
+ body {
1019
+ height: 90vh;
1020
+ }
1021
+ .btn-buletin {
1022
+ max-width: 490px;
1023
+ bottom: 7vh;
1024
+ }
1025
+ .buletin-container img {
1026
+ width: 45%;
1027
+ }
1028
+ .chenar-buletin .face-img,
1029
+ .chenar-buletin .chenar-img {
1030
+ min-height: 300px;
1031
+ }
1032
+ .chenar-buletin .face-img {
1033
+ width: 80%;
1034
+ min-height: auto;
1035
+ margin: auto;
1036
+ left: 10%;
1037
+ right: auto;
1038
+ top: -10vh;
1039
+ }
1040
+ .dot-effect {
1041
+ max-width: 490px;
1042
+ }
1043
+ }