@pinerohit11/testwidget 0.1.59 → 0.1.60

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 (3) hide show
  1. package/dist/index.js +887 -884
  2. package/dist/index.mjs +881 -878
  3. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -19,7 +19,8 @@ var __spreadValues = (a, b) => {
19
19
  var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
20
 
21
21
  // src/app/components/RequestPayment/RequestPayment.tsx
22
- import React4, { useState, useEffect } from "react";
22
+ import "bootstrap/dist/js/bootstrap.bundle.min.js";
23
+ import React3, { useState, useEffect } from "react";
23
24
 
24
25
  // src/app/components/Loader/Loader.tsx
25
26
  import React2 from "react";
@@ -153,862 +154,33 @@ var Loader_default = Loader;
153
154
  // src/app/components/RequestPayment/RequestPayment.tsx
154
155
  import { Button, Form, Modal } from "react-bootstrap";
155
156
 
156
- // src/app/components/RequestPayment/RequestPaymentstyles.tsx
157
- import React3 from "react";
158
- var RequestPaymentstyles = (props) => {
159
- return /* @__PURE__ */ React3.createElement("style", null, `
160
- .paymentBtn {
161
- background-color: black;
162
- border: none;
163
- color: white;
164
- padding: 15px 32px;
165
- text-align: center;
166
- text-decoration: none;
167
- display: inline-block;
168
- font-size: 16px;
169
- margin: 4px 2px;
170
- cursor: pointer;
171
- border-radius: 180px;
172
- /* width: auto; */
173
- }
174
- .modal-backdrop {
175
- display: none !important;
176
- }
177
- /* CSS for modal */
178
- .modal {
179
- /* display: none; */
180
- position: fixed;
181
- z-index: 5555;
182
- left: 0;
183
- top: 0;
184
- width: 100%;
185
- height: 100%;
186
- overflow: auto;
187
- background-color: rgba(0, 0, 0, 0.4);
188
- }
189
-
190
- .input-container {
191
- position: relative;
192
- }
193
- .error {
194
- border: 1px solid red;
195
- background-color: #ffe6e6; /* light red background color */
196
- }
197
- .form-group {
198
- margin-bottom: 15px;
199
- }
200
- .input-container input {
201
- padding-right: 25px;
202
- }
203
-
204
- .modal-header {
205
- border-bottom: 0 !important;
206
- padding-top: 0 !important;
207
- }
208
-
209
- /* CSS for modal content */
210
- .modal-content {
211
- /* height: 90vh !important; */
212
- height: auto;
213
- padding: 20px 5px;
214
- /* background: #fff; */
215
- border-radius: 20px !important;
216
- position: relative;
217
- width: 100%;
218
- max-width: 100%;
219
- margin: 30px auto;
220
- overflow: inherit !important;
221
- }
222
- .input-container {
223
- display: flex;
224
- align-items: baseline;
225
- }
226
-
227
- .input-error-container {
228
- flex: 1;
229
- }
230
-
231
- .paymentBtn {
232
- margin-left: 10px;
233
- }
234
-
235
- .PayButton {
236
- outline: 0 !important;
237
- height: 46px;
238
- font-size: 16px;
239
- background-color: #161616 !important;
240
- border: none;
241
- display: block;
242
- width: 100%;
243
- border-radius: 180px;
244
- margin: 10px 0;
245
- }
246
-
247
- #PayButton:hover {
248
- background-color: #61c699 !important;
249
- }
250
-
251
- #PayButton:active {
252
- background-color: #61c699 !important;
253
- }
254
-
255
- #PayButton:disabled {
256
- background: rgb(172, 44, 170) !important;
257
- color: #fff !important;
258
- }
259
-
260
- label {
261
- color: rgba(53, 37, 77, 0.6);
262
- margin-bottom: 2px;
263
- text-transform: uppercase;
264
- font-family: "IBM Plex Mono", monospace;
265
- font-weight: 500;
266
- font-size: 12px;
267
- }
268
-
269
- .input-container {
270
- position: relative;
271
- }
272
-
273
- .input-container input {
274
- padding-right: 25px;
275
- }
276
-
277
- #Checkout {
278
- /* z-index: 100001; */
279
- width: 100%;
280
- /* height: 100%; */
281
- /* background: 0 0 #ffffff; */
282
- border-radius: 24px;
283
- border: 1px solid #e0dfe2;
284
- display: block;
285
- }
286
-
287
- .container {
288
- margin-top: 10px;
289
- }
290
-
291
- .powered-logo {
292
- width: 18px;
293
- height: 18px;
294
- /* float: right; */
295
- padding: 2px;
296
- background: #000000;
297
- border-radius: 4px;
298
- /* margin-left: 5px; */
299
- }
300
-
301
- .modal-content .container {
302
- width: 100%;
303
- }
304
-
305
- .powerd-by-part {
306
- display: flex;
307
- justify-content: center;
308
- align-items: center;
309
- gap: 5px;
310
- }
311
-
312
- .errorText {
313
- color: red;
314
- }
315
-
316
- .input-group {
317
- position: relative;
318
- }
319
-
320
- .paynowbtn {
321
- outline: 0 !important;
322
- padding: 7px 25px !important;
323
- font-size: 13px;
324
- background-color: #161616 !important;
325
- border: #161616 1px solid !important;
326
- color: #fff !important;
327
- display: inline-block !important;
328
- border-radius: 180px !important;
329
- }
330
-
331
- .paynowbtn:hover {
332
- background-color: #fff !important;
333
- border: #161616 1px solid !important;
334
- color: #161616 !important;
335
- }
336
-
337
- .ButtonGroup__root.btn-group {
338
- margin: 10px 0 20px 0;
339
- }
340
-
341
- .ButtonGroup__root.btn-group button {
342
- background: #000;
343
- border: 0;
344
- margin: 0 5px;
345
- border-radius: 4px !important;
346
- }
347
-
348
- .ButtonGroup__root.btn-group button:hover,
349
- .ButtonGroup__root.btn-group button:focus {
350
- background: #333 !important;
351
- }
352
-
353
- .input-group button {
354
- background: #000;
355
- border: 0;
356
- margin: 0 5px;
357
- border-radius: 0 4px 4px 0 !important;
358
- }
359
-
360
- .input-group button:hover,
361
- .input-group button:focus {
362
- background: #333 !important;
363
- }
364
-
365
- .payment-suc {
366
- text-align: center;
367
- }
368
-
369
- .payment-suc .modal-dialog {
370
- min-width: 600px;
371
- padding: 50px 0;
372
- }
373
-
374
- .payment-suc h2 {
375
- font-size: 24px;
376
- color: #35254d;
377
- font-weight: 500;
378
- padding: 15px 0;
379
- }
157
+ // src/app/components/baseurl.ts
158
+ var baseUrl = "https://staging-widget.fractalpay.com/";
380
159
 
381
- .payment-suc p {
382
- font-size: 14px;
383
- color: #9a92a6;
384
- font-weight: 500;
385
- }
386
-
387
- .payment-suc .btn-close {
388
- position: absolute;
389
- right: 20px;
390
- }
391
-
392
- .Checkout.container iframe {
393
- width: 100%;
394
- overflow: hidden !important;
395
- }
396
-
397
- .responsive-tbl {
398
- overflow-x: auto;
399
- }
400
- body {
401
- position: relative !important;
402
- }
403
- thead,
404
- tbody,
405
- tfoot,
406
- tr,
407
- td,
408
- th {
409
- white-space: nowrap;
410
- }
411
-
412
- .button-group {
413
- display: flex;
414
- gap: 10px;
415
- }
416
- .rqstonClickbtn {
417
- color: #fff;
418
- background-color: #337ab7;
419
- border-color: #2e6da4;
420
- }
421
- .loading-animation {
422
- position: absolute;
423
- top: 50%;
424
- left: 50%;
425
- transform: translate(-50%, -50%);
426
- }
427
-
428
- .spinner {
429
- width: 40px;
430
- height: 40px;
431
- border-radius: 50%;
432
- border: 4px solid #f3f3f3;
433
- border-top: 4px solid black;
434
- animation: spin 1s linear infinite;
435
- }
436
-
437
- @keyframes spin {
438
- 0% {
439
- transform: rotate(0deg);
440
- }
441
- 100% {
442
- transform: rotate(360deg);
443
- }
444
- }
445
- /* .border-container {
446
- display: flex;
447
- flex-direction: column;
448
- border: 0px solid #ccc;
449
- padding: 20px;
450
- border-radius: 10px;
451
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
452
- align-items: baseline;
453
- }
454
- .payment-container {
455
- border: 0px solid #ccc;
456
- padding: 20px;
457
- border-radius: 10px;
458
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
459
- } */
460
-
461
- .payment-row {
462
- display: flex;
463
- align-items: center;
464
- margin-bottom: 20px;
465
- }
466
-
467
- .payment-row label {
468
- width: 150px;
469
- font-weight: bold;
470
- margin-right: 10px;
471
- }
472
-
473
- .payment-row input {
474
- flex-grow: 1;
475
- margin-right: 10px;
476
- }
477
-
478
- .payment-row button {
479
- flex-grow: 1;
480
- }
481
- .payment-row {
482
- display: flex;
483
- flex-direction: column;
484
- border-radius: 10px;
485
- margin-top: 10px;
486
- }
487
-
488
- .input-wrapper {
489
- flex: 1;
490
- }
491
-
492
- .button-wrapper {
493
- margin-left: 10px;
494
- }
495
- .input-container {
496
- display: flex;
497
- flex-direction: column;
498
- }
499
-
500
- .export-btn1 {
501
- background: black;
502
- color: white;
503
- height: 35px;
504
- width: 68px;
505
- border-radius: 5px;
506
- margin-top: 20px;
507
- }
508
-
509
- .export-btn {
510
- background: black;
511
- color: white;
512
- height: 35px;
513
- width: 68px;
514
- border-radius: 5px;
515
- margin-left: 14px;
516
- }
517
-
518
- .payment-popup {
519
- padding: 12px 20px;
520
- background: #fff;
521
- border-radius: 20px;
522
- position: relative;
523
- width: 100%;
524
- margin: 0 auto;
525
- }
526
-
527
- // .modal-content {
528
- // max-width: 420px;
529
- // margin-top: 5%;
530
- // }
531
- @media (max-width: 460px) {
532
- .payment-popup {
533
- padding: 35px 25px;
534
- width: 98%;
535
- }
536
- }
537
-
538
- .close-pop {
539
- position: absolute;
540
- right: 8px;
541
- top: 8px;
542
- border: 0;
543
- padding: 0;
544
- background: none !important;
545
- }
546
-
547
- .amex {
548
- background-image: url("../amex.svg");
549
- }
550
-
551
- .visa {
552
- background-image: url("../visa.svg");
553
- }
554
-
555
- .mastercard {
556
- background-image: url("../mastercard.svg");
557
- }
558
-
559
- .discover {
560
- background-image: url("../discover.svg");
561
- }
562
-
563
- .expiry-date-group {
564
- float: left;
565
- width: 30%;
566
- }
567
-
568
- .expiry-date-group input {
569
- width: calc(100% + 1px);
570
- border-top-right-radius: 0;
571
- border-bottom-right-radius: 0;
572
- }
573
-
574
- .expiry-date-group input:focus {
575
- position: relative;
576
- z-index: 10;
577
- }
578
-
579
- .security-code-group {
580
- float: right;
581
- width: 40%;
582
- position: relative;
583
- }
584
-
585
- .security-code-group input {
586
- border-top-left-radius: 0;
587
- border-bottom-left-radius: 0;
588
- }
589
-
590
- .zip-code-group {
591
- clear: both;
592
- }
593
-
594
- #submitButton {
595
- outline: 0 !important;
596
- height: 46px;
597
- font-size: 16px;
598
- background-color: #161616 !important;
599
- border: none;
600
- display: block;
601
- width: 100%;
602
- border-radius: 180px;
603
- }
604
- #submitRequestButton {
605
- outline: 0 !important;
606
- height: 46px;
607
- font-size: 16px;
608
- background-color: #161616 !important;
609
- border: none;
610
- display: block;
611
- width: 100%;
612
- border-radius: 180px;
613
- }
614
- #PayButton {
615
- outline: 0 !important;
616
- height: 46px;
617
- font-size: 16px;
618
- background-color: #161616 !important;
619
- border: none;
620
- display: block;
621
- width: 100%;
622
- border-radius: 180px;
623
- }
624
-
625
- #PayButton:hover {
626
- background-color: #61c699 !important;
627
- }
628
-
629
- #PayButton:active {
630
- background-color: #61c699 !important;
631
- }
632
-
633
- #PayButton:disabled {
634
- background: rgb(172, 44, 170) !important;
635
- color: #fff !important;
636
- }
637
-
638
- .form-control {
639
- color: #35254d;
640
- }
641
-
642
- .container {
643
- margin-top: 10px;
644
- }
645
-
646
- #Checkout {
647
- z-index: 100001;
648
- width: 100%;
649
- height: 100%;
650
- min-height: 100%;
651
- background: 0 0 #ffffff;
652
- border-radius: 24px;
653
- border: 1px solid #e0dfe2;
654
- margin-left: auto;
655
- margin-right: auto;
656
- display: block;
657
- }
658
-
659
- #Checkout .header {
660
- display: flex;
661
- /* Enables Flexbox */
662
- justify-content: center;
663
- /* Centers content horizontally */
664
- align-items: center;
665
- /* Centers content vertically */
666
- text-align: center;
667
- padding: 8px;
668
- border-bottom: 1px solid #dedede;
669
- margin: 0 10px 20px 10px;
670
- }
671
-
672
- #Checkout .header button {
673
- border: 0;
674
- background: none;
675
- padding: 0;
676
- }
677
-
678
- #Checkout h1 {
679
- margin: 0;
680
- flex: 1;
681
- padding: 10px;
682
- /* Allows the title to grow and fill the space for centering */
683
- font-size: 23px;
684
- font-weight: 500;
685
- color: #35254d;
686
- align-items: start;
687
- display: flex;
688
- }
689
-
690
- #Checkout > form {
691
- margin: 0 25px 10px 25px;
692
- }
693
-
694
- label {
695
- color: rgba(53, 37, 77, 0.6);
696
- margin-bottom: 2px;
697
- text-transform: uppercase;
698
- font-family: "IBM Plex Mono", monospace;
699
- font-weight: 500;
700
- font-size: 12px;
701
- }
702
-
703
- .input-container {
704
- position: relative;
705
- }
706
-
707
- .input-container input {
708
- padding-right: 25px;
709
- }
710
-
711
- #zipcode {
712
- text-transform: capitalize !important;
713
- }
714
-
715
- #zipcode {
716
- width: 18px;
717
- position: absolute;
718
- right: 8px;
719
- top: 9px;
720
- }
721
-
722
- #zipcode .zip-tip {
723
- display: none;
724
- background-color: rgb(0, 0, 0, 0.4);
725
- padding: 5px 8px;
726
- border-radius: 6px;
727
- position: absolute;
728
- right: 26px;
729
- top: -9px;
730
- font-size: 12.5px;
731
- text-transform: capitalize !important;
732
- color: #fff;
733
- width: 240px;
734
- line-height: 16px;
735
- }
736
-
737
- #zipcode .zip-tip:before {
738
- width: 0;
739
- height: 0;
740
- border-top: 7px solid transparent;
741
- border-bottom: 7px solid transparent;
742
- border-left: 7px solid #000;
743
- opacity: 0.4;
744
- position: absolute;
745
- right: -7px;
746
- top: 50%;
747
- transform: translateY(-50%);
748
- content: "";
749
- }
750
-
751
- #zipcode:hover .zip-tip {
752
- display: block;
753
- }
754
-
755
- .input-container > i,
756
- a[role="button"] {
757
- color: #d3d3d3;
758
- width: 25px;
759
- height: 30px;
760
- line-height: 30px;
761
- font-size: 16px;
762
- position: absolute;
763
- top: 5px;
764
- right: 6px;
765
- cursor: pointer;
766
- text-align: center;
767
- }
768
-
769
- .input-container > i:hover,
770
- a[role="button"]:hover {
771
- color: #777;
772
- }
773
-
774
- .amount-placeholder {
775
- white-space: nowrap;
776
- font-size: 44px;
777
- /* height: 35px; */
778
- font-weight: 600;
779
- line-height: 40px;
780
- }
781
-
782
- .amount-placeholder > button {
783
- float: right;
784
- width: 60px;
785
- }
786
-
787
- .amount-placeholder > span {
788
- line-height: 34px;
789
- }
790
-
791
- .top-amnt {
792
- display: flex;
793
- margin-bottom: 10px;
794
- align-items: center;
795
- justify-content: space-between;
796
- }
797
-
798
- .amtleft {
799
- text-align: center;
800
- }
801
-
802
- .amtleft span {
803
- color: #35254d;
804
- margin: 0 -5px;
805
- }
806
-
807
- .card-row {
808
- text-align: right;
809
- margin: 22px 0 0 0;
810
- max-width: 85px;
811
- line-height: 20px;
812
- }
813
-
814
- .yer {
815
- border-radius: 0;
816
- }
817
-
818
- .card-row span {
819
- width: 33px;
820
- height: 21px;
821
- margin: 0 2px;
822
- background-repeat: no-repeat;
823
- display: inline-block;
824
- background-size: contain;
825
- }
826
-
827
- .card-image {
828
- background-repeat: no-repeat;
829
- padding-right: 50px;
830
- background-position: right 2px center;
831
- background-size: auto 90%;
832
- }
833
-
834
- /* .cvc-preview-container {
835
- overflow: hidden;
836
- } */
837
-
838
- .cvc-preview-container {
839
- /* overflow: hidden; */
840
- position: absolute;
841
- z-index: 9999;
842
- right: -71px;
843
- top: -54px;
844
- width: 165px;
845
- border-radius: 5px;
846
- padding: 5px;
847
- background-color: rgb(0, 0, 0, 0.3);
848
- display: none;
849
- }
850
-
851
- .cvc-preview-container:before {
852
- position: absolute;
853
- left: 50%;
854
- transform: translate(-50%);
855
- bottom: -5px;
856
- width: 0;
857
- height: 0;
858
- border-left: 5px solid transparent;
859
- border-right: 5px solid transparent;
860
- border-top: 5px solid #000;
861
- opacity: 0.3;
862
- content: "";
863
- }
864
-
865
- .security-code-group #cvc:hover .cvc-preview-container {
866
- display: block;
867
- }
868
-
869
- .cvc-preview-container.two-card div {
870
- width: 50%;
871
- height: 45px;
872
- }
873
-
874
- .cvc-preview-container.two-card div.amex-cvc-preview {
875
- float: right;
876
- }
877
-
878
- .cvc-preview-container.two-card div.visa-mc-dis-cvc-preview {
879
- float: left;
880
- }
881
-
882
- /* .cvc-preview-container div {
883
- height: 160px;
884
- } */
885
-
886
- .amex-cvc-preview {
887
- background: url("data:image/png;base64,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")
888
- center center/contain no-repeat;
889
- }
890
-
891
- .visa-mc-dis-cvc-preview {
892
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOYAAACOCAMAAAASE4S+AAAAAXNSR0IArs4c6QAAAadQTFRFAAAAzbFj+NyAyLNg+N2DzbRk+96CzrVj+96AzrNj+92By7Rl+92AzbRl/eCDzrRl/t+DzrVl/t+CzbVm/t+C3MFt3MFv/N2B/N6CzrRm/uCDzrRm/uCC7M93/N6CAAAAAQEBAgIBBAQCBQUDBwcECQgFDAsGDg0HEA4IEQ8JFRMLFxUMIBwQIR0RJSETKyYWLikYLyoYMCsZMSsZNC4bNzEcOTIdQDkhQTkhQzsiRT0jRj4kSkEmTEMnWE4tWU8uWk8uXFEvXVIwXlMwX1QxaV02bWA4bmE5cWQ6eGo+eWs+fW5Afm9Bi3pHjHtIkH9KmIZOmYdPnIlQnYpRo5BUppJVqJRWqpZXq5dYrJdYrZhZuaNfvaZhvqdiwKljwapjxK1lybFnyrJoy7NozrVm1Ltq171u2L5v2b9s2b9t2sBt3cNy3zEx3zIx38Rz4MVz4cZ04kI552NI6GVJ6Mx36s5368957dF674xb79J78NN78dV78tV789Z99Nd99dh+9rZv9th+9tl+99l/+duA+sx5+sx6+t2B+92B/N6B/d+C/uCD////AikOogAAAB90Uk5TACQkJSU9PT4+Q0NERJqav7/AwNjY4uLi4u7u8/P6+u6knPAAAAJkSURBVHja7d3pTxNBGMfxQbwAW06Pcj0tntQT8b7v+0JFxaserQcuKlQUFbFUaqvjH+1uG0lMfEETie4z39+bJ/tik/1kjt3MbDLGBFkWbeu0CtPZFq03v7KwxSpO04KKcmm7VZ32xeW2VK70nUF7tlj1afJnH+tA6k3UBWbUrHKBudJ0u8DsNtaJwIQJEyZMmDBhwoQJEyZMmPPCFCcCEyZMmDBhwoQJEyZMmDBhwoQJEyZMmDBhwoQJ010m+5swYcKECRMmTJgwYcKECRMmTJgwYcIMFfPHP8/vz5PLjnpzzmg2F07mxIhXVUYmwsjMVan0nbkQMrOeN1aY+zAsjHleNoRMf1x+rWa6KfjjM4RMvxdWN63+4QaYMGHC/EvM6b0HgpI6tvtoyq9vz+4/clcf89sJ2eiXIZGEyJD9sEl6RAa1MVPbpczsk8vT52SHHZCDUxelXxtzW/x4wPx+6cxn+0A2208PX9pB2aONef7xk3JrBjkth4Jysnf9fX1T0Czzmqx+6pcvcel/pJd5RRLXg1p6d0vWvdHKHJCeG2XljLVb5aZS5r2E3A6uTiUu2Km1klLK3CXxZDK5xd6RNYd3St+MTuaryr94G6y92iuy77X+b9rSi/d8usOEyZIXC5gsR7O5MN9bRexvwoQJEyZMmDBhwoQJEyZMmDBhwoT5vzNLLihLJu8CM2+6XGB2meUuMFeYyEf9ysmIqcsUtSuLmQZjGp8pdxafNxtjamIZ1f12MhOrDQ6uXhRLD4/nVb4/S/nx4XRsSeUY8prGtOI0186eKl8Xae3QSOxojTSUgT8BEvkXyqDHONgAAAAASUVORK5CYII=")
893
- center center/contain no-repeat;
894
- }
895
-
896
- .submit-button-lock {
897
- height: 15px;
898
- margin-top: -2px;
899
- margin-right: 7px;
900
- vertical-align: middle;
901
- background: url("data:image/png;base64,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NQxdFfpzGC4sNKwm7Hm4VXh+eHcELWJFREPEu0iPyNLIR4uNFksWd0bJR8VF1UdNRXtFl0VLl1gsWbPkRoxajCCmPRYfGxV7JHZyqffS3UuH4+ziCuPuLjNclrPs2nK15anLz66QX8FZcSoeGx8d3xD/iRPCqeVMrvRfuXflBNeTu4f7kufGK+eN8V34ZfyRBJeEsoTRRJfEXYljSa5JFUnjAk9BteB1sl/ygeSplJCUoykzqdGpzWmEtPi000IlYYqwK10zPSe9L8M0ozBDuspp1e5VE6JA0ZFMKHNZZruYjv5M9UiMJJslg1kLs2qy3mdHZZ/KUcwR5vTkmuRuyx3J88n7fjVmNXd1Z752/ob8wTXuaw6thdauXNu5Tnddwbrh9b7rj20gbUjZ8MtGy41lG99uit7UUaBRsL5gaLPv5sZCuUJR4b0tzlsObMVsFWzt3WazrWrblyJe0fViy+KK4k8l3JLr31l9V/ndzPaE7b2l9qX7d+B2CHfc3em681iZYlle2dCu4F2t5czyovK3u1fsvlZhW3FgD2mPZI+0MqiyvUqvakfVp+qk6oEaj5rmvep7t+2d2sfb17/fbX/TAY0DxQc+HhQcvH/I91BrrUFtxWHc4azDz+ui6rq/Z39ff0TtSPGRz0eFR6XHwo911TvU1zeoN5Q2wo2SxrHjccdv/eD1Q3sTq+lQM6O5+AQ4ITnx4sf4H++eDDzZeYp9qukn/Z/2ttBailqh1tzWibakNml7THvf6YDTnR3OHS0/m/989Iz2mZqzymdLz5HOFZybOZ93fvJCxoXxi4kXhzpXdD66tOTSna6wrt7LgZevXvG5cqnbvfv8VZerZ645XTt9nX297Yb9jdYeu56WX+x+aem172296XCz/ZbjrY6+BX3n+l37L972un3ljv+dGwOLBvruLr57/17cPel93v3RB6kPXj/Mejj9aP1j7OOiJwpPKp6qP6391fjXZqm99Oyg12DPs4hnj4a4Qy//lfmvT8MFz6nPK0a0RupHrUfPjPmM3Xqx9MXwy4yX0+OFvyn+tveV0auffnf7vWdiycTwa9HrmT9K3qi+OfrW9m3nZOjk03dp76anit6rvj/2gf2h+2P0x5Hp7E/4T5WfjT93fAn88ngmbWbm3/eE8/syOll+AAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMAAgYMEyIzOUpTVFViY3N2gJmcnaipq7fX3ebx+Pn8eTEuDQAAAI9JREFUKM/N0UkOglAQRdFHDyK90n64+9+lAyQgookjuaNKTlJJpaQlO2n6sW8SW/uCjrku2EloWDLhi3gDa4O3pTtA5Tt+BXDbiDsBmSQpAyZ3pRhoLUmS1QLxSilQPOcCSFfKgfxgPgfZ9ch7Y21LCcdd5wVH5SckEzkXc0ylpPJnMpETmX/d9eUpH1/5AKrsQVrz7YPBAAAAAElFTkSuQmCC")
902
- center center/contain no-repeat;
903
- width: 14px;
904
- display: inline-block;
905
- }
906
-
907
- .align-middle {
908
- vertical-align: middle;
909
- }
910
-
911
- input {
912
- box-shadow: none !important;
913
- }
914
-
915
- .powerd-by-part {
916
- display: flex;
917
- font-size: 12px;
918
- text-align: center;
919
- align-items: center;
920
- justify-content: center;
921
- margin: 5px 0 20px 0;
922
- }
923
-
924
- .powered-logo {
925
- width: 18px;
926
- height: auto;
927
- float: right;
928
- padding: 2px;
929
- background: #000000;
930
- border-radius: 4px;
931
- margin-left: 5px;
932
- }
933
-
934
- .comp-name {
935
- display: block;
936
- margin-bottom: 8px;
937
- }
938
-
939
- .client-logo {
940
- max-width: 140px;
941
- display: block;
942
- margin: auto;
943
- padding: 5px;
944
- }
945
-
946
- #qrCode {
947
- text-align: center;
948
- }
949
-
950
- #qrIcon {
951
- cursor: pointer;
952
- border: 1px solid rgb(252, 252, 252);
953
- padding: 10px;
954
- border-radius: 5px;
955
- background: #ffffff;
956
- }
957
-
958
- #target {
959
- display: none;
960
- text-align: center;
961
- transition: all 5s;
962
- padding: 5px;
963
- transition: max-height 0.5s, overflow 0.5s 0.5s;
964
- }
965
-
966
- /* input:focus {
967
- border-color: #acc6db !important;
968
- background-color: #acc6db !important;
969
- } */
970
-
971
- input[type="number"]::-webkit-outer-spin-button,
972
- input[type="number"]::-webkit-inner-spin-button {
973
- -webkit-appearance: none;
974
- margin: 0;
975
- }
976
-
977
- input[type="number"] {
978
- -moz-appearance: textfield;
979
- }
980
-
981
- `);
982
- };
983
- var RequestPaymentstyles_default = RequestPaymentstyles;
984
-
985
- // src/app/components/baseurl.ts
986
- var baseUrl = "https://staging-widget.fractalpay.com/";
987
-
988
- // src/app/components/Errortext.ts
989
- var ErrorText = {
990
- namerequired: "Full Name is required",
991
- amountrequired: "Amount is required",
992
- amountpositive: "Amount should be positive",
993
- amountzero: "Amount should not be zero",
994
- amountenter: "Please enter an amount",
995
- amountvalid: "Please enter a valid amount",
996
- phoneoremailrequired: "Phone or Email is required",
997
- invalidemail: "Invalid email",
998
- invalidemailformat: "Invalid email format",
999
- onlylettersallowed: "Only letters are allowed",
1000
- phonenumberlength: "Phone number should be 10 digits",
1001
- phonenumberrequired: "Please enter a phone number",
1002
- // phonenumbervalid:'Please enter a valid 10-digit phone number',
1003
- phonenumbervalid: "Please enter a valid phone number (max 10 digits)",
1004
- phonenumbervalidnumberonly: "Please enter a valid phone number (numbers only)",
1005
- orderidenter: "Please enter an order ID",
1006
- networkresponseerror: "Network response was not ok",
1007
- anerroroccured: "An error occurred. Please try again.",
1008
- montherror: "Please write month only 1 to 12",
1009
- fieldrequired: "This field is required",
1010
- fractalpayclientidrequired: "Fractalpay client key is missing or empty."
1011
- };
160
+ // src/app/components/Errortext.ts
161
+ var ErrorText = {
162
+ namerequired: "Full Name is required",
163
+ amountrequired: "Amount is required",
164
+ amountpositive: "Amount should be positive",
165
+ amountzero: "Amount should not be zero",
166
+ amountenter: "Please enter an amount",
167
+ amountvalid: "Please enter a valid amount",
168
+ phoneoremailrequired: "Phone or Email is required",
169
+ invalidemail: "Invalid email",
170
+ invalidemailformat: "Invalid email format",
171
+ onlylettersallowed: "Only letters are allowed",
172
+ phonenumberlength: "Phone number should be 10 digits",
173
+ phonenumberrequired: "Please enter a phone number",
174
+ // phonenumbervalid:'Please enter a valid 10-digit phone number',
175
+ phonenumbervalid: "Please enter a valid phone number (max 10 digits)",
176
+ phonenumbervalidnumberonly: "Please enter a valid phone number (numbers only)",
177
+ orderidenter: "Please enter an order ID",
178
+ networkresponseerror: "Network response was not ok",
179
+ anerroroccured: "An error occurred. Please try again.",
180
+ montherror: "Please write month only 1 to 12",
181
+ fieldrequired: "This field is required",
182
+ fractalpayclientidrequired: "Fractalpay client key is missing or empty."
183
+ };
1012
184
 
1013
185
  // src/app/components/RequestPayment/RequestPayment.tsx
1014
186
  function RequestPayment(props) {
@@ -1175,7 +347,7 @@ function RequestPayment(props) {
1175
347
  e.preventDefault();
1176
348
  }
1177
349
  };
1178
- return /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement(RequestPaymentstyles_default, null), /* @__PURE__ */ React4.createElement(Loader_default, { loading }), /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement("button", { className: "paymentBtn", onClick: handleShow }, "Request Payment"), /* @__PURE__ */ React4.createElement(
350
+ return /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(Loader_default, { loading }), /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement("button", { className: "paymentBtn", onClick: handleShow }, "Request Payment"), /* @__PURE__ */ React3.createElement(
1179
351
  Modal,
1180
352
  {
1181
353
  show,
@@ -1184,8 +356,8 @@ function RequestPayment(props) {
1184
356
  backdrop: "static",
1185
357
  keyboard: false
1186
358
  },
1187
- /* @__PURE__ */ React4.createElement(Modal.Header, { closeButton: true }, /* @__PURE__ */ React4.createElement(Modal.Title, null, "Request Payment")),
1188
- /* @__PURE__ */ React4.createElement(Modal.Body, { id: "Checkout" }, /* @__PURE__ */ React4.createElement(Form, null, /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "FULL NAME *"), /* @__PURE__ */ React4.createElement(
359
+ /* @__PURE__ */ React3.createElement(Modal.Header, { closeButton: true }, /* @__PURE__ */ React3.createElement(Modal.Title, null, "Request Payment")),
360
+ /* @__PURE__ */ React3.createElement(Modal.Body, { id: "Checkout" }, /* @__PURE__ */ React3.createElement(Form, null, /* @__PURE__ */ React3.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React3.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "FULL NAME *"), /* @__PURE__ */ React3.createElement(
1189
361
  "input",
1190
362
  {
1191
363
  className: "form-control",
@@ -1194,7 +366,7 @@ function RequestPayment(props) {
1194
366
  "data-token": "name",
1195
367
  onChange: handleChange
1196
368
  }
1197
- ), errors.name && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.name)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "requestPhoneNumber", className: "form-label" }, "Phone Number"), /* @__PURE__ */ React4.createElement(
369
+ ), errors.name && /* @__PURE__ */ React3.createElement("small", { className: "text-danger" }, errors.name)), /* @__PURE__ */ React3.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React3.createElement("label", { htmlFor: "requestPhoneNumber", className: "form-label" }, "Phone Number"), /* @__PURE__ */ React3.createElement(
1198
370
  "input",
1199
371
  {
1200
372
  maxLength: 10,
@@ -1206,7 +378,7 @@ function RequestPayment(props) {
1206
378
  type: "text",
1207
379
  "data-token": "phone_number"
1208
380
  }
1209
- ), errors.phone_number && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.phone_number)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "EMAIL"), /* @__PURE__ */ React4.createElement(
381
+ ), errors.phone_number && /* @__PURE__ */ React3.createElement("small", { className: "text-danger" }, errors.phone_number)), /* @__PURE__ */ React3.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React3.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "EMAIL"), /* @__PURE__ */ React3.createElement(
1210
382
  "input",
1211
383
  {
1212
384
  className: "form-control",
@@ -1215,7 +387,7 @@ function RequestPayment(props) {
1215
387
  onChange: handleChange,
1216
388
  "data-token": "email"
1217
389
  }
1218
- ), errors.email && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.email)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "AMOUNT *"), /* @__PURE__ */ React4.createElement("div", { className: "input-group" }, /* @__PURE__ */ React4.createElement("span", { className: "input-group-text" }, "$"), /* @__PURE__ */ React4.createElement(
390
+ ), errors.email && /* @__PURE__ */ React3.createElement("small", { className: "text-danger" }, errors.email)), /* @__PURE__ */ React3.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React3.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "AMOUNT *"), /* @__PURE__ */ React3.createElement("div", { className: "input-group" }, /* @__PURE__ */ React3.createElement("span", { className: "input-group-text" }, "$"), /* @__PURE__ */ React3.createElement(
1219
391
  "input",
1220
392
  {
1221
393
  "data-token": "amount",
@@ -1231,7 +403,7 @@ function RequestPayment(props) {
1231
403
  e2.preventDefault();
1232
404
  }, { passive: false })
1233
405
  }
1234
- )), errors.amount && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.amount)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "ORDER ID"), /* @__PURE__ */ React4.createElement(
406
+ )), errors.amount && /* @__PURE__ */ React3.createElement("small", { className: "text-danger" }, errors.amount)), /* @__PURE__ */ React3.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React3.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "ORDER ID"), /* @__PURE__ */ React3.createElement(
1235
407
  "input",
1236
408
  {
1237
409
  className: "form-control",
@@ -1240,7 +412,7 @@ function RequestPayment(props) {
1240
412
  onChange: handleChange,
1241
413
  "data-token": "order_id"
1242
414
  }
1243
- ), errors.order_id && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.order_id)), /* @__PURE__ */ React4.createElement(
415
+ ), errors.order_id && /* @__PURE__ */ React3.createElement("small", { className: "text-danger" }, errors.order_id)), /* @__PURE__ */ React3.createElement(
1244
416
  Button,
1245
417
  {
1246
418
  type: "button",
@@ -1249,7 +421,7 @@ function RequestPayment(props) {
1249
421
  disabled: loading
1250
422
  },
1251
423
  loading ? "Loading..." : "Send Request"
1252
- )), /* @__PURE__ */ React4.createElement("div", { className: "powerd-by-part" }, /* @__PURE__ */ React4.createElement(
424
+ )), /* @__PURE__ */ React3.createElement("div", { className: "powerd-by-part" }, /* @__PURE__ */ React3.createElement(
1253
425
  "svg",
1254
426
  {
1255
427
  xmlns: "http://www.w3.org/2000/svg",
@@ -1257,14 +429,14 @@ function RequestPayment(props) {
1257
429
  height: "20",
1258
430
  viewBox: "0 0 26 26"
1259
431
  },
1260
- /* @__PURE__ */ React4.createElement(
432
+ /* @__PURE__ */ React3.createElement(
1261
433
  "path",
1262
434
  {
1263
435
  fill: "currentColor",
1264
436
  d: "M23.633 5.028a1.074 1.074 0 0 0-.777-.366c-2.295-.06-5.199-2.514-7.119-3.477C14.551.592 13.768.201 13.18.098a1.225 1.225 0 0 0-.36.001c-.588.103-1.371.494-2.556 1.087c-1.92.962-4.824 3.416-7.119 3.476a1.08 1.08 0 0 0-.778.366a1.167 1.167 0 0 0-.291.834c.493 10.023 4.088 16.226 10.396 19.831c.164.093.346.141.527.141s.363-.048.528-.141c6.308-3.605 9.902-9.808 10.396-19.831a1.161 1.161 0 0 0-.29-.834zM18.617 8.97l-5.323 7.855c-.191.282-.491.469-.788.469c-.298 0-.629-.163-.838-.372l-3.752-3.753a.656.656 0 0 1 0-.926l.927-.929a.658.658 0 0 1 .926 0l2.44 2.44l4.239-6.257a.657.657 0 0 1 .91-.173l1.085.736a.657.657 0 0 1 .174.91z"
1265
437
  }
1266
438
  )
1267
- ), "Secure payments powered by Fractal", /* @__PURE__ */ React4.createElement(
439
+ ), "Secure payments powered by Fractal", /* @__PURE__ */ React3.createElement(
1268
440
  "img",
1269
441
  {
1270
442
  src: "https://ui.fractalpay.com/favicon.ico",
@@ -1272,15 +444,15 @@ function RequestPayment(props) {
1272
444
  className: "powered-logo"
1273
445
  }
1274
446
  )))
1275
- ), /* @__PURE__ */ React4.createElement(
447
+ ), /* @__PURE__ */ React3.createElement(
1276
448
  Modal,
1277
449
  {
1278
450
  className: "payment-suc",
1279
451
  show: showConfirmationModal,
1280
452
  onHide: handleCloseConfirmationModal
1281
453
  },
1282
- /* @__PURE__ */ React4.createElement(Modal.Header, { closeButton: true }),
1283
- /* @__PURE__ */ React4.createElement(Modal.Body, null, /* @__PURE__ */ React4.createElement(
454
+ /* @__PURE__ */ React3.createElement(Modal.Header, { closeButton: true }),
455
+ /* @__PURE__ */ React3.createElement(Modal.Body, null, /* @__PURE__ */ React3.createElement(
1284
456
  "svg",
1285
457
  {
1286
458
  width: "60",
@@ -1289,7 +461,7 @@ function RequestPayment(props) {
1289
461
  fill: "none",
1290
462
  xmlns: "http://www.w3.org/2000/svg"
1291
463
  },
1292
- /* @__PURE__ */ React4.createElement(
464
+ /* @__PURE__ */ React3.createElement(
1293
465
  "rect",
1294
466
  {
1295
467
  x: "0.5",
@@ -1300,14 +472,14 @@ function RequestPayment(props) {
1300
472
  stroke: "#31B379"
1301
473
  }
1302
474
  ),
1303
- /* @__PURE__ */ React4.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React4.createElement(
475
+ /* @__PURE__ */ React3.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React3.createElement(
1304
476
  "path",
1305
477
  {
1306
478
  d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
1307
479
  fill: "#31B379"
1308
480
  }
1309
481
  )),
1310
- /* @__PURE__ */ React4.createElement("defs", null, /* @__PURE__ */ React4.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React4.createElement(
482
+ /* @__PURE__ */ React3.createElement("defs", null, /* @__PURE__ */ React3.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React3.createElement(
1311
483
  "rect",
1312
484
  {
1313
485
  width: "22",
@@ -1316,15 +488,846 @@ function RequestPayment(props) {
1316
488
  transform: "translate(19.5 19.0039)"
1317
489
  }
1318
490
  )))
1319
- ), /* @__PURE__ */ React4.createElement("h2", null, "Payment link has been ", /* @__PURE__ */ React4.createElement("br", null), " sent successfully"))
491
+ ), /* @__PURE__ */ React3.createElement("h2", null, "Payment link has been ", /* @__PURE__ */ React3.createElement("br", null), " sent successfully"))
1320
492
  )));
1321
493
  }
1322
494
 
1323
495
  // src/app/components/RequestPayment/RequestPaymentAllInput.tsx
1324
- import React5, { useState as useState2 } from "react";
1325
- import { Modal as Modal2 } from "react-bootstrap";
1326
- import { toast, ToastContainer } from "react-toastify";
1327
- import "react-toastify/dist/ReactToastify.css";
496
+ import React5, { useState as useState2 } from "react";
497
+ import { Modal as Modal2 } from "react-bootstrap";
498
+ import { toast, ToastContainer } from "react-toastify";
499
+ import "react-toastify/dist/ReactToastify.css";
500
+
501
+ // src/app/components/RequestPayment/RequestPaymentstyles.tsx
502
+ import React4 from "react";
503
+ var RequestPaymentstyles = (props) => {
504
+ return /* @__PURE__ */ React4.createElement("style", null, `
505
+ .paymentBtn {
506
+ background-color: black;
507
+ border: none;
508
+ color: white;
509
+ padding: 15px 32px;
510
+ text-align: center;
511
+ text-decoration: none;
512
+ display: inline-block;
513
+ font-size: 16px;
514
+ margin: 4px 2px;
515
+ cursor: pointer;
516
+ border-radius: 180px;
517
+ /* width: auto; */
518
+ }
519
+ .modal-backdrop {
520
+ display: none !important;
521
+ }
522
+ /* CSS for modal */
523
+ .modal {
524
+ /* display: none; */
525
+ position: fixed;
526
+ z-index: 5555;
527
+ left: 0;
528
+ top: 0;
529
+ width: 100%;
530
+ height: 100%;
531
+ overflow: auto;
532
+ background-color: rgba(0, 0, 0, 0.4);
533
+ }
534
+
535
+ .input-container {
536
+ position: relative;
537
+ }
538
+ .error {
539
+ border: 1px solid red;
540
+ background-color: #ffe6e6; /* light red background color */
541
+ }
542
+ .form-group {
543
+ margin-bottom: 15px;
544
+ }
545
+ .input-container input {
546
+ padding-right: 25px;
547
+ }
548
+
549
+ .modal-header {
550
+ border-bottom: 0 !important;
551
+ padding-top: 0 !important;
552
+ }
553
+
554
+ /* CSS for modal content */
555
+ .modal-content {
556
+ /* height: 90vh !important; */
557
+ height: auto;
558
+ padding: 20px 5px;
559
+ /* background: #fff; */
560
+ border-radius: 20px !important;
561
+ position: relative;
562
+ width: 100%;
563
+ max-width: 100%;
564
+ margin: 30px auto;
565
+ overflow: inherit !important;
566
+ }
567
+ .input-container {
568
+ display: flex;
569
+ align-items: baseline;
570
+ }
571
+
572
+ .input-error-container {
573
+ flex: 1;
574
+ }
575
+
576
+ .paymentBtn {
577
+ margin-left: 10px;
578
+ }
579
+
580
+ .PayButton {
581
+ outline: 0 !important;
582
+ height: 46px;
583
+ font-size: 16px;
584
+ background-color: #161616 !important;
585
+ border: none;
586
+ display: block;
587
+ width: 100%;
588
+ border-radius: 180px;
589
+ margin: 10px 0;
590
+ }
591
+
592
+ #PayButton:hover {
593
+ background-color: #61c699 !important;
594
+ }
595
+
596
+ #PayButton:active {
597
+ background-color: #61c699 !important;
598
+ }
599
+
600
+ #PayButton:disabled {
601
+ background: rgb(172, 44, 170) !important;
602
+ color: #fff !important;
603
+ }
604
+
605
+ label {
606
+ color: rgba(53, 37, 77, 0.6);
607
+ margin-bottom: 2px;
608
+ text-transform: uppercase;
609
+ font-family: "IBM Plex Mono", monospace;
610
+ font-weight: 500;
611
+ font-size: 12px;
612
+ }
613
+
614
+ .input-container {
615
+ position: relative;
616
+ }
617
+
618
+ .input-container input {
619
+ padding-right: 25px;
620
+ }
621
+
622
+ #Checkout {
623
+ /* z-index: 100001; */
624
+ width: 100%;
625
+ /* height: 100%; */
626
+ /* background: 0 0 #ffffff; */
627
+ border-radius: 24px;
628
+ border: 1px solid #e0dfe2;
629
+ display: block;
630
+ }
631
+
632
+ .container {
633
+ margin-top: 10px;
634
+ }
635
+
636
+ .powered-logo {
637
+ width: 18px;
638
+ height: 18px;
639
+ /* float: right; */
640
+ padding: 2px;
641
+ background: #000000;
642
+ border-radius: 4px;
643
+ /* margin-left: 5px; */
644
+ }
645
+
646
+ .modal-content .container {
647
+ width: 100%;
648
+ }
649
+
650
+ .powerd-by-part {
651
+ display: flex;
652
+ justify-content: center;
653
+ align-items: center;
654
+ gap: 5px;
655
+ }
656
+
657
+ .errorText {
658
+ color: red;
659
+ }
660
+
661
+ .input-group {
662
+ position: relative;
663
+ }
664
+
665
+ .paynowbtn {
666
+ outline: 0 !important;
667
+ padding: 7px 25px !important;
668
+ font-size: 13px;
669
+ background-color: #161616 !important;
670
+ border: #161616 1px solid !important;
671
+ color: #fff !important;
672
+ display: inline-block !important;
673
+ border-radius: 180px !important;
674
+ }
675
+
676
+ .paynowbtn:hover {
677
+ background-color: #fff !important;
678
+ border: #161616 1px solid !important;
679
+ color: #161616 !important;
680
+ }
681
+
682
+ .ButtonGroup__root.btn-group {
683
+ margin: 10px 0 20px 0;
684
+ }
685
+
686
+ .ButtonGroup__root.btn-group button {
687
+ background: #000;
688
+ border: 0;
689
+ margin: 0 5px;
690
+ border-radius: 4px !important;
691
+ }
692
+
693
+ .ButtonGroup__root.btn-group button:hover,
694
+ .ButtonGroup__root.btn-group button:focus {
695
+ background: #333 !important;
696
+ }
697
+
698
+ .input-group button {
699
+ background: #000;
700
+ border: 0;
701
+ margin: 0 5px;
702
+ border-radius: 0 4px 4px 0 !important;
703
+ }
704
+
705
+ .input-group button:hover,
706
+ .input-group button:focus {
707
+ background: #333 !important;
708
+ }
709
+
710
+ .payment-suc {
711
+ text-align: center;
712
+ }
713
+
714
+ .payment-suc .modal-dialog {
715
+ min-width: 600px;
716
+ padding: 50px 0;
717
+ }
718
+
719
+ .payment-suc h2 {
720
+ font-size: 24px;
721
+ color: #35254d;
722
+ font-weight: 500;
723
+ padding: 15px 0;
724
+ }
725
+
726
+ .payment-suc p {
727
+ font-size: 14px;
728
+ color: #9a92a6;
729
+ font-weight: 500;
730
+ }
731
+
732
+ .payment-suc .btn-close {
733
+ position: absolute;
734
+ right: 20px;
735
+ }
736
+
737
+ .Checkout.container iframe {
738
+ width: 100%;
739
+ overflow: hidden !important;
740
+ }
741
+
742
+ .responsive-tbl {
743
+ overflow-x: auto;
744
+ }
745
+ body {
746
+ position: relative !important;
747
+ }
748
+ thead,
749
+ tbody,
750
+ tfoot,
751
+ tr,
752
+ td,
753
+ th {
754
+ white-space: nowrap;
755
+ }
756
+
757
+ .button-group {
758
+ display: flex;
759
+ gap: 10px;
760
+ }
761
+ .rqstonClickbtn {
762
+ color: #fff;
763
+ background-color: #337ab7;
764
+ border-color: #2e6da4;
765
+ }
766
+ .loading-animation {
767
+ position: absolute;
768
+ top: 50%;
769
+ left: 50%;
770
+ transform: translate(-50%, -50%);
771
+ }
772
+
773
+ .spinner {
774
+ width: 40px;
775
+ height: 40px;
776
+ border-radius: 50%;
777
+ border: 4px solid #f3f3f3;
778
+ border-top: 4px solid black;
779
+ animation: spin 1s linear infinite;
780
+ }
781
+
782
+ @keyframes spin {
783
+ 0% {
784
+ transform: rotate(0deg);
785
+ }
786
+ 100% {
787
+ transform: rotate(360deg);
788
+ }
789
+ }
790
+ /* .border-container {
791
+ display: flex;
792
+ flex-direction: column;
793
+ border: 0px solid #ccc;
794
+ padding: 20px;
795
+ border-radius: 10px;
796
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
797
+ align-items: baseline;
798
+ }
799
+ .payment-container {
800
+ border: 0px solid #ccc;
801
+ padding: 20px;
802
+ border-radius: 10px;
803
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
804
+ } */
805
+
806
+ .payment-row {
807
+ display: flex;
808
+ align-items: center;
809
+ margin-bottom: 20px;
810
+ }
811
+
812
+ .payment-row label {
813
+ width: 150px;
814
+ font-weight: bold;
815
+ margin-right: 10px;
816
+ }
817
+
818
+ .payment-row input {
819
+ flex-grow: 1;
820
+ margin-right: 10px;
821
+ }
822
+
823
+ .payment-row button {
824
+ flex-grow: 1;
825
+ }
826
+ .payment-row {
827
+ display: flex;
828
+ flex-direction: column;
829
+ border-radius: 10px;
830
+ margin-top: 10px;
831
+ }
832
+
833
+ .input-wrapper {
834
+ flex: 1;
835
+ }
836
+
837
+ .button-wrapper {
838
+ margin-left: 10px;
839
+ }
840
+ .input-container {
841
+ display: flex;
842
+ flex-direction: column;
843
+ }
844
+
845
+ .export-btn1 {
846
+ background: black;
847
+ color: white;
848
+ height: 35px;
849
+ width: 68px;
850
+ border-radius: 5px;
851
+ margin-top: 20px;
852
+ }
853
+
854
+ .export-btn {
855
+ background: black;
856
+ color: white;
857
+ height: 35px;
858
+ width: 68px;
859
+ border-radius: 5px;
860
+ margin-left: 14px;
861
+ }
862
+
863
+ .payment-popup {
864
+ padding: 12px 20px;
865
+ background: #fff;
866
+ border-radius: 20px;
867
+ position: relative;
868
+ width: 100%;
869
+ margin: 0 auto;
870
+ }
871
+
872
+ // .modal-content {
873
+ // max-width: 420px;
874
+ // margin-top: 5%;
875
+ // }
876
+ @media (max-width: 460px) {
877
+ .payment-popup {
878
+ padding: 35px 25px;
879
+ width: 98%;
880
+ }
881
+ }
882
+
883
+ .close-pop {
884
+ position: absolute;
885
+ right: 8px;
886
+ top: 8px;
887
+ border: 0;
888
+ padding: 0;
889
+ background: none !important;
890
+ }
891
+
892
+ .amex {
893
+ background-image: url("../amex.svg");
894
+ }
895
+
896
+ .visa {
897
+ background-image: url("../visa.svg");
898
+ }
899
+
900
+ .mastercard {
901
+ background-image: url("../mastercard.svg");
902
+ }
903
+
904
+ .discover {
905
+ background-image: url("../discover.svg");
906
+ }
907
+
908
+ .expiry-date-group {
909
+ float: left;
910
+ width: 30%;
911
+ }
912
+
913
+ .expiry-date-group input {
914
+ width: calc(100% + 1px);
915
+ border-top-right-radius: 0;
916
+ border-bottom-right-radius: 0;
917
+ }
918
+
919
+ .expiry-date-group input:focus {
920
+ position: relative;
921
+ z-index: 10;
922
+ }
923
+
924
+ .security-code-group {
925
+ float: right;
926
+ width: 40%;
927
+ position: relative;
928
+ }
929
+
930
+ .security-code-group input {
931
+ border-top-left-radius: 0;
932
+ border-bottom-left-radius: 0;
933
+ }
934
+
935
+ .zip-code-group {
936
+ clear: both;
937
+ }
938
+
939
+ #submitButton {
940
+ outline: 0 !important;
941
+ height: 46px;
942
+ font-size: 16px;
943
+ background-color: #161616 !important;
944
+ border: none;
945
+ display: block;
946
+ width: 100%;
947
+ border-radius: 180px;
948
+ }
949
+ #submitRequestButton {
950
+ outline: 0 !important;
951
+ height: 46px;
952
+ font-size: 16px;
953
+ background-color: #161616 !important;
954
+ border: none;
955
+ display: block;
956
+ width: 100%;
957
+ border-radius: 180px;
958
+ }
959
+ #PayButton {
960
+ outline: 0 !important;
961
+ height: 46px;
962
+ font-size: 16px;
963
+ background-color: #161616 !important;
964
+ border: none;
965
+ display: block;
966
+ width: 100%;
967
+ border-radius: 180px;
968
+ }
969
+
970
+ #PayButton:hover {
971
+ background-color: #61c699 !important;
972
+ }
973
+
974
+ #PayButton:active {
975
+ background-color: #61c699 !important;
976
+ }
977
+
978
+ #PayButton:disabled {
979
+ background: rgb(172, 44, 170) !important;
980
+ color: #fff !important;
981
+ }
982
+
983
+ .form-control {
984
+ color: #35254d;
985
+ }
986
+
987
+ .container {
988
+ margin-top: 10px;
989
+ }
990
+
991
+ #Checkout {
992
+ z-index: 100001;
993
+ width: 100%;
994
+ height: 100%;
995
+ min-height: 100%;
996
+ background: 0 0 #ffffff;
997
+ border-radius: 24px;
998
+ border: 1px solid #e0dfe2;
999
+ margin-left: auto;
1000
+ margin-right: auto;
1001
+ display: block;
1002
+ }
1003
+
1004
+ #Checkout .header {
1005
+ display: flex;
1006
+ /* Enables Flexbox */
1007
+ justify-content: center;
1008
+ /* Centers content horizontally */
1009
+ align-items: center;
1010
+ /* Centers content vertically */
1011
+ text-align: center;
1012
+ padding: 8px;
1013
+ border-bottom: 1px solid #dedede;
1014
+ margin: 0 10px 20px 10px;
1015
+ }
1016
+
1017
+ #Checkout .header button {
1018
+ border: 0;
1019
+ background: none;
1020
+ padding: 0;
1021
+ }
1022
+
1023
+ #Checkout h1 {
1024
+ margin: 0;
1025
+ flex: 1;
1026
+ padding: 10px;
1027
+ /* Allows the title to grow and fill the space for centering */
1028
+ font-size: 23px;
1029
+ font-weight: 500;
1030
+ color: #35254d;
1031
+ align-items: start;
1032
+ display: flex;
1033
+ }
1034
+
1035
+ #Checkout > form {
1036
+ margin: 0 25px 10px 25px;
1037
+ }
1038
+
1039
+ label {
1040
+ color: rgba(53, 37, 77, 0.6);
1041
+ margin-bottom: 2px;
1042
+ text-transform: uppercase;
1043
+ font-family: "IBM Plex Mono", monospace;
1044
+ font-weight: 500;
1045
+ font-size: 12px;
1046
+ }
1047
+
1048
+ .input-container {
1049
+ position: relative;
1050
+ }
1051
+
1052
+ .input-container input {
1053
+ padding-right: 25px;
1054
+ }
1055
+
1056
+ #zipcode {
1057
+ text-transform: capitalize !important;
1058
+ }
1059
+
1060
+ #zipcode {
1061
+ width: 18px;
1062
+ position: absolute;
1063
+ right: 8px;
1064
+ top: 9px;
1065
+ }
1066
+
1067
+ #zipcode .zip-tip {
1068
+ display: none;
1069
+ background-color: rgb(0, 0, 0, 0.4);
1070
+ padding: 5px 8px;
1071
+ border-radius: 6px;
1072
+ position: absolute;
1073
+ right: 26px;
1074
+ top: -9px;
1075
+ font-size: 12.5px;
1076
+ text-transform: capitalize !important;
1077
+ color: #fff;
1078
+ width: 240px;
1079
+ line-height: 16px;
1080
+ }
1081
+
1082
+ #zipcode .zip-tip:before {
1083
+ width: 0;
1084
+ height: 0;
1085
+ border-top: 7px solid transparent;
1086
+ border-bottom: 7px solid transparent;
1087
+ border-left: 7px solid #000;
1088
+ opacity: 0.4;
1089
+ position: absolute;
1090
+ right: -7px;
1091
+ top: 50%;
1092
+ transform: translateY(-50%);
1093
+ content: "";
1094
+ }
1095
+
1096
+ #zipcode:hover .zip-tip {
1097
+ display: block;
1098
+ }
1099
+
1100
+ .input-container > i,
1101
+ a[role="button"] {
1102
+ color: #d3d3d3;
1103
+ width: 25px;
1104
+ height: 30px;
1105
+ line-height: 30px;
1106
+ font-size: 16px;
1107
+ position: absolute;
1108
+ top: 5px;
1109
+ right: 6px;
1110
+ cursor: pointer;
1111
+ text-align: center;
1112
+ }
1113
+
1114
+ .input-container > i:hover,
1115
+ a[role="button"]:hover {
1116
+ color: #777;
1117
+ }
1118
+
1119
+ .amount-placeholder {
1120
+ white-space: nowrap;
1121
+ font-size: 44px;
1122
+ /* height: 35px; */
1123
+ font-weight: 600;
1124
+ line-height: 40px;
1125
+ }
1126
+
1127
+ .amount-placeholder > button {
1128
+ float: right;
1129
+ width: 60px;
1130
+ }
1131
+
1132
+ .amount-placeholder > span {
1133
+ line-height: 34px;
1134
+ }
1135
+
1136
+ .top-amnt {
1137
+ display: flex;
1138
+ margin-bottom: 10px;
1139
+ align-items: center;
1140
+ justify-content: space-between;
1141
+ }
1142
+
1143
+ .amtleft {
1144
+ text-align: center;
1145
+ }
1146
+
1147
+ .amtleft span {
1148
+ color: #35254d;
1149
+ margin: 0 -5px;
1150
+ }
1151
+
1152
+ .card-row {
1153
+ text-align: right;
1154
+ margin: 22px 0 0 0;
1155
+ max-width: 85px;
1156
+ line-height: 20px;
1157
+ }
1158
+
1159
+ .yer {
1160
+ border-radius: 0;
1161
+ }
1162
+
1163
+ .card-row span {
1164
+ width: 33px;
1165
+ height: 21px;
1166
+ margin: 0 2px;
1167
+ background-repeat: no-repeat;
1168
+ display: inline-block;
1169
+ background-size: contain;
1170
+ }
1171
+
1172
+ .card-image {
1173
+ background-repeat: no-repeat;
1174
+ padding-right: 50px;
1175
+ background-position: right 2px center;
1176
+ background-size: auto 90%;
1177
+ }
1178
+
1179
+ /* .cvc-preview-container {
1180
+ overflow: hidden;
1181
+ } */
1182
+
1183
+ .cvc-preview-container {
1184
+ /* overflow: hidden; */
1185
+ position: absolute;
1186
+ z-index: 9999;
1187
+ right: -71px;
1188
+ top: -54px;
1189
+ width: 165px;
1190
+ border-radius: 5px;
1191
+ padding: 5px;
1192
+ background-color: rgb(0, 0, 0, 0.3);
1193
+ display: none;
1194
+ }
1195
+
1196
+ .cvc-preview-container:before {
1197
+ position: absolute;
1198
+ left: 50%;
1199
+ transform: translate(-50%);
1200
+ bottom: -5px;
1201
+ width: 0;
1202
+ height: 0;
1203
+ border-left: 5px solid transparent;
1204
+ border-right: 5px solid transparent;
1205
+ border-top: 5px solid #000;
1206
+ opacity: 0.3;
1207
+ content: "";
1208
+ }
1209
+
1210
+ .security-code-group #cvc:hover .cvc-preview-container {
1211
+ display: block;
1212
+ }
1213
+
1214
+ .cvc-preview-container.two-card div {
1215
+ width: 50%;
1216
+ height: 45px;
1217
+ }
1218
+
1219
+ .cvc-preview-container.two-card div.amex-cvc-preview {
1220
+ float: right;
1221
+ }
1222
+
1223
+ .cvc-preview-container.two-card div.visa-mc-dis-cvc-preview {
1224
+ float: left;
1225
+ }
1226
+
1227
+ /* .cvc-preview-container div {
1228
+ height: 160px;
1229
+ } */
1230
+
1231
+ .amex-cvc-preview {
1232
+ background: url("data:image/png;base64,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")
1233
+ center center/contain no-repeat;
1234
+ }
1235
+
1236
+ .visa-mc-dis-cvc-preview {
1237
+ background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOYAAACOCAMAAAASE4S+AAAAAXNSR0IArs4c6QAAAadQTFRFAAAAzbFj+NyAyLNg+N2DzbRk+96CzrVj+96AzrNj+92By7Rl+92AzbRl/eCDzrRl/t+DzrVl/t+CzbVm/t+C3MFt3MFv/N2B/N6CzrRm/uCDzrRm/uCC7M93/N6CAAAAAQEBAgIBBAQCBQUDBwcECQgFDAsGDg0HEA4IEQ8JFRMLFxUMIBwQIR0RJSETKyYWLikYLyoYMCsZMSsZNC4bNzEcOTIdQDkhQTkhQzsiRT0jRj4kSkEmTEMnWE4tWU8uWk8uXFEvXVIwXlMwX1QxaV02bWA4bmE5cWQ6eGo+eWs+fW5Afm9Bi3pHjHtIkH9KmIZOmYdPnIlQnYpRo5BUppJVqJRWqpZXq5dYrJdYrZhZuaNfvaZhvqdiwKljwapjxK1lybFnyrJoy7NozrVm1Ltq171u2L5v2b9s2b9t2sBt3cNy3zEx3zIx38Rz4MVz4cZ04kI552NI6GVJ6Mx36s5368957dF674xb79J78NN78dV78tV789Z99Nd99dh+9rZv9th+9tl+99l/+duA+sx5+sx6+t2B+92B/N6B/d+C/uCD////AikOogAAAB90Uk5TACQkJSU9PT4+Q0NERJqav7/AwNjY4uLi4u7u8/P6+u6knPAAAAJkSURBVHja7d3pTxNBGMfxQbwAW06Pcj0tntQT8b7v+0JFxaserQcuKlQUFbFUaqvjH+1uG0lMfEETie4z39+bJ/tik/1kjt3MbDLGBFkWbeu0CtPZFq03v7KwxSpO04KKcmm7VZ32xeW2VK70nUF7tlj1afJnH+tA6k3UBWbUrHKBudJ0u8DsNtaJwIQJEyZMmDBhwoQJEyZMmPPCFCcCEyZMmDBhwoQJEyZMmDBhwoQJEyZMmDBhwoQJ010m+5swYcKECRMmTJgwYcKECRMmTJgwYcIMFfPHP8/vz5PLjnpzzmg2F07mxIhXVUYmwsjMVan0nbkQMrOeN1aY+zAsjHleNoRMf1x+rWa6KfjjM4RMvxdWN63+4QaYMGHC/EvM6b0HgpI6tvtoyq9vz+4/clcf89sJ2eiXIZGEyJD9sEl6RAa1MVPbpczsk8vT52SHHZCDUxelXxtzW/x4wPx+6cxn+0A2208PX9pB2aONef7xk3JrBjkth4Jysnf9fX1T0Czzmqx+6pcvcel/pJd5RRLXg1p6d0vWvdHKHJCeG2XljLVb5aZS5r2E3A6uTiUu2Km1klLK3CXxZDK5xd6RNYd3St+MTuaryr94G6y92iuy77X+b9rSi/d8usOEyZIXC5gsR7O5MN9bRexvwoQJEyZMmDBhwoQJEyZMmDBhwoT5vzNLLihLJu8CM2+6XGB2meUuMFeYyEf9ysmIqcsUtSuLmQZjGp8pdxafNxtjamIZ1f12MhOrDQ6uXhRLD4/nVb4/S/nx4XRsSeUY8prGtOI0186eKl8Xae3QSOxojTSUgT8BEvkXyqDHONgAAAAASUVORK5CYII=")
1238
+ center center/contain no-repeat;
1239
+ }
1240
+
1241
+ .submit-button-lock {
1242
+ height: 15px;
1243
+ margin-top: -2px;
1244
+ margin-right: 7px;
1245
+ vertical-align: middle;
1246
+ background: url("data:image/png;base64,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NQxdFfpzGC4sNKwm7Hm4VXh+eHcELWJFREPEu0iPyNLIR4uNFksWd0bJR8VF1UdNRXtFl0VLl1gsWbPkRoxajCCmPRYfGxV7JHZyqffS3UuH4+ziCuPuLjNclrPs2nK15anLz66QX8FZcSoeGx8d3xD/iRPCqeVMrvRfuXflBNeTu4f7kufGK+eN8V34ZfyRBJeEsoTRRJfEXYljSa5JFUnjAk9BteB1sl/ygeSplJCUoykzqdGpzWmEtPi000IlYYqwK10zPSe9L8M0ozBDuspp1e5VE6JA0ZFMKHNZZruYjv5M9UiMJJslg1kLs2qy3mdHZZ/KUcwR5vTkmuRuyx3J88n7fjVmNXd1Z752/ob8wTXuaw6thdauXNu5Tnddwbrh9b7rj20gbUjZ8MtGy41lG99uit7UUaBRsL5gaLPv5sZCuUJR4b0tzlsObMVsFWzt3WazrWrblyJe0fViy+KK4k8l3JLr31l9V/ndzPaE7b2l9qX7d+B2CHfc3em681iZYlle2dCu4F2t5czyovK3u1fsvlZhW3FgD2mPZI+0MqiyvUqvakfVp+qk6oEaj5rmvep7t+2d2sfb17/fbX/TAY0DxQc+HhQcvH/I91BrrUFtxWHc4azDz+ui6rq/Z39ff0TtSPGRz0eFR6XHwo911TvU1zeoN5Q2wo2SxrHjccdv/eD1Q3sTq+lQM6O5+AQ4ITnx4sf4H++eDDzZeYp9qukn/Z/2ttBailqh1tzWibakNml7THvf6YDTnR3OHS0/m/989Iz2mZqzymdLz5HOFZybOZ93fvJCxoXxi4kXhzpXdD66tOTSna6wrt7LgZevXvG5cqnbvfv8VZerZ645XTt9nX297Yb9jdYeu56WX+x+aem172296XCz/ZbjrY6+BX3n+l37L972un3ljv+dGwOLBvruLr57/17cPel93v3RB6kPXj/Mejj9aP1j7OOiJwpPKp6qP6391fjXZqm99Oyg12DPs4hnj4a4Qy//lfmvT8MFz6nPK0a0RupHrUfPjPmM3Xqx9MXwy4yX0+OFvyn+tveV0auffnf7vWdiycTwa9HrmT9K3qi+OfrW9m3nZOjk03dp76anit6rvj/2gf2h+2P0x5Hp7E/4T5WfjT93fAn88ngmbWbm3/eE8/syOll+AAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMAAgYMEyIzOUpTVFViY3N2gJmcnaipq7fX3ebx+Pn8eTEuDQAAAI9JREFUKM/N0UkOglAQRdFHDyK90n64+9+lAyQgookjuaNKTlJJpaQlO2n6sW8SW/uCjrku2EloWDLhi3gDa4O3pTtA5Tt+BXDbiDsBmSQpAyZ3pRhoLUmS1QLxSilQPOcCSFfKgfxgPgfZ9ch7Y21LCcdd5wVH5SckEzkXc0ylpPJnMpETmX/d9eUpH1/5AKrsQVrz7YPBAAAAAElFTkSuQmCC")
1247
+ center center/contain no-repeat;
1248
+ width: 14px;
1249
+ display: inline-block;
1250
+ }
1251
+
1252
+ .align-middle {
1253
+ vertical-align: middle;
1254
+ }
1255
+
1256
+ input {
1257
+ box-shadow: none !important;
1258
+ }
1259
+
1260
+ .powerd-by-part {
1261
+ display: flex;
1262
+ font-size: 12px;
1263
+ text-align: center;
1264
+ align-items: center;
1265
+ justify-content: center;
1266
+ margin: 5px 0 20px 0;
1267
+ }
1268
+
1269
+ .powered-logo {
1270
+ width: 18px;
1271
+ height: auto;
1272
+ float: right;
1273
+ padding: 2px;
1274
+ background: #000000;
1275
+ border-radius: 4px;
1276
+ margin-left: 5px;
1277
+ }
1278
+
1279
+ .comp-name {
1280
+ display: block;
1281
+ margin-bottom: 8px;
1282
+ }
1283
+
1284
+ .client-logo {
1285
+ max-width: 140px;
1286
+ display: block;
1287
+ margin: auto;
1288
+ padding: 5px;
1289
+ }
1290
+
1291
+ #qrCode {
1292
+ text-align: center;
1293
+ }
1294
+
1295
+ #qrIcon {
1296
+ cursor: pointer;
1297
+ border: 1px solid rgb(252, 252, 252);
1298
+ padding: 10px;
1299
+ border-radius: 5px;
1300
+ background: #ffffff;
1301
+ }
1302
+
1303
+ #target {
1304
+ display: none;
1305
+ text-align: center;
1306
+ transition: all 5s;
1307
+ padding: 5px;
1308
+ transition: max-height 0.5s, overflow 0.5s 0.5s;
1309
+ }
1310
+
1311
+ /* input:focus {
1312
+ border-color: #acc6db !important;
1313
+ background-color: #acc6db !important;
1314
+ } */
1315
+
1316
+ input[type="number"]::-webkit-outer-spin-button,
1317
+ input[type="number"]::-webkit-inner-spin-button {
1318
+ -webkit-appearance: none;
1319
+ margin: 0;
1320
+ }
1321
+
1322
+ input[type="number"] {
1323
+ -moz-appearance: textfield;
1324
+ }
1325
+
1326
+ `);
1327
+ };
1328
+ var RequestPaymentstyles_default = RequestPaymentstyles;
1329
+
1330
+ // src/app/components/RequestPayment/RequestPaymentAllInput.tsx
1328
1331
  function RequestPaymentAllInput({ fractalpayClientKey }) {
1329
1332
  const [isLoading, setIsLoading] = useState2(false);
1330
1333
  const [show, setShow] = useState2(false);