forked from rehaanahmad2013/LoopAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_before.txt
5448 lines (5387 loc) · 490 KB
/
html_before.txt
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>
<html lang="en-US" xmlns:fb="https://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<script>if (performance && performance.mark) performance.mark("TTP")</script>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="en-US" http-equiv="content-language"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="nosearch" name="pinterest"/>
<meta content="3:1697337013:_a8mi5pLu2Kyu3aZgfmwGrQGVN2M:9a516407196daee8620c146925105558a8587891038e3a5e55f4f96fdbcabb7e" name="csrf_nonce"/>
<meta content="3:1697337013:eXd8h_b_F-Rkgx_YfzgKXPZ9RHiO:72f2e6f2a39a895f0e024d00b3f5b8b3289ae4dc652eba25ca9191766c341dde" name="uaid_nonce"/>
<meta content="89186614300" property="fb:app_id"/>
<meta content="/ac/sasquatch/css/" name="css_dist_path">
<meta content="202310141697243029" name="dist">
<script charset="utf-8" nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" type="text/javascript">
!function(){var e=window.__etsy_logging={};e.errorQueue=[],window.onerror=function(n,t,r,o,i){e.errorQueue.push([n,t,r,o,i])},e.firedEvents=[];var n="_etsy_perf_beacon_";e.perf={e:[],t:!1,METRIC_NAME_PREFIX:n,prefixMetricName:function(e){return n+e}},window.PerformanceObserver&&(e.perf.o=new PerformanceObserver((function(n){e.perf.e=e.perf.e.concat(n.getEntries())})),e.perf.o.observe({entryTypes:["element","navigation","longtask","paint","mark","measure","resource","layout-shift","largest-contentful-paint"]}));var t=[];e.eventpipe={q:t,logEvent:function(e){t.push(e)},logEventImmediately:function(e){t.push(e)}};var r=!(Object.assign&&Object.values&&Object.fromEntries&&window.Promise&&Promise.prototype.finally&&window.NodeList&&NodeList.prototype.forEach),o=!!window.CefSharp||!!window.__pw_resume,i=!window.PerformanceObserver||!PerformanceObserver.supportedEntryTypes||0==PerformanceObserver.supportedEntryTypes.length,a=!window.navigator||!window.navigator.sendBeacon,p=r||o,s=[];r&&s.push("fp"),i&&s.push("fo"),a&&s.push("fb"),o&&s.push("fg"),e.bots={isBot:p,botCheck:s};var c,f,u,v,m={passive:!0,capture:!0},w=new Date,d=function(e,n){c||(c=n,f=e,u=new Date,E(removeEventListener),l())},l=function(){if(f>=0&&f<u-w){var e={entryType:"first-input",name:c.type,target:c.target,cancelable:c.cancelable,startTime:c.timeStamp,processingStart:c.timeStamp+f};v.forEach((function(n){n(e)})),v=[]}},y=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){d(e,n),o()},r=function(){o()},o=function(){removeEventListener("pointerup",t,m),removeEventListener("pointercancel",r,m)};addEventListener("pointerup",t,m),addEventListener("pointercancel",r,m)}(n,e):d(n,e)}},E=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,y,m)}))};v=[],f=-1,c=null,E(addEventListener),e.perf.onFirstInputDelay=function(e){v.push(e),l()}}();
</script>
<link href="https://www.etsy.com/dac/site-chrome/components/components.2f15eea414d986,site-chrome/header/header.2f15eea414d986,__modules__MiniCart__src__/Overlay/OverlayView.2f15eea414d986,category-nav/v2/breadcrumb_nav.5b4a38113e69c8,site-chrome/footer/footer.2f15eea414d986,gdpr/settings-overlay.2f15eea414d986.css?variant=sasquatch" rel="stylesheet" type="text/css"/>
<link href="https://www.etsy.com/dac/listzilla/responsive/listing-page-desktop.2f15eea414d986,neu/modules/listing_card.2f15eea414d986,common/simple-overlay.b1c6bd381ce780,common/forms.2f15eea414d986,listings3/checkout/single-listing.2f15eea414d986,neu/payment_icons.2ec02d4eb6d23b,neu/klarna.2ec02d4eb6d23b,listings3/structured-policies.2ec02d4eb6d23b,listing-page/image-carousel/responsive.2f15eea414d986,listzilla/image-overlay.2f15eea414d986,listing-page/image-carousel/shop-home-ingress.2f15eea414d986,listing-page/sale_ending_soon.2ec02d4eb6d23b,web-toolkit-v2/modules/banners/banners.2f15eea414d986,neu/common/follow-shop-button.2ec02d4eb6d23b,web-toolkit-v2/modules/cards/cards.2f15eea414d986,web-toolkit-v2/modules/skeleton_ui/skeleton_ui.2f15eea414d986,listzilla/responsive/review-content-modal.2f15eea414d986,appreciation_photos/photo_overlay.2f15eea414d986,listzilla/reviews/reviews_skeleton.2ec02d4eb6d23b,listzilla/reviews/reviews-section.2f15eea414d986,listzilla/listing-reviews.2f15eea414d986,web-toolkit-v2/modules/tabs/tabs.2f15eea414d986,reviews/subratings.2f15eea414d986,web-toolkit-v2/modules/action_groups/action_groups.c7594fb2dc9491,listzilla/responsive/max-height-review.2ec02d4eb6d23b,sort-by-reviews.2ec02d4eb6d23b,__modules__ListingPage__src__/ShopHeader/ReviewStars/review_stars.13a39be61e3c32,__modules__CollectionRecs__src__/Views/Grid/view.2f15eea414d986,__modules__CollectionRecs__src__/Views/Card/view.2f15eea414d986,listzilla/recs-ribbon.2f15eea414d986,listzilla/more_from_shop.2f15eea414d986,listzilla/listings-scroll.2f15eea414d986,neu/common/responsive_listing_grid.2f15eea414d986,neu/modules/favorite_button_defaults.2f15eea414d986,common/listing_card_text_badge.b1c6bd381ce780,listzilla/ads_row_header.2f15eea414d986.css?variant=sasquatch" rel="stylesheet" type="text/css"/>
<!-- SpeedCurve LUX -->
<!-- /SpeedCurve LUX -->
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR">
!function(e){var r={};function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var o in e)t.d(n,o,function(r){return e[r]}.bind(null,o));return n},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p="",t(t.s=1)}([function(e,r,t){"use strict";var n={};function o(e){this.props=e,this.onMarkListeners=[],this.marked=!1,this._mark=this._mark.bind(this)}o.create=function(e,r,t){if(!n[e]){var i=new o({name:e,recordTimestamps:t});r&&i.addOnMarkListener(r),n[e]=i}return n[e]},o.record=function(e){var r=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],t=arguments.length>2?arguments[2]:void 0,n=o.create(e,null,t);r?window.requestAnimationFrame(function(){return setTimeout(n._mark)}):n._mark()},o.destroy=function(e){void 0!==window.performance&&window.performance.clearMarks(e),e?delete n[e]:n={}},o.prototype._mark=function(){var e=this;void 0!==window.performance&&void 0!==window.performance.mark&&window.performance.mark(this.props.name),this.props.recordTimestamps&&void 0!==window.console&&void 0!==window.console.timeStamp&&window.console.timeStamp(this.props.name),this.marked=!0,this.onMarkListeners.forEach(function(r){return r(e)})},o.prototype.addOnMarkListener=function(e){this.marked&&e(this),this.onMarkListeners.push(e)},o.prototype.removeOnMarkListener=function(e){this.onMarkListeners=this.onMarkListeners.filter(function(r){return r!==e})};var i=o;function a(e){var r=this;this.props=e,this.measureName=this.props.name;var t=this.props.elements?this.props.elements.map(function(e){return e.marks}).flat():this.props.marks,n=[];this.props.startMarkName===l&&this.props.elements&&(n=this.props.elements.filter(function(e){var t=r.selectDOMNodes(e);return t&&(void 0===t.length||t.length>0)}));var o=new Set(n.map(function(e){return e.marks}).flat()),a=t.filter(function(e){return!o.has(e)});this.marks=a.map(function(e){r.measured=!1;return{mark:i.create(e,function(t){r.props.onMark(e)},r.props.recordTimestamps),measureListener:function(t){r.marks.every(function(e){return e.mark.marked})&&r.measure(e)}}}),this.marks.forEach(function(e){var r=e.mark,t=e.measureListener;r.addOnMarkListener(t)}),t.length>0&&0===a.length&&this.measure(this.props.startMarkName)}a.prototype.selectDOMNodes=function(e){return e.selector?"function"==typeof e.selector?e.selector():document.querySelectorAll(e.selector):this.props.selector?this.props.selector(e):null},a.prototype.measure=function(e){if(!this.measured){var r=this.props,t=r.name,n=r.startMarkName,o=r.onMeasure;if(void 0!==window.performance&&void 0!==window.performance.measure){var i=window.performance.getEntriesByName(e,"mark").pop(),a=window.performance.getEntriesByName(n,"mark").pop(),s=a&&i.startTime<a.startTime?n:e;("navigationStart"===n||a)&&window.performance.measure(t,n,s)}this.measured=!0,o(t)}},a.prototype.destroy=function(){void 0!==window.performance&&void 0!==window.performance.measure&&window.performance.clearMeasures(this.props.name),this.marks.forEach(function(e){var r=e.mark,t=e.measureListener;return r.removeOnMarkListener(t)}),this.marks=null};var s=a;function u(e){return function(e){if(Array.isArray(e))return p(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,r){if(!e)return;if("string"==typeof e)return p(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);"Object"===t&&e.constructor&&(t=e.constructor.name);if("Map"===t||"Set"===t)return Array.from(e);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return p(e,r)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t<r;t++)n[t]=e[t];return n}function c(e){this.props=e,this.expectedZones=this.setZones(this.props.zoneConfigs)}c.prototype.update=function(e){var r,t;(r=this.props.zoneConfigs).push.apply(r,u(e)),(t=this.expectedZones).push.apply(t,u(this.setZones(e)))},c.prototype.setZones=function(e){var r=this;return e.map(function(e){return r.createZone(e)})},c.prototype.destroy=function(){this.expectedZones.forEach(function(e){return e.destroy()}),this.expectedZones=null},c.prototype.createZone=function(e){return new s(Object.assign({onMark:this.props.onMark,onMeasure:this.props.onMeasure,startMarkName:this.props.startMarkName,recordTimestamps:this.props.recordTimestamps},e))},c.prototype.getZoneConfigs=function(){return this.props.zoneConfigs};var f=c;t.d(r,"a",function(){return l});var m,d=function(){},l="transitionStart",h=d,w=d,v="navigationStart",y=!1,k={clearMarks:function(e){i.destroy(e)},create:function(e){h=e.onMark||d,w=e.onMeasure||d,v="navigationStart",y=e.recordTimestamps||!1},destroy:function(){h=void 0,w=void 0,v=void 0,k.clearMarks(),m&&m.destroy,m=void 0},startView:function(e){m?window.console.error("[UX Capture] Application should call UXCapture.startTransition() before starting new view"):m=new f({onMark:h,onMeasure:w,startMarkName:v,recordTimestamps:y,zoneConfigs:e})},updateView:function(e){m?m.update(e):window.console.error("[Error] No view to update. Call UXCapture.startView() before UXCapture.updateView()")},getViewConfig:function(){return m?m.getZoneConfigs():null},startTransition:function(){m&&(m.destroy(),m=void 0),void 0!==window.performance&&void 0!==window.performance.mark&&window.performance.mark(l),v=l},mark:i.record};r.b=k},function(e,r,t){"use strict";t.r(r),function(e){var r=t(0);"function"==typeof define&&t(3)?define([],function(){return UXCapture}):void 0!==e&&void 0!==e.exports?e.exports=r.b:window.UXCapture=r.b}.call(this,t(2)(e))},function(e,r){e.exports=function(e){if(!e.webpackPolyfill){var r=Object.create(e);r.children||(r.children=[]),Object.defineProperty(r,"loaded",{enumerable:!0,get:function(){return r.l}}),Object.defineProperty(r,"id",{enumerable:!0,get:function(){return r.i}}),Object.defineProperty(r,"exports",{enumerable:!0}),r.webpackPolyfill=1}return r}},function(e,r){(function(r){e.exports=r}).call(this,{})}]);
</script>
<title>NEON Shadow Block Embroidered Monogram Sweatshirt - Etsy</title>
<meta content="This Gender-Neutral Adult Sweatshirts item by abovealldesigns has 55 favorites from Etsy shoppers. Ships from Rockwall, TX. Listed on Oct 13, 2023" name="description"/>
<meta content="max-image-preview:large" name="robots"/>
<script type="application/ld+json">{"@type":"Product","@context":"https:\/\/schema.org","url":"https:\/\/www.etsy.com\/listing\/1421206271\/neon-shadow-block-embroidered-monogram","name":"NEON Shadow Block Embroidered Monogram Sweatshirt","sku":"1421206271","gtin":"n\/a","description":"SWEATSHIRT INFORMATION:\n\nembroidered with your choice of initials and thread colors \ncotton\/poly blend\nunisex adult fit\n\nBRANDS WILL VARY...depending on stock.","image":[{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/5e3731\/4918316027\/il_fullxfull.4918316027_2tck.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/5e3731\/4918316027\/il_340x270.4918316027_2tck.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/b10ca8\/4699532243\/il_fullxfull.4699532243_89fq.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/b10ca8\/4699532243\/il_340x270.4699532243_89fq.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/cdd28d\/4651291128\/il_fullxfull.4651291128_gabi.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/cdd28d\/4651291128\/il_340x270.4651291128_gabi.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/c95fd4\/4651291114\/il_fullxfull.4651291114_oef3.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/c95fd4\/4651291114\/il_340x270.4651291114_oef3.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/72c461\/4699535445\/il_fullxfull.4699535445_qaaz.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/72c461\/4699535445\/il_340x270.4699535445_qaaz.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/5aeca8\/4692122041\/il_fullxfull.4692122041_aony.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/5aeca8\/4692122041\/il_340x270.4692122041_aony.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/d02bbe\/4947354201\/il_fullxfull.4947354201_93zg.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/d02bbe\/4947354201\/il_340x270.4947354201_93zg.jpg"},{"@type":"ImageObject","@context":"https:\/\/schema.org","author":"abovealldesigns","contentURL":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/87ac50\/4730921574\/il_fullxfull.4730921574_ffrp.jpg","description":null,"thumbnail":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/87ac50\/4730921574\/il_340x270.4730921574_ffrp.jpg"}],"category":"Clothing < Gender-Neutral Adult Clothing < Hoodies & Sweatshirts < Sweatshirts","brand":{"@type":"Brand","@context":"https:\/\/schema.org","name":"abovealldesigns"},"logo":"https:\/\/i.etsystatic.com\/isla\/b90eb7\/61544673\/isla_fullxfull.61544673_nftykcgo.jpg?version=0","aggregateRating":{"@type":"AggregateRating","ratingValue":"4.9","reviewCount":3070},"offers":{"@type":"Offer","eligibleQuantity":3956,"price":"34.00","priceCurrency":"USD","availability":"https:\/\/schema.org\/InStock"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"datePublished":"2023-07-29","reviewBody":"Super Cute!! Quick shipping!! Love it!","author":{"@type":"Person","name":"Janea Tate"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":4,"bestRating":5},"datePublished":"2023-07-28","reviewBody":"Daughter LOVES it!! Thank you.","author":{"@type":"Person","name":"Katjosey"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"datePublished":"2023-09-05","reviewBody":"","author":{"@type":"Person","name":"laneeslaughter"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"datePublished":"2023-06-07","reviewBody":"","author":{"@type":"Person","name":"Hannah Wilson"}}]}</script>
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"All categories","item":"https:\/\/www.etsy.com\/c\/\/?explicit=1&ref=breadcrumb_listing"},{"@type":"ListItem","position":2,"name":"Clothing","item":"https:\/\/www.etsy.com\/c\/clothing?explicit=1&ref=breadcrumb_listing"},{"@type":"ListItem","position":3,"name":"Gender-Neutral Adult Clothing","item":"https:\/\/www.etsy.com\/c\/clothing\/gender-neutral-adult-clothing?explicit=1&ref=breadcrumb_listing"},{"@type":"ListItem","position":4,"name":"Hoodies & Sweatshirts","item":"https:\/\/www.etsy.com\/c\/clothing\/gender-neutral-adult-clothing\/hoodies-and-sweatshirts?explicit=1&ref=breadcrumb_listing"},{"@type":"ListItem","position":5,"name":"Sweatshirts","item":"https:\/\/www.etsy.com\/c\/clothing\/gender-neutral-adult-clothing\/hoodies-and-sweatshirts\/sweatshirts?explicit=1&ref=breadcrumb_listing"}]}</script>
<meta content="@Etsy" name="twitter:site" value=""><meta content="summary_large_image" name="twitter:card" value=""><meta content="Etsy" name="twitter:app:name:iphone" value=""><meta content="etsy://listing/1421206271?ref=TwitterProductCard" name="twitter:app:url:iphone" value=""><meta content="477128284" name="twitter:app:id:iphone" value=""><meta content="Etsy" name="twitter:app:name:ipad" value=""><meta content="etsy://listing/1421206271?ref=TwitterProductCard" name="twitter:app:url:ipad" value=""><meta content="477128284" name="twitter:app:id:ipad" value=""><meta content="Etsy" name="twitter:app:name:googleplay" value=""/><meta content="etsy://listing/1421206271?ref=TwitterProductCard" name="twitter:app:url:googleplay" value=""/><meta content="com.etsy.android" name="twitter:app:id:googleplay" value=""/>
<meta content="NEON Shadow Block Embroidered Monogram Sweatshirt - Etsy" property="og:title"/>
<meta content="This Gender-Neutral Adult Sweatshirts item by abovealldesigns has 55 favorites from Etsy shoppers. Ships from Rockwall, TX. Listed on Oct 13, 2023" property="og:description"/>
<meta content="product" property="og:type"/><meta content="https://www.etsy.com/listing/1421206271/neon-shadow-block-embroidered-monogram?utm_source=OpenGraph&utm_medium=PageTools&utm_campaign=Share" property="og:url"/><meta content="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1080xN.4918316027_2tck.jpg" property="og:image"/><meta content="34.00" property="product:price:amount"/><meta content="USD" property="product:price:currency"/>
<meta content="etsy://listing/1421206271?ref=applinks_ios" property="al:ios:url"/><meta content="477128284" property="al:ios:app_store_id"/><meta content="Etsy" property="al:ios:app_name"/><meta content="etsy://listing/1421206271?ref=applinks_android" property="al:android:url"/><meta content="com.etsy.android" property="al:android:package"/><meta content="Etsy" property="al:android:app_name"/>
<link crossorigin="anonymous" href="//i.etsystatic.com" rel="preconnect"/><link href="//i.etsystatic.com" rel="dns-prefetch"/><link as="image" fetchpriority="high" imagesrcset="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_794xN.4918316027_2tck.jpg 1x, https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1588xN.4918316027_2tck.jpg 2x" rel="preload"/>
<link href="https://www.etsy.com/listing/1421206271/neon-shadow-block-embroidered-monogram" rel="canonical"/>
<link href="https://www.etsy.com/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en" rel="alternate"/><link href="https://www.etsy.com/fi-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-FI" rel="alternate"/><link href="https://www.etsy.com/au/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-AU" rel="alternate"/><link href="https://www.etsy.com/ca/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-CA" rel="alternate"/><link href="https://www.etsy.com/dk-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-DK" rel="alternate"/><link href="https://www.etsy.com/hk-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-HK" rel="alternate"/><link href="https://www.etsy.com/ie/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-IE" rel="alternate"/><link href="https://www.etsy.com/il-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-IL" rel="alternate"/><link href="https://www.etsy.com/in-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-IN" rel="alternate"/><link href="https://www.etsy.com/nz/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-NZ" rel="alternate"/><link href="https://www.etsy.com/no-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-NO" rel="alternate"/><link href="https://www.etsy.com/se-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-SE" rel="alternate"/><link href="https://www.etsy.com/sg-en/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-SG" rel="alternate"/><link href="https://www.etsy.com/uk/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-GB" rel="alternate"/><link href="https://www.etsy.com/de/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="de" rel="alternate"/><link href="https://www.etsy.com/at/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="de-AT" rel="alternate"/><link href="https://www.etsy.com/ch/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="de-CH" rel="alternate"/><link href="https://www.etsy.com/fr/listing/1421206271/sweat-shirt-a-monogramme-brode-neon" hreflang="fr" rel="alternate"/><link href="https://www.etsy.com/ca-fr/listing/1421206271/sweat-shirt-a-monogramme-brode-neon" hreflang="fr-CA" rel="alternate"/><link href="https://www.etsy.com/nl/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="nl" rel="alternate"/><link href="https://www.etsy.com/be/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="nl-BE" rel="alternate"/><link href="https://www.etsy.com/it/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="it" rel="alternate"/><link href="https://www.etsy.com/es/listing/1421206271/sudadera-neon-shadow-block-con-monograma" hreflang="es" rel="alternate"/><link href="https://www.etsy.com/mx/listing/1421206271/sudadera-neon-shadow-block-con-monograma" hreflang="es-MX" rel="alternate"/><link href="https://www.etsy.com/jp/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="ja" rel="alternate"/><link href="https://www.etsy.com/pl/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="pl" rel="alternate"/><link href="https://www.etsy.com/pt/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="pt" rel="alternate"/><link href="https://www.etsy.com/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="x-default" rel="alternate"/><link href="https://www.etsy.com/listing/1421206271/neon-shadow-block-embroidered-monogram" hreflang="en-US" rel="alternate"/>
<link href="https://www.etsy.com/shop/abovealldesigns/rss/" rel="alternate" title="Shop RSS for abovealldesigns on Etsy" type="application/rss+xml"/>
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR">__webpack_public_path__ = "https://www.etsy.com/daj/ac/primaryVendor/js/en-US/";</script>
<link href="/favicon.ico" rel="shortcut icon"/><link href="/images/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="/images/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="/images/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180"/><link color="rgb(241, 100, 30)" href="/images/safari-pinned-tab.svg" rel="mask-icon"/><link href="/site.webmanifest" rel="manifest"/>
<meta content="Etsy" name="apple-mobile-web-app-title"/><meta content="Etsy" name="application-name"/><meta content="#F1641E" name="msapplication-TileColor"/><meta content="rgb(255, 255, 255)" name="theme-color"/>
<link href="/osdd.php" rel="search" type="application/opensearchdescription+xml"/>
</meta></meta></meta></meta></meta></meta></meta></meta></meta></meta></head>
<body class="ui-toolkit transitional-wide is-responsive no-touch en-US USD US" data-currency="USD" data-language="en-US" data-region="US">
<div data-above-header="">
</div>
<div class="gnav-header global-nav v2-toolkit-gnav-header wt-z-index-5 wt-bg-white wt-position-relative" data-as-extras="{&quot;expt&quot;:&quot;off&quot;,&quot;lang&quot;:&quot;en-US&quot;,&quot;extras&quot;:[]}" data-as-personalized="1" data-as-version="10_12672349415_19" data-cheact="1" data-count-ajax="" data-gnav-header="" data-hide-recently-viewed-in-as="1" data-show-gift-card-cta-in-as="" data-show-mweb-accessible-as="" data-show-recent-searches-in-as="" data-show-recently-viewed-in-as="1" data-show-suggested-searches-in-as="1" id="gnav-header">
<header class="global-enhancements-header wt-display-flex-xs wt-justify-content-space-between wt-align-items-center wt-width-full wt-body-max-width wt-pl-xs-2 wt-pr-xs-2 wt-pl-lg-6 wt-pr-lg-6 wt-bb-xs wt-bb-lg-none gnav-header-inner wt-pt-lg-2 wt-pb-lg-2" id="gnav-header-inner" role="banner">
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" type="text/javascript">!function(){var e=window.__etsy_logging;if(e&&e.perf&&e.perf.prefixMetricName){var r=e.perf.prefixMetricName("logo_render");"object"==typeof UXCapture&&UXCapture.mark?UXCapture.mark(r):window.performance&&window.performance.mark&&window.requestAnimationFrame((function(){setTimeout((function(){window.performance.mark(r)}))}))}}();</script>
<div class="wt-pb-xs-1 wt-pb-lg-0 wt-pt-sm-1 wt-pt-lg-0 wt-pr-xs-0 wt-pr-sm-1" data-header-logo-container="">
<a elementtiming="ux-global-nav" href="/?ref=lgo">
<span class="wt-screen-reader-only">Etsy</span>
<span class="etsy-icon wt-display-block wt-fill-orange wt-nudge-r-3 wt-nudge-t-1 logo-dimensions" id="logo"><svg aria-hidden="true" focusable="false" viewbox="0 0 48 24" xmlns="http://www.w3.org/2000/svg"><path d="M6.547,3.125v6.008c0,0,2.117,0,3.25-0.086c0.891-0.156,1.055-0.242,1.219-1.133l0.328-1.305h0.969l-0.164,2.852 l0.086,2.922h-0.977l-0.242-1.141c-0.242-0.812-0.57-0.977-1.219-1.055c-0.812-0.086-3.25-0.086-3.25-0.086v5.039 c0,0.969,0.492,1.383,1.625,1.383h3.414c1.055,0,2.109-0.086,2.766-1.625l0.883-1.953h0.82c-0.086,0.406-0.492,3.984-0.57,4.789 c0,0-3.086-0.078-4.383-0.078H5.25l-3.492,0.078v-0.883l1.133-0.25c0.82-0.164,1.062-0.406,1.062-1.055 c0,0,0.086-2.195,0.086-5.852c0-3.648-0.086-5.844-0.086-5.844c0-0.727-0.242-0.891-1.062-1.055L1.758,2.555V1.664l3.414,0.07h6.5 c1.297,0,3.484-0.234,3.484-0.234s-0.078,1.375-0.164,4.625h-0.891l-0.328-1.141c-0.32-1.461-0.805-2.188-1.703-2.188H6.961 C6.547,2.797,6.547,2.875,6.547,3.125z M19.703,3.766h0.977V7.18l3.336-0.164l-0.164,1.547l-3.25-0.25v6.016 c0,1.703,0.57,2.359,1.547,2.359c0.883,0,1.539-0.492,1.781-0.898l0.484,0.57c-0.484,1.133-1.859,1.703-3.164,1.703 c-1.617,0-2.93-0.969-2.93-2.836V8.398h-1.938V7.586C18.008,7.422,19.219,6.445,19.703,3.766z M26.695,14.242l0.648,1.547 c0.242,0.648,0.812,1.305,2.109,1.305c1.383,0,1.953-0.734,1.953-1.625c0-2.766-5.445-1.953-5.445-5.688c0-2.109,1.703-3.094,3.898-3.094c0.977,0,2.438,0.164,3.172,0.492c-0.164,0.812-0.25,1.867-0.25,2.68l-0.805,0.078l-0.57-1.625 c-0.164-0.398-0.82-0.727-1.625-0.727c-0.977,0-1.953,0.406-1.953,1.461c0,2.516,5.609,1.953,5.609,5.688c0,2.117-1.867,3.25-4.148,3.25c-1.703,0-3.414-0.656-3.414-0.656c0.164-0.969,0.086-2.023,0-3.086H26.695z M33.031,22.039 c0.242-0.891,0.406-2.023,0.57-3.086l0.891-0.078l0.328,1.703c0.078,0.406,0.32,0.734,0.969,0.734c1.055,0,2.438-0.648,3.742-2.922 c-0.578-1.383-2.281-5.844-3.828-9.258c-0.406-0.898-0.484-0.977-1.047-1.141l-0.414-0.156v-0.82l2.445,0.086l3-0.164V7.75 l-0.734,0.164c-0.57,0.078-0.805,0.398-0.805,0.727c0,0.086,0,0.164,0.078,0.328c0.156,0.492,1.461,4.141,2.438,6.578c0.805-1.703,2.352-5.523,2.594-6.172c0.086-0.328,0.164-0.406,0.164-0.648c0-0.414-0.242-0.656-0.805-0.812L42.039,7.75V6.938 l2.281,0.078l2.109-0.078V7.75l-0.406,0.32c-0.812,0.328-0.898,0.406-1.219,1.062l-3.57,8.359 c-2.117,4.797-4.312,5.203-5.852,5.203C34.406,22.695,33.672,22.445,33.031,22.039z"></path></svg></span>
</a>
</div>
<div class="wt-width-full wt-display-flex-xs wt-pr-lg-3 wt-flex-lg-1 order-mobile-tablet-2" data-hamburger-search-container="">
<button aria-controls="mobile-catnav-overlay" class="wt-btn wt-btn--transparent wt-btn--icon wt-hide-lg wt-btn--transparent-flush-left wt-mb-xs-2 wt-mb-lg-0 header-button" data-id="hamburger" tab-index="0">
<span class="wt-screen-reader-only">
Browse
</span>
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20 7H4c-.6 0-1-.4-1-1s.4-1 1-1h16c.6 0 1 .4 1 1s-.4 1-1 1zm-4.8 6H4c-.6 0-1-.4-1-1s.4-1 1-1h11.2c.6 0 1 .4 1 1s-.4 1-1 1zm4.8 6H4c-.6 0-1-.4-1-1s.4-1 1-1h16c.6 0 1 .4 1 1s-.4 1-1 1z"></path>
</svg></span>
</button>
<div class="wt-display-inline-block wt-flex-xs-1 wt-pl-lg-0 wt-mb-xs-2 wt-mb-lg-0">
<form action="/search.php" class="global-enhancements-search-nav wt-position-relative wt-display-flex-xs" data-ge-search-clearable="" data-gnav-search="" id="gnav-search" method="GET" role="search">
<label class="wt-label wt-screen-reader-only" for="global-enhancements-search-query">
Search for items or shops
</label>
<div class="wt-menu wt-menu--full-width wt-menu--offset-below-trigger" data-id="search-bar">
<div aria-expanded="false" class="wt-input-btn-group global-enhancements-search-input-btn-group emphasized_search_bar emphasized_search_bar_grey_bg wt-menu__trigger" data-id="search-suggestions-trigger">
<input autocapitalize="off" autocomplete="off" autocorrect="off" class="wt-input wt-input-btn-group__input global-enhancements-search-input-btn-group__input wt-pr-xs-7" data-id="search-query" data-search-input="" id="global-enhancements-search-query" name="search_query" placeholder="Search for anything" type="text" value=""/>
<button class="wt-btn wt-btn--transparent wt-btn--icon wt-btn--small wt-position-absolute wt-position-right wt-z-index-9 wt-animated wt-animated--is-hidden search-close-btn-margin-right" data-search-close-btn="" type="button">
<span class="wt-screen-reader-only">Clear search</span>
<span class="wt-icon wt-icon--smaller wt-nudge-t-1"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z"></path></svg></span>
</button>
<button aria-label="Search" class="wt-input-btn-group__btn global-enhancements-search-input-btn-group__btn" data-id="gnav-search-submit-button" type="submit" value="Search">
<span class="wt-icon wt-nudge-b-2 wt-nudge-r-1"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10,18a8,8,0,1,1,8-8A8.009,8.009,0,0,1,10,18ZM10,4a6,6,0,1,0,6,6A6.007,6.007,0,0,0,10,4Z"></path><path d="M21,22a1,1,0,0,1-.707-0.293l-4-4a1,1,0,0,1,1.414-1.414l4,4A1,1,0,0,1,21,22Z"></path></svg></span>
</button>
</div>
<div class="global-nav-menu__body wt-menu__body wt-menu__body--will-animate wt-width-full wt-max-width-full" data-id="search-suggestions" id="global-enhancements-search-suggestions">
</div>
</div>
<input id="search-js-router-enabled" type="hidden" value="true"/>
<input id="search-type" name="search_type" type="hidden" value="all"/>
</form>
</div>
</div>
<a class="global-enhancements-skip-to-content wt-screen-reader-only wt-focusable" data-selector="skip-to-content-marketplace" href="#content" tabindex="1">
<div class="wt-display-flex-xs wt-align-items-center wt-justify-content-center wt-body-max-width wt-width-full wt-height-full wt-position-absolute wt-position-top wt-position-left wt-position-right wt-bg-denim wt-z-index-10" id="skip-to-content-wrapper">
<label class="wt-btn wt-btn--transparent wt-btn--light">
Skip to Content
</label>
</div>
</a>
<div aria-hidden="true" aria-modal="false" class="mobile-catnav-wrapper wt-overlay wt-overlay--peek wt-overlay--peek-left wt-p-xs-0" data-wt-overlay="" id="mobile-catnav-overlay" role="dialog">
</div>
<div class="wt-flex-shrink-xs-0" data-primary-nav-container="">
<nav aria-label="Main">
<ul class="wt-display-flex-xs wt-justify-content-space-between wt-list-unstyled wt-m-xs-0 wt-align-items-center">
<li>
<button class="wt-btn wt-btn--small wt-btn--transparent wt-mr-xs-1 inline-overlay-trigger signin-header-action select-signin header-button">
Sign in
</button>
</li>
<li>
<span class="wt-tooltip wt-tooltip--bottom-left wt-tooltip--disabled-touch" data-header-cart-button="" data-wt-tooltip="">
<a aria-label="Cart" class="wt-tooltip__trigger wt-tooltip__trigger--icon-only wt-btn wt-btn--transparent wt-btn--icon header-button" data-header-cart-nav-anchor="" href="https://www.etsy.com/cart?ref=hdr-cart">
<span class="wt-screen-reader-only" id="mini-cart-description">Cart preview displayed</span>
<span aria-hidden="true" class="wt-z-index-1 wt-no-wrap wt-display-none ge-cart-badge wt-badge wt-badge--notificationPrimary wt-badge--small wt-badge--outset-top-right" data-selector="header-cart-count">
0
</span>
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M9 22a2 2 0 100-4 2 2 0 000 4zm7 0a2 2 0 100-4 2 2 0 000 4zm5-17H5.665l-.687-3.21A1 1 0 004 1H1a1 1 0 000 2h2.191l2.831 13.21a.962.962 0 00.064.159c.017.053.038.105.063.155a.979.979 0 00.133.153.926.926 0 00.088.1c.058.041.12.077.185.105.034.022.07.042.107.06A.993.993 0 007 17h11a1 1 0 00.958-.713l3-10A1.001 1.001 0 0021 5zm-2.244 5H16V7h3.656l-.9 3zM7.819 15l-.6-3H9v3H7.819zM11 12h3v3h-3v-3zm0-2V7h3v3h-3zM9 7v3H6.82l-.6-3H9zm8.256 8H16v-3h2.156l-.9 3z"></path>
</svg></span>
</a>
<div id="mini-cart"></div>
</span>
</li>
</ul>
</nav>
</div>
</header>
</div>
<nav class="wt-hide-xs wt-show-lg breadcrumb_nav" data-ui="listing-breadcrumbs">
<div class="cat-nav responsive-disabled v2-toolkit-cat-nav wt-ml-xs-0 wt-mr-xs-0" data-ui="cat-nav" id="desktop-category-nav">
<div class="wt-bg-white wt-text-caption wt-position-relative wt-z-index-4 v2-toolkit-cat-nav-tab-bar">
<div class="wt-grid wt-body-max-width wt-pl-xs-2 wt-pr-xs-2 wt-pl-md-4 wt-pr-md-4 wt-pl-lg-6 wt-pr-lg-6">
<ul class="wt-list-unstyled wt-grid__item-xs-12 wt-body-max-width wt-display-flex-xs wt-justify-content-center" data-ui="top-nav-category-list" role="menubar">
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/?ref=catnav_breadcrumb-home" role="menuitem" tabindex="0">Home</a>
<span class="etsy-icon arrow-separator wt-text-black wt-icon--smallest-xs"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8 21a1 1 0 01-.664-1.747L15.5 12 7.336 4.747a1 1 0 011.328-1.494L18.5 12l-9.836 8.747A.994.994 0 018 21z"></path>
</svg></span>
</li>
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/c/?ref=catnav_breadcrumb-0&explicit=1" role="menuitem" tabindex="0">All categories</a>
<span class="etsy-icon arrow-separator wt-text-black wt-icon--smallest-xs"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8 21a1 1 0 01-.664-1.747L15.5 12 7.336 4.747a1 1 0 011.328-1.494L18.5 12l-9.836 8.747A.994.994 0 018 21z"></path>
</svg></span>
</li>
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/c/clothing?ref=catnav_breadcrumb-1&explicit=1" role="menuitem" tabindex="0">Clothing</a>
<span class="etsy-icon arrow-separator wt-text-black wt-icon--smallest-xs"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8 21a1 1 0 01-.664-1.747L15.5 12 7.336 4.747a1 1 0 011.328-1.494L18.5 12l-9.836 8.747A.994.994 0 018 21z"></path>
</svg></span>
</li>
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/c/clothing/gender-neutral-adult-clothing?ref=catnav_breadcrumb-2&explicit=1" role="menuitem" tabindex="0">Gender-Neutral Adult Clothing</a>
<span class="etsy-icon arrow-separator wt-text-black wt-icon--smallest-xs"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8 21a1 1 0 01-.664-1.747L15.5 12 7.336 4.747a1 1 0 011.328-1.494L18.5 12l-9.836 8.747A.994.994 0 018 21z"></path>
</svg></span>
</li>
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/c/clothing/gender-neutral-adult-clothing/hoodies-and-sweatshirts?ref=catnav_breadcrumb-3&explicit=1" role="menuitem" tabindex="0">Hoodies & Sweatshirts</a>
<span class="etsy-icon arrow-separator wt-text-black wt-icon--smallest-xs"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8 21a1 1 0 01-.664-1.747L15.5 12 7.336 4.747a1 1 0 011.328-1.494L18.5 12l-9.836 8.747A.994.994 0 018 21z"></path>
</svg></span>
</li>
<li class="top-nav-item wt-text-black wt-text-body-small--tight wt-pb-xs-2" data-ui="list-item-breadcrumbs">
<a href="https://www.etsy.com/c/clothing/gender-neutral-adult-clothing/hoodies-and-sweatshirts/sweatshirts?ref=catnav_breadcrumb-4&explicit=1" role="menuitem" tabindex="0">Sweatshirts</a>
</li>
</ul>
<span class="active-nav-item-indicator wt-position-absolute wt-display-inline-block" data-ui="active-nav-item-indicator"></span>
</div>
</div>
</div></nav>
<noscript>
<div class="wt-body-max-width wt-pt-xs-2 wt-pl-xs-2 wt-pr-xs-2 wt-pl-md-4 wt-pr-md-4 wt-pt-md-3 wt-pb-xs-0">
<div class="wt-alert wt-alert--inline wt-alert--success-01 wt-mb-xs-2" id="javascript-nag">
<div> Take full advantage of our site features by enabling JavaScript. </div>
</div>
</div>
</noscript>
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR">
window.Etsy=window.Etsy||{};
Etsy.Context=Etsy.Context||{};
(function() {
function assign(firstSource, secondSource) {
if (!secondSource) {
return;
}
var out = Object(firstSource);
for (var key in secondSource) {
// Avoid bugs when hasOwnProperty is shadowed
if (Object.prototype.hasOwnProperty.call(secondSource, key)) {
out[key] = secondSource[key];
}
}
return out;
}
Etsy.Context.feature=assign(Etsy.Context.feature ? Etsy.Context.feature : {}, {"isAppShellEnabled":true,"core_fulfillment.ship_to_preference_refactor":true,"seller_platform_web.buyer_inquiry":false,"seller_platform_web.seller_local_time":false,"seller_platform_web.item_detail_overlay":false,"buyer_promise.issue_resolution.fee_avoidance_v2":false,"should_use_reviews_section_module":false,"show_refreshed_helpful_signal":false,"is_moved_higher_with_side_scroll":false,"should_display_outstanding_quality_signal":false,"shop_reputation_on_zero_item_review_listings":false,"should_remove_lookback_window_from_api_endpoints":true,"guardian_decimal_single_star_rating_average":false,"remove_extra_padding_above_reviews_section_mweb":false,"should_use_subratings_rings":false,"listing_is_tabbed_experience_non_dsml_sort":false,"render_desktop_reviews_layout_on_tablets":false,"display_recommendation_on_reviews":false,"isEstimatedDeliveryEnabled":true});
Etsy.Context.data=assign(Etsy.Context.data ? Etsy.Context.data : {}, {"is_mobile":false,"should_auto_redirect":false,"locale_settings":{"language":{"code":"en-US","id":0,"name":"English (US)","translation":"English (US)","is_detected":true,"is_default":true},"currency":{"currency_id":840,"code":"USD","name":"United States Dollar","number_precision":2,"symbol":"$","listing_enabled":true,"browsing_enabled":true,"buyer_location_restricted":false,"rate_updates_enabled":true,"is_detected":false,"is_default":true,"append_currency_symbol":false},"region":{"code":"US","country_id":209,"name":"United States","translation":"United States","is_detected":false,"is_default":true,"is_EU_region":false},"subdir_code":""},"neu_api_specs_sample_rate":null,"FB_GRAPHQL_VERSION":"v2.10","page_guid":"f6febb27ce1.f78e80e34b389b66e59b.00","primary_event_name":"view_listing","request_uuid":"EuLm_SxSAai4YrdkHYgcZFD5B46a","sign_in_modal_mweb":false,"user_is_test_account":false,"user_id":null,"css_variant":"sasquatch","guest_uaid":["dhtJ7bIt3SVS412JguyjO5gJPj0s","dhtJ7bIt3SVS412JguyjO5gJPj0s"],"etsyweb_granify_traffic":true,"granify":{"site_id":"qivBM","page_type":"product","nudges":["in_cart_only"],"product":{"id":"1421206271","title":"NEON Shadow Block Embroidered Monogram Sweatshirt","discount_eligible_flag":true,"carters":8,"inventory_eligible_flag":true,"in_stock":3956,"regular_price":34,"price":34,"image":"https:\/\/i.etsystatic.com\/5316483\/r\/il\/5e3731\/4918316027\/il_680x540.4918316027_2tck.jpg","category":"Clothing","sub_category":"Gender-Neutral Adult Clothing > Hoodies & Sweatshirts > Sweatshirts","number_of_reviews":3070,"ratings":5,"free_shipping":{"minimum_type":"none"}}},"is_app_shell":true,"csrf_nonce":"3:1697337013:otMakmpRsSaZw4Auznsf4wkga0jC:7e063b678e45954dbe1d997776a60c4acd3b9875c9431c37bb613acfa7395ee2","uaid_nonce":"3:1697337013:eXd8h_b_F-Rkgx_YfzgKXPZ9RHiO:72f2e6f2a39a895f0e024d00b3f5b8b3289ae4dc652eba25ca9191766c341dde","clientlogger":{"is_enabled":true,"endpoint":"\/clientlog","logs_per_page":6,"id":"EuLm_SxSAai4YrdkHYgcZFD5B46a","digest":"5480ca8293de4b9c51bd8d67bd092ccc92833da9","enabled_features":["info","warn","error","basic","uncaught"]},"impact_tracker_should_prompt_signin":false,"impact_tracker_should_direct_open":false,"shop_favorites_see_all_link":"See all","shop_favorites_search_header":"Shops you follow","is_mobile_shop_search":false,"show_simplified_mobile_header":false,"is_eligible_for_ship_to_setting_in_global_header":false,"show_etsy_has_it_design":false,"in_cart_count":0,"show_mini_cart":true,"page_type":"view_listing","is_gift_guide_flyout_enabled":true,"should_hide_sub_nav":true,"should_show_breadcrumbs":true,"use_mousedown_autosuggest_listener":false,"mweb_full_screen_search_dropdown":false,"relocate_cat_nav":false,"mott_version":"eb3a8d4","catnav_show_sales":false,"catnav_gift_guide":"off","gifting_catnav_flyout_js":true,"should_show_registry_on_nav":true,"should_use_gifting_taxos_in_nav_flyout":true,"impact_message":{"footer_renewable_impact":{"impact_name":"footer_renewable_impact","impact_themes":["sustainability"],"impact_audiences":["buyers"]},"lp_impact_narrative_banner_carbon":{"impact_name":["lp_impact_narrative_banner_carbon","lp_impact_narrative_banner_carbon"],"impact_themes":["carbon","carbon"],"impact_audiences":["buyers","buyers"]}},"seller_is_viewing_own_listing":false,"should_fetch_nudge_data":true,"listingId":1421206271,"listing_price":34,"shopId":5316483,"shop_id":5316483,"shop_name":"abovealldesigns","custom_orders_listings2":true,"skeleton_cleanup_for_lazy_loaded_images":true,"persist_recent_search_v2_enabled":false,"is_listing_preview":false,"checkout_decorator":"","was_landing_from_external_referrer":false,"should_collapse_neighbors":false,"referring_listing_id":1421206271,"address_formats":{"0":{"postal_code_type":"postal","postal_code_pattern":null,"postal_code_placeholder":"","country_iso_code":"ZZ"},"306":{"postal_code_type":"postal","postal_code_pattern":"22\\d{3}","postal_code_placeholder":"","country_iso_code":"AX"},"57":{"postal_code_type":"Postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"AL"},"95":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"DZ"},"250":{"postal_code_type":"zip","postal_code_pattern":"(96799)(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"AS"},"228":{"postal_code_type":"postal","postal_code_pattern":"AD[1-7]0\\d","postal_code_placeholder":"","country_iso_code":"AD"},"59":{"postal_code_type":"postal","postal_code_pattern":"((?:[A-HJ-NP-Z])?\\d{4})([A-Z]{3})?","postal_code_placeholder":"","country_iso_code":"AR"},"60":{"postal_code_type":"postal","postal_code_pattern":"(37)?\\d{4}","postal_code_placeholder":"","country_iso_code":"AM"},"61":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"3393","country_iso_code":"AU"},"62":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"AT"},"63":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"AZ"},"232":{"postal_code_type":"postal","postal_code_pattern":"(?:\\d|1[0-2])\\d{2}","postal_code_placeholder":"","country_iso_code":"BH"},"68":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"BD"},"237":{"postal_code_type":"Postal","postal_code_pattern":"BB\\d{5}","postal_code_placeholder":"","country_iso_code":"BB"},"71":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"BY"},"65":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"BE"},"225":{"postal_code_type":"postal","postal_code_pattern":"[A-Z]{2} ?[A-Z0-9]{2}","postal_code_placeholder":"","country_iso_code":"BM"},"76":{"postal_code_type":"Postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"BT"},"70":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"BA"},"74":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}-?\\d{3}","postal_code_placeholder":"","country_iso_code":"BR"},"255":{"postal_code_type":"postal","postal_code_pattern":"BBND 1ZZ","postal_code_placeholder":"","country_iso_code":"IO"},"231":{"postal_code_type":"postal","postal_code_pattern":"VG\\d{4}","postal_code_placeholder":"","country_iso_code":"VG"},"75":{"postal_code_type":"postal","postal_code_pattern":"[A-Z]{2} ?\\d{4}","postal_code_placeholder":"","country_iso_code":"BN"},"69":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"BG"},"135":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"KH"},"79":{"postal_code_type":"postal","postal_code_pattern":"[ABCEGHJKLMNPRSTVXY]\\d[ABCEGHJ-NPRSTV-Z] ?\\d[ABCEGHJ-NPRSTV-Z]\\d","postal_code_placeholder":"A1A 1A1","country_iso_code":"CA"},"222":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"CV"},"247":{"postal_code_type":"postal","postal_code_pattern":"KY\\d-\\d{4}","postal_code_placeholder":"","country_iso_code":"KY"},"81":{"postal_code_type":"postal","postal_code_pattern":"\\d{7}","postal_code_placeholder":"","country_iso_code":"CL"},"82":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"CN"},"257":{"postal_code_type":"postal","postal_code_pattern":"6798","postal_code_placeholder":"","country_iso_code":"CX"},"258":{"postal_code_type":"postal","postal_code_pattern":"6799","postal_code_placeholder":"","country_iso_code":"CC"},"86":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"CO"},"87":{"postal_code_type":"postal","postal_code_pattern":"\\d{4,5}|\\d{3}-\\d{4}","postal_code_placeholder":"","country_iso_code":"CR"},"118":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"HR"},"89":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"CY"},"90":{"postal_code_type":"postal","postal_code_pattern":"\\d{3} ?\\d{2}","postal_code_placeholder":"","country_iso_code":"CZ"},"93":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"DK"},"94":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"DO"},"96":{"postal_code_type":"postal","postal_code_pattern":"[A-Z]\\d{4}[A-Z]|(?:[A-Z]{2})?\\d{6}","postal_code_placeholder":"","country_iso_code":"EC"},"97":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"EG"},"187":{"postal_code_type":"postal","postal_code_pattern":"CP [1-3][1-7][0-2]\\d","postal_code_placeholder":"CP 1101","country_iso_code":"SV"},"100":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"EE"},"101":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"ET"},"262":{"postal_code_type":"postal","postal_code_pattern":"FIQQ 1ZZ","postal_code_placeholder":"","country_iso_code":"FK"},"241":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"FO"},"102":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"FI"},"103":{"postal_code_type":"postal","postal_code_pattern":"\\d{2} ?\\d{3}","postal_code_placeholder":"75000","country_iso_code":"FR"},"115":{"postal_code_type":"postal","postal_code_pattern":"9[78]3\\d{2}","postal_code_placeholder":"","country_iso_code":"GF"},"263":{"postal_code_type":"postal","postal_code_pattern":"987\\d{2}","postal_code_placeholder":"","country_iso_code":"PF"},"106":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"GE"},"91":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"80331","country_iso_code":"DE"},"226":{"postal_code_type":"postal","postal_code_pattern":"GX11 1AA","postal_code_placeholder":"","country_iso_code":"GI"},"112":{"postal_code_type":"postal","postal_code_pattern":"\\d{3} ?\\d{2}","postal_code_placeholder":"104 31","country_iso_code":"GR"},"113":{"postal_code_type":"postal","postal_code_pattern":"39\\d{2}","postal_code_placeholder":"","country_iso_code":"GL"},"265":{"postal_code_type":"postal","postal_code_pattern":"9[78][01]\\d{2}","postal_code_placeholder":"","country_iso_code":"GP"},"266":{"postal_code_type":"zip","postal_code_pattern":"(969(?:[12]\\d|3[12]))(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"GU"},"114":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"GT"},"305":{"postal_code_type":"postal","postal_code_pattern":"GY\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}","postal_code_placeholder":"","country_iso_code":"GG"},"108":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"GN"},"110":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"GW"},"119":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"HT"},"267":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"HM"},"268":{"postal_code_type":"postal","postal_code_pattern":"00120","postal_code_placeholder":"","country_iso_code":"VA"},"117":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"HN"},"120":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"HU"},"126":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"IS"},"122":{"postal_code_type":"pin","postal_code_pattern":"^[1-9][0-9]{5}$","postal_code_placeholder":"110001","country_iso_code":"IN"},"121":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"ID"},"124":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}-?\\d{5}","postal_code_placeholder":"","country_iso_code":"IR"},"125":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"IQ"},"123":{"postal_code_type":"postal","postal_code_pattern":null,"postal_code_placeholder":"","country_iso_code":"IE"},"269":{"postal_code_type":"postal","postal_code_pattern":"IM\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}","postal_code_placeholder":"","country_iso_code":"IM"},"127":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}(?:\\d{2})?","postal_code_placeholder":"","country_iso_code":"IL"},"128":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"50100","country_iso_code":"IT"},"131":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}-?\\d{4}","postal_code_placeholder":"100-0001","country_iso_code":"JP"},"307":{"postal_code_type":"postal","postal_code_pattern":"JE\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}","postal_code_placeholder":"","country_iso_code":"JE"},"130":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"JO"},"132":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"KZ"},"133":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"KE"},"137":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"KW"},"134":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"KG"},"138":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"LA"},"146":{"postal_code_type":"postal","postal_code_pattern":"LV-\\d{4}","postal_code_placeholder":"","country_iso_code":"LV"},"139":{"postal_code_type":"postal","postal_code_pattern":"(?:\\d{4})(?: ?(?:\\d{4}))?","postal_code_placeholder":"","country_iso_code":"LB"},"143":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"LS"},"140":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"LR"},"272":{"postal_code_type":"postal","postal_code_pattern":"(948[5-9])|(949[0-7])","postal_code_placeholder":"","country_iso_code":"LI"},"144":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"LT"},"145":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"LU"},"151":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"MK"},"149":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"MG"},"159":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MY"},"238":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MV"},"227":{"postal_code_type":"postal","postal_code_pattern":"[A-Z]{3} ?\\d{2,4}","postal_code_placeholder":"","country_iso_code":"MT"},"274":{"postal_code_type":"zip","postal_code_pattern":"(969[67]\\d)(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"MH"},"275":{"postal_code_type":"postal","postal_code_pattern":"9[78]2\\d{2}","postal_code_placeholder":"","country_iso_code":"MQ"},"239":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}(?:\\d{2}|[A-Z]{2}\\d{3})","postal_code_placeholder":"","country_iso_code":"MU"},"276":{"postal_code_type":"postal","postal_code_pattern":"976\\d{2}","postal_code_placeholder":"","country_iso_code":"YT"},"150":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MX"},"277":{"postal_code_type":"zip","postal_code_pattern":"(9694[1-4])(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"FM"},"148":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"MD"},"278":{"postal_code_type":"postal","postal_code_pattern":"980\\d{2}","postal_code_placeholder":"","country_iso_code":"MC"},"154":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MN"},"155":{"postal_code_type":"postal","postal_code_pattern":"8\\d{4}","postal_code_placeholder":"","country_iso_code":"ME"},"147":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MA"},"153":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"MM"},"166":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"NP"},"233":{"postal_code_type":"postal","postal_code_pattern":"988\\d{2}","postal_code_placeholder":"","country_iso_code":"NC"},"167":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"3974","country_iso_code":"NZ"},"163":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"NI"},"161":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"NE"},"162":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"NG"},"282":{"postal_code_type":"postal","postal_code_pattern":"2899","postal_code_placeholder":"","country_iso_code":"NF"},"283":{"postal_code_type":"zip","postal_code_pattern":"(9695[012])(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"MP"},"165":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"NO"},"168":{"postal_code_type":"postal","postal_code_pattern":"(PC )?\\d{3}","postal_code_placeholder":"","country_iso_code":"OM"},"169":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"PK"},"284":{"postal_code_type":"zip","postal_code_pattern":"(969(?:39|40))(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"PW"},"173":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}","postal_code_placeholder":"","country_iso_code":"PG"},"178":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"PY"},"171":{"postal_code_type":"Postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"PE"},"172":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"PH"},"174":{"postal_code_type":"postal","postal_code_pattern":"\\d{2}-\\d{3}","postal_code_placeholder":"10-345","country_iso_code":"PL"},"177":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}-\\d{3}","postal_code_placeholder":"1000-205","country_iso_code":"PT"},"175":{"postal_code_type":"zip","postal_code_pattern":"(00[679]\\d{2})(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"PR"},"304":{"postal_code_type":"postal","postal_code_pattern":"9[78]4\\d{2}","postal_code_placeholder":"","country_iso_code":"RE"},"180":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"RO"},"181":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"101000","country_iso_code":"RU"},"308":{"postal_code_type":"postal","postal_code_pattern":"9[78][01]\\d{2}","postal_code_placeholder":"","country_iso_code":"BL"},"286":{"postal_code_type":"postal","postal_code_pattern":"(ASCN|STHL) 1ZZ","postal_code_placeholder":"","country_iso_code":"SH"},"288":{"postal_code_type":"postal","postal_code_pattern":"9[78][01]\\d{2}","postal_code_placeholder":"","country_iso_code":"MF"},"289":{"postal_code_type":"postal","postal_code_pattern":"9[78]5\\d{2}","postal_code_placeholder":"","country_iso_code":"PM"},"249":{"postal_code_type":"Postal","postal_code_pattern":"VC\\d{4}","postal_code_placeholder":"","country_iso_code":"VC"},"291":{"postal_code_type":"postal","postal_code_pattern":"4789\\d","postal_code_placeholder":"","country_iso_code":"SM"},"183":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"SA"},"185":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"SN"},"189":{"postal_code_type":"postal","postal_code_pattern":"\\d{5,6}","postal_code_placeholder":"","country_iso_code":"RS"},"220":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"SG"},"191":{"postal_code_type":"postal","postal_code_pattern":"\\d{3} ?\\d{2}","postal_code_placeholder":"","country_iso_code":"SK"},"192":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"SI"},"188":{"postal_code_type":"postal","postal_code_pattern":"[A-Z]{2} ?\\d{5}","postal_code_placeholder":"","country_iso_code":"SO"},"215":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"ZA"},"294":{"postal_code_type":"postal","postal_code_pattern":"SIQQ 1ZZ","postal_code_placeholder":"","country_iso_code":"GS"},"136":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}(?:\\d{2}|-\\d{3})","postal_code_placeholder":"","country_iso_code":"KR"},"99":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"28013","country_iso_code":"ES"},"142":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"LK"},"295":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"SJ"},"194":{"postal_code_type":"postal","postal_code_pattern":"[HLMS]\\d{3}","postal_code_placeholder":"","country_iso_code":"SZ"},"193":{"postal_code_type":"postal","postal_code_pattern":"\\d{3} ?\\d{2}","postal_code_placeholder":"","country_iso_code":"SE"},"80":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"CH"},"204":{"postal_code_type":"postal","postal_code_pattern":"\\d{3}(\\d{2})?","postal_code_placeholder":"","country_iso_code":"TW"},"199":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"TJ"},"205":{"postal_code_type":"postal","postal_code_pattern":"\\d{4,5}","postal_code_placeholder":"","country_iso_code":"TZ"},"198":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"TH"},"164":{"postal_code_type":"postal","postal_code_pattern":"\\d{4} ?[A-Z]{2}","postal_code_placeholder":"1105 AW","country_iso_code":"NL"},"202":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"TN"},"203":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"TR"},"200":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"TM"},"299":{"postal_code_type":"postal","postal_code_pattern":"TKCA 1ZZ","postal_code_placeholder":"","country_iso_code":"TC"},"207":{"postal_code_type":"postal","postal_code_pattern":"^([0-8][0-9]{4}|9[0-3][0-9]{3}|94[0-8][0-9]{2}|949[0-8][0-9]|9499[0-9])$","postal_code_placeholder":"","country_iso_code":"UA"},"105":{"postal_code_type":"postal","postal_code_pattern":"^(GIR ?0AA|((AB|AL|B|BA|BB|BD|BF|BH|BL|BN|BR|BS|BT|BX|CA|CB|CF|CH|CM|CO|CR|CT|CV|CW|DA|DD|DE|DG|DH|DL|DN|DT|DY|E|EC|EH|EN|EX|FK|FY|G|GL|GY|GU|HA|HD|HG|HP|HR|HS|HU|HX|IG|IM|IP|IV|JE|KA|KT|KW|KY|L|LA|LD|LE|LL|LN|LS|LU|M|ME|MK|ML|N|NE|NG|NN|NP|NR|NW|OL|OX|PA|PE|PH|PL|PO|PR|RG|RH|RM|S|SA|SE|SG|SK|SL|SM|SN|SO|SP|SR|SS|ST|SW|SY|TA|TD|TF|TN|TQ|TR|TS|TW|UB|W|WA|WC|WD|WF|WN|WR|WS|WV|YO|ZE)(\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}))|BFPO ?\\d{1,4})$","postal_code_placeholder":"NW1 6XE","country_iso_code":"GB"},"209":{"postal_code_type":"zip","postal_code_pattern":"^\\d{5}(?:-\\d{4})?$","postal_code_placeholder":"12345","country_iso_code":"US"},"302":{"postal_code_type":"zip","postal_code_pattern":"96898","postal_code_placeholder":"","country_iso_code":"UM"},"208":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"UY"},"248":{"postal_code_type":"zip","postal_code_pattern":"(008(?:(?:[0-4]\\d)|(?:5[01])))(?:[ \\-](\\d{4}))?","postal_code_placeholder":"","country_iso_code":"VI"},"210":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"UZ"},"211":{"postal_code_type":"postal","postal_code_pattern":"\\d{4}","postal_code_placeholder":"","country_iso_code":"VE"},"212":{"postal_code_type":"postal","postal_code_pattern":"\\d{6}","postal_code_placeholder":"","country_iso_code":"VN"},"224":{"postal_code_type":"postal","postal_code_pattern":"986\\d{2}","postal_code_placeholder":"","country_iso_code":"WF"},"213":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"EH"},"217":{"postal_code_type":"postal","postal_code_pattern":"\\d{5}","postal_code_placeholder":"","country_iso_code":"ZM"}},"ship_to_preference_capabilities":{"209":{"postal_code":{"is_assignable":true,"is_required":true}},"79":{"postal_code":{"is_assignable":true,"is_required":true}},"122":{"postal_code":{"is_assignable":true,"is_required":true}},"61":{"postal_code":{"is_assignable":true,"is_required":true}},"105":{"postal_code":{"is_assignable":true,"is_required":true}}},"category_id":68887416,"admin_toolbar_listing_data":[],"admin_tools_page_data":[],"currency_data":{"currency_id":840,"code":"USD","name":"United States Dollar","number_precision":2,"symbol":"$","listing_enabled":true,"browsing_enabled":true,"buyer_location_restricted":false,"rate_updates_enabled":true},"machine_translation\/listings_click_to_translate":true,"ads.prolist\/log_clicks_and_impressions":false,"mfg\/dovetail":true,"mfg\/buyer_facing_dovetail":true,"searchx\/4q18\/dwell_time_as_backend_event":false,"is_regulatory_buyer_disclosure_enabled":false,"machine_translation":{"mode":"disabled","listing_id":1421206271,"to_lang_code":"en-US","from_lang_code":"en-US","translated":null,"untranslated":null,"category_tags":null},"listing_fee":20,"presented_listing_fee":"$0.20 USD","listing_period_months":4,"apple_pay_api_version_number":12,"should_show_size_selector_pills":false,"max_pill_variations_display_length":19,"neu_buy_box_type":"offerings","listing_id":1421206271,"klarna_osm_js":"https:\/\/na-library.klarnaservices.com\/lib.js","is_eligible_for_klarna_osm":true,"selected_listing_variation_ids":[],"bundle_variation_property_ids":[],"is_eligible_for_post_atc_recs_mweb_drawer":false,"is_eligible_for_post_atc_recs_desktop_sidesheet":true,"sold_out_mismatch":false,"personalization_is_required":true,"personalization_maximum_character_count":256,"show_personalization_toggle":false,"google_client_id":"296956783393-2d8r0gljo87gjmdpmvkgbeasdmelq33e.apps.googleusercontent.com","show_one_tap_modal":false,"structured_policies_messages":{"module_name":"Shop policies","last_updated_on":"Last updated on","publish":"Publish Shop Policies","policies_save":"Save policies","policies_edit":"Edit policies","cancel":"Cancel","revert":"Use previous policies","edit":"Edit","loading":"Loading","preview_banner_kicker":"Policies preview","not_existing_policies_preview_banner_header":"Review and customize these policies so they work for you","preview_banner_body":"You can publish these to your shop or edit them if you need to make changes","preview_publish_confirm":"By clicking Publish, you'll post your Shop Policies and agree to comply with them.","revert_confirm":"Are you sure you want to revert?","leave_page_warning":"You are currently editing shop policies","private_receipt_info_title":"Private receipt info","private_receipt_info_body":"We have removed the 'Private Receipt Info' section of your policies page. You don't need to populate this section for the purposes of complying with international consumer protection laws anymore because this new Policies feature will automatically display the relevant content of your shop policies within the buyer receipt email instead.","private_receipt_info_link":"See this FAQ for more information","structured_banner_title":"Switch to simple shop policies","structured_banner_title_v2":"Set up simple shop policies","structured_banner_body":"We'll give you a quick template to create your shop policies in seconds.","structured_banner_button":"Try it now","new_simplified_policies":"Your new, simplified policies","new_policies_banner_description_1":"Buyers prefer policies that are short, clear and address their key concerns, so we've designed them that way.","new_policies_banner_description_2":"Review and customize these policies so they work for you. We've saved your previous policies, so you can always switch back.","new_policies_banner_description_3":"We've saved your previous policies, so you can always switch back.","new_policies_banner_learn_more":"Learn more","publish_policies_success":"Your new policies have been published!","publish_policies_error":"There was an error publishing your policies. Please try again.","policies_failed_to_load":"Shop policies failed to load","policies_try_again":"Try again","policies_saving":"Saving...","policies_publishing":"Publishing...","listing_preview_shipping":"This section will show shipping or download information once you publish your listing.","craft_shipping_section_title":"Shipping & policies","craft_payments_section_title":"Payments","craft_refunds_section_title":"Returns & exchanges","craft_terms_section_title":"Terms & conditions","craft_more_details_accordion_label":"+ See more...","listing_returns_and_exchanges":"See item details for return and exchange eligibility.","no_policies":"Looks like this shop doesn't have any custom policies. Have questions?","message_the_seller":"Message the seller","shipping_section_title":"Shipping","payments_section_title":"Payments","refunds_section_title":"Returns & exchanges","digital_section_title":"Downloads","terms_section_title":"Terms & conditions","more_details_accordion_label":"See more...","seller_details_section_title":"More information"},"shop_policy_selector":"[data-content-toggle-uid=shop_policies]","image_ids_by_listing_variation_ids":{"3256196774":4699532243,"3256196794":4699535445,"3256495664":4651291128,"3270581437":4651291114},"should_show_scrollable_thumbnails":true,"should_show_shop_home_image_carousel":true,"shouldShowThumbnails":true,"carousel_height_percentage_relative_to_width":[80,80,80,80,80,80,80,88.033333333333331438552704639732837677001953125],"is_eligible_for_conditional_tipper":false,"should_replace_bfp_with_atc":false,"is_eligible_for_atc_complementary_ads_all_ads":false,"is_eligible_for_atc_complementary_ads_two_ads":false,"is_external_landing_buy_box":false,"is_mobile_experience":false,"is_users_own_listing":false,"price_section_hide_low_in_stock":true,"product_details_content_toggle_selector":"[data-wt-content-toggle][aria-controls='wt-content-toggle-product-details-read-more']","should_show_description_content_toggle":true,"active_tab":"same_listing_reviews","allow_reviews_debug":false,"using_mweb_tabs":false,"load_tabbed_layout_js":true,"should_show_helpful_count":true,"should_use_br599_reviews_tabs_module":false,"should_show_skeleton_loader":false,"should_default_chronological_sort":false,"should_include_subratings":true,"zero_item_listing_reviews_non_dsml_sort":false,"use_shipping_variant_view":true,"shipping_section_default_open":true,"shipping_and_returns_is_eligible_for_sticky_buy_box":true,"estimated_shipping_is_eligible_for_sticky_buy_box":true,"is_postal_code_empty_on_initial_load":false,"invalid_postal_codes":{"209":["000","001","002","003","004","213","269","343","345","348","353","419","428","429","517","518","519","529","533","536","552","568","569","578","579","589","621","632","642","643","659","663","682","694","695","696","697","698","699","702","709","715","732","742","771","817","818","819","839","848","849","854","858","861","862","866","867","868","869","872","886","887","888","892","896","899","909","929","987"],"210":["000","001","002","003","004","213","269","343","345","348","353","419","428","429","517","518","519","529","533","536","552","568","569","578","579","589","621","632","642","643","659","663","682","694","695","696","697","698","699","702","709","715","732","742","771","817","818","819","839","848","849","854","858","861","862","866","867","868","869","872","886","887","888","892","896","899","909","929","987"]},"is_eligible_for_policies_in_overlay":true,"thumbnail_back_to_top":true});
})();
</script>
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR">__webpack_public_path__ = "https://www.etsy.com/daj/ac/primaryVendor/js/en-US/";</script>
<script nonce="dBBrW2e4pZv8nSJ3nPXl2GOR">(function() {
var asyncAvailable = true;
try {
eval("async () => {}");
} catch(e) {
asyncAvailable = false;
}
var falseUA = false && !asyncAvailable;
var primarySupportsAsync = !false && asyncAvailable;
var clientloggerIsEnabled = true;
if (clientloggerIsEnabled) {
if (falseUA) {
new Image().src = '/clientlog?falseua=1';
}
if (primarySupportsAsync) {
new Image().src = '/clientlog?primarysupportsasync=1';
}
if (window.__etsy_logging && window.__etsy_logging.bots && (window.__etsy_logging.bots.isBot || window.__etsy_logging.bots.botCheck.length > 0)) {
new Image().src = '/clientlog?feisbot=1&bot_check=' + encodeURIComponent(JSON.stringify(window.__etsy_logging.bots.botCheck));
}
}
})();</script>
<script defer="" nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" src="https://www.etsy.com/paula/v3/polyfill.min.js?etsy-v=v5&flags=gated&features=AbortController%2CDOMTokenList.prototype.@@iterator%2CDOMTokenList.prototype.forEach%2CIntersectionObserver%2CIntersectionObserverEntry%2CNodeList.prototype.@@iterator%2CNodeList.prototype.forEach%2CObject.preventExtensions%2CString.prototype.anchor%2CString.raw%2Cdefault%2Ces2015%2Ces2016%2Ces2017%2Ces2018%2Ces2019%2Ces2020%2Ces2021%2Ces2022%2Cfetch%2CgetComputedStyle%2CmatchMedia%2Cperformance.now" type="text/javascript"></script>
<script defer="" nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" src="https://www.etsy.com/daj/ac/primaryVendor/js/en-US/vendor_bundle.64cb8e52463392acd3b6.js" type="text/javascript"></script>
<script defer="" nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" src="https://www.etsy.com/daj/ac/primaryVendor/js/en-US/app-shell/globals/index.7e2dd60e213779a6b0b3.js" type="text/javascript"></script>
<script defer="" nonce="dBBrW2e4pZv8nSJ3nPXl2GOR" src="https://www.etsy.com/daj/ac/primaryVendor/js/en-US/bootstrap/listings3/main.4a4b73350ab141f3a903.js" type="text/javascript"></script>
<main id="content">
<div class="content-wrap listing-page-content" data-selector="listing-page-content">
<div class="wt-pt-xs-5 listing-page-content-container-wider wt-horizontal-center">
<div class="listing-buy-box-experiment" id="listing-right-column">
<div>
<div class="body-wrap wt-body-max-width wt-display-flex-md wt-flex-direction-column-xs">
<div class="image-col wt-order-xs-1 wt-mb-lg-6">
<div class="wt-display-flex-lg wt-position-relative wt-flex-lg-6 wt-flex-direction-row-lg wt-mb-xs-2 wt-mb-lg-0 wt-pl-md-4 wt-pl-lg-5 wt-pl-xs-2 wt-pr-xs-2 wt-pr-xl-2 wt-pr-md-4 wt-pr-lg-0">
<div class="wt-position-relative wt-flex-lg-6 wt-flex-direction-row-lg wt-mb-md-2 wt-mb-lg-0 wt-mr-lg-3 wt-pr-xl-2">
<div class="image-wrapper wt-position-relative carousel-container-responsive" id="photos">
<div class="wt-position-absolute wt-z-index-2 wt-position-top wt-position-left wt-mt-xs-1" data-listing-page-badge="" style="margin-left: 78px; ">
<div class="wt-popover" data-wt-popover="">
<button aria-describedby="etsys_pick" aria-disabled="true" class="wt-popover__trigger wt-popover__trigger--underline wt-display-inline-flex-xs wt-align-items-center wt-text-caption" data-wt-popover-trigger="">
<span class="wt-badge wt-badge--statusRecommendation wt-pl-xs-2">
<span class="wt-icon wt-icon--smaller-xs wt-nudge-r-3"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.4 14.1-3.7-1.9-1.8-3.6c-.3-.7-1.4-.7-1.8 0l-1.9 3.7-3.7 1.9c-.3.1-.5.4-.5.8s.2.7.6.9l3.7 1.9 1.9 3.7c.1.3.4.5.8.5s.7-.2.9-.6l1.9-3.7 3.7-1.9c.3-.2.6-.5.6-.9s-.3-.6-.7-.8Zm6-8L19 4.9l-1.2-2.4c-.3-.7-1.4-.7-1.8 0l-1.2 2.4-2.4 1.2c-.2.2-.4.5-.4.9s.2.7.6.9L15 9.1l1.2 2.4c.2.3.5.6.9.6s.7-.2.9-.6l1.2-2.4 2.4-1.2c.2-.2.4-.5.4-.9s-.2-.7-.6-.9Z"></path></svg></span>Etsy’s Pick
</span>
</button>
<div id="etsys_pick" role="tooltip">
Etsy’s Picks are hand selected by our style experts to highlight items from shops that have shown quality, reliability and style. <p class="wt-mt-xs-3"><a href="https://www.etsy.com/featured/hub/etsy-picks?ref=listing_etsys_pick_signal" target="_blank"> Discover More </a></p>
</div>
</div>
</div>
<button class="btn--focus inline-overlay-trigger favorite-item-action wt-position-absolute wt-btn wt-btn--light wt-btn--small wt-z-index-2 wt-btn--filled wt-btn--icon wt-btn--fixed-floating wt-position-right wt-mr-xs-2 wt-mt-xs-2" data-accessible-btn-fave="" data-always-show="true" data-favorite-label="Add to Favorites" data-favorited-label="Remove from Favorites" data-listing-id="1421206271" data-ui="favorite-listing-button">
<div class="favorite-listing-button-icon-container should-animate" data-btn-fave="" data-favorite-icon-container="" data-neu-fave="" data-source="listing-page">
<span class="etsy-icon wt-nudge-t-2 wt-display-block" data-not-favorited-icon=""><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,21C10.349,21,2,14.688,2,9,2,5.579,4.364,3,7.5,3A6.912,6.912,0,0,1,12,5.051,6.953,6.953,0,0,1,16.5,3C19.636,3,22,5.579,22,9,22,14.688,13.651,21,12,21ZM7.5,5C5.472,5,4,6.683,4,9c0,4.108,6.432,9.325,8,10,1.564-.657,8-5.832,8-10,0-2.317-1.472-4-3.5-4-1.979,0-3.7,2.105-3.721,2.127L11.991,8.1,11.216,7.12C11.186,7.083,9.5,5,7.5,5Z"></path></svg></span>
<span class="etsy-icon wt-nudge-t-2 wt-text-brick wt-display-none" data-favorited-icon=""><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16.5,3A6.953,6.953,0,0,0,12,5.051,6.912,6.912,0,0,0,7.5,3C4.364,3,2,5.579,2,9c0,5.688,8.349,12,10,12S22,14.688,22,9C22,5.579,19.636,3,16.5,3Z"></path></svg></span>
</div>
<!--icon font and display:none; elements -->
<span aria-hidden="true" class="icon"></span>
<span class="wt-screen-reader-only" data-a11y-label="">
Add to Favorites
</span>
</button>
<div class="listing-page-image-carousel-component wt-display-flex-xs wt-mb-lg-2 wt-mb-sm-8" data-component="listing-page-image-carousel" data-palette-listing-id="1421206271" data-shop-id="5316483">
<div class="image-carousel-container wt-position-relative wt-flex-xs-6 wt-order-xs-2 show-scrollable-thumbnails">
<ul class="wt-list-unstyled wt-position-relative carousel-pane-list" data-carousel-pane-list="" style="padding-top: 80%;" tabindex="0">
<li class="wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4918316027" data-index="0" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 1" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-carousel-first-image="" data-index="0" data-original-image-width="2048" data-perf-group="main-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_fullxfull.4918316027_2tck.jpg" fetchpriority="high" src="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_794xN.4918316027_2tck.jpg" srcset="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_794xN.4918316027_2tck.jpg 1x, https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1588xN.4918316027_2tck.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4699532243" data-index="1" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Pink" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="1" data-original-image-width="3000" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_fullxfull.4699532243_89fq.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_794xN.4699532243_89fq.jpg" srcset="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_794xN.4699532243_89fq.jpg 1x, https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_1588xN.4699532243_89fq.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4651291128" data-index="2" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Blue" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="2" data-original-image-width="3000" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_fullxfull.4651291128_gabi.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_794xN.4651291128_gabi.jpg" srcset="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_794xN.4651291128_gabi.jpg 1x, https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_1588xN.4651291128_gabi.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4651291114" data-index="3" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Yellow" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="3" data-original-image-width="3000" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_fullxfull.4651291114_oef3.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_794xN.4651291114_oef3.jpg" srcset="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_794xN.4651291114_oef3.jpg 1x, https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_1588xN.4651291114_oef3.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4699535445" data-index="4" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt White" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="4" data-original-image-width="2236" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_fullxfull.4699535445_qaaz.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_794xN.4699535445_qaaz.jpg" srcset="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_794xN.4699535445_qaaz.jpg 1x, https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_1588xN.4699535445_qaaz.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4692122041" data-index="5" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 6" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="5" data-original-image-width="2048" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_fullxfull.4692122041_aony.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_794xN.4692122041_aony.jpg" srcset="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_794xN.4692122041_aony.jpg 1x, https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_1588xN.4692122041_aony.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4947354201" data-index="6" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 7" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="6" data-original-image-width="2996" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_fullxfull.4947354201_93zg.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_794xN.4947354201_93zg.jpg" srcset="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_794xN.4947354201_93zg.jpg 1x, https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_1588xN.4947354201_93zg.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane="" data-image-id="4730921574" data-index="7" data-palette-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 8" class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" data-index="7" data-original-image-width="3000" data-perf-group="secondary-product-image" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_fullxfull.4730921574_ffrp.jpg" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_794xN.4730921574_ffrp.jpg" srcset="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_794xN.4730921574_ffrp.jpg 1x, https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_1588xN.4730921574_ffrp.jpg 2x"/>
</li>
<li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane no-zoom" data-carousel-pane="" data-index="8" data-no-zoom="" data-shop-home-listings-pane="">
<div class="recs-appears-logger" data-appears-component-name="Etsy-Modules-ListingPage-ImageCarousel-DesktopView" data-appears-event-data='{"module_placement":"lp_image_carousel","datasets":["Listing_Candidates_SameShop"],"targets":[1421206271,1421206271,1421206271,1421206271],"logging_class":"Etsy\\Modules\\ListingPage\\ImageCarousel\\DesktopView","page_listing_id":1421206271,"mmx_request_uuid_map":[],"candidate_source_map":[],"target_listing_id":1421206271,"listing_ids":[1431255885,1431190437,683523829,1006931416],"listing_prices_usd":[26,26,26,24],"taxonomy_ids":[25,25,25,25],"scores":[],"rec_event_name":"recommendations_module"}'>
<div class="wt-height-full wt-display-flex-xs wt-align-items-center wt-justify-content-center">
<a class="shop-home-ingress-card" href="https://www.etsy.com/shop/abovealldesigns?ref=listing_carousel_shop_home_ingress&listing_id=1421206271#items" target="_blank">
<div class="wt-display-flex-xs wt-justify-content-center">
<div class="shop-home-ingress-card-container">
<div class="wt-display-flex-xs wt-justify-content-space-between wt-align-items-center">
<div class="wt-display-inline">
<h3 class="wt-text-heading">See 50+ items from this shop</h3>
</div>
<img alt="Image preview of 4 items related to the listing and link to see 50+ items from this shop" class="top-image" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/87a582/4689551840/il_300x300.4689551840_ih48.jpg" srcset="https://i.etsystatic.com/5316483/r/il/87a582/4689551840/il_175x175.4689551840_ih48.jpg 1x, https://i.etsystatic.com/5316483/r/il/87a582/4689551840/il_300x300.4689551840_ih48.jpg 2x"/>
</div>
<div class="wt-display-flex-xs wt-align-items-center wt-pt-xs-2">
<img alt="Image preview of 4 items related to the listing and link to see 50+ items from this shop" class="wt-mr-xs-2 left-image" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/ac0842/4737768121/il_300x300.4737768121_3r0f.jpg" srcset="https://i.etsystatic.com/5316483/r/il/ac0842/4737768121/il_175x175.4737768121_3r0f.jpg 1x, https://i.etsystatic.com/5316483/r/il/ac0842/4737768121/il_300x300.4737768121_3r0f.jpg 2x"/>
<img alt="Image preview of 4 items related to the listing and link to see 50+ items from this shop" class="wt-mr-xs-2" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/0889c0/4689549902/il_300x300.4689549902_j236.jpg" srcset="https://i.etsystatic.com/5316483/r/il/0889c0/4689549902/il_175x175.4689549902_j236.jpg 1x, https://i.etsystatic.com/5316483/r/il/0889c0/4689549902/il_300x300.4689549902_j236.jpg 2x"/>
<img alt="Image preview of 4 items related to the listing and link to see 50+ items from this shop" class="right-image" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/33df77/3136078249/il_300x300.3136078249_pt1k.jpg" srcset="https://i.etsystatic.com/5316483/r/il/33df77/3136078249/il_175x175.3136078249_pt1k.jpg 1x, https://i.etsystatic.com/5316483/r/il/33df77/3136078249/il_300x300.3136078249_pt1k.jpg 2x"/>
</div>
</div>
</div>
</a>
</div>
</div>
</li>
</ul>
<button aria-label="Previous image" class="wt-circle wt-position-absolute wt-vertical-center wt-position-left wt-btn wt-btn--filled wt-btn--light wt-btn--icon wt-shadow-01 wt-ml-xs-2" data-carousel-nav-button="" data-direction="prev">
<span class="etsy-icon wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16,21a0.994,0.994,0,0,1-.664-0.253L5.5,12l9.841-8.747a1,1,0,0,1,1.328,1.494L8.5,12l8.159,7.253A1,1,0,0,1,16,21Z"></path></svg></span>
</button>
<button aria-label="Next image" class="wt-circle wt-position-absolute wt-vertical-center wt-position-right wt-btn wt-btn--filled wt-btn--light wt-btn--icon wt-shadow-01 wt-mr-xs-2" data-carousel-nav-button="" data-direction="next">
<span class="etsy-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8,21a1,1,0,0,1-.664-1.747L15.5,12,7.336,4.747A1,1,0,0,1,8.664,3.253L18.5,12,8.664,20.747A0.994,0.994,0,0,1,8,21Z"></path></svg></span>
</button>
</div>
<div>
<div class="carousel-pagination-item-v2 wt-position-absolute wt-position-top wt-position-left wt-z-index-9" data-thumbnail-scroll-up="">
</div>
<div class="carousel-pagination-item-v2 wt-position-absolute wt-position-bottom wt-position-left wt-z-index-9" data-thumbnail-scroll-down="">
</div>
<div class="wt-position-absolute wt-overflow-scroll wt-position-top wt-position-bottom wt-position-left scroll-container-no-scrollbar" data-thumbnail-scroll-container="">
<ul class="wt-list-unstyled wt-display-flex-xs wt-order-xs-1 wt-flex-direction-column-xs wt-align-items-flex-end" data-carousel-pagination-list="">
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4918316027" data-index="0" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 1" aria-label="product image 1 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_75x75.4918316027_2tck.jpg" src="">
</img></li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4699532243" data-index="1" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Pink" aria-label="product image Neon Pink 2 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_75x75.4699532243_89fq.jpg" src="">
</img></li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4651291128" data-index="2" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Blue" aria-label="product image Neon Blue 3 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_75x75.4651291128_gabi.jpg" src="">
</img></li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4651291114" data-index="3" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Yellow" aria-label="product image Neon Yellow 4 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_75x75.4651291114_oef3.jpg" src="">
</img></li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4699535445" data-index="4" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt White" aria-label="product image White 5 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_75x75.4699535445_qaaz.jpg" src=""/>
</li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4692122041" data-index="5" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 6" aria-label="product image 6 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_75x75.4692122041_aony.jpg" src=""/>
</li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4947354201" data-index="6" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 7" aria-label="product image 7 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_75x75.4947354201_93zg.jpg" src=""/>
</li>
<li class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="4730921574" data-index="7" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 8" aria-label="product image 8 of 8" class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image="" data-should-fade-in-on-load="true" data-src-delay="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_75x75.4730921574_ffrp.jpg" src=""/>
</li>
<li class="wt-display-flex-xs wt-align-items-center wt-justify-content-center carousel-shop-home-listings__thumbnail wt-mr-xs-1 wt-mb-xs-1 wt-flex-shrink-xs-0 wt-rounded carousel-pagination-item-v2" data-carousel-pagination-item="" data-image-id="" data-index="8" tabindex="0">
<span class="wt-icon wt-icon--base-xs wt-text-white"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M19 13a1 1 0 00-1 1v1H6v-1a1 1 0 10-2 0v7a1 1 0 001 1h14a1 1 0 001-1v-7a1 1 0 00-1-1zm-1 7H6v-3h12v3zm-.15-17.53A1 1 0 0017 2H7a1 1 0 00-.85.47L2 9a3.77 3.77 0 001.12 2.09 3.47 3.47 0 002.35.91 3.51 3.51 0 003.26-2.23 3.51 3.51 0 006.53 0A3.51 3.51 0 0018.53 12c.866 0 1.7-.325 2.34-.91A3.77 3.77 0 0022 9l-4.15-6.53zM4.43 9l3.12-5h8.89l3.13 5H4.43z"></path>
</svg></span>
</li>
</ul>
</div>
</div>
<div aria-hidden="true" class="wt-overlay image-overlay wt-justify-content-center" data-animate-out="false" data-image-overlay="" id="image-overlay" role="dialog">
<div class="wt-display-flex-xs wt-justify-content-center wt-height-full image-overlay-main-image-container" data-overlay-modal="">
<button aria-label="close" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-right wt-position-top wt-mt-xs-2 wt-mr-xs-2" data-wt-overlay-close="true">
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z"></path></svg></span>
</button>
<div class="wt-position-relative wt-mr-xl-4 wt-mr-xs-2 wt-ml-xs-2 wt-flex-grow-xs-1 wt-mb-xs-4 wt-mt-xs-10" data-overlay-main-image-container="">
<button aria-label="previous" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-left wt-vertical-center wt-shadow-01 wt-ml-xs-2" data-image-overlay-prev="true">
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16,21a0.994,0.994,0,0,1-.664-0.253L5.5,12l9.841-8.747a1,1,0,0,1,1.328,1.494L8.5,12l8.159,7.253A1,1,0,0,1,16,21Z"></path></svg></span>
</button>
<button aria-label="next" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-right wt-vertical-center wt-shadow-01 wt-mr-xs-2" data-image-overlay-next="true">
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8,21a1,1,0,0,1-.664-1.747L15.5,12,7.336,4.747A1,1,0,0,1,8.664,3.253L18.5,12,8.664,20.747A0.994,0.994,0,0,1,8,21Z"></path></svg></span>
</button>
<ul class="wt-list-unstyled wt-overflow-hidden image-overlay-list wt-position-relative wt-vertical-center wt-display-flex-xs wt-justify-content-center" data-image-overlay-list="" style="padding-top: 80%;" tabindex="0">
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-image-id="4918316027" data-index="0" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 1" class="wt-rounded image-overlay-img wt-vertical-center" data-delay-src="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1140xN.4918316027_2tck.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1140xN.4918316027_2tck.jpg 1x, https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_1588xN.4918316027_2tck.jpg 2x" data-index="0" data-original-image-height="2048" data-original-image-width="2048" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_fullxfull.4918316027_2tck.jpg"/>
</li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background wt-flex-direction-column-sm" data-image-id="4699532243" data-index="1" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Pink" class="wt-rounded image-overlay-img wt-horizontal-center image-overlay-img-with-caption" data-delay-src="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_1140xN.4699532243_89fq.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_1140xN.4699532243_89fq.jpg 1x, https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_1588xN.4699532243_89fq.jpg 2x" data-index="1" data-original-image-height="3000" data-original-image-width="3000" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_fullxfull.4699532243_89fq.jpg"/>
<div class="wt-display-flex-xs wt-flex-wrap wt-justify-content-space-between wt-mt-xs-3 wt-align-items-center">
<div class="wt-display-flex-sm wt-align-items-center">
<span class="wt-text-caption wt-text-white">Item in the photo is in <strong>SHIRT COLOR: Neon Pink</strong></span>
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Pink" class="wt-circle wt-ml-sm-2 image-overlay-caption-thumbnail" data-delay-src="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_75x75.4699532243_89fq.jpg"/>
</div>
<div>
<button class="wt-btn wt-btn--secondary wt-btn--light wt-btn--small" data-image-id="4699532243" data-selector="image-caption-variation-selection-button">
Select this option
</button>
<div class="wt-display-none" data-image-id="4699532243" data-selector="image-caption-variation-selection-confirmation-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M10.553 16.967l-4.26-4.26a1 1 0 011.414-1.414l2.74 2.74 5.797-6.688a1 1 0 011.512 1.31l-7.203 8.312z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
Option selected!
</p>
</div>
</div>
<div class="wt-display-none" data-image-id="4699532243" data-selector="image-caption-variation-selection-disabled-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7 20c-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4C7.6 16.9 9.9 16 12 16c2.2 0 4.4.9 5.7 2.3.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-1-1-2.7-1.7-4.3-1.7-1.6 0-3.3.7-4.3 1.7-.2.2-.4.3-.7.3zm12.6-7.9c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3zm-15 0c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
This option is sold out.
</p>
</div>
</div>
</div>
</div>
</li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background wt-flex-direction-column-sm" data-image-id="4651291128" data-index="2" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Blue" class="wt-rounded image-overlay-img wt-horizontal-center image-overlay-img-with-caption" data-delay-src="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_1140xN.4651291128_gabi.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_1140xN.4651291128_gabi.jpg 1x, https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_1588xN.4651291128_gabi.jpg 2x" data-index="2" data-original-image-height="3000" data-original-image-width="3000" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_fullxfull.4651291128_gabi.jpg">
<div class="wt-display-flex-xs wt-flex-wrap wt-justify-content-space-between wt-mt-xs-3 wt-align-items-center">
<div class="wt-display-flex-sm wt-align-items-center">
<span class="wt-text-caption wt-text-white">Item in the photo is in <strong>SHIRT COLOR: Neon Blue</strong></span>
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Blue" class="wt-circle wt-ml-sm-2 image-overlay-caption-thumbnail" data-delay-src="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_75x75.4651291128_gabi.jpg"/>
</div>
<div>
<button class="wt-btn wt-btn--secondary wt-btn--light wt-btn--small" data-image-id="4651291128" data-selector="image-caption-variation-selection-button">
Select this option
</button>
<div class="wt-display-none" data-image-id="4651291128" data-selector="image-caption-variation-selection-confirmation-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M10.553 16.967l-4.26-4.26a1 1 0 011.414-1.414l2.74 2.74 5.797-6.688a1 1 0 011.512 1.31l-7.203 8.312z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
Option selected!
</p>
</div>
</div>
<div class="wt-display-none" data-image-id="4651291128" data-selector="image-caption-variation-selection-disabled-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7 20c-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4C7.6 16.9 9.9 16 12 16c2.2 0 4.4.9 5.7 2.3.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-1-1-2.7-1.7-4.3-1.7-1.6 0-3.3.7-4.3 1.7-.2.2-.4.3-.7.3zm12.6-7.9c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3zm-15 0c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
This option is sold out.
</p>
</div>
</div>
</div>
</div>
</img></li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background wt-flex-direction-column-sm" data-image-id="4651291114" data-index="3" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Yellow" class="wt-rounded image-overlay-img wt-horizontal-center image-overlay-img-with-caption" data-delay-src="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_1140xN.4651291114_oef3.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_1140xN.4651291114_oef3.jpg 1x, https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_1588xN.4651291114_oef3.jpg 2x" data-index="3" data-original-image-height="3000" data-original-image-width="3000" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_fullxfull.4651291114_oef3.jpg">
<div class="wt-display-flex-xs wt-flex-wrap wt-justify-content-space-between wt-mt-xs-3 wt-align-items-center">
<div class="wt-display-flex-sm wt-align-items-center">
<span class="wt-text-caption wt-text-white">Item in the photo is in <strong>SHIRT COLOR: Neon Yellow</strong></span>
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Yellow" class="wt-circle wt-ml-sm-2 image-overlay-caption-thumbnail" data-delay-src="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_75x75.4651291114_oef3.jpg"/>
</div>
<div>
<button class="wt-btn wt-btn--secondary wt-btn--light wt-btn--small" data-image-id="4651291114" data-selector="image-caption-variation-selection-button">
Select this option
</button>
<div class="wt-display-none" data-image-id="4651291114" data-selector="image-caption-variation-selection-confirmation-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M10.553 16.967l-4.26-4.26a1 1 0 011.414-1.414l2.74 2.74 5.797-6.688a1 1 0 011.512 1.31l-7.203 8.312z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
Option selected!
</p>
</div>
</div>
<div class="wt-display-none" data-image-id="4651291114" data-selector="image-caption-variation-selection-disabled-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7 20c-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4C7.6 16.9 9.9 16 12 16c2.2 0 4.4.9 5.7 2.3.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-1-1-2.7-1.7-4.3-1.7-1.6 0-3.3.7-4.3 1.7-.2.2-.4.3-.7.3zm12.6-7.9c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3zm-15 0c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
This option is sold out.
</p>
</div>
</div>
</div>
</div>
</img></li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background wt-flex-direction-column-sm" data-image-id="4699535445" data-index="4" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt White" class="wt-rounded image-overlay-img wt-horizontal-center image-overlay-img-with-caption" data-delay-src="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_1140xN.4699535445_qaaz.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_1140xN.4699535445_qaaz.jpg 1x, https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_1588xN.4699535445_qaaz.jpg 2x" data-index="4" data-original-image-height="2236" data-original-image-width="2236" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_fullxfull.4699535445_qaaz.jpg">
<div class="wt-display-flex-xs wt-flex-wrap wt-justify-content-space-between wt-mt-xs-3 wt-align-items-center">
<div class="wt-display-flex-sm wt-align-items-center">
<span class="wt-text-caption wt-text-white">Item in the photo is in <strong>SHIRT COLOR: White</strong></span>
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt White" class="wt-circle wt-ml-sm-2 image-overlay-caption-thumbnail" data-delay-src="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_75x75.4699535445_qaaz.jpg"/>
</div>
<div>
<button class="wt-btn wt-btn--secondary wt-btn--light wt-btn--small" data-image-id="4699535445" data-selector="image-caption-variation-selection-button">
Select this option
</button>
<div class="wt-display-none" data-image-id="4699535445" data-selector="image-caption-variation-selection-confirmation-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M10.553 16.967l-4.26-4.26a1 1 0 011.414-1.414l2.74 2.74 5.797-6.688a1 1 0 011.512 1.31l-7.203 8.312z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
Option selected!
</p>
</div>
</div>
<div class="wt-display-none" data-image-id="4699535445" data-selector="image-caption-variation-selection-disabled-message">
<div aria-hidden="true" class="wt-display-inline-flex-xs wt-p-xs-1">
<span class="wt-icon wt-text-white wt-icon--smaller"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7 20c-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4C7.6 16.9 9.9 16 12 16c2.2 0 4.4.9 5.7 2.3.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-1-1-2.7-1.7-4.3-1.7-1.6 0-3.3.7-4.3 1.7-.2.2-.4.3-.7.3zm12.6-7.9c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3zm-15 0c-1.4 0-2.6-.7-3.3-1.3-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0 .3.3 1.9 1.6 3.6 0 .4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-1 .9-2.1 1.3-3.1 1.3z"></path>
</svg></span>
<p class="wt-text-caption-title wt-text-white wt-ml-xs-1">
This option is sold out.
</p>
</div>
</div>
</div>
</div>
</img></li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-image-id="4692122041" data-index="5" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 6" class="wt-rounded image-overlay-img wt-vertical-center" data-delay-src="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_1140xN.4692122041_aony.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_1140xN.4692122041_aony.jpg 1x, https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_1588xN.4692122041_aony.jpg 2x" data-index="5" data-original-image-height="2048" data-original-image-width="2048" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_fullxfull.4692122041_aony.jpg">
</img></li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-image-id="4947354201" data-index="6" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 7" class="wt-rounded image-overlay-img wt-vertical-center" data-delay-src="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_1140xN.4947354201_93zg.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_1140xN.4947354201_93zg.jpg 1x, https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_1588xN.4947354201_93zg.jpg 2x" data-index="6" data-original-image-height="3000" data-original-image-width="2996" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_fullxfull.4947354201_93zg.jpg"/>
</li>
<li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-image-id="4730921574" data-index="7" data-listing-image="">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 8" class="wt-rounded image-overlay-img wt-vertical-center" data-delay-src="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_1140xN.4730921574_ffrp.jpg" data-delay-srcset="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_1140xN.4730921574_ffrp.jpg 1x, https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_1588xN.4730921574_ffrp.jpg 2x" data-index="7" data-original-image-height="2641" data-original-image-width="3000" data-src-zoom-image="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_fullxfull.4730921574_ffrp.jpg"/>
</li>
<div class="wt-z-index-1 click-to-zoom-text wt-position-absolute wt-display-none" data-click-to-zoom-toast="">
<span class="wt-badge wt-badge--promoted">
<span class="wt-icon wt-icon--smallest"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10,2a8,8,0,1,0,8,8A8.009,8.009,0,0,0,10,2Zm0,14a6,6,0,1,1,6-6A6.007,6.007,0,0,1,10,16Z"></path><path d="M14,9H11V6A1,1,0,1,0,9,6V9H6a1,1,0,0,0,0,2H9v3a1,1,0,1,0,2,0V11h3A1,1,0,0,0,14,9Z"></path><path d="M21.707,20.293l-4-4a1,1,0,0,0-1.414,1.414l4,4A1,1,0,0,0,21.707,20.293Z"></path></svg></span>
Click to zoom
</span>
</div>
</ul>
</div>
<div class="wt-overflow-y-auto wt-position-relative image-overlay-thumbnail-container wt-z-index-1 wt-pt-xs-10" data-thumbnail-container="">
<ul class="wt-z-index-1 wt-list-unstyled wt-flex-direction-row-lg wt-flex-direction-column-xs wt-display-flex-xs wt-flex-wrap wt-align-content-flex-start" data-image-overlay-thumbnail-list="">
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4918316027" data-index="0" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 1" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/5e3731/4918316027/il_300x300.4918316027_2tck.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4699532243" data-index="1" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Pink" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/b10ca8/4699532243/il_300x300.4699532243_89fq.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4651291128" data-index="2" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Blue" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/cdd28d/4651291128/il_300x300.4651291128_gabi.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4651291114" data-index="3" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt Neon Yellow" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/c95fd4/4651291114/il_300x300.4651291114_oef3.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4699535445" data-index="4" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt White" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/72c461/4699535445/il_300x300.4699535445_qaaz.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4692122041" data-index="5" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 6" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/5aeca8/4692122041/il_300x300.4692122041_aony.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4947354201" data-index="6" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 7" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/d02bbe/4947354201/il_300x300.4947354201_93zg.jpg"/>
</li>
<li class="wt-rounded image-overlay-thumbnail wt-mb-xs-2" data-image-id="4730921574" data-index="7" tabindex="0">
<img alt="NEON Shadow Block Embroidered Monogram Sweatshirt image 8" class="wt-skeleton-ui" data-carousel-thumbnail-image="" loading="lazy" src="https://i.etsystatic.com/5316483/r/il/87ac50/4730921574/il_300x300.4730921574_ffrp.jpg"/>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cart-col wt-order-xs-2 wt-mb-lg-6">
<div class="wt-display-flex-lg wt-flex-direction-column-md wt-flex-lg-3 wt-pl-md-4 wt-pr-md-4 wt-pl-lg-0 wt-pr-lg-5 wt-pl-xs-2 wt-pr-xs-2" id="listing-page-cart">
<div class="wt-mb-xs-1 wt-mt-xs-1">
<p class="wt-text-title-01 wt-text-brick">In 8 carts</p>
</div>
<div data-buy-box-region="price">
<div class="wt-display-flex-xs wt-align-items-center wt-justify-content-space-between">
<div class="wt-display-flex-xs wt-align-items-center wt-flex-wrap" data-selector="price-only">
<p class="wt-text-title-largest wt-mr-xs-1">
<span class="wt-screen-reader-only">Price:</span>
$34.00
</p>
<div aria-live="assertive" class="wt-spinner wt-spinner--01 wt-display-none" data-buy-box-price-spinner="">
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" fill="transparent" r="10"></circle></svg></span>
Loading
</div>
</div>
</div>
</div>
<div data-buy-box-region="vat_messaging">
</div>
<div class="wt-mb-xs-1">
<h1 class="wt-text-body-01 wt-line-height-tight wt-break-word wt-mt-xs-1" data-buy-box-listing-title="true">
NEON Shadow Block Embroidered Monogram Sweatshirt
</h1>
</div>
<div class="wt-mb-xs-3">
<div class="wt-display-inline-flex-xs wt-align-items-center wt-flex-wrap">
<div class="wt-display-inline-flex-xs wt-align-items-center">
<span class="wt-text-title-small"><a class="wt-text-link-no-underline wt-text-black" href="https://www.etsy.com/shop/abovealldesigns?ref=shop-header-name&listing_id=1421206271">abovealldesigns</a></span>
<div class="wt-popover star-seller-badge-listing-page" data-wt-popover="">
<button aria-describedby="simplified-star-seller-popover" class="wt-popover__trigger wt-popover__trigger--underline" data-wt-popover-trigger="">
<span alt="star_seller" class="wt-icon wt-icon--smaller-xs wt-icon--core wt-fill-lavender-light"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.902 7.09l-2.317-1.332-1.341-2.303H14.56L12.122 2 9.805 3.333H7.122L5.78 5.758 3.341 7.09v2.667L2 12.06l1.341 2.303v2.666l2.318 1.334L7 20.667h2.683L12 22l2.317-1.333H17l1.341-2.303 2.317-1.334v-2.666L22 12.06l-1.341-2.303V7.09h.243zm-6.097 6.062l.732 3.515-.488.363-2.927-1.818-3.049 1.697-.488-.363.732-3.516-2.56-2.181.121-.485 3.537-.243 1.341-3.273h.488l1.341 3.273 3.537.243.122.484-2.44 2.303z"></path>
</svg></span>
</button>
<div class="wt-p-xs-3" id="simplified-star-seller-popover" role="tooltip">
<p class="wt-mb-xs-1 wt-text-title-01">
Star Seller
</p>
<p class="wt-text-caption">
Star Sellers have an outstanding track record for providing a great customer experience—they consistently earned 5-star reviews, shipped orders on time, and replied quickly to any messages they received.
</p>
</div>
</div>
</div>
<div class="wt-ml-xs-1">
<a class="wt-text-link-no-underline review-stars-text-decoration-none" href="#reviews">
<span class="wt-display-inline-block wt-mr-xs-1" data-stars-svg-container="">
<input name="initial-rating" type="hidden" value="4.9216"/>
<input name="rating" type="hidden" value="4.9216"/>
<span class="wt-screen-reader-only">5 out of 5 stars</span>
<span>
<span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="0"><svg aria-hidden="true" focusable="false" viewbox="3 3 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z"></path></svg></span>
<span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="1"><svg aria-hidden="true" focusable="false" viewbox="3 3 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z"></path></svg></span>
<span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="2"><svg aria-hidden="true" focusable="false" viewbox="3 3 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z"></path></svg></span>
<span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="3"><svg aria-hidden="true" focusable="false" viewbox="3 3 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z"></path></svg></span>
<span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="4"><svg aria-hidden="true" focusable="false" viewbox="3 3 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z"></path></svg></span>
</span>
</span>
</a>
</div>
</div>
</div>
<div class="wt-mb-xs-6 wt-mb-lg-0">
<div data-buy-box="">
<div class="wt-mb-xs-3">
<div data-selector="listing-page-buybox-quick-delivery-container">
</div>
<div data-selector="listing-page-variations">
<div class="wt-validation wt-mb-xs-2" data-selector="listing-page-variation" data-variation-number="0">
<div class="wt-display-flex-xs wt-justify-content-space-between wt-align-items-baseline">
<label class="wt-label wt-display-block wt-text-caption" for="variation-selector-0">
<span data-label="">
SHIRT COLOR
</span>
<span class="wt-label__required" data-required-text="Required">
</span></label>
</div>
<div class="wt-select">
<select class="wt-select__element" data-variation-number="0" id="variation-selector-0">
<option selected="" value="">
Select an option
</option>
<option value="3256196774">
Neon Pink
</option>
<option value="3270581437">
Neon Yellow
</option>
<option value="3256495664">
Neon Blue
</option>
<option value="3256196794">
White
</option>
</select>
</div>
<div class="wt-validation__message wt-validation__message--is-hidden" id="error-variation-selector-0">
Please select an option
</div>
</div><div class="wt-validation wt-mb-xs-2" data-selector="listing-page-variation" data-variation-number="1">
<div class="wt-display-flex-xs wt-justify-content-space-between wt-align-items-baseline">
<label class="wt-label wt-display-block wt-text-caption" for="variation-selector-1">
<span data-label="">
SIZE
</span>
<span class="wt-label__required" data-required-text="Required">
</span></label>
</div>
<div class="wt-select">
<select class="wt-select__element" data-variation-number="1" id="variation-selector-1">
<option selected="" value="">
Select an option
</option>
<option value="3270581417">
Small
</option>
<option value="3270581421">
Medium
</option>
<option value="3256196778">
Large
</option>
<option value="3256196782">
X-Large
</option>
</select>
</div>
<div class="wt-validation__message wt-validation__message--is-hidden" id="error-variation-selector-1">
Please select an option
</div>
</div>
</div>
<div class="wt-validation wt-mb-xs-2" data-personalization-required="" data-selector="listing-page-personalization">
<label class="wt-label wt-text-caption wt-mt-xs-2" for="listing-page-personalization-textarea" id="personalization-field-label">
Add your personalization
<span class="wt-label__required" data-required-text="Required">
</span></label>
<p class="wt-text-caption wt-text-gray wt-mb-xs-1" id="personalization-instructions">
Please list the following:<br/>1. Initials (up to 3 initials max)<br/>2. Thread color for top initial color<br/>3. Thread color for shadow<br/><br/>****If no colors are picked, we will use the colors shown in the sample pictures.
</p>
<textarea aria-describedby="personalization-instructions" aria-labelledby="personalization-field-label" aria-required="true" class="wt-textarea wt-textarea" id="listing-page-personalization-textarea" rows="1"></textarea>
<div class="wt-text-caption wt-text-right-xs" data-selector="listing-page-personalization-character-remaining">
256
</div>
<div aria-atomic="true" aria-live="polite" class="wt-screen-reader-only" id="personalization-screen-reader-character-remaining">
<!-- content is injected here when character limit hits 10 or lower -->
</div>
<div class="wt-validation__message" data-character-limit-error="You’ve reached the limit! Use 256 characters or less." data-empty-error="This item requires personalization" data-selector="personalization-error" id="personalization-error" role="alert">
</div>
</div>
</div>
<div data-selector="highlight-checklist-region">
</div>
<div class="wt-mb-xs-2" data-buy-box-region="klarna_osm_messaging" data-klarna-client-id="" data-klarna-osm-container="">
</div>
<div class="wt-display-flex-xs wt-flex-direction-column-xs wt-flex-wrap wt-flex-direction-row-md wt-flex-direction-column-lg">
<div class="wt-grid__item-xs-12 wt-mb-xs-2 wt-display-none" id="mao-button-disabled-text-div">
<p class="wt-text-body-body wt-text-gray wt-text-center-xs">
You can only make an offer when buying a single item
</p>
</div>
<div class="wt-validation wt-flex-xs-1" data-buy-box-region="add_to_cart_form">
<form action="/cart/listing.php" class="add-to-cart-form" data-buy-box-add-to-cart-form="" method="post">
<input name="listing_id" type="hidden" value="1421206271"/>
<input name="ref" type="hidden" value="listing_page"/>
<input name="listing_inventory_id" type="hidden" value=""/>
<input name="shipping_method_id" type="hidden" value=""/>
<input name="personalization" type="hidden" value=""/>
<input name="quantity" type="hidden" value="1"/>
<input class="wt-display-none" name="_nnc" type="hidden" value="3:1697337013:toZv4JOUccwLJZkMERhyKxNizwpa:3f12e27cd8a4051f5df1b6cdbf37f19a8e3b74f3db69b19bc1bb5d287307d321"/>
<div class="wt-width-full" data-add-to-cart-button="" data-selector="add-to-cart-button">
<button class="wt-btn wt-btn--filled wt-width-full" type="submit">
Add to cart
<div aria-live="assertive" class="wt-spinner wt-spinner--01" role="alert">
<span class="wt-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" fill="transparent" r="10"></circle></svg></span>
Loading
</div>
</button>
</div>
</form>
<p class="purchase-accept-terms wt-display-none wt-mt-xs-2 wt-text-black wt-text-body-small wt-width-full"></p>
</div>
</div>
</div>
<div class="collection-actions-container wt-display-flex-xs wt-flex-direction-column-xs wt-flex-direction-row-md wt-flex-direction-column-lg wt-justify-content-space-between">
</div>
<div>
</div>
<div class="wt-mt-xs-3">
<div class="wt-display-flex-xs wt-align-items-center wt-mt-xs-2">
<div class="wt-pr-xs-2" data-add-class-when-in-view="is-in-view">
<span class="inline-svg"><svg aria-hidden="true" cache-id="ca29373808df4f9eaa432cd66b455877" focusable="false" height="48" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewbox="0 0 24 24" width="48" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style>
.is-in-view #lp-collage-star-seller-badge-left {
animation: lp-collage-star-seller-badge-left__to 2000ms linear 1 normal forwards
}
@keyframes lp-collage-star-seller-badge-left__to {
0% {
transform: translate(3.4px, 12.4px)
}
50% {
transform: translate(3.4px, 12.4px)
}
75% {
transform: translate(3.2px, 12.4px)
}
100% {
transform: translate(3.2px, 12.4px)
}
}
.is-in-view #e2oQ4aPtn8x2 {
animation: e2oQ4aPtn8x2_c_o 2000ms linear 1 normal forwards
}
@keyframes e2oQ4aPtn8x2_c_o {
0% {
opacity: 0
}
50% {
opacity: 0
}
75% {
opacity: 1
}
100% {
opacity: 1
}
}
.is-in-view #lp-collage-star-seller-badge-right {
animation: lp-collage-star-seller-badge-right__to 2000ms linear 1 normal forwards
}
@keyframes lp-collage-star-seller-badge-right__to {
0% {
transform: translate(20.6px, 12.4px)
}
50% {
transform: translate(20.6px, 12.4px)
}
75% {
transform: translate(20.8px, 12.4px)
}
100% {
transform: translate(20.8px, 12.4px)
}
}
.is-in-view #e2oQ4aPtn8x8 {
animation: e2oQ4aPtn8x8_c_o 2000ms linear 1 normal forwards
}
@keyframes e2oQ4aPtn8x8_c_o {
0% {
opacity: 0
}
50% {
opacity: 0
}
75% {
opacity: 1
}
100% {
opacity: 1
}
}
.is-in-view #lp-collage-star-seller {
animation: lp-collage-star-seller__tr 2000ms linear 1 normal forwards
}
@keyframes lp-collage-star-seller__tr {
0% {
transform: translate(12px, 12px) rotate(-145deg);
animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1)
}
50% {
transform: translate(12px, 12px) rotate(0deg)
}
100% {
transform: translate(12px, 12px) rotate(0deg)
}
}
</style>
<g id="lp-collage-star-seller-badge-left" transform="translate(3.4,12.4)">
<g id="e2oQ4aPtn8x2" opacity="0" transform="translate(-3.4,-12.4)">
<g id="e2oQ4aPtn8x3">
<g id="e2oQ4aPtn8x4">
<polygon fill="rgb(97,77,116)" id="e2oQ4aPtn8x5" points="2.5,15.8 2,13.9 4.5,13.8 4.8,14.7" stroke="none" stroke-miterlimit="1" stroke-width="1"></polygon>
</g>
<g id="e2oQ4aPtn8x6">
<polygon fill="rgb(97,77,116)" id="e2oQ4aPtn8x7" points="4.8,10.1 4.5,11.1 2,10.9 2.5,9" stroke="none" stroke-miterlimit="1" stroke-width="1"></polygon>
</g>
</g>
</g>
</g>
<g id="lp-collage-star-seller-badge-right" transform="translate(20.6,12.4)">
<g id="e2oQ4aPtn8x8" opacity="0" transform="translate(-20.6,-12.4)">
<g id="e2oQ4aPtn8x9">
<polygon fill="rgb(97,77,116)" id="e2oQ4aPtn8x10" points="19.5,11.1 19.2,10.1 21.5,9 22,10.9" stroke="none" stroke-miterlimit="1" stroke-width="1"></polygon>
</g>
<g id="e2oQ4aPtn8x11">
<polygon fill="rgb(97,77,116)" id="e2oQ4aPtn8x12" points="22,13.9 21.5,15.8 19.2,14.7 19.5,13.8" stroke="none" stroke-miterlimit="1" stroke-width="1"></polygon>
</g>
</g>
</g>
<g id="lp-collage-star-seller" transform="translate(12,12) rotate(-145)">
<g id="e2oQ4aPtn8x13" transform="translate(-12,-12)">
<g id="e2oQ4aPtn8x14">
<path d="M17.6,8.8L16.1,7.9L15.2,6.4L13.5,6.4L12,5.5L10.5,6.4L8.7,6.4L7.9,7.9L6.4,8.8L6.4,10.5L5.5,12L6.4,13.5L6.4,15.2L7.9,16.1L8.8,17.6L10.5,17.6L12,18.5L13.5,17.6L15.2,17.6L16.1,16.1L17.6,15.2L17.6,13.5L18.5,12L17.6,10.5L17.6,8.8ZM13.7,12.7L14.2,14.9C14.1,15,14.1,15,13.9,15.1L12,14L10.1,15.2C10,15.1,10,15.1,9.8,15L10.3,12.8L8.6,11.3C8.7,11.1,8.7,11.1,8.7,11L11,10.8L11.9,8.7C12.1,8.7,12.1,8.7,12.2,8.7L13.1,10.8L15.4,11C15.5,11.2,15.5,11.2,15.5,11.3L13.7,12.7Z" fill="rgb(140,101,178)" id="e2oQ4aPtn8x15" stroke="none" stroke-miterlimit="1" stroke-width="1"></path>
</g>
</g>
</g>
</svg></span>
</div>
<p class="wt-text-caption">
<strong>Star Seller.</strong> This seller consistently earned 5-star reviews, shipped on time, and replied quickly to any messages they received.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="listing-info info-col description-right wt-order-xs-5">
<div class="wt-flex-lg-3 wt-order-xs-1 wt-order-lg-3 wt-max-width-full wt-pl-md-4 wt-pr-md-4 wt-pl-lg-0 wt-pr-lg-5 wt-pl-xs-2 wt-pr-xs-2">
<div data-appears-component-name="product_details">
<div id="product_details">
<div class="wt-content-toggle" data-selector="info-section-content-toggle">
<button aria-controls="product_details_content_toggle" class="wt-btn wt-btn--transparent wt-content-toggle--btn wt-content-toggle--with-icon wt-width-full wt-content-toggle--flush" data-animate="true" data-default-open="true" data-wt-content-toggle="true">
<span class="wt-flex-xs-auto wt-width-full"><h2>Item details</h2></span>
<span class="wt-content-toggle--btn__icon"></span>
</button>
<div class="wt-content-toggle__body" id="product_details_content_toggle">
<div class="wt-mb-xs-6">
<ul class="wt-block-grid-xs-1 wt-text-body-01 show-icons wt-mt-xs-1 wt-pl-xs-0 wt-mb-xs-3" data-selector="product-details-highlights">
<li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start">
<div><span class="wt-icon wt-nudge-b-2"><svg aria-hidden="true" fill="none" focusable="false" viewbox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path d="M10.313 10.252l1.86-3.45-1.328-1.32-3.307-3.307a.57.57 0 00-.788 0 .57.57 0 000 .75l3.098 3.57-.533.532-4.425-4.32a.577.577 0 00-.817 0 .577.577 0 000 .795l4.14 4.628-.525.532L3.825 4.83a.555.555 0 00-.825 0 .57.57 0 000 .75l3.6 4.17-.525.532L3 7.68a.578.578 0 00-.75 0 .578.578 0 000 .817l2.775 2.768L9.27 15.51a1.498 1.498 0 002.123 0l3.75-3.713.405-.405a1.5 1.5 0 00.36-1.537L13.5 3.885l-.45.15a.578.578 0 00-.382.487l.3 3.075-2.123 3.188-.532-.533z" fill="#222"></path>
</svg></span></div>
<div class="wt-ml-xs-1">
Handmade
</div>
</li>
</ul>
<div class="wt-mt-xs-2">
</div>
<div data-id="description-text">
<div aria-hidden="true" class="wt-content-toggle__body wt-content-toggle__body--truncated-02 wt-content-toggle__body--truncated" id="wt-content-toggle-product-details-read-more" tabindex="-1">
<p class="wt-text-body-01 wt-break-word" data-product-details-description-text-content="">
SWEATSHIRT INFORMATION:<br/><br/>embroidered with your choice of initials and thread colors <br/>cotton/poly blend<br/>unisex adult fit<br/><br/>BRANDS WILL VARY...depending on stock.
</p>
</div>
<div class="wt-text-center-xs">
<button aria-controls="wt-content-toggle-product-details-read-more" aria-expanded="false" class="wt-btn wt-btn--transparent wt-btn--small wt-content-toggle--btn" data-read-more="true" data-read-more-label-closed="Learn more about this item" data-read-more-label-open="Less" data-wt-content-toggle="true">
Learn more about this item
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-appears-component-name="listing_page_policy_shipping_variant" data-appears-event-data='{"estimated_delivery_date_days_from_now_min":11,"estimated_delivery_date_days_from_now_max":19}'>
<div data-appears-component-name="shipping_and_returns">
<div id="shipping_and_returns">
<div class="wt-content-toggle" data-selector="info-section-content-toggle">
<button aria-controls="shipping_and_returns_content_toggle" class="wt-btn wt-btn--transparent wt-content-toggle--btn wt-content-toggle--with-icon wt-width-full wt-content-toggle--flush" data-animate="true" data-default-open="true" data-wt-content-toggle="true">
<span class="wt-flex-xs-auto wt-width-full"><h2>Shipping and return policies</h2></span>
<span class="wt-content-toggle--btn__icon"></span>
</button>
<div class="wt-content-toggle__body" id="shipping_and_returns_content_toggle">
<div class="wt-mb-xs-6">
<div data-shipping-and-returns-div="" id="shipping-and-returns-div">
<div class="wt-position-relative">
<div class="wt-position-absolute wt-height-full wt-width-full wt-bg-white wt-z-index-2 wt-display-none shipping-spinner">
<div class="wt-spinner wt-spinner--01 wt-vertical-center">
<span class="etsy-icon"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" fill="transparent" r="10"></circle></svg></span>
Loading
</div>
</div>
<div data-selector="shipping-highlights">
<ul class="wt-block-grid-xs-1 wt-text-body-01 wt-mt-xs-1 wt-pl-xs-0 wt-mb-xs-2">
<li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start">
<div><span class="wt-icon wt-nudge-b-2"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M19 4h-1V3a1 1 0 00-2 0v1H8V3a1 1 0 00-2 0v1H5a1 1 0 00-1 1v14a1 1 0 001 1h14a1 1 0 001-1V5a1 1 0 00-1-1zm-1 14H6v-8h12v8z"></path>
<path d="M16 13h-3v3h3v-3z"></path>
</svg></span></div>
<div class="wt-ml-xs-1">
<div data-selector="popover-container">
Order today to get by <span data-selector="popover-placeholder">Oct 25-Nov 2</span>
<div class="wt-display-none">
<div class="wt-popover wt-text-caption" data-selector="popover-replacement" data-wt-popover="">
<button aria-describedby="shipping-highlights-estimated-delivery" class="wt-popover__trigger wt-popover__trigger--underline wt-text-body-01 wt-text-left-xs" data-wt-popover-trigger="" type="button">
</button>
<div id="shipping-highlights-estimated-delivery" role="tooltip">
<p class="wt-text-caption wt-mb-xs-1">
If you order today, this is the <a href="https://help.etsy.com/hc/articles/360020601674" target="_blank">estimated delivery date</a> and is based on the seller's processing time and location, carrier transit time, and your inferred shipping address. Keep in mind: shipping carrier delays or placing an order on a weekend or holiday may push this date.
</p>
<span class="wt-popover__arrow"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start">
<div><span class="wt-icon wt-nudge-b-2"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 15h-6c-.3 0-.5.2-.5.5s.2.5.5.5h6c.3 0 .5-.2.5-.5s-.2-.5-.5-.5zm-6-1h4c.3 0 .5-.2.5-.5s-.2-.5-.5-.5h-4c-.3 0-.5.2-.5.5s.2.5.5.5zm5 3h-5c-.3 0-.5.2-.5.5s.2.5.5.5h5c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z"></path>
<path d="M21.9 6.6l-2-4c-.2-.4-.5-.6-.9-.6H5c-.4 0-.7.2-.9.6l-2 4c-.1.1-.1.2-.1.4v14c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V7c0-.2 0-.3-.1-.4zM5.6 4h12.8l1 2H4.6l1-2zM4 20V8h16v12H4z"></path>
</svg></span></div>
<div class="wt-ml-xs-1">
<div data-selector="popover-container">
<span data-selector="popover-placeholder">Returns & exchanges not accepted</span>
<div class="wt-display-none">
<div class="wt-popover wt-text-caption" data-selector="popover-replacement" data-wt-popover="">
<button aria-describedby="shipping-highlights-returns-and-exchanges" class="wt-popover__trigger wt-popover__trigger--underline wt-text-body-01 wt-text-left-xs" data-wt-popover-trigger="" type="button">
</button>
<div id="shipping-highlights-returns-and-exchanges" role="tooltip">
<p class="wt-text-caption wt-mb-xs-1">
But please contact me if you have problems with your order
</p>