-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1520 lines (1349 loc) · 130 KB
/
index.html
File metadata and controls
1520 lines (1349 loc) · 130 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html lang="en-US" class="win-magic svg-magic" data-magic-ua="chrome" data-magic-ua-ver="101" data-magic-engine="webkit" data-magic-engine-ver="537.36"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Custom Neon Sign – ws</title>
<link rel="stylesheet" href="./Custom Neon Sign – ws_files/style.css" type="text/css" media="screen">
<link rel="pingback" href="http://wordpress.test/xmlrpc.php">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="max-image-preview:large">
<title>Custom Neon Sign – ws</title>
<link rel="dns-prefetch" href="http://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="ws » Feed" href="http://wordpress.test/feed/">
<link rel="alternate" type="application/rss+xml" title="ws » Comments Feed" href="http://wordpress.test/comments/feed/">
<link rel="alternate" type="application/rss+xml" title="ws » Custom Neon Sign Comments Feed" href="http://wordpress.test/product/custom-neon-sign/feed/">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/wordpress.test\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.9.3"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="./Custom Neon Sign – ws_files/wp-emoji-release.min.js.download" type="text/javascript" defer=""></script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="dashicons-css" href="./Custom Neon Sign – ws_files/dashicons.min.css" media="all">
<link rel="stylesheet" id="admin-bar-css" href="./Custom Neon Sign – ws_files/admin-bar.min.css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="./Custom Neon Sign – ws_files/bootstrap.min.css" media="all">
<link rel="stylesheet" id="font-awesome.min.css-css" href="./Custom Neon Sign – ws_files/font-awesome.min.css" media="all">
<link rel="stylesheet" id="style_neon-css" href="./Custom Neon Sign – ws_files/style(1).css" media="all">
<link rel="stylesheet" id="color_css_neon-css" href="./Custom Neon Sign – ws_files/color.css" media="all">
<link rel="stylesheet" id="custom-css" href="./Custom Neon Sign – ws_files/custom.css" media="all">
<link rel="stylesheet" id="custompage-css" href="./Custom Neon Sign – ws_files/custompage.css" media="all">
<link rel="stylesheet" id="jquery-ui.min-css" href="./Custom Neon Sign – ws_files/jquery-ui.min.css" media="all">
<link rel="stylesheet" id="lightbox.min-css" href="./Custom Neon Sign – ws_files/lightbox.min.css" media="all">
<link rel="stylesheet" id="magicscroll.min-css" href="./Custom Neon Sign – ws_files/magicscroll.css" media="all">
<style id="wp-block-library-inline-css">
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(img[class*=wp-image-]){height:auto;max-width:100%}
</style>
<style id="global-styles-inline-css">
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #7000f4;--wp--preset--color--secondary: #2184f9;--wp--preset--color--textonprimary: #fffffd;--wp--preset--color--button: #ffd800;--wp--preset--color--textonbutton: #010101;--wp--preset--color--accent: #de1414;--wp--preset--color--accenttwo: #00d084;--wp--preset--color--accentbg: #41474c;--wp--preset--color--lightbg: #f9fafb;--wp--preset--color--lighttag: #94fe5226;--wp--preset--color--lightsecondarytag: #b952fe26;--wp--preset--color--lightgrey: #6f8099;--wp--preset--color--price: #444444;--wp--preset--color--lightborder: #cecece6b;--wp--preset--color--inputtext: #444;--wp--preset--color--inputbg: #fafbfd;--wp--preset--color--dark: #000001;--wp--preset--color--textondark: #fffffe;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--gradient--diagonal-primary-to-secondary: linear-gradient(to bottom right,var(--wp--preset--color--primary) 0%,var(--wp--preset--color--secondary) 100%);--wp--preset--gradient--diagonal-secondary-to-primary: linear-gradient(to top right,var(--wp--preset--color--secondary) 0%,var(--wp--preset--color--primary) 100%);--wp--preset--gradient--diagonal-accent-to-button: linear-gradient(to top right,var(--wp--preset--color--accent) 0%,var(--wp--preset--color--button) 100%);--wp--preset--gradient--diagonal-button-to-accent: linear-gradient(to bottom right,var(--wp--preset--color--button) 0%,var(--wp--preset--color--accent) 100%);--wp--preset--gradient--diagonal-accenttwo-to-button: linear-gradient(to top right,var(--wp--preset--color--accenttwo) 0%,var(--wp--preset--color--button) 100%);--wp--preset--gradient--diagonal-button-to-accenttwo: linear-gradient(to bottom right,var(--wp--preset--color--button) 0%,var(--wp--preset--color--accenttwo) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 1rem;--wp--preset--font-size--medium: 1.2rem;--wp--preset--font-size--large: clamp(1.4rem, 2.45vw, 1.75rem);--wp--preset--font-size--x-large: clamp(1.75rem, 3vw, 2.2rem);--wp--preset--font-size--xxs: 11px;--wp--preset--font-size--xsmall: 0.85rem;--wp--preset--font-size--subheading: 1.3rem;--wp--preset--font-size--big: 1.45rem;--wp--preset--font-size--max-huge: clamp(2.3rem, 4vw, 2.75rem);--wp--preset--font-size--max-gigantic: clamp(2.8rem, 6vw, 3.25rem);--wp--preset--font-size--max-60: clamp(42px, 5vw, 60px);--wp--preset--font-family--system: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--wp--preset--font-family--primary: var(--blockpress-primary-fontfamily, var(--wp--preset--font-family--system));--wp--preset--font-family--secondary: var(--blockpress-secondary-fontfamily, var(--wp--preset--font-family--system));--wp--preset--font-family--tertiary: var(--blockpress-tertiary-fontfamily, var(--wp--preset--font-family--system));--wp--preset--font-family--source-serif-pro: "Source Serif Pro", serif;--wp--preset--font-family--monospace: monospace;--wp--custom--font-weight--normal: normal;--wp--custom--font-weight--bold: bold;--wp--custom--font-weight--black: 900;--wp--custom--line-height--one: 1;--wp--custom--line-height--small: 1.1;--wp--custom--line-height--normal: 1.4;--wp--custom--line-height--medium: 1.6;--wp--custom--line-height--large: 2;--wp--custom--line-height--x-large: 2.5;--wp--custom--color--black: #000;--wp--custom--color--white: #fff;--wp--custom--spacing--outer: min(5vw, 30px);--wp--custom--spacing--blockbottom: 31px;}body { margin: 0; }body{background-color: var(--wp--custom--color--white);color: var(--wp--custom--color--black);font-family: var(--wp--preset--font-family--system);font-size: var(--wp--preset--font-size--medium);font-weight: var(--wp--custom--font-weight--normal);line-height: var(--wp--custom--line-height--medium);--wp--style--block-gap: 1.5rem;}.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }.wp-site-blocks > * { margin-top: 0; margin-bottom: 0; }.wp-site-blocks > * + * { margin-top: var( --wp--style--block-gap ); }h1{font-size: var(--wp--preset--font-size--x-large);}h2{font-size: var(--wp--preset--font-size--large);}h3{font-size: var(--wp--preset--font-size--big);}h4{font-size: var(--wp--preset--font-size--medium);}h5{font-size: var(--wp--preset--font-size--small);}h6{font-size: var(--wp--preset--font-size--small);}a{color: var(--wp--custom--color--black);}.wp-block-button__link{background-color: var(--wp--preset--color--button);border-radius: 0;border-color: transparent;border-width: 1px;border-style: solid;color: var(--wp--preset--color--textonbutton);font-family: var(--wp--preset--font-family--tertiary);font-size: var(--wp--preset--font-size--small);font-weight: var(--wp--custom--font-weight--normal);padding-top: 10px;padding-right: 25px;padding-bottom: 10px;padding-left: 25px;}.wp-block-button__link a{text-decoration: none;}.wp-block-calendar{font-size: var(--wp--preset--font-size--small);margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-code > code{background-color: var(--wp--custom--color--black);border-radius: 0;border-color: var(--wp--custom--color--black);color: var(--wp--custom--color--white);font-family: var(--wp--preset--font-family--monospace);font-size: var(--wp--preset--font-size--small);margin-bottom: var(--wp--custom--spacing--blockbottom);padding-top: 25px;padding-right: 30px;padding-bottom: 25px;padding-left: 30px;}.wp-block-column{margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-columns{margin-bottom: 0;}.wp-block-cover{margin-top: 0;padding-top: 30px;padding-right: 30px;padding-bottom: 30px;padding-left: 30px;}.wp-block-embed{margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-gallery{margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-group{padding: 0px;}h1,h2,h3,h4,h5,h6{font-family: var(--wp--preset--font-family--primary);margin-top: 0px;margin-bottom: 10px;}.wp-block-image{margin-top: var( --wp--style--block-gap );margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-navigation{font-size: var(--wp--preset--font-size--small);line-height: var(--wp--custom--line-height--normal);}p{margin-top: 0px;margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-post-comments{margin-bottom: 20px;}.wp-block-post-title{font-size: var(--wp--preset--font-size--large);margin-bottom: 20px;}.wp-block-post-title a{text-decoration: none;}.wp-block-preformatted{background-color: var(--wp--custom--color--black);border-radius: 0;border-color: var(--wp--custom--color--black);color: var(--wp--custom--color--white);font-family: var(--wp--preset--font-family--monospace);font-size: var(--wp--preset--font-size--small);margin-bottom: var(--wp--custom--spacing--blockbottom);padding-top: 25px;padding-right: 30px;padding-bottom: 25px;padding-left: 30px;}.wp-block-pullquote{border-color: var(--wp--preset--color--accent);border-width: 1px;border-style: solid;color: var(--wp--preset--color--accent);font-size: var(--wp--preset--font-size--large);line-height: var(--wp--custom--line-height--medium);margin-top: var( --wp--style--block-gap );margin-bottom: var(--wp--custom--spacing--blockbottom);padding-top: 30px;padding-right: 30px;padding-bottom: 30px;padding-left: 30px;}.wp-block-pullquote a{color: var(--wp--preset--color--accent);}.wp-block-quote{border-color: var(--wp--custom--color--black);border-width: 1px;border-style: solid;font-size: var(--wp--preset--font-size--large);line-height: var(--wp--custom--line-height--medium);margin-top: var( --wp--style--block-gap );margin-bottom: 35px;padding-top: 30px;padding-right: 40px;padding-bottom: 30px;padding-left: 40px;}.wp-block-separator{color: var(--wp--preset--color--lightborder);font-size: var(--wp--preset--font-size--large);margin-top: var(--wp--custom--spacing--blockbottom);margin-bottom: var(--wp--custom--spacing--blockbottom);}.wp-block-site-tagline{font-size: var(--wp--preset--font-size--small);margin-bottom: 20px;}.wp-block-site-title{font-family: var(--wp--preset--font-family--secondary);font-size: 1.45rem;font-weight: var(--wp--custom--font-weight--bold);letter-spacing: 3px;line-height: var(--wp--custom--line-height--one);margin-bottom: 0;text-transform: uppercase;}.wp-block-site-title a{text-decoration: none;}.wp-block-template-part{margin-top: 0px;margin-bottom: 0px;}.wp-block-table > table{font-size: var(--wp--preset--font-size--small);line-height: var(--wp--custom--line-height--medium);margin-bottom: var(--wp--custom--spacing--blockbottom);}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-textonprimary-color{color: var(--wp--preset--color--textonprimary) !important;}.has-button-color{color: var(--wp--preset--color--button) !important;}.has-textonbutton-color{color: var(--wp--preset--color--textonbutton) !important;}.has-accent-color{color: var(--wp--preset--color--accent) !important;}.has-accenttwo-color{color: var(--wp--preset--color--accenttwo) !important;}.has-accentbg-color{color: var(--wp--preset--color--accentbg) !important;}.has-lightbg-color{color: var(--wp--preset--color--lightbg) !important;}.has-lighttag-color{color: var(--wp--preset--color--lighttag) !important;}.has-lightsecondarytag-color{color: var(--wp--preset--color--lightsecondarytag) !important;}.has-lightgrey-color{color: var(--wp--preset--color--lightgrey) !important;}.has-price-color{color: var(--wp--preset--color--price) !important;}.has-lightborder-color{color: var(--wp--preset--color--lightborder) !important;}.has-inputtext-color{color: var(--wp--preset--color--inputtext) !important;}.has-inputbg-color{color: var(--wp--preset--color--inputbg) !important;}.has-dark-color{color: var(--wp--preset--color--dark) !important;}.has-textondark-color{color: var(--wp--preset--color--textondark) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-textonprimary-background-color{background-color: var(--wp--preset--color--textonprimary) !important;}.has-button-background-color{background-color: var(--wp--preset--color--button) !important;}.has-textonbutton-background-color{background-color: var(--wp--preset--color--textonbutton) !important;}.has-accent-background-color{background-color: var(--wp--preset--color--accent) !important;}.has-accenttwo-background-color{background-color: var(--wp--preset--color--accenttwo) !important;}.has-accentbg-background-color{background-color: var(--wp--preset--color--accentbg) !important;}.has-lightbg-background-color{background-color: var(--wp--preset--color--lightbg) !important;}.has-lighttag-background-color{background-color: var(--wp--preset--color--lighttag) !important;}.has-lightsecondarytag-background-color{background-color: var(--wp--preset--color--lightsecondarytag) !important;}.has-lightgrey-background-color{background-color: var(--wp--preset--color--lightgrey) !important;}.has-price-background-color{background-color: var(--wp--preset--color--price) !important;}.has-lightborder-background-color{background-color: var(--wp--preset--color--lightborder) !important;}.has-inputtext-background-color{background-color: var(--wp--preset--color--inputtext) !important;}.has-inputbg-background-color{background-color: var(--wp--preset--color--inputbg) !important;}.has-dark-background-color{background-color: var(--wp--preset--color--dark) !important;}.has-textondark-background-color{background-color: var(--wp--preset--color--textondark) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-textonprimary-border-color{border-color: var(--wp--preset--color--textonprimary) !important;}.has-button-border-color{border-color: var(--wp--preset--color--button) !important;}.has-textonbutton-border-color{border-color: var(--wp--preset--color--textonbutton) !important;}.has-accent-border-color{border-color: var(--wp--preset--color--accent) !important;}.has-accenttwo-border-color{border-color: var(--wp--preset--color--accenttwo) !important;}.has-accentbg-border-color{border-color: var(--wp--preset--color--accentbg) !important;}.has-lightbg-border-color{border-color: var(--wp--preset--color--lightbg) !important;}.has-lighttag-border-color{border-color: var(--wp--preset--color--lighttag) !important;}.has-lightsecondarytag-border-color{border-color: var(--wp--preset--color--lightsecondarytag) !important;}.has-lightgrey-border-color{border-color: var(--wp--preset--color--lightgrey) !important;}.has-price-border-color{border-color: var(--wp--preset--color--price) !important;}.has-lightborder-border-color{border-color: var(--wp--preset--color--lightborder) !important;}.has-inputtext-border-color{border-color: var(--wp--preset--color--inputtext) !important;}.has-inputbg-border-color{border-color: var(--wp--preset--color--inputbg) !important;}.has-dark-border-color{border-color: var(--wp--preset--color--dark) !important;}.has-textondark-border-color{border-color: var(--wp--preset--color--textondark) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-diagonal-primary-to-secondary-gradient-background{background: var(--wp--preset--gradient--diagonal-primary-to-secondary) !important;}.has-diagonal-secondary-to-primary-gradient-background{background: var(--wp--preset--gradient--diagonal-secondary-to-primary) !important;}.has-diagonal-accent-to-button-gradient-background{background: var(--wp--preset--gradient--diagonal-accent-to-button) !important;}.has-diagonal-button-to-accent-gradient-background{background: var(--wp--preset--gradient--diagonal-button-to-accent) !important;}.has-diagonal-accenttwo-to-button-gradient-background{background: var(--wp--preset--gradient--diagonal-accenttwo-to-button) !important;}.has-diagonal-button-to-accenttwo-gradient-background{background: var(--wp--preset--gradient--diagonal-button-to-accenttwo) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-xxs-font-size{font-size: var(--wp--preset--font-size--xxs) !important;}.has-xsmall-font-size{font-size: var(--wp--preset--font-size--xsmall) !important;}.has-subheading-font-size{font-size: var(--wp--preset--font-size--subheading) !important;}.has-big-font-size{font-size: var(--wp--preset--font-size--big) !important;}.has-max-huge-font-size{font-size: var(--wp--preset--font-size--max-huge) !important;}.has-max-gigantic-font-size{font-size: var(--wp--preset--font-size--max-gigantic) !important;}.has-max-60-font-size{font-size: var(--wp--preset--font-size--max-60) !important;}.has-system-font-family{font-family: var(--wp--preset--font-family--system) !important;}.has-primary-font-family{font-family: var(--wp--preset--font-family--primary) !important;}.has-secondary-font-family{font-family: var(--wp--preset--font-family--secondary) !important;}.has-tertiary-font-family{font-family: var(--wp--preset--font-family--tertiary) !important;}.has-source-serif-pro-font-family{font-family: var(--wp--preset--font-family--source-serif-pro) !important;}.has-monospace-font-family{font-family: var(--wp--preset--font-family--monospace) !important;}
</style>
<style id="woocommerce-inline-inline-css">
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel="stylesheet" id="blockpress-style-css" href="./Custom Neon Sign – ws_files/style.min.css" media="all">
<link rel="stylesheet" id="blockpress_global-css" href="./Custom Neon Sign – ws_files/global.css" media="all">
<link rel="stylesheet" id="woocommerce-general-css" href="./Custom Neon Sign – ws_files/woocommerce.css" media="all">
<link rel="stylesheet" id="blockpress-quantity-css" href="./Custom Neon Sign – ws_files/style(2).css" media="all">
<link rel="stylesheet" id="blockpress-woo-single-css" href="./Custom Neon Sign – ws_files/woosingle.css" media="all">
<link rel="stylesheet" id="woocommerce-smallscreen-css" href="./Custom Neon Sign – ws_files/woocommerce-smallscreen.css" media="only screen and (max-width: 768px)">
<script src="./Custom Neon Sign – ws_files/jquery.min.js.download" id="jquery-core-js"></script>
<script src="./Custom Neon Sign – ws_files/jquery-migrate.min.js.download" id="jquery-migrate-js"></script>
<script src="./Custom Neon Sign – ws_files/jquery-ui.min.js.download" id="jquery-ui-js"></script>
<script src="./Custom Neon Sign – ws_files/jquery.ui.touch-punch.min.js.download" id="jquery_touch-js"></script>
<script src="./Custom Neon Sign – ws_files/bootstrap.min.js.download" id="bootstrap-ui-js"></script>
<script src="./Custom Neon Sign – ws_files/html2canvas.min.js.download" id="html2canvas_-js"></script>
<script src="./Custom Neon Sign – ws_files/lightbox.min.js.download" id="lightbox-js"></script>
<script id="custom_neon-js-extra">
var custom_neon_object = {"api":"http:\/\/wordpress.test\/wp-json\/v1\/","baseurl":"http:\/\/wordpress.test\/wp-json\/v1\/","baseurlajax":"http:\/\/wordpress.test\/wp-json\/v1\/"};
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- <script src="./Custom Neon Sign – ws_files/custom.js.download" id="custom_neon-js"></script> -->
<script src="./Custom Neon Sign – ws_files/custom.js" id="custom_neon-js"></script>
<script src="./Custom Neon Sign – ws_files/magicscroll.js.download" id="magicscroll-js"></script>
<link rel="https://api.w.org/" href="http://wordpress.test/wp-json/"><link rel="alternate" type="application/json" href="http://wordpress.test/wp-json/wp/v2/product/299"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://wordpress.test/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://wordpress.test/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.9.3">
<meta name="generator" content="WooCommerce 5.5.2">
<link rel="canonical" href="http://wordpress.test/product/custom-neon-sign/">
<link rel="shortlink" href="http://wordpress.test/?p=299">
<link rel="alternate" type="application/json+oembed" href="http://wordpress.test/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwordpress.test%2Fproduct%2Fcustom-neon-sign%2F">
<link rel="alternate" type="text/xml+oembed" href="http://wordpress.test/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwordpress.test%2Fproduct%2Fcustom-neon-sign%2F&format=xml">
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<style>#wpadminbar { display:none; }</style>
<style media="screen">
html { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
}
</style>
</head>
<body class="product-template-default single single-product postid-299 logged-in admin-bar wp-embed-responsive theme-blockpress woocommerce woocommerce-page woocommerce-js customize-support">
<div id="page">
<div id="header" role="banner">
<div id="headerimg">
<h1><a href="http://wordpress.test/">ws</a></h1>
<div class="description">Just another WordPress site</div>
</div>
</div>
<hr>
<script>
const api_path = 'http://wordpress.test/wp-json/v1/';
const plugin_path = 'http://wordpress.test/wp-content/plugins/custom_neon/';
const factor_type_1 = 1.02;
const factor_type_2 = 1.0608;
const factor_type_3 = 1.3608;
const back_board_size_factor = 1.5;
var open_box_wall_mount = 10;
var acrylic_stand_wall_mount = 10;
var CutToLetterWallMount = 10;
var water_res_mat_price = 39;
var wall_mounting_kitvar = 100;
var sign_hanging_kitvar = 40;
var lettersCount = 8;
var ConttonCandy_color_name = 'Cotton Candy';
var currencySmbl = '$';
var NotAvailableSizeIN = '';
var NotAvailableSizeCM = 'display:none';
var customImgDir = '';
var CURRENT_COUNTRY = 'USA';
var Default_text = "Your Text";
var Background_image = 2;
var savedFont = "";
var savedColor = "";
var savedAlignment = "";
var savedBackboard = "";
var savedBackboardColor = "";
var savedSize = "";
var savedRushOrder = "";
var black_board = 10;
var clear_board = 0;
var silver_board = 15;
var gold_board = 15;
var white_board = 10;
var mirror_board = 20;
var baseMethod = 'get_custom_static';
var modal_form = `[contact-form-7 id="157" title="contactform_neon"]`;
</script>
<style>
#contact_submit {
margin-top: 2em;
display: grid;
width: 100%;
font-size: 1.3em;
}
.modal-body {
position: relative;
padding: 20px;
margin-top: -1em;
}
.form-control {
margin-bottom: 10px !important;
}
.woocommerce-breadcrumb,
.product_tag-neon_sign,
#sidebar {
display: none;
}
</style>
<!-- Modal HTML Markup -->
<div id="ModalLoginForm" class="modal fade">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Contact
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span id="modalclosebutton" aria-hidden="true">X</span>
</button>
</h3>
</div>
<div class="modal-body">
[contact-form-7 id="157" title="contactform_neon"]
<!-- <div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div> -->
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!-- init end -->
<!--
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//style.css" rel="stylesheet" type="text/css">
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//custom.css" rel="stylesheet" type="text/css">
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//custompage.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://wordpress.test/wp-content/plugins/custom_neon//css//lightbox.min.css" type="text/css" media="screen" />
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/jquery-3.2.1.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/jquery-ui.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/bootstrap.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/html2canvas.min.js"></script>
<script type="text/javascript" src="http://wordpress.test/wp-content/plugins/custom_neon//js/lightbox.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/jquery.ui.touch-punch.min.js"></script>
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css/jquery-ui.min.css" rel="stylesheet" type="text/css">
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//color.css" rel="stylesheet" type="text/css">
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/custom.js?838"></script>
-->
<!--
<script type="text/javascript" src="http://wordpress.test/wp-content/plugins/custom_neon//js/multiline.js"></script>
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css/animatenew.css" rel="stylesheet" type="text/css">
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/moment.js"></script>
<link href="http://wordpress.test/wp-content/plugins/custom_neon//css//responses.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/platform.js"></script>
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/createneonscript_v1.min.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/mpDevbridgeAutocomplete.js"></script>
<script src="http://wordpress.test/wp-content/plugins/custom_neon//js/createneonsearch.min.js"></script>
-->
<div class="body_m">
<div class="clearfix"></div>
<div class="custom body_m">
<div class="container" style="padding-left: 0;">
<div class="text-center" style="position: relative;">
<div id="text" data-lineh="115%" style="padding: 10px 0px 50px; left: 15px; height: fit-content; white-space: nowrap; width: fit-content; clear: both; float: left; font-family: Neonscript; z-index: -1; line-height: 115%; position: absolute; margin: 0px; display: inline-block; font-size: 95px; color: rgb(234, 164, 255);">asdasd</div>
<div class="col-xs-12 top-logo" style="background:white;">
<section id="heading-section" class="rush-order-head" style="display:block">
<div class="DskOnly">
<h2>Rush Order Your Sign</h2>
<h3 class="rush-order">USA AND CANADA ONLY - TOP PRIORITY HAND-MADE IN L.A. AND EXPRESS-SHIPPED</h3>
</div>
<div class="MobOnly">
<h2 style="font-size: 54px;">Create Your Own</h2>
<h3 style="font-size: 18px; letter-spacing:0px;">YOUR OWN CREATION, HAND MADE FROM LIGHT</h3>
</div>
</section>
<section id="heading-section" class="standard-order-head" style="display:none">
<div class="DskOnly">
<h2>Create Your Own</h2>
<h3>YOUR OWN CREATION, HAND MADE FROM LIGHT</h3>
</div>
<div class="MobOnly">
<h2 style="font-size: 64px;">Create Your Own</h2>
<h3 style="font-size: 18px; letter-spacing:3px;">DESIGN YOUR LED NEON SIGN</h3>
</div>
</section>
</div>
<div class="col-md-4 col-md-3-5 form_wrapper" style="background:white;">
<div class="make_style_form">
<div>
<ul class="nav nav-tabs custom_tab">
<li class="active"><a onclick="swithchtap('text_input',this)">Text</a></li>
<li><a onclick="swithchtap('font_style',this)">Font</a></li>
<li><a onclick="swithchtap('color_style',this)">color</a></li>
</ul>
<div class="option_group_custom">
<div class="form-group text_input active">
<textarea class="form-control" rows="2" id="input_text" style="margin-bottom: 0;font-size:1.1em;" placeholder="ENTER TEXT HERE
Press Enter/Return for a new line" oninput="updateText();" onkeyup="saveValue(this);"></textarea>
<div class="col-xs-12 align_wrap disabled" style="display:none; margin-top: 10px; margin-bottom: 5px;">
<div data-id="1" class="col-xs-4 align_icon left_icon" onclick="aligntext('left',this);" style="width:32%" data-text-align="Left"></div>
<div data-id="2" class="col-xs-4 align_icon center_icon active" onclick="aligntext('center',this);" style="width:32%" data-text-align="Centered"></div>
<div data-id="3" class="col-xs-4 align_icon right_icon" onclick="aligntext('right',this);" style="width:32%" data-text-align="Right"></div>
</div>
<div class="rush-order-info" style="margin-top: 10px; margin-bottom: 5px; display: none;">
Custom made and delivered in 3-5 weeks<br>Need it in 2-3 Weeks? Click here for <u><a class="rush-order" href="javascript:void(0)">Rush Orders.</a></u>
</div>
<div class="standard-view-info" style="margin-top: 10px; margin-bottom: 5px;">
Rush orders are made and shipped quickly. The color range is slightly different. If you don’t need it in 2-3 weeks you can save by making a <u><a class="standard-order" href="javascript:void(0)">standard order.</a></u> </div>
</div>
<div class="clearfix"></div>
<div class="form-group font_style">
<label style="text-transform: uppercase;">
Choose font
</label>
<ul>
<li class="col-xs-3" style="font-family: Alexa; font-size:160%;" data-desk="80" data-mob="75" data-lineh="94%" data-font-lineh="80" data-font-id="10" data-nosize="" data-font="Alexa" onclick="setFont('Alexa',2,this);">
<p>Alexa</p>
</li>
<li class="col-xs-3" style="font-family: Bayview; font-size:200%;" data-desk="105" data-mob="90" data-font-id="11" data-lineh="90%" data-font-lineh="105" data-nosize="" data-font="Bayview" onclick="setFont('Bayview',1,this);">
<p>Bayview</p>
</li>
<li class="col-xs-3" style="font-family: Amsterdam;font-size:140%;position: relative; top: -4px" data-desk="88" data-font-id="12" data-mob="65" data-lineh="105%" data-font-lineh="97" data-nosize="" data-font="Amsterdam" onclick="setFont('Amsterdam',2,this);">
<p>Amsterdam</p>
</li>
<li class="col-xs-3" style="font-family: Greenworld;font-size:185%;position: relative; top: -2px" data-font-id="13" data-desk="100" data-mob="93" data-lineh="84%" data-font-lineh="90" data-nosize="" data-font="Greenworld" onclick="setFont('Greenworld',1,this);">
<p>Greenworld</p>
</li>
<li class="col-xs-3" style="font-family: NewCursive;font-size:160%" data-desk="100" data-mob="91" data-font-id="14" data-lineh="87%" data-font-lineh="90" data-nosize="" data-font="NewCursive" onclick="setFont('NewCursive',1,this);">
<p>NewCursive</p>
</li>
<li class="col-xs-3" style="font-family: Barcelona;font-size:100%;position: relative; top: -1px" data-desk="70" data-font-id="15" data-mob="55" data-lineh="150%" data-font-lineh="115.5" data-nosize="" data-font="Barcelona" onclick="setFont('Barcelona',1,this);">
<p>Barcelona</p>
</li>
<li class="col-xs-3" style="font-family: Vintage;font-size:130%;position: relative; top: -3px" data-desk="75" data-font-id="16" data-mob="72" data-lineh="110%" data-font-lineh="90" data-nosize="" data-font="Vintage" onclick="setFont('Vintage',1,this);">
<p>Vintage</p>
</li>
<li class="col-xs-3" style="font-family: Amanda;font-size:150%" data-desk="80" data-mob="73" data-lineh="125%" data-font-lineh="104" data-nosize="" data-font-id="17" data-font="Amanda" onclick="setFont('Amanda',1,this);">
<p>Amanda</p>
</li>
<li class="col-xs-3" style="font-family: Freespirit;font-size:85%" data-desk="47" data-mob="49" data-lineh="180%" data-font-lineh="90" data-font-id="18" data-nosize="" data-font="Freespirit" onclick="setFont('Freespirit',2,this);">
<p>Freespirit</p>
</li>
<li class="col-xs-3" style="font-family: Chelsea;font-size:200%" data-desk="110" data-mob="98" data-lineh="100%" data-font-lineh="110" data-font-id="19" data-nosize="" data-font="Chelsea" onclick="setFont('Chelsea',2,this);">
<p>Chelsea</p>
</li>
<li class="col-xs-3" style="font-family: Signature;font-size:180%;position: relative; top: -3px" data-lineh="95%" data-font-lineh="105" data-font-id="20" data-nosize="" data-font="Signature" data-desk="100" data-mob="85" onclick="setFont('Signature',1,this);">
<p>Signature</p>
</li>
<li class="col-xs-3" style="font-family: Austin;font-size:220%; position: relative; top: -4px" data-lineh="76%" data-font-lineh="103.5" data-font-id="21" data-nosize="" data-font="Austin" data-desk="115" data-mob="105" onclick="setFont('Austin',2,this);">
<p>Austin</p>
</li>
<li class="col-xs-3 active" style="font-family: Neonscript;font-size:170%" data-desk="95" data-mob="80" data-lineh="115%" data-font-lineh="114.5" data-font-id="22" data-nosize="" data-font="Neonscript" onclick="setFont('Neonscript',2,this);">
<p>Neonscript</p>
</li>
<li class="col-xs-3" style="font-family: Freehand;font-size:160%; position: relative; top: -1px" data-lineh="97%" data-font-lineh="108" data-font-id="23" data-nosize="" data-font="Freehand" data-desk="90" data-mob="85" onclick="setFont('Freehand',2,this);">
<p>Freehand</p>
</li>
<li class="col-xs-3" style="font-family: LoveNote;font-size:155%" data-desk="70" data-mob="66" data-lineh="100%" data-font-lineh="84" data-font-id="24" data-nosize="" data-font="LoveNote" onclick="setFont('LoveNote',1,this);">
<p>LoveNote</p>
</li>
<li class="col-xs-3" style="font-family: Northshore;font-size:150%;position: relative; top: 2px" data-desk="93" data-font-id="25" data-mob="83" data-lineh="115%" data-font-lineh="111.5" data-nosize="" data-font="Northshore" onclick="setFont('Northshore',2,this);">
<p>Northshore</p>
</li>
<li class="col-xs-3" style="font-family: Beachfront;font-size:130%;position: relative; top: -2px" data-desk="73" data-font-id="26" data-mob="65" data-lineh="120%" data-font-lineh="94.6" data-nosize="" data-font="Beachfront" onclick="setFont('Beachfront',0,this);">
<p>Beachfront</p>
</li>
<li class="col-xs-3" style="font-family: Royalty;font-size:140%;" data-desk="68" data-mob="56" data-lineh="130%" data-font-lineh="88.5" data-font-id="27" data-nosize="" data-font="Royalty" onclick="setFont('Royalty',2,this);">
<p>Royalty</p>
</li>
<li class="col-xs-3" style="font-family: Rocket;font-size:110%;" data-desk="50" data-mob="45" data-lineh="160%" data-font-lineh="85" data-nosize="" data-font-id="28" data-font="Rocket" onclick="setFont('Rocket',2,this);">
<p>Rocket</p>
</li>
<li class="col-xs-3" style="font-family: WildScript;font-size:180%;position: relative;" data-desk="105" data-mob="98" data-font-id="29" data-lineh="105%" data-font-lineh="115.5" data-nosize="" data-font="WildScript" onclick="setFont('WildScript',2,this);">
<p>WildScript</p>
</li>
<li class="col-xs-3" style="font-family: Avante;font-size:120%" data-desk="75" data-mob="61" data-lineh="97%" data-font-lineh="90" data-nosize="" data-font-id="30" data-font="Avante" onclick="setFont('Avante',0,this);">
<p>Avante</p>
</li>
<li class="col-xs-3" style="font-family: Monaco;" data-font-id="31" data-desk="70" data-mob="58" data-lineh="87%" data-font-lineh="84" data-nosize="" data-font="Monaco" onclick="setFont('Monaco',0,this);">
<p>Monaco</p>
</li>
<li class="col-xs-3" style="font-family: Waikiki;font-size:120%;" data-desk="70" data-mob="50" data-lineh="87%" data-font-lineh="84" data-font-id="32" data-nosize="" data-font="Waikiki" onclick="setFont('Waikiki',0,this);">
<p>Waikiki</p>
</li>
<li class="col-xs-3" style="font-family: ClassicType;" data-desk="65" data-mob="55" data-lineh="99%" data-font-lineh="78" data-nosize="" data-font-id="33" data-font="ClassicType" onclick="setFont('ClassicType',0,this);">
<p>ClassicType</p>
</li>
<li class="col-xs-3" style="font-family: Typewriter;font-size:100%;" data-desk="70" data-mob="58" data-lineh="92%" data-font-lineh="84" data-font-id="34" data-nosize="" data-font="Typewriter" onclick="setFont('Typewriter',0,this);">
<p>Typewriter</p>
</li>
<li class="col-xs-3" style="font-family: Buttercup;font-size:190%;" data-desk="120" data-mob="82" data-lineh="90%" data-font-lineh="114" data-font-id="35" data-nosize="" data-font="Buttercup" onclick="setFont('Buttercup',0,this);">
<p>Buttercup</p>
</li>
<li class="col-xs-3" style="font-family: Melbourne;font-size:110%;" data-desk="70" data-mob="62" data-lineh="100%" data-font-lineh="77" data-font-id="36" data-nosize="" data-font="Melbourne" onclick="setFont('Melbourne',0,this);">
<p>Melbourne</p>
</li>
<li class="col-xs-3" style="font-family: NeoTokyo;font-size:120%;" data-desk="73" data-mob="61" data-lineh="105%" data-font-lineh="87.5" data-font-id="37" data-nosize="" data-font="NeoTokyo" onclick="setFont('NeoTokyo',1,this);">
<p>NeoTokyo</p>
</li>
<li class="col-xs-3" style="font-family: Loveneon;font-size:100%; font-weight:600" data-desk="60" data-mob="54" data-font-id="38" data-lineh="95%" data-font-lineh="72" data-nosize="s,m" data-font="Loveneon" onclick="setFont('Loveneon',3,this);">
<p>Loveneon</p>
</li>
<li class="col-xs-3" style="font-family: Marquee;font-size:140%;" data-desk="85" data-mob="66" data-lineh="100%" data-font-lineh="102" data-font-id="39" data-nosize="s,m" data-font="Marquee" onclick="setFont('Marquee',3,this);">
<p>Marquee</p>
</li>
<li class="col-xs-3" style="font-family: Mayfair;font-size:160%;position: relative; top: 1px;" data-lineh="95%" data-font-lineh="83.5" data-font-id="40" data-nosize="s,m" data-font="Mayfair" data-desk="76" data-mob="66" onclick="setFont('Mayfair',3,this);">
<p>Mayfair</p>
</li>
<li class="col-xs-3" style="font-family: NeonGlow;" data-desk="75" data-mob="60" data-lineh="100%" data-font-lineh="90" data-nosize="s,m" data-font-id="41" data-font="NeonGlow" onclick="setFont('NeonGlow',3,this);">
<p>NeonGlow</p>
</li>
<li class="col-xs-3" style="font-family: NeonLite;" data-desk="62" data-mob="58" data-lineh="95%" data-font-lineh="74.5" data-nosize="" data-font-id="42" data-font="NeonLite" onclick="setFont('NeonLite',1,this);">
<p>NeonLite</p>
</li>
<li class="col-xs-3" style="font-family: Neontrace;font-size:95%" data-desk="62" data-mob="50" data-lineh="100%" data-font-lineh="87" data-font-id="43" data-nosize="s,m" data-font="Neontrace" onclick="setFont('Neontrace',2,this);">
<p>Neontrace</p>
</li>
<li class="col-xs-3" style="font-family: Nevada; font-size:180%; font-weight:600" data-desk="100" data-mob="88" data-font-id="44" data-lineh="93%" data-font-lineh="90" data-nosize="s,m" data-font="Nevada" onclick="setFont('Nevada',3,this);">
<p>Nevada</p>
</li>
<li class="col-xs-3" style="font-family: SciFi;font-size:130%;position: relative; top: -3px;" data-lineh="108%" data-font-lineh="60" data-font-id="45" data-nosize="s,m" data-font="SciFi" data-desk="50" data-mob="45" onclick="setFont('SciFi',3,this);">
<p>SciFi</p>
</li>
</ul>
</div>
<div class="form-group color_style ddd-test">
<label style="text-transform: uppercase;">
Choose color </label>
<ul id="color_table"><li class="col-xs-2 rush-order" onclick="setRushColor('#fffdcf', this);"><p data-toggle="tooltip" title="Warm white is a very popular natural-feeling white. The tube is white when off." data-placement="top" data-color-id="10" data-color-title="Warm White" data-color="#fffdcf" data-color-off="#f4f4f4" style="color: rgb(255, 253, 207); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Warm White</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#e1e3e6', this);"><p data-toggle="tooltip" title="White is a cooler, brighter white. The tube is white when off." data-placement="top" data-color-id="20" data-color-title="White" data-color="#e1e3e6" data-color-off="#f4f4f4" style="color: rgb(225, 227, 230); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">White</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#fff97c', this);"><p data-toggle="tooltip" title="Lemon Yellow is a very bright, eye-catching yellow. The tube is yellow when off." data-placement="top" data-color-id="30" data-color-title="Lemon Yellow" data-color="#fff97c" data-color-off="#fff97c" style="color: rgb(255, 249, 124); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Lemon Yellow</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#ffd62e', this);"><p data-toggle="tooltip" title="Golden Yellow is a bold, rich yellow. The tube is yellow when off." data-placement="top" data-color-id="40" data-color-title="Golden Yellow" data-color="#ffd62e" data-color-off="#ffd62e" style="color: rgb(255, 214, 46); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Golden Yellow</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#ff8d02', this);"><p data-toggle="tooltip" title="A bright, eye-catching orange. The tube is orange when off." data-placement="top" data-color-id="50" data-color-title="Orange" data-color="#ff8d02" data-color-off="#ff8d02" style="color: rgb(255, 141, 2); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Orange</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#ff2a4d', this);"><p data-toggle="tooltip" title="A gorgeous 'Candy Apple' red. The tube is red when off." data-placement="top" data-color-id="70" data-color-title="Red" data-color="#ff2a4d" data-color-off="#ff2a4d" style="color: rgb(255, 42, 77); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Red</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#ff90ff', this);"><p data-toggle="tooltip" title="Bright, eye-catching neon Pink remains an extremely popular choice. The tube is pink when off." data-placement="top" data-color-id="190" data-color-title="Pink" data-color="#ff90ff" data-color-off="#ff90ff" style="color: rgb(255, 144, 255); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Pink</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#eaa4ff', this);"><p data-toggle="tooltip" title="Soft and pink as Cotton Candy. The tube is light pink when off." data-placement="top" data-color-id="80" data-color-title="Cotton Candy" data-color="#eaa4ff" data-color-off="#eaa4ff" style="color: rgb(234, 164, 255); text-shadow: rgb(255, 255, 255) 0px 0px 2px, rgb(255, 255, 255) 0px 0px 4px, rgb(234, 164, 255) 0px 0px 8px, rgb(234, 164, 255) 0px 0px 12px, rgb(234, 164, 255) 0px 0px 16px, rgb(234, 164, 255) 0px 0px 22px, rgb(234, 164, 255) 0px 0px 30px;" class="fa fa-lightbulb-o active"></p><p class="color_name" style="text-shadow: none;">Cotton Candy</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#8c59ff', this);"><p data-toggle="tooltip" title="A popular stylish purple. The tube is white when off." data-placement="top" data-color-id="110" data-color-title="Purple" data-color="#8c59ff" data-color-off="#f4f4f4" style="color: rgb(140, 89, 255); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Purple</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#0274fc', this);"><p data-toggle="tooltip" title="A bold, darker blue. The tube is Blue when off" data-placement="top" data-color-id="120" data-color-title="Deep Blue" data-color="#0274fc" data-color-off="#0274fc" style="color: rgb(2, 116, 252); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Deep Blue</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#90dcff', this);"><p data-toggle="tooltip" title="A very bright, eye-catching blue. The tube is white when off." data-placement="top" data-color-id="150" data-color-title="Ice Blue" data-color="#90dcff" data-color-off="#f4f4f4" style="color: rgb(144, 220, 255); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Ice Blue</p></li><li class="col-xs-2 rush-order" onclick="setRushColor('#85ffaa', this);"><p data-toggle="tooltip" title="A great-looking, very bright green. The tube is white when off." data-placement="top" data-color-id="170" data-color-title="Green" data-color="#85ffaa" data-color-off="#f4f4f4" style="color: rgb(133, 255, 170); text-shadow: none;" class="fa fa-lightbulb-o"></p><p class="color_name" style="text-shadow: none;">Green</p></li></ul>
<div class="color_topper"></div>
<div class="color_desc">
<span class="cdesc">Soft and pink as Cotton Candy. The tube is light pink when off.</span>
<span class="cimg" style="background-image: url("images/colors/cottoncandy.jpg");"></span>
<span class="cmore"><b>More Photos:</b> <a href="http://wordpress.test/product/custom-neon-sign/images/photos/cottoncandy.jpg" data-lightbox="cottoncandy">Photos of Cotton Candy</a></span>
</div>
</div>
</div>
</div>
<div class="col-xs-12 demo_box_full visible-xs visible-sm" style="overflow: hidden;padding: 0;">
<div class="slidecontainer">
<div class="col-xs-2">
<label><i class="fa fa-minus"></i></label>
</div>
<div class="col-xs-8">
<input type="range" min="50" max="120" value="85" class="slider" id="myRange" oninput="setSize(this)">
</div>
<div class="col-xs-2">
<label><i class="fa fa-plus"></i></label>
</div>
</div>
<div class="demo_text" style="background-image: url("http://wordpress.test/wp-content/uploads/2022/04/background5.jpg");">
<div class="text_show draggable ui-draggable ui-draggable-handle" style="top: 16%; font-family: Neonscript; font-variant-ligatures: no-common-ligatures; font-size: 4rem !important; white-space: nowrap; text-shadow: rgb(255, 255, 255) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px, rgb(234, 164, 255) 0px 0px 20px, rgb(234, 164, 255) 0px 0px 30px, rgb(234, 164, 255) 0px 0px 40px, rgb(234, 164, 255) 0px 0px 55px, rgb(234, 164, 255) 0px 0px 75px;">asdasd</div>
<a class="demo_on_off offswitch standard" onclick="changeAppearance('demo_box_full');" style="display:none"></a>
<a class="demo_on_off offswitch rush" onclick="rush_changeAppearance('demo_box_full');" style="display:block"></a>
<div class="MagicScroll" data-options="height: 100; mode: cover-flow; draggable: true;" style="width:100%; float:left"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg" src="./Custom Neon Sign – ws_files/background6-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg" src="./Custom Neon Sign – ws_files/background5-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg" src="./Custom Neon Sign – ws_files/background4-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg" src="./Custom Neon Sign – ws_files/background6-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg" src="./Custom Neon Sign – ws_files/background5-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg" src="./Custom Neon Sign – ws_files/background4-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background6-1.jpg" src="./Custom Neon Sign – ws_files/background6-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background5-1.jpg" src="./Custom Neon Sign – ws_files/background5-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a><a onclick="setBG('http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg');" data-id="6">
<img srcset="http://wordpress.test/wp-content/uploads/2021/08/background4-1.jpg" src="./Custom Neon Sign – ws_files/background4-1.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px">
</a></div>
</div>
<div class="color_desccolor_desc">
<span class="cmore" style="font-size:0.8em; color: white;">Digital mockup, colors may appear different in real life. <u><a href="http://wordpress.test/wp-content/plugins/custom_neon//images/photos/goldenyellow.jpg" data-lightbox="goldenyellow" style="color: white;"></a></u> signs.</span>
</div>
</div>
<div style="background: transparent;">
<div class="form-group size_style">
<label class="option-label">
Select Your Options
</label>
<ul id="size_table">
<div class="size-box active" data-size-id="1" data-size="s">
<div class="col-xs-5 s_price withprice">
<div><strong>Small</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>Small</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 10-25cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 4"-10"</div>
<div>Length: 19"-23"</div>
</div>
<div class="clearfix"></div>
</div>
<div class="size-box" data-size-id="2" data-size="m">
<div class="col-xs-5 s_price withprice">
<div><strong>Medium</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>Medium</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 20-38cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 8"-15"</div>
<div>Length: 23"-28"</div>
</div>
<div class="clearfix"></div>
</div>
<div class="size-box" data-size-id="3" data-size="l">
<div class="col-xs-5 s_price withprice">
<div><strong>Large</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>Large</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 25-50cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 10"-20"</div>
<div>Length: 28"-37"</div>
</div>
<div class="clearfix"></div>
</div>
<div class="size-box" data-size-id="4" data-size="xl">
<div class="col-xs-5 s_price withprice">
<div><strong>X large</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>Xlarge</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 30-65cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 12"-24"</div>
<div>Length: 37"-44"</div>
</div>
<div class="clearfix"></div>
</div>
<div class="size-box" data-size-id="5" data-size="xxl">
<div class="col-xs-5 s_price withprice">
<div><strong>XX large</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>XXlarge</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 25-50cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 10"-20"</div>
<div>Length: 28"-37"</div>
</div>
<div class="clearfix"></div>
</div>
<div class="size-box" data-size-id="6" data-size="su">
<div class="col-xs-5 s_price withprice">
<div><strong>Supersized</strong></div>
<div>$ </div>
</div>
<div class="col-xs-12 s_price noprice" style="display:none;">
<div><strong>Supersized</strong></div>
<div><strong>Not available for this font</strong></div>
</div>
<div class="col-xs-7 s_size" style="display:none">
<div>Height: 30-65cm</div>
<div>Length: 10-25cm</div>
</div>
<div class="col-xs-7 s_size2" style="">
<div>Height: 12"-24"</div>
<div>Length: 37"-44"</div>
</div>
<div class="clearfix"></div>
</div>
</ul>
</div>
<div class="size-notice warning-msg" style="display: none;">
<label>
Signs over 94" long will be made on two backboards that can be easily arranged together.
</label>
</div>
<div class="size-notice-lenght warning-msg" style="display: none;">
<label>
Signs over 94" long will be made on two backboards that can be easily arranged together.
</label>
</div>
<div class="size-notice-height warning-msg" style="display: none;">
<label>
Signs over 94" long will be made on two backboards that can be easily arranged together.
</label>
</div>
<label class="size_note">*The Height shown is a range. Sizes vary depending on choice of font style, and whether the text includes upper & lower case. </label>
<br>
<!-- <div class="form-group main_radio">
<div class="col-xs-6">
<div class="custom-control custom-radio left selected">
<input type="radio" id="customRadio1" name="customRadio" class="custom-control-input active" value="Indoor" checked="checked" onchange="up_total_price()">
<label class="custom-control-label active" for="customRadio1">Indoor</label>
</div>
</div>
<div class="col-xs-6">
<div class="custom-control custom-radio right ">
<input type="radio" id="customRadio2" name="customRadio" class="custom-control-input" value="Water Resistant" " onchange=" up_total_price()">
<label class="custom-control-label" for="customRadio2">Water Resistant* <span class="radio_span">+ $39 </span></label>
</div>
</div>
<div class="col-xs-12">
<outdoor class="sign_note">
<p>*Please note: The sign will be treated with a clear seal that will splash-proof it. Custom Neon is developing a range of wet-weather signs, please check back soon or <a href="../contact/" class="rush-order">contact our team</a> </p>
</outdoor>
</div>
</div> -->
<br>
<div class="form-group plug_style" style="display: none;">
<label class="col-xs-4"><span style="font-size:80%">Power Adapter</span></label>
<div class="dropdown col-xs-8">
<div class="btn btn-default dropdown-toggle " id="dropdownMenuButtonPlug" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<h4 id="ele_plug" data-id="1">USA / CANADA 120V</h4>
<i class="fa fa-caret-down"></i>
</div>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButtonPlug" style="width: 100%;text-align: left">
<li class="dropdown-item">
<a class="plug-box" data-id="2">UK / IRELAND 230V</a>
</li>
<li class="dropdown-item">
<a class="plug-box" data-id="4">EUROPE 230V</a>
</li>
<li class="dropdown-item">
<a class="plug-box" data-id="1">USA / CANADA 120V</a>
</li>
<li class="dropdown-item">
<a class="plug-box" data-id="3">AUSTRALIA / NZ 230V</a>
</li>
<li class="dropdown-item">
<a class="plug-box" data-id="5">JAPAN 100V</a>
</li>
<li class="dropdown-item">
<a class="plug-box" data-id="6">OTHER: Ask at Checkout</a>
</li>
</div>
</div>
</div>
<br><br>
<div class="form-group board_style">
<label class="option-label" style="text-transform: uppercase;">
Select your back board:
</label>
<div class="dropdown dropdown-design">
<div class="btn btn-default dropdown-toggle" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img id="board_img" src="./Custom Neon Sign – ws_files/1.png" data-board-type="1" data-des="Cut Around Acrylic" style="width: 100%;">
<i class="fa fa-caret-down" style="font-size: 1.5rem"></i>
<h4 id="board_price">FREE</h4>
</div>
<div class="dropdown-menu dropdown-toggle-design" aria-labelledby="dropdownMenuButton" style="width: 100%;text-align: center">
<li class="dropdown-item">
<a class="board-box" data-type="1" data-s="0" data-m="0" data-l="0" data-xl="0" data-xxl="0" data-su="0">
<div class="col-xs-8 text-left">Cut Around Acrylic</div>
<div class="col-xs-4 text-right">FREE</div>
</a>
</li>
<li class="dropdown-item">
<a class="board-box" data-type="2" data-s="0" data-m="0" data-l="0" data-xl="0" data-xxl="0" data-su="0">
<div class="col-xs-8 text-left">Rectangle Acrylic</div>
<div class="col-xs-4 text-right">FREE</div>
</a>
</li>
<li class="dropdown-item">
<a class="board-box" data-type="3" data-option="CutToLetterWallMount" data-s="1500" data-m="2300" data-l="3400" data-xl="8900" data-xxl="7600" data-su="11400" data-lx="5100">
<div class="col-xs-8 text-left">Cut To Letter</div>
<div class="col-xs-4 text-right">+15</div>
</a>
</li>
<!-- <li class="dropdown-item">
<a class="board-box" data-type="4" data-option='acrylic_stand_wall_mount' data-s=5000 data-m=7900 data-l=9500 data-xl=12500 data-xxl=14500 data-su=16500>
<div class="col-xs-8 text-left">Acrylic Stand: Free-Standing</div>
<div class="col-xs-4 text-right">+10</div>
</a>
</li>
<li class="dropdown-item">
<a class="board-box" data-type="6" data-option='open_box_wall_mount' data-s=11000 data-m=17500 data-l=24900 data-xl=29900 data-xxl=33900 data-su=37900>
<div class="col-xs-8 text-left">Open Box: Wall-mount</div>
<div class="col-xs-4 text-right">+10</div>
</a>
</li> -->
</div>
</div>
</div>
<label style="color: rgb(227, 6, 43);font-size: 0.75em;line-height: 0.75em;display: none;" id="board_5">Please note that 'Clear Acrylic Box' in size Large or XL may incur a surcharge and is not available at some sizes.</label>
<div class="col-xs-12 tot_price_sec">
<div class="custom-control custom-checkbox">
<label class="custom-control-label" for="check-1">
Special offer: <a href="http://wordpress.test/buyremotedimmer/" style="text-decoration:underline">Remote and Dimmer</a> Free
<input type="checkbox" class="custom-control-input" id="check-1" name="board_5" checked="" value="0">
<span class="checkmark"></span>
</label>
</div>
<div class="custom-control custom-checkbox">
<label class="custom-control-label" for="check-2">
<a style="text-decoration:underline">Wall Mounting</a> Kit $100 <input type="checkbox" class="custom-control-input custom-input-checkbox" id="check-2" name="board_5" value="Wall Mounting Kit" onchange="up_total_price()">
<span class="checkmark"></span>
</label>
</div>
<div class="custom-control custom-checkbox">
<label class="custom-control-label" for="check-3">
<a style="text-decoration:underline">Sign Hanging</a> Kit $40 <input type="checkbox" class="custom-control-input custom-input-checkbox" id="check-3" name="board_5" value="Sign Hanging Kit" onchange="up_total_price()">
<span class="checkmark"></span>
</label>
</div>
<div class="custom-control custom-checkbox custom-option" style="display:none">
<div>Do you require a Design Proof before production?</div>
<div class="info-light">Please pick one:</div>
<div class="col-xs-5" style="width:40%">
<label class="custom-control-label" for="radio-1">No
<input type="radio" class="custom-control-input custom-input-checkbox" id="radio-1" name="designproof" value="No" checked="">
<span class="checkmark"></span>
</label>
<small style="font-size:12px; line-height:16px;position:">Put my sign straight in to production </small>
</div>
<div class="col-xs-7" style="width:60%">
<label class="custom-control-label" for="radio-2"><span style="position:relative; left:-6px;">Yes</span>
<input type="radio" class="custom-control-input custom-input-checkbox" id="radio-2" name="designproof" value="Yes">
<span class="checkmark"></span>
</label>
<small style="font-size:12px; line-height:16px; min-width:70%">I'd like a design proof to approve before my sign is made. Will add 1 to 3 days to the turnaround.</small>
</div>
</div>
<div class="clearfix"></div>
<br>
<div class="total-section">
Total with selected options: <span class="total_sel_price">$NaN</span>
</div>
</div>
<div class="clearfix"></div><br>
<style>
button.addtocart {
display: inline-block;
border: 0.1em solid #000;
padding: 4px 0 4px 0;
text-decoration: none;
font-weight: 300;
font-size: 120%;
color: #FFF;
text-align: center;
transition: all 0.5s;
background-color: #000;
width: 100%;
letter-spacing: 3px;
}
button.addtocart:hover {
color: #FFF;
background-color: #ff6df9;
}
@media all and (max-width:30em) {
button.addtocart {
display: block;
margin: 0.4em auto;
}
}
</style>
<div class="col-xs-12">
<button class="addtocart rush" onclick="confirm_design(1); " id="add_to_cart" style="display:block">ADD TO CART</button>
<button class="addtocart standard" onclick="confirm_design(0); " id="add_to_cart" style="display:none">ADD TO CART</button>
</div>
<div class="MobOnly">
<br><br>
<div class="two_btn">
<div class="row">
<div class="col-xs-6 col-sm-6">
<button class="btn btn-need" data-toggle="modal" data-target="#ModalLoginForm" onclick="getQuote();" style="padding:15px 10px;font-size:15px">I need Help <br> Get a Quote</button>
</div>
<div class="col-xs-6 col-sm-6">
<a> <button data-toggle="modal" data-target="#ModalLoginForm" onclick="getQuote();" class="btn btn-upload" style="padding:15px 10px;font-size:15px">Upload an image<br> or Logo</button> </a>
</div>
</div>
</div>
<!-- <div class="save-design" id="dd-btn-save-design">
<img src="http://wordpress.test/wp-content/plugins/custom_neon//images/saveicon.png" /><span>Save my Design</span>
</div> -->
<div class="save-design-wrapper" style="display: none;">
<p>To save your design, copy and paste this url into your browser, or save it in a file. You can also copy and paste it into an email, DM or text. Clicking on the link will recreate your design.</p>
<textarea readonly="" id="save-design-url-mob" class="dd-save-design-url" rows="2" cols="100"></textarea>
<div class="dd-tooltip">
<button class="click-save-button" type="button" onclick="clickToCopyMob();" onmouseout="outClickToCopy()">
<span class="tooltiptext" id="clicksaveTooltip">Copy to clipboard</span>Click to Copy</button>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="col-md-8 col-md-8-5 visible-lg demo_box_side visible-md" style="overflow: hidden;padding: 0;">
<div class="slidecontainer">
<div class="col-xs-2">
<label><i class="fa fa-minus"></i></label>
</div>
<div class="col-xs-8">
<input type="range" min="70" max="150" value="110" class="slider" id="myRange" oninput="setSize(this)">
</div>
<div class="col-xs-2">
<label><i class="fa fa-plus"></i></label>
</div>
</div>
<div class="demo_text" style="background-image: url("http://wordpress.test/wp-content/uploads/2022/04/background5.jpg");">
<div class="text_show draggable ui-draggable ui-draggable-handle" style="top: 17%; font-family: Neonscript; font-variant-ligatures: no-common-ligatures; font-size: 95px; white-space: nowrap; line-height: 115%; text-shadow: rgb(255, 255, 255) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px, rgb(234, 164, 255) 0px 0px 20px, rgb(234, 164, 255) 0px 0px 30px, rgb(234, 164, 255) 0px 0px 40px, rgb(234, 164, 255) 0px 0px 55px, rgb(234, 164, 255) 0px 0px 75px;">asdasd</div>
<a class="demo_on_off offswitch standard" onclick="changeAppearance('demo_box_side');" style="display:none"></a>
<a class="demo_on_off offswitch rush" onclick="rush_changeAppearance('demo_box_side');" style="display:block"></a>
<div class="MagicScroll MagicScroll-horizontal" data-options="height: 146; mode: carousel; draggable: true;" style="width: 100%; float: left; visibility: visible; display: inline-block; height: 146px; overflow: visible;" data-mode="carousel" id="MagicScroll-930522647638"><div class="mcs-loader" style="visibility: hidden; opacity: 0; display: none;"><div class="mcs-loader-circles"><div class="mcs-loader-circle mcs-loader-circle_01"></div><div class="mcs-loader-circle mcs-loader-circle_02"></div><div class="mcs-loader-circle mcs-loader-circle_03"></div><div class="mcs-loader-circle mcs-loader-circle_04"></div><div class="mcs-loader-circle mcs-loader-circle_05"></div><div class="mcs-loader-circle mcs-loader-circle_06"></div><div class="mcs-loader-circle mcs-loader-circle_07"></div><div class="mcs-loader-circle mcs-loader-circle_08"></div></div></div><div class="mcs-wrapper" style="display: inline-block;"><div class="mcs-items-container" style="white-space: nowrap; transform: translate3d(0px, 0px, 0px);"><div class="mcs-item" data-item="0" style="width: 11.5858%; position: absolute; transform: translateX(381.5px) translateY(0px) translateZ(0px) rotateX(0deg) rotateY(0deg); z-index: 100; opacity: 1;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item" data-item="1" style="width: 11.5858%; position: absolute; transform: translateX(557.007px) translateY(0px) translateZ(-37.3051px) rotateX(0deg) rotateY(24deg); z-index: 91; opacity: 1;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item mcs-noimg" data-item="2" style="width: 11.5858%; position: absolute; transform: translateX(702.167px) translateY(0px) translateZ(-142.77px) rotateX(0deg) rotateY(48deg); z-index: 81; opacity: 1;"></div><div class="mcs-item mcs-noimg" data-item="3" style="width: 11.5858%; position: absolute; transform: translateX(791.881px) translateY(0px) translateZ(-298.159px) rotateX(0deg) rotateY(72deg); z-index: 72; opacity: 1;"></div><div class="mcs-item mcs-noimg" data-item="4" style="width: 11.5858%; position: absolute; transform: translateX(810.636px) translateY(0px) translateZ(-476.604px) rotateX(0deg) rotateY(96deg); z-index: 63; opacity: 0.62683;"></div><div class="mcs-item" data-item="5" style="width: 11.5858%; position: absolute; transform: translateX(755.19px) translateY(0px) translateZ(-647.25px) rotateX(0deg) rotateY(120deg); z-index: 53; opacity: 0.35;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item" data-item="6" style="width: 11.5858%; position: absolute; transform: translateX(635.129px) translateY(0px) translateZ(-780.591px) rotateX(0deg) rotateY(144deg); z-index: 44; opacity: 0.133688;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item mcs-noimg" data-item="7" style="width: 11.5858%; position: absolute; transform: translateX(471.214px) translateY(0px) translateZ(-853.571px) rotateX(0deg) rotateY(168deg); z-index: 35; opacity: 0.0152967;"></div><div class="mcs-item mcs-noimg" data-item="8" style="width: 11.5858%; position: absolute; transform: translateX(291.786px) translateY(0px) translateZ(-853.571px) rotateX(0deg) rotateY(192deg); z-index: 35; opacity: 0.0152967;"></div><div class="mcs-item mcs-noimg" data-item="9" style="width: 11.5858%; position: absolute; transform: translateX(127.871px) translateY(0px) translateZ(-780.591px) rotateX(0deg) rotateY(216deg); z-index: 44; opacity: 0.133688;"></div><div class="mcs-item" data-item="10" style="width: 11.5858%; position: absolute; transform: translateX(7.81004px) translateY(0px) translateZ(-647.25px) rotateX(0deg) rotateY(240deg); z-index: 53; opacity: 0.35;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background5.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background5.jpg" src="./Custom Neon Sign – ws_files/background5.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item" data-item="11" style="width: 11.5858%; position: absolute; transform: translateX(-47.6362px) translateY(0px) translateZ(-476.604px) rotateX(0deg) rotateY(264deg); z-index: 63; opacity: 0.62683;"><a onclick="setBG('http://wordpress.test/wp-content/uploads/2022/04/background3.jpg');" data-id="6" style="opacity: 1; visibility: visible;"><img srcset="http://wordpress.test/wp-content/uploads/2022/04/background3.jpg" src="./Custom Neon Sign – ws_files/background3.jpg" alt="see your LED neon sign on a pub/bar background @customneon" width="100px" height="80px" style="z-index: 100;"><canvas width="100" height="30" class="mcs-reflection" style="opacity: 1; top: 123px; left: 0px; width: 100px; transition: opacity 1000ms ease 0s;"></canvas></a></div><div class="mcs-item mcs-noimg" data-item="12" style="width: 11.5858%; position: absolute; transform: translateX(-28.8809px) translateY(0px) translateZ(-298.159px) rotateX(0deg) rotateY(288deg); z-index: 72; opacity: 1;"></div><div class="mcs-item mcs-noimg" data-item="13" style="width: 11.5858%; position: absolute; transform: translateX(60.833px) translateY(0px) translateZ(-142.77px) rotateX(0deg) rotateY(312deg); z-index: 81; opacity: 1;"></div><div class="mcs-item mcs-noimg" data-item="14" style="width: 11.5858%; position: absolute; transform: translateX(205.993px) translateY(0px) translateZ(-37.3051px) rotateX(0deg) rotateY(336deg); z-index: 91; opacity: 1;"></div></div></div></div>
<span id="text_mesure" style="border:1px solid blue;color:white;"></span>
</div>
<div class="color_desc">
<span class="cmore" style="font-size:1.2em;padding:4px 0 4px 0">Digital mockup only; colors may appear differently in real life. See <u><a href="http://wordpress.test/product/custom-neon-sign/images/photos/cottoncandy.jpg" data-lightbox="cottoncandy">Photos of Cotton Candy</a></u> signs. </span>
</div>
<div class="two_btn">
<div class="row">
<div class="col-md-6">
<button class="btn btn-need" data-toggle="modal" data-target="#ModalLoginForm" onclick="getQuote();">I need Help - Get a Quote</button>
</div>
<div class="col-md-6">
<a data-toggle="modal" data-target="#ModalLoginForm" href="https://customneon.com/business-signs-logo/"> <button class="btn btn-upload">Upload an image or Logo </button> </a>
</div>
</div>
</div>
<!-- <div class="save-design" id="dd-btn-save-design">
<img src=",/images/saveicon.png" /><span>Save my Design</span>
</div> -->
<div class="save-design-wrapper" style="display: none;">
<p>To save your design, copy and paste this url into your browser, or save it in a file. You can also copy and paste it into an email, DM or text. Clicking on the link will recreate your design.</p>
<textarea readonly="" id="save-design-url" class="dd-save-design-url" rows="2" cols="100"></textarea>
<div class="dd-tooltip">
<button class="click-save-button" type="button" onclick="clickToCopy();" onmouseout="outClickToCopy()">
<span class="tooltiptext" id="clicksaveTooltip">Copy to clipboard</span>Click to Copy</button>
</div>
</div>
<style>
button.click-save-button {
padding: 5px 30px;
border-radius: 10px;
font-family: 'Brandon_bld';
font-size: 100%%;
display: inline-block;
border: 0.1em solid #000;
text-decoration: none;
font-weight: 300;
text-align: center;
transition: all 0.5s;
width: 100%;
letter-spacing: 3px;
background: #000;
color: #fff;
text-transform: uppercase;
}
button.click-save-button:hover {
color: #FFF;
background-color: #ff6df9;
}
.save-design {
display: inline-block;
font-size: 20px;
color: #000;
font-family: 'Brandon_reg';
line-height: 24px;
cursor: pointer;
}
.save-design img {
margin-right: 10px;
}
.save-design-wrapper .dd-tooltip {
position: relative;
display: inline-block;
}
.save-design-wrapper .dd-tooltip .tooltiptext {
visibility: hidden;
width: 140px;
background-color: #555;
color: #fff;
font-size: 12px;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 150%;
left: 50%;
margin-left: -75px;
opacity: 0;
transition: opacity 0.3s;
}
.save-design-wrapper .dd-tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.save-design-wrapper .dd-tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
</div>
</div>
</div>
</div>
</div>
<style>
/* modal monologue */
/*
|--------------------------------------------------------------------------
| Monolog
|--------------------------------------------------------------------------
*/
.monolog {
display: table;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: whitesmoke;
z-index: 999999999999990;