herald-exchange-offramp-widget 1.0.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.
- package/.babelrc +3 -0
- package/Readme.md +118 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +24 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +58 -0
- package/rollup.config.js +90 -0
- package/src/assets/css/style.module.css +1473 -0
- package/src/assets/icons-one.png +0 -0
- package/src/assets/react.svg +1 -0
- package/src/components/ButtonStepper.tsx +144 -0
- package/src/components/CommonCenterLoader.tsx +31 -0
- package/src/components/CustomeSelect.tsx +178 -0
- package/src/components/DotLoader.tsx +7 -0
- package/src/components/SellAdminCryptoAccount.tsx +603 -0
- package/src/components/SellField.tsx +712 -0
- package/src/components/WidgetBankDetails.tsx +612 -0
- package/src/components/WidgetComponent.tsx +40 -0
- package/src/components/WidgetContent.tsx +29 -0
- package/src/components/WidgetSuccesDetails.tsx +113 -0
- package/src/components/api.ts +59 -0
- package/src/components/chains.ts +319 -0
- package/src/components/images.d.ts +5 -0
- package/src/components/loader.tsx +12 -0
- package/src/components/style.module.css.d.ts +4 -0
- package/src/components/toast.tsx +43 -0
- package/src/components/types.ts +237 -0
- package/src/components/utils.ts +17 -0
- package/src/hooks/toastProvider.tsx +63 -0
- package/src/hooks/useSocketExchange.tsx +48 -0
- package/src/index.ts +3 -0
- package/tsconfig.json +118 -0
@@ -0,0 +1,1473 @@
|
|
1
|
+
/* @import url('https://fonts.cdnfonts.com/css/segoe-ui-4'); */
|
2
|
+
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300;400;500;600;700&display=swap");
|
3
|
+
|
4
|
+
@-webkit-viewport {
|
5
|
+
width: device-width;
|
6
|
+
}
|
7
|
+
|
8
|
+
@-moz-viewport {
|
9
|
+
width: device-width;
|
10
|
+
}
|
11
|
+
|
12
|
+
@-ms-viewport {
|
13
|
+
width: device-width;
|
14
|
+
}
|
15
|
+
|
16
|
+
@-o-viewport {
|
17
|
+
width: device-width;
|
18
|
+
}
|
19
|
+
|
20
|
+
@viewport {
|
21
|
+
width: device-width;
|
22
|
+
}
|
23
|
+
|
24
|
+
:root {
|
25
|
+
--primary-set-color: #f9c201;
|
26
|
+
--secondary-set-color: #ffffff;
|
27
|
+
--tertiary-set-color: #000;
|
28
|
+
/* --quaternary-set-color: #878E96; */
|
29
|
+
--quaternary-set-color: #6b7178;
|
30
|
+
/* --bg-hover: #fffbf3; */
|
31
|
+
--senary-set-color: #298bff;
|
32
|
+
--overlay-set-bg: #f5f5f5;
|
33
|
+
/* --new-action-gradient: linear-gradient(180deg, #ffffff 39.57%, rgb(249 246 246)); */
|
34
|
+
/* --badges-success-bg: #f9fcf0; */
|
35
|
+
/* --badges-success-color: #7ab200; */
|
36
|
+
--badges-set-faile-color: #ff2222;
|
37
|
+
/* --badges-pending-bg: #e89a3c21; */
|
38
|
+
/* --badges-faile-bg: rgb(237 56 51 / 5%); */
|
39
|
+
/* --new-placeholder: #d2d2d2; */
|
40
|
+
--light-set-color: #fff;
|
41
|
+
--no-set-color: transparent;
|
42
|
+
/* border */
|
43
|
+
--border-set-color: #e5eaf4;
|
44
|
+
}
|
45
|
+
|
46
|
+
/*------------- Body -------------*/
|
47
|
+
|
48
|
+
body {
|
49
|
+
-webkit-font-smoothing: antialiased;
|
50
|
+
-moz-osx-font-smoothing: grayscale;
|
51
|
+
/* -webkit-transition: 0.25s ease;
|
52
|
+
transition: 0.25s ease; */
|
53
|
+
overflow-x: hidden;
|
54
|
+
position: relative;
|
55
|
+
font-family: "Red Hat Text", sans-serif;
|
56
|
+
color: var(--tertiary-set-color);
|
57
|
+
background-color: var(--secondary-set-color);
|
58
|
+
/* font-size:calc(.5 * (1.5vh + 1.1vw)) !important; */
|
59
|
+
font-size: 12px !important;
|
60
|
+
letter-spacing: 0.8px;
|
61
|
+
background-size: cover;
|
62
|
+
-webkit-text-size-adjust: none;
|
63
|
+
-ms-text-size-adjust: none;
|
64
|
+
-moz-text-size-adjust: none;
|
65
|
+
text-size-adjust: none;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* Unwanter Space */
|
69
|
+
* {
|
70
|
+
padding: 0;
|
71
|
+
margin: 0;
|
72
|
+
}
|
73
|
+
|
74
|
+
*,
|
75
|
+
:after,
|
76
|
+
:before {
|
77
|
+
box-sizing: border-box;
|
78
|
+
}
|
79
|
+
|
80
|
+
a,
|
81
|
+
button {
|
82
|
+
cursor: pointer;
|
83
|
+
}
|
84
|
+
|
85
|
+
p,
|
86
|
+
h1,
|
87
|
+
h2,
|
88
|
+
h3,
|
89
|
+
h4,
|
90
|
+
h5,
|
91
|
+
h6,
|
92
|
+
a,
|
93
|
+
span,
|
94
|
+
div {
|
95
|
+
font-family: "Red Hat Text", sans-serif;
|
96
|
+
}
|
97
|
+
|
98
|
+
button:disabled {
|
99
|
+
opacity: 0.7;
|
100
|
+
cursor: not-allowed;
|
101
|
+
}
|
102
|
+
|
103
|
+
.actionBtn {
|
104
|
+
--_background: var(--background, var(--primary-set-color));
|
105
|
+
--_color: var(--color, var(--tertiary-set-color));
|
106
|
+
--_border: var(--border, transparent);
|
107
|
+
--_btn-width: var(--btn-width, auto);
|
108
|
+
background: var(--_background);
|
109
|
+
color: var(--_color);
|
110
|
+
border: 1px solid var(--_border);
|
111
|
+
width: var(--_btn-width);
|
112
|
+
padding: 0.8em 2em;
|
113
|
+
text-align: center;
|
114
|
+
-webkit-transition: all 0.5s ease-in-out;
|
115
|
+
-moz-transition: all 0.5s ease-in-out;
|
116
|
+
-ms-transition: all 0.5s ease-in-out;
|
117
|
+
-o-transition: all 0.5s ease-in-out;
|
118
|
+
transition: all 0.5s ease-in-out;
|
119
|
+
position: relative;
|
120
|
+
overflow: hidden;
|
121
|
+
-webkit-border-radius: 10px;
|
122
|
+
-moz-border-radius: 10px;
|
123
|
+
-o-border-radius: 10px;
|
124
|
+
-ms-border-radius: 10px;
|
125
|
+
border-radius: 10px;
|
126
|
+
display: flex;
|
127
|
+
align-items: center;
|
128
|
+
gap: 0.5em;
|
129
|
+
justify-content: center;
|
130
|
+
font-size: 0.85em;
|
131
|
+
font-weight: 600;
|
132
|
+
z-index: 0;
|
133
|
+
font-family: "Red Hat Text", sans-serif;
|
134
|
+
}
|
135
|
+
|
136
|
+
.primary {
|
137
|
+
--background: var(--primary-set-color);
|
138
|
+
--color: var(--tertiary-set-color);
|
139
|
+
--btn-width: 100%;
|
140
|
+
--border: transparent;
|
141
|
+
}
|
142
|
+
|
143
|
+
.secondary {
|
144
|
+
--background: #f9f9f9;
|
145
|
+
--color: var(--tertiary-set-color);
|
146
|
+
--btn-width: auto;
|
147
|
+
--border: transparent;
|
148
|
+
}
|
149
|
+
|
150
|
+
.overlay {
|
151
|
+
--background: transparent;
|
152
|
+
--color: var(--tertiary-set-color);
|
153
|
+
--btn-width: auto;
|
154
|
+
--border: #e5eaf4;
|
155
|
+
padding: 0.5em;
|
156
|
+
}
|
157
|
+
|
158
|
+
/* widegt Layout css */
|
159
|
+
.widegtTabsLink {
|
160
|
+
display: flex;
|
161
|
+
align-items: flex-start;
|
162
|
+
justify-content: space-between;
|
163
|
+
margin-bottom: 2em;
|
164
|
+
}
|
165
|
+
|
166
|
+
.widegt-tabs-box {
|
167
|
+
background: #ffffff47;
|
168
|
+
padding: 0.7em;
|
169
|
+
border-radius: 10px;
|
170
|
+
display: flex;
|
171
|
+
align-items: center;
|
172
|
+
gap: 1em;
|
173
|
+
margin-bottom: 1.5em;
|
174
|
+
}
|
175
|
+
|
176
|
+
.widegt-tabs-box button {
|
177
|
+
background-color: initial;
|
178
|
+
border-radius: 0;
|
179
|
+
color: #666;
|
180
|
+
font-size: 0.85em;
|
181
|
+
font-weight: 600;
|
182
|
+
border: 0;
|
183
|
+
padding: 0.8em 1em;
|
184
|
+
font-family: "Red Hat Text", sans-serif;
|
185
|
+
}
|
186
|
+
|
187
|
+
.widegt-tabs-box button.active {
|
188
|
+
background: var(--secondary-set-color);
|
189
|
+
border-radius: 10px;
|
190
|
+
}
|
191
|
+
|
192
|
+
.widegt-tabs-box button:first-child.active {
|
193
|
+
color: #008826 !important;
|
194
|
+
}
|
195
|
+
|
196
|
+
.widegt-tabs-box button:last-child.active {
|
197
|
+
color: #ff0000 !important;
|
198
|
+
}
|
199
|
+
|
200
|
+
.widegtTabsClose button {
|
201
|
+
background-color: transparent;
|
202
|
+
border: 0;
|
203
|
+
}
|
204
|
+
|
205
|
+
.widegtTabsContent {
|
206
|
+
background: #ffffff47;
|
207
|
+
padding: 2em;
|
208
|
+
border-radius: 10px;
|
209
|
+
}
|
210
|
+
|
211
|
+
/* Modal For Widegt */
|
212
|
+
.exchangeWidgetWrapped {
|
213
|
+
--spacing-modal: 1.75rem;
|
214
|
+
width: auto;
|
215
|
+
/* height: 100%;
|
216
|
+
overflow-x: hidden;
|
217
|
+
overflow-y: auto;
|
218
|
+
position: fixed;
|
219
|
+
width: 100%;
|
220
|
+
top: 50%;
|
221
|
+
left: 50%;
|
222
|
+
-ms-transform: translate(-50%, -50%);
|
223
|
+
transform: translate(-50%, -50%); */
|
224
|
+
}
|
225
|
+
|
226
|
+
@media (max-width: 767.98px) {
|
227
|
+
.exchangeWidgetWrapped {
|
228
|
+
height: 100%;
|
229
|
+
}
|
230
|
+
}
|
231
|
+
|
232
|
+
.widgetComponent {
|
233
|
+
display: block;
|
234
|
+
min-width: 600px;
|
235
|
+
max-width: 600px;
|
236
|
+
min-height: 600px;
|
237
|
+
overflow: hidden;
|
238
|
+
}
|
239
|
+
|
240
|
+
|
241
|
+
@media (max-width: 767.98px) {
|
242
|
+
.widgetComponent {
|
243
|
+
position: relative;
|
244
|
+
width: 100%;
|
245
|
+
top: unset;
|
246
|
+
left: unset;
|
247
|
+
transform: unset;
|
248
|
+
min-width: unset !important;
|
249
|
+
max-width: unset !important;
|
250
|
+
border-radius: 0px;
|
251
|
+
padding: 0em !important;
|
252
|
+
}
|
253
|
+
.exchangeWidgetContent ,.widegtTabsConten{
|
254
|
+
padding: 1em !important;
|
255
|
+
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
.exchangeWidgetContent {
|
260
|
+
background-color: #f3e2c3;
|
261
|
+
border-radius: 12px;
|
262
|
+
padding: 2em;
|
263
|
+
width: 100%;
|
264
|
+
position: relative;
|
265
|
+
}
|
266
|
+
|
267
|
+
.hide {
|
268
|
+
display: none;
|
269
|
+
}
|
270
|
+
|
271
|
+
.show {
|
272
|
+
display: block;
|
273
|
+
}
|
274
|
+
|
275
|
+
/* Sell Feilds Style section start */
|
276
|
+
.offRampFieldCard {
|
277
|
+
border-radius: 10px;
|
278
|
+
}
|
279
|
+
.offRampFieldCard {
|
280
|
+
border-radius: 10px;
|
281
|
+
}
|
282
|
+
|
283
|
+
.offRampFieldLabel {
|
284
|
+
font-size: 1em;
|
285
|
+
font-weight: 600;
|
286
|
+
color: #010101;
|
287
|
+
margin-bottom: 0.5em;
|
288
|
+
}
|
289
|
+
|
290
|
+
.offRampFieldForm .inputControl {
|
291
|
+
background: var(--no-set-color);
|
292
|
+
border: 0;
|
293
|
+
border-radius: 0;
|
294
|
+
height: 45px;
|
295
|
+
padding: 12px;
|
296
|
+
font-size: 1.8em;
|
297
|
+
font-weight: 600;
|
298
|
+
width: 100%;
|
299
|
+
color: #7d7d7d;
|
300
|
+
padding-left: 0;
|
301
|
+
}
|
302
|
+
|
303
|
+
.offRampFieldForm .inputControl:focus,
|
304
|
+
.offRampFieldForm .inputControl:active,
|
305
|
+
.offRampFieldForm .inputControl:focus-within,
|
306
|
+
.offRampFieldForm .inputControl:focus-visible {
|
307
|
+
background: var(--no-set-color);
|
308
|
+
border: 0;
|
309
|
+
border-radius: 0;
|
310
|
+
outline: 0;
|
311
|
+
}
|
312
|
+
.offRampFieldForm .inputControl:focus-visible {
|
313
|
+
background: var(--no-set-color);
|
314
|
+
border: 0;
|
315
|
+
border-radius: 0;
|
316
|
+
outline: 0;
|
317
|
+
}
|
318
|
+
|
319
|
+
.offRampNewBankFields {
|
320
|
+
margin-bottom: 1em;
|
321
|
+
}
|
322
|
+
|
323
|
+
.offRampNewBankBox .inputControl {
|
324
|
+
background: var(--light-set-color);
|
325
|
+
border: 0;
|
326
|
+
border-radius: 0;
|
327
|
+
height: 45px;
|
328
|
+
padding: 12px;
|
329
|
+
font-size: 1.8em;
|
330
|
+
font-weight: 600;
|
331
|
+
width: 100%;
|
332
|
+
color: #7d7d7d;
|
333
|
+
padding-left: 0;
|
334
|
+
}
|
335
|
+
|
336
|
+
.offRampNewBankBox .inputControl:focus,
|
337
|
+
.offRampNewBankBox .inputControl:active,
|
338
|
+
.offRampNewBankBox .inputControl:focus-within,
|
339
|
+
.offRampNewBankBox .inputControl:focus-visible {
|
340
|
+
background: var(--light-set-color);
|
341
|
+
border: 0;
|
342
|
+
outline: 0;
|
343
|
+
}
|
344
|
+
.offRampNewBankBox .inputControl:focus-visible {
|
345
|
+
background: var(--light-set-color);
|
346
|
+
border: 0;
|
347
|
+
outline: 0;
|
348
|
+
}
|
349
|
+
|
350
|
+
.offRampFieldSelect {
|
351
|
+
/* display: grid;
|
352
|
+
grid-template-columns: 20px auto;
|
353
|
+
align-items: center;
|
354
|
+
gap: 1em; */
|
355
|
+
/* margin-bottom: 1em; */
|
356
|
+
}
|
357
|
+
|
358
|
+
.offRampModalImg {
|
359
|
+
width: 1.5em;
|
360
|
+
height: 1.5em;
|
361
|
+
object-fit: contain;
|
362
|
+
}
|
363
|
+
|
364
|
+
.off-ramp-selected-badges {
|
365
|
+
background: #0000000a;
|
366
|
+
border: 1px dashed #0000003b;
|
367
|
+
border-radius: 10px;
|
368
|
+
padding: 0.5em;
|
369
|
+
color: #010101;
|
370
|
+
font-size: 0.85em;
|
371
|
+
font-weight: 600;
|
372
|
+
line-height: 1.8;
|
373
|
+
margin-bottom: 0;
|
374
|
+
text-align: center;
|
375
|
+
}
|
376
|
+
|
377
|
+
.selected__two {
|
378
|
+
background: #0000000a;
|
379
|
+
border: 1px dashed #0000003b;
|
380
|
+
border-radius: 10px;
|
381
|
+
color: #010101;
|
382
|
+
font-size: 0.85em;
|
383
|
+
font-weight: 600;
|
384
|
+
line-height: 1.8;
|
385
|
+
margin-bottom: 0;
|
386
|
+
margin-top: 1em;
|
387
|
+
/* text-align: center; */
|
388
|
+
}
|
389
|
+
|
390
|
+
.offRampFieldCard {
|
391
|
+
display: flex;
|
392
|
+
}
|
393
|
+
@media (max-width: 767.98px) {
|
394
|
+
.offRampFieldCard {
|
395
|
+
flex-direction: column;
|
396
|
+
}
|
397
|
+
.offRampFieldBox {
|
398
|
+
width: 100% !important;
|
399
|
+
border-bottom-left-radius: 0px !important;
|
400
|
+
border-top-left-radius: 10px !important;
|
401
|
+
border-top-right-radius: 10px !important;
|
402
|
+
}
|
403
|
+
.offRampFieldSelectCard {
|
404
|
+
width: 100% !important;
|
405
|
+
border-bottom-left-radius: 10px !important;
|
406
|
+
border-top-right-radius: 0px !important;
|
407
|
+
border-bottom-right-radius: 10px !important;
|
408
|
+
}
|
409
|
+
.offRampDetailsCard {
|
410
|
+
grid-template-columns: repeat(1, 1fr) !important;
|
411
|
+
}
|
412
|
+
.offRampDetailsCard span:last-child {
|
413
|
+
text-align: start !important;
|
414
|
+
}
|
415
|
+
.span-d-align {
|
416
|
+
justify-content: start !important;
|
417
|
+
}
|
418
|
+
}
|
419
|
+
.offRampFieldBox {
|
420
|
+
width: 75%;
|
421
|
+
background: #fff9;
|
422
|
+
padding: 1em;
|
423
|
+
border-bottom-left-radius: 10px;
|
424
|
+
border-top-left-radius: 10px;
|
425
|
+
display: flex;
|
426
|
+
flex-direction: column;
|
427
|
+
justify-content: center;
|
428
|
+
}
|
429
|
+
|
430
|
+
.offRampFieldSelectCard {
|
431
|
+
width: 50%;
|
432
|
+
background-color: #f8f9fa;
|
433
|
+
padding: 1em;
|
434
|
+
border-bottom-right-radius: 10px;
|
435
|
+
border-top-right-radius: 10px;
|
436
|
+
display: flex;
|
437
|
+
flex-direction: column;
|
438
|
+
justify-content: center;
|
439
|
+
}
|
440
|
+
|
441
|
+
.offRampLabelIcons {
|
442
|
+
width: 2em;
|
443
|
+
height: 2em;
|
444
|
+
display: grid;
|
445
|
+
place-items: center;
|
446
|
+
background-color: #f8f9fa;
|
447
|
+
border-radius: 50%;
|
448
|
+
font-weight: 700;
|
449
|
+
font-size: 1.2em;
|
450
|
+
}
|
451
|
+
|
452
|
+
.offRampLabelValue {
|
453
|
+
font-size: 1.1em;
|
454
|
+
font-weight: 600;
|
455
|
+
color: #010101;
|
456
|
+
display: flex;
|
457
|
+
gap: 10;
|
458
|
+
align-items: center;
|
459
|
+
}
|
460
|
+
|
461
|
+
.offRampLabelValue span {
|
462
|
+
font-weight: 500;
|
463
|
+
color: #7d7d7d;
|
464
|
+
}
|
465
|
+
|
466
|
+
.offRampSpace {
|
467
|
+
display: grid;
|
468
|
+
grid-template-columns: 70px auto;
|
469
|
+
align-items: center;
|
470
|
+
}
|
471
|
+
|
472
|
+
.offRampSpaceTop {
|
473
|
+
display: grid;
|
474
|
+
grid-template-columns: 70px auto;
|
475
|
+
align-items: start;
|
476
|
+
}
|
477
|
+
|
478
|
+
.offRampLabelDots {
|
479
|
+
width: 1em;
|
480
|
+
height: 1em;
|
481
|
+
border-radius: 50%;
|
482
|
+
background-color: #f8f9fa;
|
483
|
+
margin-left: 10px;
|
484
|
+
}
|
485
|
+
|
486
|
+
.offRampDetails .offRampHead {
|
487
|
+
font-size: 1.2em;
|
488
|
+
font-weight: 500;
|
489
|
+
color: #7d7d7d;
|
490
|
+
line-height: 0.9;
|
491
|
+
}
|
492
|
+
|
493
|
+
.offPaymentCheckCard {
|
494
|
+
display: flex;
|
495
|
+
align-items: center;
|
496
|
+
justify-content: space-between;
|
497
|
+
gap: 8px;
|
498
|
+
border: 1px solid #fff;
|
499
|
+
border-radius: 8px;
|
500
|
+
padding: 10px 15px;
|
501
|
+
cursor: pointer;
|
502
|
+
transition: all 0.3s ease;
|
503
|
+
background-color: var(--secondary-set-color);
|
504
|
+
position: relative;
|
505
|
+
}
|
506
|
+
|
507
|
+
.offPaymentBox {
|
508
|
+
display: flex;
|
509
|
+
align-items: center;
|
510
|
+
gap: 1em;
|
511
|
+
margin-top: 1em;
|
512
|
+
}
|
513
|
+
|
514
|
+
.offPaymentCheckCard input[type="radio"] {
|
515
|
+
position: absolute;
|
516
|
+
opacity: 0;
|
517
|
+
width: 0;
|
518
|
+
height: 0;
|
519
|
+
}
|
520
|
+
|
521
|
+
.offPaymentCheckCard.selected {
|
522
|
+
border-color: var(--primary-set-color);
|
523
|
+
background-color: #fff7d1;
|
524
|
+
}
|
525
|
+
|
526
|
+
.offRampInfoBox {
|
527
|
+
display: flex;
|
528
|
+
flex-direction: column;
|
529
|
+
gap: 2em;
|
530
|
+
padding: 2em 0;
|
531
|
+
position: relative;
|
532
|
+
z-index: 999;
|
533
|
+
}
|
534
|
+
|
535
|
+
.offRampInfoBox::after {
|
536
|
+
content: "";
|
537
|
+
position: absolute;
|
538
|
+
width: 2px;
|
539
|
+
height: 100%;
|
540
|
+
top: 0;
|
541
|
+
background: #ffffff73;
|
542
|
+
left: 15px;
|
543
|
+
z-index: -1;
|
544
|
+
}
|
545
|
+
|
546
|
+
.offRampAction {
|
547
|
+
margin-top: 2em;
|
548
|
+
}
|
549
|
+
.efiSwapAction {
|
550
|
+
margin-bottom: 1em;
|
551
|
+
}
|
552
|
+
/* Sell Feilds Style section end */
|
553
|
+
|
554
|
+
/* Bank Details Section Start */
|
555
|
+
.offRampBankHead {
|
556
|
+
display: grid;
|
557
|
+
grid-template-columns: 24px auto;
|
558
|
+
align-items: center;
|
559
|
+
gap: 1em;
|
560
|
+
margin-bottom: 2em;
|
561
|
+
}
|
562
|
+
|
563
|
+
.bankTitles {
|
564
|
+
font-size: 1.2em;
|
565
|
+
color: #000;
|
566
|
+
font-weight: 600;
|
567
|
+
/* line-height: 3; */
|
568
|
+
}
|
569
|
+
|
570
|
+
.offRampBankHead a {
|
571
|
+
width: 18px;
|
572
|
+
height: 18px;
|
573
|
+
}
|
574
|
+
|
575
|
+
.offRampBankTabsLink {
|
576
|
+
display: grid;
|
577
|
+
grid-template-columns: repeat(2, 1fr);
|
578
|
+
/* border-bottom: 1px solid #fff; */
|
579
|
+
}
|
580
|
+
|
581
|
+
.offRampBankTabsLink button {
|
582
|
+
width: 100%;
|
583
|
+
background-color: var(--no-set-color);
|
584
|
+
padding: 1em 2em;
|
585
|
+
border: 0;
|
586
|
+
border-radius: 0;
|
587
|
+
border-bottom: 1px solid #fff;
|
588
|
+
font-size: 1.1em;
|
589
|
+
font-weight: 600;
|
590
|
+
color: #000;
|
591
|
+
}
|
592
|
+
|
593
|
+
.offRampBankTabsLink button.active {
|
594
|
+
border-bottom: 1px solid var(--primary-set-color);
|
595
|
+
}
|
596
|
+
|
597
|
+
.offRampBankTabsContent {
|
598
|
+
padding: 2em 1em;
|
599
|
+
}
|
600
|
+
|
601
|
+
.offRampBankExistFeildsFrame {
|
602
|
+
margin-bottom: 2em;
|
603
|
+
margin-bottom: 2em;
|
604
|
+
}
|
605
|
+
|
606
|
+
.offRampBankExistLabel {
|
607
|
+
font-size: 1em;
|
608
|
+
font-weight: 600;
|
609
|
+
color: #010101;
|
610
|
+
margin-bottom: 0.5em;
|
611
|
+
}
|
612
|
+
|
613
|
+
.offRampInfoCard {
|
614
|
+
border-radius: 10px;
|
615
|
+
padding: 0.5em;
|
616
|
+
display: grid;
|
617
|
+
grid-template-columns: 40px auto;
|
618
|
+
align-items: center;
|
619
|
+
background: #ffffff47;
|
620
|
+
}
|
621
|
+
|
622
|
+
.cautionInfo {
|
623
|
+
font-size: 0.8em;
|
624
|
+
font-weight: 400;
|
625
|
+
color: var(--tertiary-set-color);
|
626
|
+
line-height: 1.8;
|
627
|
+
}
|
628
|
+
|
629
|
+
.offRampNewBankLabel {
|
630
|
+
font-size: 1em;
|
631
|
+
font-weight: 600;
|
632
|
+
color: #010101;
|
633
|
+
margin-bottom: 0.5em;
|
634
|
+
}
|
635
|
+
|
636
|
+
.offRampNewBankFields .inputControl {
|
637
|
+
height: 45px;
|
638
|
+
background-color: var(--secondary-set-color);
|
639
|
+
width: 100%;
|
640
|
+
border: 1px soild var(--secondary-set-color);
|
641
|
+
border-radius: 10px;
|
642
|
+
padding: 10px;
|
643
|
+
font-size: 0.9em !important;
|
644
|
+
font-weight: 400 !important;
|
645
|
+
color: var(--tertiary-set-color);
|
646
|
+
}
|
647
|
+
|
648
|
+
.offRampNewBankFields .inputControl:focus,
|
649
|
+
.offRampNewBankFields .inputControl:active,
|
650
|
+
.offRampNewBankFields .inputControl:focus-within,
|
651
|
+
.offRampNewBankFields .inputControl:focus-visible {
|
652
|
+
border: 1px soild var(--secondary-set-color);
|
653
|
+
outline: 0;
|
654
|
+
}
|
655
|
+
.offRampNewBankFields .inputControl:focus-visible {
|
656
|
+
border: 1px soild var(--secondary-set-color);
|
657
|
+
outline: 0;
|
658
|
+
}
|
659
|
+
|
660
|
+
.offRampNewBankBox {
|
661
|
+
margin-bottom: 2em;
|
662
|
+
}
|
663
|
+
|
664
|
+
/* Bank Details Section end */
|
665
|
+
|
666
|
+
/* Bank Succes Details Section start */
|
667
|
+
.offRampDetailsHead {
|
668
|
+
display: grid;
|
669
|
+
grid-template-columns: 24px auto;
|
670
|
+
align-items: center;
|
671
|
+
gap: 1em;
|
672
|
+
margin-bottom: 2em;
|
673
|
+
}
|
674
|
+
|
675
|
+
.detailsTitles {
|
676
|
+
font-size: 1.2em;
|
677
|
+
color: #000;
|
678
|
+
font-weight: 600;
|
679
|
+
/* line-height: 3; */
|
680
|
+
}
|
681
|
+
|
682
|
+
.offRampDetailsHead a {
|
683
|
+
width: 18px;
|
684
|
+
height: 18px;
|
685
|
+
}
|
686
|
+
|
687
|
+
.offRampDetailsInfoBox {
|
688
|
+
padding: 2em;
|
689
|
+
background-color: var(--secondary-set-color);
|
690
|
+
border-radius: 10px;
|
691
|
+
}
|
692
|
+
|
693
|
+
.offRampDetailsCard {
|
694
|
+
display: grid;
|
695
|
+
grid-template-columns: repeat(2, 1fr);
|
696
|
+
align-items: center;
|
697
|
+
gap: 2em;
|
698
|
+
margin-bottom: 1.5em;
|
699
|
+
padding-bottom: 1.5em;
|
700
|
+
border-bottom: 1px dashed #ededed;
|
701
|
+
}
|
702
|
+
|
703
|
+
.offRampDetailsCard:last-child {
|
704
|
+
border-bottom: 0px dashed #fff;
|
705
|
+
margin-bottom: 0;
|
706
|
+
padding: 0;
|
707
|
+
}
|
708
|
+
|
709
|
+
.offRampDetailsCard span:first-child {
|
710
|
+
font-size: 1em;
|
711
|
+
font-weight: 600;
|
712
|
+
color: #7d7d7d;
|
713
|
+
text-align: start;
|
714
|
+
}
|
715
|
+
|
716
|
+
.offRampDetailsCard span:last-child {
|
717
|
+
text-align: end;
|
718
|
+
font-size: 1em;
|
719
|
+
font-weight: 500;
|
720
|
+
color: #010101;
|
721
|
+
}
|
722
|
+
|
723
|
+
.spanDAlign {
|
724
|
+
display: grid;
|
725
|
+
grid-template-columns: 24px auto;
|
726
|
+
align-items: center;
|
727
|
+
gap: 1em;
|
728
|
+
justify-content: end;
|
729
|
+
}
|
730
|
+
|
731
|
+
.spanDCopy {
|
732
|
+
-webkit-line-clamp: 1;
|
733
|
+
-webkit-box-orient: vertical;
|
734
|
+
display: -webkit-box;
|
735
|
+
font-size: 0.85em;
|
736
|
+
font-weight: 500;
|
737
|
+
overflow: hidden;
|
738
|
+
text-overflow: ellipsis;
|
739
|
+
word-break: break-all;
|
740
|
+
}
|
741
|
+
.spanDCopy {
|
742
|
+
display: grid;
|
743
|
+
grid-template-columns: auto 24px;
|
744
|
+
align-items: center;
|
745
|
+
gap: 1em;
|
746
|
+
justify-content: end;
|
747
|
+
}
|
748
|
+
|
749
|
+
/* Bank Succes Details Section end */
|
750
|
+
|
751
|
+
.ramp_option {
|
752
|
+
display: flex;
|
753
|
+
align-items: center;
|
754
|
+
gap: 2em;
|
755
|
+
}
|
756
|
+
.ramp_option {
|
757
|
+
display: flex;
|
758
|
+
align-items: center;
|
759
|
+
gap: 2em;
|
760
|
+
}
|
761
|
+
|
762
|
+
/* Toast css */
|
763
|
+
|
764
|
+
.toastContainer {
|
765
|
+
position: absolute;
|
766
|
+
top: 20px;
|
767
|
+
right: 20px;
|
768
|
+
display: flex;
|
769
|
+
flex-direction: column;
|
770
|
+
gap: 10px;
|
771
|
+
z-index: 9999;
|
772
|
+
}
|
773
|
+
|
774
|
+
.toast {
|
775
|
+
min-width: 250px;
|
776
|
+
background-color: #333;
|
777
|
+
color: white;
|
778
|
+
padding: 12px 16px;
|
779
|
+
border-radius: 6px;
|
780
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
781
|
+
display: flex;
|
782
|
+
justify-content: space-between;
|
783
|
+
align-items: center;
|
784
|
+
animation: slideIn 0.3s ease, fadeOut 0.5s ease 2.5s;
|
785
|
+
transition: opacity 0.3s;
|
786
|
+
}
|
787
|
+
|
788
|
+
.toast.success {
|
789
|
+
background-color: #4caf50;
|
790
|
+
}
|
791
|
+
|
792
|
+
.toast.error {
|
793
|
+
background-color: #f44336;
|
794
|
+
}
|
795
|
+
|
796
|
+
.toast.info {
|
797
|
+
background-color: #2196f3;
|
798
|
+
}
|
799
|
+
|
800
|
+
.toast .btnClose {
|
801
|
+
background: none;
|
802
|
+
border: none;
|
803
|
+
color: white;
|
804
|
+
font-size: 18px;
|
805
|
+
cursor: pointer;
|
806
|
+
}
|
807
|
+
|
808
|
+
@keyframes slideIn {
|
809
|
+
from {
|
810
|
+
opacity: 0;
|
811
|
+
transform: translateX(100%);
|
812
|
+
}
|
813
|
+
to {
|
814
|
+
opacity: 1;
|
815
|
+
transform: translateX(0);
|
816
|
+
}
|
817
|
+
}
|
818
|
+
|
819
|
+
@keyframes fadeOut {
|
820
|
+
to {
|
821
|
+
opacity: 0;
|
822
|
+
}
|
823
|
+
}
|
824
|
+
|
825
|
+
/* Loader */
|
826
|
+
|
827
|
+
.preloadingSec {
|
828
|
+
width: 100px;
|
829
|
+
height: 20px;
|
830
|
+
border-radius: 40px;
|
831
|
+
color: var(--primary-set-color);
|
832
|
+
border: 2px solid;
|
833
|
+
position: relative;
|
834
|
+
}
|
835
|
+
|
836
|
+
.preloadingSec::before {
|
837
|
+
content: "";
|
838
|
+
position: absolute;
|
839
|
+
margin: 2px;
|
840
|
+
width: 25%;
|
841
|
+
top: 0;
|
842
|
+
bottom: 0;
|
843
|
+
left: 0;
|
844
|
+
border-radius: inherit;
|
845
|
+
background: currentColor;
|
846
|
+
animation: l3 1s infinite linear;
|
847
|
+
}
|
848
|
+
|
849
|
+
@keyframes l3 {
|
850
|
+
50% {
|
851
|
+
left: 100%;
|
852
|
+
transform: translateX(calc(-100% - 4px));
|
853
|
+
}
|
854
|
+
}
|
855
|
+
|
856
|
+
/* Dot loader */
|
857
|
+
/* HTML: <div class="loader"></div> */
|
858
|
+
|
859
|
+
.dotLoader {
|
860
|
+
width: 45px;
|
861
|
+
aspect-ratio: 1;
|
862
|
+
--c: no-repeat linear-gradient(var(--primary-set-color) 0 0);
|
863
|
+
background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
|
864
|
+
background-size: 20% 100%;
|
865
|
+
animation: l1 1s infinite linear;
|
866
|
+
}
|
867
|
+
@keyframes l1 {
|
868
|
+
0% {
|
869
|
+
background-size: 20% 100%, 20% 100%, 20% 100%;
|
870
|
+
}
|
871
|
+
33% {
|
872
|
+
background-size: 20% 10%, 20% 100%, 20% 100%;
|
873
|
+
}
|
874
|
+
50% {
|
875
|
+
background-size: 20% 100%, 20% 10%, 20% 100%;
|
876
|
+
}
|
877
|
+
66% {
|
878
|
+
background-size: 20% 100%, 20% 100%, 20% 10%;
|
879
|
+
}
|
880
|
+
100% {
|
881
|
+
background-size: 20% 100%, 20% 100%, 20% 100%;
|
882
|
+
}
|
883
|
+
}
|
884
|
+
.offRampFieldForm .dotLoader {
|
885
|
+
height: 20px;
|
886
|
+
}
|
887
|
+
|
888
|
+
.offCurrencyOption h3 {
|
889
|
+
font-weight: 500;
|
890
|
+
color: var(--tertiary-set-color);
|
891
|
+
font-size: 0.85em;
|
892
|
+
}
|
893
|
+
.offCurrencyOption {
|
894
|
+
display: flex;
|
895
|
+
align-items: center;
|
896
|
+
justify-content: space-between;
|
897
|
+
gap: 8px;
|
898
|
+
border: 1px solid var(--secondary-set-color);
|
899
|
+
border-radius: 8px;
|
900
|
+
padding: 10px 15px;
|
901
|
+
cursor: pointer;
|
902
|
+
transition: all 0.3s ease;
|
903
|
+
background-color: var(--secondary-set-color);
|
904
|
+
position: relative;
|
905
|
+
width: 100%;
|
906
|
+
}
|
907
|
+
/* .offRampCheckWrap + .form-check-input:checked[type=checkbox] + .off-currency-option {
|
908
|
+
border-color: var(--primary-set-color);
|
909
|
+
background-color: #fff7d1;
|
910
|
+
} */
|
911
|
+
.offRampCheckWrap {
|
912
|
+
display: grid;
|
913
|
+
grid-template-columns: repeat(3, 1fr);
|
914
|
+
align-items: center;
|
915
|
+
gap: 1em;
|
916
|
+
margin-bottom: 1.5em;
|
917
|
+
}
|
918
|
+
.offRampFormCheck .offRampFormCheckInput:checked ~ .offCurrencyOption {
|
919
|
+
border-color: var(--primary-set-color);
|
920
|
+
background-color: #fff7d1;
|
921
|
+
}
|
922
|
+
.offRampFormCheckInput {
|
923
|
+
display: none;
|
924
|
+
}
|
925
|
+
|
926
|
+
.spaceBottom {
|
927
|
+
margin-bottom: 1rem;
|
928
|
+
}
|
929
|
+
|
930
|
+
.inputError {
|
931
|
+
color: var(--badges-set-faile-color);
|
932
|
+
}
|
933
|
+
|
934
|
+
.required {
|
935
|
+
color: var(--badges-set-faile-color);
|
936
|
+
}
|
937
|
+
.offRampNewBankBox {
|
938
|
+
position: relative;
|
939
|
+
}
|
940
|
+
.offRampNewBankBox .inputError {
|
941
|
+
background-color: #e34f4f;
|
942
|
+
border-radius: 3px;
|
943
|
+
color: #fff;
|
944
|
+
display: inline-block;
|
945
|
+
font-size: 12px;
|
946
|
+
font-weight: 400;
|
947
|
+
height: 25px;
|
948
|
+
line-height: 1;
|
949
|
+
padding: 6px 8px;
|
950
|
+
position: absolute;
|
951
|
+
right: -15px;
|
952
|
+
top: 0px;
|
953
|
+
z-index: 99;
|
954
|
+
}
|
955
|
+
.offRampNewBankBox .input-error:after {
|
956
|
+
border-color: #0000 #e34f4f;
|
957
|
+
border-style: solid;
|
958
|
+
border-width: 0 6px 6px 0;
|
959
|
+
bottom: -6px;
|
960
|
+
content: "";
|
961
|
+
display: block;
|
962
|
+
position: absolute;
|
963
|
+
right: 1.2em;
|
964
|
+
width: 0;
|
965
|
+
z-index: 99;
|
966
|
+
}
|
967
|
+
|
968
|
+
.errorMsg {
|
969
|
+
color: #e34f4f;
|
970
|
+
margin-top: 0.5em;
|
971
|
+
}
|
972
|
+
|
973
|
+
/* Sell Payment Module UI */
|
974
|
+
.sell-payment-head {
|
975
|
+
margin-bottom: 1.5em;
|
976
|
+
}
|
977
|
+
.back-arrow-btn-sec {
|
978
|
+
display: flex;
|
979
|
+
gap: 1em;
|
980
|
+
align-items: center;
|
981
|
+
cursor: pointer;
|
982
|
+
}
|
983
|
+
.back-arrow-btn-sec .back-arrow-btn {
|
984
|
+
cursor: pointer;
|
985
|
+
width: 2em;
|
986
|
+
}
|
987
|
+
.back-arrow-btn-sec h4 {
|
988
|
+
font-size: 1.1em;
|
989
|
+
font-weight: 600;
|
990
|
+
color: var(--tertiary-set-color);
|
991
|
+
margin-bottom: 0;
|
992
|
+
}
|
993
|
+
.sellQRPayementWrap {
|
994
|
+
grid-gap: 2em;
|
995
|
+
background-color: var(--light-set-color);
|
996
|
+
border-radius: 10px;
|
997
|
+
display: grid;
|
998
|
+
gap: 2em;
|
999
|
+
grid-template-columns: repeat(2, 1fr);
|
1000
|
+
margin-bottom: 1em !important;
|
1001
|
+
padding: 1.5em;
|
1002
|
+
position: relative;
|
1003
|
+
}
|
1004
|
+
@media (max-width: 991.98px) {
|
1005
|
+
.sellQRPayementWrap {
|
1006
|
+
grid-template-columns: repeat(1, 1fr);
|
1007
|
+
gap: 1em;
|
1008
|
+
}
|
1009
|
+
}
|
1010
|
+
.sellAmtDetails {
|
1011
|
+
background-color: var(--light-set-color);
|
1012
|
+
border-radius: 10px;
|
1013
|
+
display: flex;
|
1014
|
+
flex-direction: column;
|
1015
|
+
justify-content: space-between;
|
1016
|
+
margin-bottom: 1em !important;
|
1017
|
+
grid-area: 1 / 1 / 2 / 3;
|
1018
|
+
}
|
1019
|
+
@media (max-width: 767.98px) {
|
1020
|
+
.sellAmtDetails {
|
1021
|
+
grid-area: unset;
|
1022
|
+
gap: 1em;
|
1023
|
+
}
|
1024
|
+
.sellPaymentQRFrame {
|
1025
|
+
display: grid;
|
1026
|
+
place-items: center;
|
1027
|
+
}
|
1028
|
+
}
|
1029
|
+
.sellAmtDetailsWrap {
|
1030
|
+
align-items: center;
|
1031
|
+
display: flex;
|
1032
|
+
justify-content: space-between;
|
1033
|
+
margin-bottom: 1em;
|
1034
|
+
}
|
1035
|
+
.sellAmtPay {
|
1036
|
+
display: flex;
|
1037
|
+
flex-direction: column;
|
1038
|
+
}
|
1039
|
+
.sellPayLabel {
|
1040
|
+
color: var(--quaternary-set-color);
|
1041
|
+
font-size: 0.8em;
|
1042
|
+
font-weight: 300;
|
1043
|
+
margin-bottom: 0.5em;
|
1044
|
+
}
|
1045
|
+
.sellPayAmt {
|
1046
|
+
color: var(--tertiary-set-color);
|
1047
|
+
font-size: 0.85em;
|
1048
|
+
font-weight: 500;
|
1049
|
+
margin-bottom: 0;
|
1050
|
+
}
|
1051
|
+
.sellAmtGet {
|
1052
|
+
align-items: flex-end;
|
1053
|
+
display: flex;
|
1054
|
+
flex-direction: column;
|
1055
|
+
}
|
1056
|
+
.sellEstimatedInfo {
|
1057
|
+
background: #0000000a;
|
1058
|
+
border: 1px dashed #0000003b;
|
1059
|
+
border-radius: 10px;
|
1060
|
+
padding: 0.7em;
|
1061
|
+
}
|
1062
|
+
.sellEstimatedInfo p {
|
1063
|
+
color: var(--tertiary-set-color);
|
1064
|
+
font-size: 0.85em;
|
1065
|
+
font-weight: 600;
|
1066
|
+
margin-bottom: 0;
|
1067
|
+
align-items: center;
|
1068
|
+
display: flex;
|
1069
|
+
justify-content: space-between;
|
1070
|
+
flex-wrap: wrap;
|
1071
|
+
gap: 1em;
|
1072
|
+
}
|
1073
|
+
.sellPaymentQRBox {
|
1074
|
+
grid-area: 1 / 3 / 2 / 4;
|
1075
|
+
}
|
1076
|
+
@media (max-width: 991.98px) {
|
1077
|
+
.sellPaymentQRBox {
|
1078
|
+
grid-area: unset;
|
1079
|
+
}
|
1080
|
+
}
|
1081
|
+
.selllWalletAddressCard {
|
1082
|
+
background: var(--overlay-set-bg);
|
1083
|
+
padding: 1.5em;
|
1084
|
+
border-radius: 10px;
|
1085
|
+
margin-bottom: 1.5em;
|
1086
|
+
}
|
1087
|
+
.sellWalletDataCard {
|
1088
|
+
margin-bottom: 1em;
|
1089
|
+
}
|
1090
|
+
.sellWalletDataCard h6 {
|
1091
|
+
font-size: 0.8em;
|
1092
|
+
font-weight: 500;
|
1093
|
+
color: var(--tertiary-set-color);
|
1094
|
+
margin-bottom: 0.5em;
|
1095
|
+
}
|
1096
|
+
.sellHashLabel {
|
1097
|
+
font-size: 0.8em;
|
1098
|
+
font-weight: 500;
|
1099
|
+
color: var(--tertiary-set-color);
|
1100
|
+
margin-bottom: 0.5em;
|
1101
|
+
}
|
1102
|
+
.sellHashLabel span {
|
1103
|
+
color: red;
|
1104
|
+
}
|
1105
|
+
.sellWalletCodeCard {
|
1106
|
+
grid-gap: 0.5em;
|
1107
|
+
display: grid;
|
1108
|
+
gap: 0.5em;
|
1109
|
+
grid-template-columns: auto 65px;
|
1110
|
+
}
|
1111
|
+
.sellWalletCode {
|
1112
|
+
border: 1px solid var(--border-set-color);
|
1113
|
+
border-radius: 10px;
|
1114
|
+
padding: 0.8em 1em;
|
1115
|
+
}
|
1116
|
+
.sellWalletCode span {
|
1117
|
+
-webkit-line-clamp: 1;
|
1118
|
+
-webkit-box-orient: vertical;
|
1119
|
+
color: var(--tertiary-set-color);
|
1120
|
+
display: -webkit-box;
|
1121
|
+
font-size: 0.85em;
|
1122
|
+
font-weight: 500;
|
1123
|
+
overflow: hidden;
|
1124
|
+
text-overflow: ellipsis;
|
1125
|
+
word-break: break-all;
|
1126
|
+
}
|
1127
|
+
.sellHashFields {
|
1128
|
+
border-radius: 10px;
|
1129
|
+
border: 1px solid var(--border-set-color);
|
1130
|
+
font-size: 0.9em;
|
1131
|
+
font-weight: 400;
|
1132
|
+
color: var(--tertiary-set-color);
|
1133
|
+
background: transparent;
|
1134
|
+
width: 100%;
|
1135
|
+
padding: 0.8em 1em;
|
1136
|
+
}
|
1137
|
+
.sellHashFields:focus {
|
1138
|
+
border-radius: 10px;
|
1139
|
+
border: 1px solid var(--border-set-color);
|
1140
|
+
outline: 1px solid var(--border-set-color);
|
1141
|
+
font-size: 0.9em;
|
1142
|
+
font-weight: 400;
|
1143
|
+
color: var(--tertiary-set-color);
|
1144
|
+
background: transparent;
|
1145
|
+
width: 100%;
|
1146
|
+
padding: 0.8em 1em;
|
1147
|
+
}
|
1148
|
+
.sellHashFields::placeholder {
|
1149
|
+
font-size: 0.9em;
|
1150
|
+
font-weight: 400;
|
1151
|
+
font-family: "Red Hat Text", sans-serif;
|
1152
|
+
}
|
1153
|
+
.no_wallet_details {
|
1154
|
+
display: flex;
|
1155
|
+
align-items: center;
|
1156
|
+
justify-content: center;
|
1157
|
+
gap: 1em;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
.sell-final-box {
|
1161
|
+
display: flex;
|
1162
|
+
align-items: center;
|
1163
|
+
justify-content: center;
|
1164
|
+
gap: 0.2em;
|
1165
|
+
flex-direction: column;
|
1166
|
+
background-color: #fff;
|
1167
|
+
padding: 2em;
|
1168
|
+
border-radius: 12px;
|
1169
|
+
}
|
1170
|
+
.sell-final-info p {
|
1171
|
+
font-size: 0.95em;
|
1172
|
+
font-weight: 500;
|
1173
|
+
margin-bottom: 0.5em;
|
1174
|
+
line-height: 2;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
@media (max-width: 991.98px) {
|
1178
|
+
}
|
1179
|
+
@media (max-width: 767.98px) {
|
1180
|
+
body {
|
1181
|
+
font-size: 11px !important;
|
1182
|
+
}
|
1183
|
+
}
|
1184
|
+
@media (max-width: 1199px) {
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.manualHashBtn {
|
1188
|
+
font-size: 0.8em;
|
1189
|
+
padding: 0.2em;
|
1190
|
+
outline: none;
|
1191
|
+
border: none;
|
1192
|
+
color: var(--senary-set-color);
|
1193
|
+
background: none;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
.flowStepperFrame ul li {
|
1197
|
+
list-style: none !important;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.flowStepperFrame ul {
|
1201
|
+
display: flex;
|
1202
|
+
align-items: self-start;
|
1203
|
+
justify-content: space-between;
|
1204
|
+
width: 100%;
|
1205
|
+
margin: auto;
|
1206
|
+
position: relative;
|
1207
|
+
overflow: hidden;
|
1208
|
+
min-height: 70px;
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
.withdraw-stepper .flowStepperFrame ul {
|
1212
|
+
width: 100%;
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
.withdraw-stepper .flowStepperFrame ul::after {
|
1216
|
+
transform: scale(0.68);
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
.flowStepperCard span {
|
1220
|
+
text-align: center;
|
1221
|
+
position: absolute;
|
1222
|
+
top: 40px;
|
1223
|
+
white-space: nowrap;
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
.flowStepperFrame ul li {
|
1227
|
+
z-index: 1050;
|
1228
|
+
/* flex: 0 1; */
|
1229
|
+
position: relative;
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.flowStepperFrame ul li::after {
|
1233
|
+
content: " ";
|
1234
|
+
position: absolute;
|
1235
|
+
width: 90vw;
|
1236
|
+
height: 2px;
|
1237
|
+
background-color: #fff;
|
1238
|
+
top: 10px;
|
1239
|
+
left: 18px;
|
1240
|
+
transform-origin: center;
|
1241
|
+
z-index: -1;
|
1242
|
+
/* transform: scale(0.95); */
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.dark-stepper .flowStepperFrame ul li::after {
|
1246
|
+
background-color: #efefef;
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.flowStepperFrame ul li:last-child:after {
|
1250
|
+
display: none;
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.flowStepperFrame ul li.failed::after {
|
1254
|
+
background-color: #e70f0f;
|
1255
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
.flowStepperFrame ul li.completed::after {
|
1259
|
+
background-color: #32cd32;
|
1260
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
.flowStepperFrame ul li.hash-completed::after {
|
1264
|
+
background-color: none;
|
1265
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
.flowStepperFrame ul li.hash-completed .flowStepperProcess {
|
1269
|
+
background-color: #32cd32;
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
.flowStepperFrame ul li.hash-failed::after {
|
1273
|
+
background-color: none;
|
1274
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.flowStepperFrame ul li.hash-failed .flowStepperProcess {
|
1278
|
+
background-color: #e70f0f;
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.flowStepperFrame ul li.hash-failed-1::after {
|
1282
|
+
background-color: #e70f0f;
|
1283
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
.flowStepperFrame ul li.hash-failed-1 .flowStepperProcess {
|
1287
|
+
background-color: #32cd32;
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
.flowStepperFrame ul li.completed .flowStepperProcess {
|
1291
|
+
background-color: #32cd32;
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
.flowStepperFrame ul li.failed .flowStepperProcess {
|
1295
|
+
background-color: #e70f0f;
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
.flowStepperFrame ul li {
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
.flowStepperFrame ul li:last-child .flowStepperCard {
|
1302
|
+
align-items: flex-end;
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.flowStepperFrame ul li:first-child .flowStepperCard {
|
1306
|
+
align-items: flex-start;
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.flowStepperFrame ul li:last-child .flowStepperCard span {
|
1310
|
+
text-align: end;
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
.flowStepperFrame ul::after {
|
1314
|
+
/* content: ' ';
|
1315
|
+
position: absolute;
|
1316
|
+
width: 100%;
|
1317
|
+
height: 2px;
|
1318
|
+
background-color: #fff;
|
1319
|
+
top: 30px;
|
1320
|
+
left: 0;
|
1321
|
+
background: #fff;
|
1322
|
+
transform-origin: center;
|
1323
|
+
transform: scale(0.95); */
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
.flowStepperCard.completed .flowStepperProcess {
|
1327
|
+
/* border: 1px dashed #fff; */
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
.flowStepperFrame ul.completed::after {
|
1331
|
+
background-color: #32cd32;
|
1332
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
.flowStepperFrame ul.failed::after {
|
1336
|
+
background-color: #e70f0f;
|
1337
|
+
animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.flowStepperCard {
|
1341
|
+
display: flex;
|
1342
|
+
align-items: center;
|
1343
|
+
justify-content: center;
|
1344
|
+
flex-direction: column;
|
1345
|
+
gap: 1em;
|
1346
|
+
font-size: 0.65em;
|
1347
|
+
font-weight: 600;
|
1348
|
+
/* background-color: #f3e2c33b; */
|
1349
|
+
color: var(--quaternary-set-color);
|
1350
|
+
border-radius: 10px;
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.flowStepperCard.completed {
|
1354
|
+
color: var(--tertiary-set-color);
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.flowStepperCard .spinner-loader {
|
1358
|
+
margin: 0 !important;
|
1359
|
+
border-right-color: var(--primary-set-color) !important;
|
1360
|
+
border: 4px solid #6e6a6a29 !important;
|
1361
|
+
}
|
1362
|
+
|
1363
|
+
.flowStepperProcess {
|
1364
|
+
/* background-color: var(--light-set-color); */
|
1365
|
+
background-color: #fff;
|
1366
|
+
width: 2.5em;
|
1367
|
+
height: 2.5em;
|
1368
|
+
border-radius: 50%;
|
1369
|
+
display: flex;
|
1370
|
+
align-items: center;
|
1371
|
+
justify-content: center;
|
1372
|
+
padding: 3px;
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
.dark-stepper .flowStepperProcess {
|
1376
|
+
background-color: #efefef;
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
.flowStepperCard.completed .flowStepperProcess {
|
1380
|
+
background-color: #32cd32;
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
.flowStepperCard.failed .flow-stepper-process {
|
1384
|
+
background-color: #ea0909;
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
.flow-stepper-success.completed .flow-stepper-process {
|
1388
|
+
background-color: #32cd32;
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
.flow-stepper-success {
|
1392
|
+
display: flex;
|
1393
|
+
align-items: center;
|
1394
|
+
justify-content: center;
|
1395
|
+
flex-direction: column;
|
1396
|
+
gap: 1em;
|
1397
|
+
font-size: 0.75em;
|
1398
|
+
font-weight: 600;
|
1399
|
+
color: var(--quaternary-set-color);
|
1400
|
+
padding: 1em;
|
1401
|
+
border-radius: 10px;
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
.flow-stepper-success.completed {
|
1405
|
+
color: var(--tertiary-set-color);
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
.flow-stepper-bar {
|
1409
|
+
background-color: #efefef;
|
1410
|
+
width: 1.4em;
|
1411
|
+
height: 1.4em;
|
1412
|
+
border-radius: 50%;
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
.flowLoader {
|
1416
|
+
width: 100%;
|
1417
|
+
aspect-ratio: 1;
|
1418
|
+
border-radius: 50%;
|
1419
|
+
background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/4.5px 4.5px no-repeat,
|
1420
|
+
conic-gradient(#0000 30%, #ffa516);
|
1421
|
+
-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4.5px), #000 0);
|
1422
|
+
animation: l13 1s infinite linear;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
@keyframes l13 {
|
1426
|
+
100% {
|
1427
|
+
transform: rotate(1turn);
|
1428
|
+
}
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
@keyframes wipe-in-right {
|
1432
|
+
from {
|
1433
|
+
clip-path: inset(0 100% 0 0);
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
to {
|
1437
|
+
clip-path: inset(0 0 0 0);
|
1438
|
+
}
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.spinnerLoader {
|
1442
|
+
width: 20px;
|
1443
|
+
aspect-ratio: 1;
|
1444
|
+
border-radius: 50%;
|
1445
|
+
background: radial-gradient(farthest-side, #000000 94%, #0000) top/4px 4px no-repeat,
|
1446
|
+
conic-gradient(#0000 30%, #000000);
|
1447
|
+
-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
|
1448
|
+
animation: spinnerLoadingAnimation 1s infinite linear;
|
1449
|
+
}
|
1450
|
+
@keyframes spinnerLoadingAnimation {
|
1451
|
+
100% {
|
1452
|
+
transform: rotate(1turn);
|
1453
|
+
}
|
1454
|
+
}
|
1455
|
+
.off_info_card {
|
1456
|
+
border-radius: 10px;
|
1457
|
+
padding: 0.5em;
|
1458
|
+
display: grid;
|
1459
|
+
grid-template-columns: 40px auto;
|
1460
|
+
align-items: center;
|
1461
|
+
background: #ffffff47;
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
.off_caution_info {
|
1465
|
+
font-size: 0.8em;
|
1466
|
+
font-weight: 400;
|
1467
|
+
color: var(--hightlight-color-des);
|
1468
|
+
line-height: 1.8;
|
1469
|
+
}
|
1470
|
+
|
1471
|
+
.widgetComponent{
|
1472
|
+
width: 100%;
|
1473
|
+
}
|