-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1141 lines (917 loc) · 383 KB
/
index.html
File metadata and controls
1141 lines (917 loc) · 383 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US" class="no-js">
<!-- Mirrored from pytorch.org/get-started/locally/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Oct 2025 21:31:49 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8"><script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},feature_flags:["soft_nav"],distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"718404699",accountID:"6722501",trustKey:"66686",xpid:"UgEFU1NTCRAGXVdTAgQFVFU=",licenseKey:"NRJS-82305f38d28401c8ce5",applicationID:"696155221",browserID:"718404699"};;/*! For license information please see nr-loader-spa-1.301.0.min.js.LICENSE.txt */
(()=>{var e,t,r={384:(e,t,r)=>{"use strict";r.d(t,{NT:()=>a,US:()=>d,Zm:()=>s,bQ:()=>u,dV:()=>c,pV:()=>l});var n=r(6154),i=r(1863),o=r(1910);const a={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function s(){return n.gm.NREUM||(n.gm.NREUM={}),void 0===n.gm.newrelic&&(n.gm.newrelic=n.gm.NREUM),n.gm.NREUM}function c(){let e=s();return e.o||(e.o={ST:n.gm.setTimeout,SI:n.gm.setImmediate||n.gm.setInterval,CT:n.gm.clearTimeout,XHR:n.gm.XMLHttpRequest,REQ:n.gm.Request,EV:n.gm.Event,PR:n.gm.Promise,MO:n.gm.MutationObserver,FETCH:n.gm.fetch,WS:n.gm.WebSocket},(0,o.i)(...Object.values(e.o))),e}function u(e,t){let r=s();r.initializedAgents??={},t.initializedAt={ms:(0,i.t)(),date:new Date},r.initializedAgents[e]=t}function d(e,t){s()[e]=t}function l(){return function(){let e=s();const t=e.info||{};e.info={beacon:a.beacon,errorBeacon:a.errorBeacon,...t}}(),function(){let e=s();const t=e.init||{};e.init={...t}}(),c(),function(){let e=s();const t=e.loader_config||{};e.loader_config={...t}}(),s()}},782:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.pageViewTiming},860:(e,t,r)=>{"use strict";r.d(t,{$J:()=>d,K7:()=>c,P3:()=>u,XX:()=>i,Yy:()=>s,df:()=>o,qY:()=>n,v4:()=>a});const n="events",i="jserrors",o="browser/blobs",a="rum",s="browser/logs",c={ajax:"ajax",genericEvents:"generic_events",jserrors:i,logging:"logging",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",softNav:"soft_navigations",spa:"spa"},u={[c.pageViewEvent]:1,[c.pageViewTiming]:2,[c.metrics]:3,[c.jserrors]:4,[c.spa]:5,[c.ajax]:6,[c.sessionTrace]:7,[c.softNav]:8,[c.sessionReplay]:9,[c.logging]:10,[c.genericEvents]:11},d={[c.pageViewEvent]:a,[c.pageViewTiming]:n,[c.ajax]:n,[c.spa]:n,[c.softNav]:n,[c.metrics]:i,[c.jserrors]:i,[c.sessionTrace]:o,[c.sessionReplay]:o,[c.logging]:s,[c.genericEvents]:"ins"}},944:(e,t,r)=>{"use strict";r.d(t,{R:()=>i});var n=r(3241);function i(e,t){"function"==typeof console.debug&&(console.debug("New Relic Warning: https://github.com/newrelic/newrelic-browser-agent/blob/main/docs/warning-codes.md#".concat(e),t),(0,n.W)({agentIdentifier:null,drained:null,type:"data",name:"warn",feature:"warn",data:{code:e,secondary:t}}))}},993:(e,t,r)=>{"use strict";r.d(t,{A$:()=>o,ET:()=>a,TZ:()=>s,p_:()=>i});var n=r(860);const i={ERROR:"ERROR",WARN:"WARN",INFO:"INFO",DEBUG:"DEBUG",TRACE:"TRACE"},o={OFF:0,ERROR:1,WARN:2,INFO:3,DEBUG:4,TRACE:5},a="log",s=n.K7.logging},1687:(e,t,r)=>{"use strict";r.d(t,{Ak:()=>u,Ze:()=>f,x3:()=>d});var n=r(3241),i=r(7836),o=r(3606),a=r(860),s=r(2646);const c={};function u(e,t){const r={staged:!1,priority:a.P3[t]||0};l(e),c[e].get(t)||c[e].set(t,r)}function d(e,t){e&&c[e]&&(c[e].get(t)&&c[e].delete(t),p(e,t,!1),c[e].size&&h(e))}function l(e){if(!e)throw new Error("agentIdentifier required");c[e]||(c[e]=new Map)}function f(e="",t="feature",r=!1){if(l(e),!e||!c[e].get(t)||r)return p(e,t);c[e].get(t).staged=!0,h(e)}function h(e){const t=Array.from(c[e]);t.every(([e,t])=>t.staged)&&(t.sort((e,t)=>e[1].priority-t[1].priority),t.forEach(([t])=>{c[e].delete(t),p(e,t)}))}function p(e,t,r=!0){const a=e?i.ee.get(e):i.ee,c=o.i.handlers;if(!a.aborted&&a.backlog&&c){if((0,n.W)({agentIdentifier:e,type:"lifecycle",name:"drain",feature:t}),r){const e=a.backlog[t],r=c[t];if(r){for(let t=0;e&&t<e.length;++t)g(e[t],r);Object.entries(r).forEach(([e,t])=>{Object.values(t||{}).forEach(t=>{t[0]?.on&&t[0]?.context()instanceof s.y&&t[0].on(e,t[1])})})}}a.isolatedBacklog||delete c[t],a.backlog[t]=null,a.emit("drain-"+t,[])}}function g(e,t){var r=e[1];Object.values(t[r]||{}).forEach(t=>{var r=e[0];if(t[0]===r){var n=t[1],i=e[3],o=e[2];n.apply(i,o)}})}},1741:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(944),i=r(4261);class o{#e(e,...t){if(this[e]!==o.prototype[e])return this[e](...t);(0,n.R)(35,e)}addPageAction(e,t){return this.#e(i.hG,e,t)}register(e){return this.#e(i.eY,e)}recordCustomEvent(e,t){return this.#e(i.fF,e,t)}setPageViewName(e,t){return this.#e(i.Fw,e,t)}setCustomAttribute(e,t,r){return this.#e(i.cD,e,t,r)}noticeError(e,t){return this.#e(i.o5,e,t)}setUserId(e){return this.#e(i.Dl,e)}setApplicationVersion(e){return this.#e(i.nb,e)}setErrorHandler(e){return this.#e(i.bt,e)}addRelease(e,t){return this.#e(i.k6,e,t)}log(e,t){return this.#e(i.$9,e,t)}start(){return this.#e(i.d3)}finished(e){return this.#e(i.BL,e)}recordReplay(){return this.#e(i.CH)}pauseReplay(){return this.#e(i.Tb)}addToTrace(e){return this.#e(i.U2,e)}setCurrentRouteName(e){return this.#e(i.PA,e)}interaction(e){return this.#e(i.dT,e)}wrapLogger(e,t,r){return this.#e(i.Wb,e,t,r)}measure(e,t){return this.#e(i.V1,e,t)}}},1863:(e,t,r)=>{"use strict";function n(){return Math.floor(performance.now())}r.d(t,{t:()=>n})},1910:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(944);const i=new Map;function o(...e){return e.every(e=>{if(i.has(e))return i.get(e);const t="function"==typeof e&&e.toString().includes("[native code]");return t||(0,n.R)(64,e?.name||e?.toString()),i.set(e,t),t})}},2555:(e,t,r)=>{"use strict";r.d(t,{D:()=>s,f:()=>a});var n=r(384),i=r(8122);const o={beacon:n.NT.beacon,errorBeacon:n.NT.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0};function a(e){try{return!!e.licenseKey&&!!e.errorBeacon&&!!e.applicationID}catch(e){return!1}}const s=e=>(0,i.a)(e,o)},2614:(e,t,r)=>{"use strict";r.d(t,{BB:()=>a,H3:()=>n,g:()=>u,iL:()=>c,tS:()=>s,uh:()=>i,wk:()=>o});const n="NRBA",i="SESSION",o=144e5,a=18e5,s={STARTED:"session-started",PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},c={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},u={OFF:0,FULL:1,ERROR:2}},2646:(e,t,r)=>{"use strict";r.d(t,{y:()=>n});class n{constructor(e){this.contextId=e}}},2843:(e,t,r)=>{"use strict";r.d(t,{u:()=>i});var n=r(3878);function i(e,t=!1,r,i){(0,n.DD)("visibilitychange",function(){if(t)return void("hidden"===document.visibilityState&&e());e(document.visibilityState)},r,i)}},3241:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(6154);const i="newrelic";function o(e={}){try{n.gm.dispatchEvent(new CustomEvent(i,{detail:e}))}catch(e){}}},3304:(e,t,r)=>{"use strict";r.d(t,{A:()=>o});var n=r(7836);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())??""}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}return""}}},3333:(e,t,r)=>{"use strict";r.d(t,{$v:()=>d,TZ:()=>n,Xh:()=>c,Zp:()=>i,kd:()=>u,mq:()=>s,nf:()=>a,qN:()=>o});const n=r(860).K7.genericEvents,i=["auxclick","click","copy","keydown","paste","scrollend"],o=["focus","blur"],a=4,s=1e3,c=2e3,u=["PageAction","UserAction","BrowserPerformance"],d={RESOURCES:"experimental.resources"}},3434:(e,t,r)=>{"use strict";r.d(t,{Jt:()=>o,YM:()=>u});var n=r(7836),i=r(5607);const o="nr@original:".concat(i.W),a=50;var s=Object.prototype.hasOwnProperty,c=!1;function u(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");const a="-"===n.charAt(0);for(let s=0;s<t.length;s++){const c=t[s],u=e[c];l(u)||(e[c]=r(u,a?c+n:n,i,c,o))}},r.flag=o,r;function r(t,r,n,c,u){return l(t)?t:(r||(r=""),nrWrapper[o]=t,function(e,t,r){if(Object.defineProperty&&Object.keys)try{return Object.keys(e).forEach(function(r){Object.defineProperty(t,r,{get:function(){return e[r]},set:function(t){return e[r]=t,t}})}),t}catch(e){d([e],r)}for(var n in e)s.call(e,n)&&(t[n]=e[n])}(t,nrWrapper,e),nrWrapper);function nrWrapper(){var o,s,l,f;let h;try{s=this,o=[...arguments],l="function"==typeof n?n(o,s):n||{}}catch(t){d([t,"",[o,s,c],l],e)}i(r+"start",[o,s,c],l,u);const p=performance.now();let g;try{return f=t.apply(s,o),g=performance.now(),f}catch(e){throw g=performance.now(),i(r+"err",[o,s,e],l,u),h=e,h}finally{const e=g-p,t={start:p,end:g,duration:e,isLongTask:e>=a,methodName:c,thrownError:h};t.isLongTask&&i("long-task",[t,s],l,u),i(r+"end",[o,s,f],l,u)}}}function i(r,n,i,o){if(!c||t){var a=c;c=!0;try{e.emit(r,n,i,t,o)}catch(t){d([t,r,n,i],e)}c=a}}}function d(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function l(e){return!(e&&"function"==typeof e&&e.apply&&!e[o])}},3496:(e,t,r)=>{"use strict";function n(e){return!e||!(!e.licenseKey||!e.applicationID)}function i(e,t){return!e||e.licenseKey===t.info.licenseKey&&e.applicationID===t.info.applicationID}r.d(t,{A:()=>i,I:()=>n})},3606:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(9908);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.d,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.d);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3738:(e,t,r)=>{"use strict";r.d(t,{He:()=>i,Kp:()=>s,Lc:()=>u,Rz:()=>d,TZ:()=>n,bD:()=>o,d3:()=>a,jx:()=>l,sl:()=>f,uP:()=>c});const n=r(860).K7.sessionTrace,i="bstResource",o="resource",a="-start",s="-end",c="fn"+a,u="fn"+s,d="pushState",l=1e3,f=3e4},3785:(e,t,r)=>{"use strict";r.d(t,{R:()=>c,b:()=>u});var n=r(9908),i=r(1863),o=r(860),a=r(8154),s=r(993);function c(e,t,r={},c=s.p_.INFO,u,d=(0,i.t)()){(0,n.p)(a.xV,["API/logging/".concat(c.toLowerCase(),"/called")],void 0,o.K7.metrics,e),(0,n.p)(s.ET,[d,t,r,c,u],void 0,o.K7.logging,e)}function u(e){return"string"==typeof e&&Object.values(s.p_).some(t=>t===e.toUpperCase().trim())}},3878:(e,t,r)=>{"use strict";function n(e,t){return{capture:e,passive:!1,signal:t}}function i(e,t,r=!1,i){window.addEventListener(e,t,n(r,i))}function o(e,t,r=!1,i){document.addEventListener(e,t,n(r,i))}r.d(t,{DD:()=>o,jT:()=>n,sp:()=>i})},3962:(e,t,r)=>{"use strict";r.d(t,{AM:()=>a,O2:()=>l,OV:()=>o,Qu:()=>f,TZ:()=>c,ih:()=>h,pP:()=>s,t1:()=>d,tC:()=>i,wD:()=>u});var n=r(860);const i=["click","keydown","submit"],o="popstate",a="api",s="initialPageLoad",c=n.K7.softNav,u=5e3,d=500,l={INITIAL_PAGE_LOAD:"",ROUTE_CHANGE:1,UNSPECIFIED:2},f={INTERACTION:1,AJAX:2,CUSTOM_END:3,CUSTOM_TRACER:4},h={IP:"in progress",PF:"pending finish",FIN:"finished",CAN:"cancelled"}},4234:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(7836),i=r(1687);class o{constructor(e,t){this.agentIdentifier=e,this.ee=n.ee.get(e),this.featureName=t,this.blocked=!1}deregisterDrain(){(0,i.x3)(this.agentIdentifier,this.featureName)}}},4261:(e,t,r)=>{"use strict";r.d(t,{$9:()=>d,BL:()=>c,CH:()=>p,Dl:()=>R,Fw:()=>w,PA:()=>v,Pl:()=>n,Tb:()=>f,U2:()=>a,V1:()=>E,Wb:()=>T,bt:()=>y,cD:()=>b,d3:()=>x,dT:()=>u,eY:()=>g,fF:()=>h,hG:()=>o,hw:()=>i,k6:()=>s,nb:()=>m,o5:()=>l});const n="api-",i=n+"ixn-",o="addPageAction",a="addToTrace",s="addRelease",c="finished",u="interaction",d="log",l="noticeError",f="pauseReplay",h="recordCustomEvent",p="recordReplay",g="register",m="setApplicationVersion",v="setCurrentRouteName",b="setCustomAttribute",y="setErrorHandler",w="setPageViewName",R="setUserId",x="start",T="wrapLogger",E="measure"},5205:(e,t,r)=>{"use strict";r.d(t,{j:()=>O});var n=r(384),i=r(1741);var o=r(2555),a=r(3333);const s=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var c=r(2614),u=r(944),d=r(8122);const l="[data-nr-mask]",f=e=>(0,d.a)(e,(()=>{const e={feature_flags:[],experimental:{resources:!1},mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{ajax:{deny_list:void 0,block_internal:!0,enabled:!0,autoStart:!0},api:{allow_registered_children:!0,duplicate_registered_data:!1},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},get feature_flags(){return e.feature_flags},set feature_flags(t){e.feature_flags=t},generic_events:{enabled:!0,autoStart:!0},harvest:{interval:30},jserrors:{enabled:!0,autoStart:!0},logging:{enabled:!0,autoStart:!0},metrics:{enabled:!0,autoStart:!0},obfuscate:void 0,page_action:{enabled:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,autoStart:!0},performance:{capture_marks:!1,capture_measures:!1,capture_detail:!0,resources:{get enabled(){return e.feature_flags.includes(a.$v.RESOURCES)||e.experimental.resources},set enabled(t){e.experimental.resources=t},asset_types:[],first_party_domains:[],ignore_newrelic:!0}},privacy:{cookies_enabled:!0},proxy:{assets:void 0,beacon:void 0},session:{expiresMs:c.wk,inactiveMs:c.BB},session_replay:{autoStart:!0,enabled:!1,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,fix_stylesheets:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){s(t)?e.mask_selector="".concat(t,",").concat(l):""===t||null===t?e.mask_selector=l:(0,u.R)(5,t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){s(t)?e.block_selector+=",".concat(t):""!==t&&(0,u.R)(6,t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,u.R)(7,t)}},session_trace:{enabled:!0,autoStart:!0},soft_navigations:{enabled:!0,autoStart:!0},spa:{enabled:!0,autoStart:!0},ssl:void 0,user_actions:{enabled:!0,elementAttributes:["id","className","tagName","type"]}}})());var h=r(6154),p=r(9324);let g=0;const m={buildEnv:p.F3,distMethod:p.Xs,version:p.xv,originTime:h.WN},v={appMetadata:{},customTransaction:void 0,denyList:void 0,disabled:!1,entityManager:void 0,harvester:void 0,isolatedBacklog:!1,isRecording:!1,loaderType:void 0,maxBytes:3e4,obfuscator:void 0,onerror:void 0,ptid:void 0,releaseIds:{},session:void 0,timeKeeper:void 0,jsAttributesMetadata:{bytes:0},get harvestCount(){return++g}},b=e=>{const t=(0,d.a)(e,v),r=Object.keys(m).reduce((e,t)=>(e[t]={value:m[t],writable:!1,configurable:!0,enumerable:!0},e),{});return Object.defineProperties(t,r)};var y=r(5701);const w=e=>{const t=e.startsWith("http");e+="https://pytorch.org/",r.p=t?e:"https://"+e};var R=r(7836),x=r(3241);const T={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},E=e=>(0,d.a)(e,T),A=new Set;function O(e,t={},r,a){let{init:s,info:c,loader_config:u,runtime:d={},exposed:l=!0}=t;if(!c){const e=(0,n.pV)();s=e.init,c=e.info,u=e.loader_config}e.init=f(s||{}),e.loader_config=E(u||{}),c.jsAttributes??={},h.bv&&(c.jsAttributes.isWorker=!0),e.info=(0,o.D)(c);const p=e.init,g=[c.beacon,c.errorBeacon];A.has(e.agentIdentifier)||(p.proxy.assets&&(w(p.proxy.assets),g.push(p.proxy.assets)),p.proxy.beacon&&g.push(p.proxy.beacon),e.beacons=[...g],function(e){const t=(0,n.pV)();Object.getOwnPropertyNames(i.W.prototype).forEach(r=>{const n=i.W.prototype[r];if("function"!=typeof n||"constructor"===n)return;let o=t[r];e[r]&&!1!==e.exposed&&"micro-agent"!==e.runtime?.loaderType&&(t[r]=(...t)=>{const n=e[r](...t);return o?o(...t):n})})}(e),(0,n.US)("activatedFeatures",y.B),e.runSoftNavOverSpa&&=!0===p.soft_navigations.enabled&&p.feature_flags.includes("soft_nav")),d.denyList=[...p.ajax.deny_list||[],...p.ajax.block_internal?g:[]],d.ptid=e.agentIdentifier,d.loaderType=r,e.runtime=b(d),A.has(e.agentIdentifier)||(e.ee=R.ee.get(e.agentIdentifier),e.exposed=l,(0,x.W)({agentIdentifier:e.agentIdentifier,drained:!!y.B?.[e.agentIdentifier],type:"lifecycle",name:"initialize",feature:void 0,data:e.config})),A.add(e.agentIdentifier)}},5270:(e,t,r)=>{"use strict";r.d(t,{Aw:()=>a,SR:()=>o,rF:()=>s});var n=r(384),i=r(7767);function o(e){return!!(0,n.dV)().o.MO&&(0,i.V)(e)&&!0===e?.session_trace.enabled}function a(e){return!0===e?.session_replay.preload&&o(e)}function s(e,t){try{if("string"==typeof t?.type){if("password"===t.type.toLowerCase())return"*".repeat(e?.length||0);if(void 0!==t?.dataset?.nrUnmask||t?.classList?.contains("nr-unmask"))return e}}catch(e){}return"string"==typeof e?e.replace(/[\S]/g,"*"):"*".repeat(e?.length||0)}},5289:(e,t,r)=>{"use strict";r.d(t,{GG:()=>o,Qr:()=>s,sB:()=>a});var n=r(3878);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.sp)("load",e,t)}function a(e){if(i())return e();(0,n.DD)("DOMContentLoaded",e)}function s(e){if(i())return e();(0,n.sp)("popstate",e)}},5607:(e,t,r)=>{"use strict";r.d(t,{W:()=>n});const n=(0,r(9566).bz)()},5701:(e,t,r)=>{"use strict";r.d(t,{B:()=>o,t:()=>a});var n=r(3241);const i=new Set,o={};function a(e,t){const r=t.agentIdentifier;o[r]??={},e&&"object"==typeof e&&(i.has(r)||(t.ee.emit("rumresp",[e]),o[r]=e,i.add(r),(0,n.W)({agentIdentifier:r,loaded:!0,drained:!0,type:"lifecycle",name:"load",feature:void 0,data:e})))}},6154:(e,t,r)=>{"use strict";r.d(t,{A4:()=>s,OF:()=>d,RI:()=>i,WN:()=>h,bv:()=>o,gm:()=>a,lR:()=>f,m:()=>u,mw:()=>c,sb:()=>l});var n=r(1863);const i="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),a=i?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),s="complete"===a?.document?.readyState,c=Boolean("hidden"===a?.document?.visibilityState),u=""+a?.location,d=/iPad|iPhone|iPod/.test(a.navigator?.userAgent),l=d&&"undefined"==typeof SharedWorker,f=(()=>{const e=a.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),h=Date.now()-(0,n.t)()},6344:(e,t,r)=>{"use strict";r.d(t,{BB:()=>d,G4:()=>o,Qb:()=>l,TZ:()=>i,Ug:()=>a,_s:()=>s,bc:()=>u,yP:()=>c});var n=r(2614);const i=r(860).K7.sessionReplay,o={RECORD:"recordReplay",PAUSE:"pauseReplay",ERROR_DURING_REPLAY:"errorDuringReplay"},a=.12,s={DomContentLoaded:0,Load:1,FullSnapshot:2,IncrementalSnapshot:3,Meta:4,Custom:5},c={[n.g.ERROR]:15e3,[n.g.FULL]:3e5,[n.g.OFF]:0},u={RESET:{message:"Session was reset",sm:"Reset"},IMPORT:{message:"Recorder failed to import",sm:"Import"},TOO_MANY:{message:"429: Too Many Requests",sm:"Too-Many"},TOO_BIG:{message:"Payload was too large",sm:"Too-Big"},CROSS_TAB:{message:"Session Entity was set to OFF on another tab",sm:"Cross-Tab"},ENTITLEMENTS:{message:"Session Replay is not allowed and will not be started",sm:"Entitlement"}},d=5e3,l={API:"api",RESUME:"resume",SWITCH_TO_FULL:"switchToFull",INITIALIZE:"initialize",PRELOAD:"preload"}},6389:(e,t,r)=>{"use strict";function n(e,t=500,r={}){const n=r?.leading||!1;let i;return(...r)=>{n&&void 0===i&&(e.apply(this,r),i=setTimeout(()=>{i=clearTimeout(i)},t)),n||(clearTimeout(i),i=setTimeout(()=>{e.apply(this,r)},t))}}function i(e){let t=!1;return(...r)=>{t||(t=!0,e.apply(this,r))}}r.d(t,{J:()=>i,s:()=>n})},6630:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.pageViewEvent},6774:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.jserrors},7295:(e,t,r)=>{"use strict";r.d(t,{Xv:()=>a,gX:()=>i,iW:()=>o});var n=[];function i(e){if(!e||o(e))return!1;if(0===n.length)return!0;for(var t=0;t<n.length;t++){var r=n[t];if("*"===r.hostname)return!1;if(s(r.hostname,e.hostname)&&c(r.pathname,e.pathname))return!1}return!0}function o(e){return void 0===e.hostname}function a(e){if(n=[],e&&e.length)for(var t=0;t<e.length;t++){let r=e[t];if(!r)continue;0===r.indexOf("http://")?r=r.substring(7):0===r.indexOf("https:///")&&(r=r.substring(8));const i=r.indexOf("https://pytorch.org/");let o,a;i>0?(o=r.substring(0,i),a=r.substring(i)):(o=r,a="");let[s]=o.split(":");n.push({hostname:s,pathname:a})}}function s(e,t){return!(e.length>t.length)&&t.indexOf(e)===t.length-e.length}function c(e,t){return 0===e.indexOf("https://pytorch.org/")&&(e=e.substring(1)),0===t.indexOf("https://pytorch.org/")&&(t=t.substring(1)),""===e||e===t}},7378:(e,t,r)=>{"use strict";r.d(t,{$p:()=>x,BR:()=>b,Kp:()=>R,L3:()=>y,Lc:()=>c,NC:()=>o,SG:()=>d,TZ:()=>i,U6:()=>p,UT:()=>m,d3:()=>w,dT:()=>f,e5:()=>E,gx:()=>v,l9:()=>l,oW:()=>h,op:()=>g,rw:()=>u,tH:()=>A,uP:()=>s,wW:()=>T,xq:()=>a});var n=r(384);const i=r(860).K7.spa,o=["click","submit","keypress","keydown","keyup","change"],a=999,s="fn-start",c="fn-end",u="cb-start",d="api-ixn-",l="remaining",f="interaction",h="spaNode",p="jsonpNode",g="fetch-start",m="fetch-done",v="fetch-body-",b="jsonp-end",y=(0,n.dV)().o.ST,w="-start",R="-end",x="-body",T="cb"+R,E="jsTime",A="fetch"},7485:(e,t,r)=>{"use strict";r.d(t,{D:()=>i});var n=r(6154);function i(e){if(0===(e||"").indexOf("data:"))return{protocol:"data"};try{const t=new URL(https://pytorch.org/get-started/locally/e,location.href),r={port:t.port,hostname:t.hostname,pathname:t.pathname,search:t.search,protocol:t.protocol.slice(0,t.protocol.indexOf(":")),sameOrigin:t.protocol===n.gm?.location?.protocol&&t.host===n.gm?.location?.host};return r.port&&""!==r.port||("http:"===t.protocol&&(r.port="80"),"https:"===t.protocol&&(r.port="443")),r.pathname&&""!==r.pathname?r.pathname.startsWith("https://pytorch.org/")||(r.pathname="/".concat(r.pathname)):r.pathname="https://pytorch.org/",r}catch(e){return{}}}},7699:(e,t,r)=>{"use strict";r.d(t,{It:()=>i,No:()=>n,qh:()=>a,uh:()=>o});const n=16e3,i=1e6,o="NR_CONTAINER_AGENT",a="SESSION_ERROR"},7767:(e,t,r)=>{"use strict";r.d(t,{V:()=>i});var n=r(6154);const i=e=>n.RI&&!0===e?.privacy.cookies_enabled},7836:(e,t,r)=>{"use strict";r.d(t,{P:()=>s,ee:()=>c});var n=r(384),i=r(8990),o=r(2646),a=r(5607);const s="nr@context:".concat(a.W),c=function e(t,r){var n={},a={},d={},l=!1;try{l=16===r.length&&u.initializedAgents?.[r]?.runtime.isolatedBacklog}catch(e){}var f={on:p,addEventListener:p,removeEventListener:function(e,t){var r=n[e];if(!r)return;for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)},emit:function(e,r,n,i,o){!1!==o&&(o=!0);if(c.aborted&&!i)return;t&&o&&t.emit(e,r,n);var s=h(n);g(e).forEach(e=>{e.apply(s,r)});var u=v()[a[e]];u&&u.push([f,e,r,s]);return s},get:m,listeners:g,context:h,buffer:function(e,t){const r=v();if(t=t||"feature",f.aborted)return;Object.entries(e||{}).forEach(([e,n])=>{a[n]=t,t in r||(r[t]=[])})},abort:function(){f._aborted=!0,Object.keys(f.backlog).forEach(e=>{delete f.backlog[e]})},isBuffering:function(e){return!!v()[a[e]]},debugId:r,backlog:l?{}:t&&"object"==typeof t.backlog?t.backlog:{},isolatedBacklog:l};return Object.defineProperty(f,"aborted",{get:()=>{let e=f._aborted||!1;return e||(t&&(e=t.aborted),e)}}),f;function h(e){return e&&e instanceof o.y?e:e?(0,i.I)(e,s,()=>new o.y(s)):new o.y(s)}function p(e,t){n[e]=g(e).concat(t)}function g(e){return n[e]||[]}function m(t){return d[t]=d[t]||e(f,t)}function v(){return f.backlog}}(void 0,"globalEE"),u=(0,n.Zm)();u.ee||(u.ee=c)},8122:(e,t,r)=>{"use strict";r.d(t,{a:()=>i});var n=r(944);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.R)(3);if(!t||"object"!=typeof t)return(0,n.R)(4);const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let a in o)if(void 0!==e[a])try{if(null===e[a]){r[a]=null;continue}Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){r[a]||(0,n.R)(1,e)}return r}catch(e){(0,n.R)(2,e)}}},8139:(e,t,r)=>{"use strict";r.d(t,{u:()=>f});var n=r(7836),i=r(3434),o=r(8990),a=r(6154);const s={},c=a.gm.XMLHttpRequest,u="addEventListener",d="removeEventListener",l="nr@wrapped:".concat(n.P);function f(e){var t=function(e){return(e||n.ee).get("events")}(e);if(s[t.debugId]++)return t;s[t.debugId]=1;var r=(0,i.YM)(t,!0);function f(e){r.inPlace(e,[u,d],"-",p)}function p(e,t){return e[1]}return"getPrototypeOf"in Object&&(a.RI&&h(document,f),c&&h(c.prototype,f),h(a.gm,f)),t.on(u+"-start",function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)&&"newrelic"!==e[0]){var i=(0,o.I)(n,l,function(){var e={object:function(){if("function"!=typeof n.handleEvent)return;return n.handleEvent.apply(n,arguments)},function:n}[typeof n];return e?r(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=e[1]=i}}),t.on(d+"-start",function(e){e[1]=this.wrapped||e[1]}),t}function h(e,t,...r){let n=e;for(;"object"==typeof n&&!Object.prototype.hasOwnProperty.call(n,u);)n=Object.getPrototypeOf(n);n&&t(n,...r)}},8154:(e,t,r)=>{"use strict";r.d(t,{z_:()=>o,XG:()=>s,TZ:()=>n,rs:()=>i,xV:()=>a});r(6154),r(9566),r(384);const n=r(860).K7.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},8374:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},8990:(e,t,r)=>{"use strict";r.d(t,{I:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},9300:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.ajax},9324:(e,t,r)=>{"use strict";r.d(t,{AJ:()=>a,F3:()=>i,Xs:()=>o,Yq:()=>s,xv:()=>n});const n="1.301.0",i="PROD",o="CDN",a="@newrelic/rrweb",s="1.0.1"},9566:(e,t,r)=>{"use strict";r.d(t,{LA:()=>s,ZF:()=>c,bz:()=>a,el:()=>u});var n=r(6154);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function a(){const e=n.gm?.crypto||n.gm?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(30))),i.split("").map(e=>"x"===e?o(t,r++).toString(16):"y"===e?(3&o()|8).toString(16):e).join("")}function s(e){const t=n.gm?.crypto||n.gm?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const a=[];for(var s=0;s<e;s++)a.push(o(r,i++).toString(16));return a.join("")}function c(){return s(16)}function u(){return s(32)}},9908:(e,t,r)=>{"use strict";r.d(t,{d:()=>n,p:()=>i});var n=r(7836).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce((t,r)=>(i.f[r](e,t),t),[])),i.u=e=>({212:"nr-spa-compressor",249:"nr-spa-recorder",478:"nr-spa"}[e]+"-1.301.0.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.301.0.PROD:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var l=u[d];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){s=l;break}}if(!s){c=!0;var f={478:"sha512-7qHClSVBtoyiwRvCkgyaF5Ps0RAENoPwjauK0I+0bYyBYefdZVshGSe8JQWh/Wexd7hFuUui5xp+2xn5U1a3ZA==",249:"sha512-KuEP0gQ0mAldYT/AqNp3NW4kVb0kLtfIlXaPSFq4WQRFf8vKVNnSqiafso/bWR75halLwFsgmJtdLJEzntVZoQ==",212:"sha512-fqWEILwVJyfYV9/SedvSjCZ6hDRNjOvwYfN73wxZtahaztcFZ2cr3Ns172tBGIDQeWO25QmSlihZm+awv8ma/w=="};(s=document.createElement("script")).charset="utf-8",i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r,0!==s.src.indexOf(window.location.origin+"/")&&(s.crossOrigin="anonymous"),f[a]&&(s.integrity=f[a])}e[r]=[n];var h=(t,n)=>{s.onerror=s.onload=null,clearTimeout(p);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach(e=>e(n)),t)return t(n)},p=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),c&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.p="https://js-agent.newrelic.com/",(()=>{var e={38:0,788:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise((r,i)=>n=e[t]=[r,i]);r.push(n[2]=o);var a=i.p+i.u(t),s=new Error;i.l(a,r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}},"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some(t=>0!==e[t])){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.301.0.PROD"]=self["webpackChunk:NRBA-1.301.0.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(8374);var e=i(9566),t=i(1741);class r extends t.W{agentIdentifier=(0,e.LA)(16)}var n=i(860);const o=Object.values(n.K7);var a=i(5205);var s=i(9908),c=i(1863),u=i(4261),d=i(3241),l=i(944),f=i(5701),h=i(8154);function p(e,t,i,o){const a=o||i;!a||a[e]&&a[e]!==r.prototype[e]||(a[e]=function(){(0,s.p)(h.xV,["API/"+e+"/called"],void 0,n.K7.metrics,i.ee),(0,d.W)({agentIdentifier:i.agentIdentifier,drained:!!f.B?.[i.agentIdentifier],type:"data",name:"api",feature:u.Pl+e,data:{}});try{return t.apply(this,arguments)}catch(e){(0,l.R)(23,e)}})}function g(e,t,r,n,i){const o=e.info;null===r?delete o.jsAttributes[t]:o.jsAttributes[t]=r,(i||null===r)&&(0,s.p)(u.Pl+n,[(0,c.t)(),t,r],void 0,"session",e.ee)}var m=i(1687),v=i(4234),b=i(5289),y=i(6154),w=i(5270),R=i(7767),x=i(6389),T=i(7699);class E extends v.W{constructor(e,t){super(e.agentIdentifier,t),this.agentRef=e,this.abortHandler=void 0,this.featAggregate=void 0,this.onAggregateImported=void 0,this.deferred=Promise.resolve(),!1===e.init[this.featureName].autoStart?this.deferred=new Promise((t,r)=>{this.ee.on("manual-start-all",(0,x.J)(()=>{(0,m.Ak)(e.agentIdentifier,this.featureName),t()}))}):(0,m.Ak)(e.agentIdentifier,t)}importAggregator(e,t,r={}){if(this.featAggregate)return;let n;this.onAggregateImported=new Promise(e=>{n=e});const o=async()=>{let o;await this.deferred;try{if((0,R.V)(e.init)){const{setupAgentSession:t}=await i.e(478).then(i.bind(i,8766));o=t(e)}}catch(e){(0,l.R)(20,e),this.ee.emit("internal-error",[e]),(0,s.p)(T.qh,[e],void 0,this.featureName,this.ee)}try{if(!this.#t(this.featureName,o,e.init))return(0,m.Ze)(this.agentIdentifier,this.featureName),void n(!1);const{Aggregate:i}=await t();this.featAggregate=new i(e,r),e.runtime.harvester.initializedAggregates.push(this.featAggregate),n(!0)}catch(e){(0,l.R)(34,e),this.abortHandler?.(),(0,m.Ze)(this.agentIdentifier,this.featureName,!0),n(!1),this.ee&&this.ee.abort()}};y.RI?(0,b.GG)(()=>o(),!0):o()}#t(e,t,r){if(this.blocked)return!1;switch(e){case n.K7.sessionReplay:return(0,w.SR)(r)&&!!t;case n.K7.sessionTrace:return!!t;default:return!0}}}var A=i(6630),O=i(2614);class S extends E{static featureName=A.T;constructor(e){var t;super(e,A.T),this.setupInspectionEvents(e.agentIdentifier),t=e,p(u.Fw,function(e,r){"string"==typeof e&&("/"!==e.charAt(0)&&(e="/"+e),t.runtime.customTransaction=(r||"http://custom.transaction")+e,(0,s.p)(u.Pl+u.Fw,[(0,c.t)()],void 0,void 0,t.ee))},t),this.ee.on("api-send-rum",(e,t)=>(0,s.p)("send-rum",[e,t],void 0,this.featureName,this.ee)),this.importAggregator(e,()=>i.e(478).then(i.bind(i,1983)))}setupInspectionEvents(e){const t=(t,r)=>{t&&(0,d.W)({agentIdentifier:e,timeStamp:t.timeStamp,loaded:"complete"===t.target.readyState,type:"window",name:r,data:t.target.location+""})};(0,b.sB)(e=>{t(e,"DOMContentLoaded")}),(0,b.GG)(e=>{t(e,"load")}),(0,b.Qr)(e=>{t(e,"navigate")}),this.ee.on(O.tS.UPDATE,(t,r)=>{(0,d.W)({agentIdentifier:e,type:"lifecycle",name:"session",data:r})})}}var N=i(384);var _=i(2843),I=i(3878),P=i(782);class j extends E{static featureName=P.T;constructor(e){super(e,P.T),y.RI&&((0,_.u)(()=>(0,s.p)("docHidden",[(0,c.t)()],void 0,P.T,this.ee),!0),(0,I.sp)("pagehide",()=>(0,s.p)("winPagehide",[(0,c.t)()],void 0,P.T,this.ee)),this.importAggregator(e,()=>i.e(478).then(i.bind(i,9917))))}}class C extends E{static featureName=h.TZ;constructor(e){super(e,h.TZ),y.RI&&document.addEventListener("securitypolicyviolation",e=>{(0,s.p)(h.xV,["Generic/CSPViolation/Detected"],void 0,this.featureName,this.ee)}),this.importAggregator(e,()=>i.e(478).then(i.bind(i,6555)))}}var k=i(6774),L=i(3304);class H{constructor(e,t,r,n,i){this.name="UncaughtError",this.message="string"==typeof e?e:(0,L.A)(e),this.sourceURL=t,this.line=r,this.column=n,this.__newrelic=i}}function M(e){return U(e)?e:new H(void 0!==e?.message?e.message:e,e?.filename||e?.sourceURL,e?.lineno||e?.line,e?.colno||e?.col,e?.__newrelic,e?.cause)}function D(e){const t="Unhandled Promise Rejection: ";if(!e?.reason)return;if(U(e.reason)){try{e.reason.message.startsWith(t)||(e.reason.message=t+e.reason.message)}catch(e){}return M(e.reason)}const r=M(e.reason);return(r.message||"").startsWith(t)||(r.message=t+r.message),r}function K(e){if(e.error instanceof SyntaxError&&!/:\d+$/.test(e.error.stack?.trim())){const t=new H(e.message,e.filename,e.lineno,e.colno,e.error.__newrelic,e.cause);return t.name=SyntaxError.name,t}return U(e.error)?e.error:M(e)}function U(e){return e instanceof Error&&!!e.stack}function F(e,t,r,i,o=(0,c.t)()){"string"==typeof e&&(e=new Error(e)),(0,s.p)("err",[e,o,!1,t,r.runtime.isRecording,void 0,i],void 0,n.K7.jserrors,r.ee),(0,s.p)("uaErr",[],void 0,n.K7.genericEvents,r.ee)}var W=i(3496),B=i(993),G=i(3785);function V(e,{customAttributes:t={},level:r=B.p_.INFO}={},n,i,o=(0,c.t)()){(0,G.R)(n.ee,e,t,r,i,o)}function z(e,t,r,i,o=(0,c.t)()){(0,s.p)(u.Pl+u.hG,[o,e,t,i],void 0,n.K7.genericEvents,r.ee)}function Z(e){p(u.eY,function(t){return function(e,t){const r={};let i,o;(0,l.R)(54,"newrelic.register"),e.init.api.allow_registered_children||(i=()=>(0,l.R)(55));t&&(0,W.I)(t)||(i=()=>(0,l.R)(48,t));const a={addPageAction:(n,i={})=>{u(z,[n,{...r,...i},e],t)},log:(n,i={})=>{u(V,[n,{...i,customAttributes:{...r,...i.customAttributes||{}}},e],t)},noticeError:(n,i={})=>{u(F,[n,{...r,...i},e],t)},setApplicationVersion:e=>{r["application.version"]=e},setCustomAttribute:(e,t)=>{r[e]=t},setUserId:e=>{r["enduser.id"]=e},metadata:{customAttributes:r,target:t,get connected(){return o||Promise.reject(new Error("Failed to connect"))}}};i?i():o=new Promise((n,i)=>{try{const o=e.runtime?.entityManager;let s=!!o?.get().entityGuid,c=o?.getEntityGuidFor(t.licenseKey,t.applicationID),u=!!c;if(s&&u)t.entityGuid=c,n(a);else{const d=setTimeout(()=>i(new Error("Failed to connect - Timeout")),15e3);function l(r){(0,W.A)(r,e)?s||=!0:t.licenseKey===r.licenseKey&&t.applicationID===r.applicationID&&(u=!0,t.entityGuid=r.entityGuid),s&&u&&(clearTimeout(d),e.ee.removeEventListener("entity-added",l),n(a))}e.ee.emit("api-send-rum",[r,t]),e.ee.on("entity-added",l)}}catch(f){i(f)}});const u=async(t,r,a)=>{if(i)return i();const u=(0,c.t)();(0,s.p)(h.xV,["API/register/".concat(t.name,"/called")],void 0,n.K7.metrics,e.ee);try{await o;const n=e.init.api.duplicate_registered_data;(!0===n||Array.isArray(n)&&n.includes(a.entityGuid))&&t(...r,void 0,u),t(...r,a.entityGuid,u)}catch(e){(0,l.R)(50,e)}};return a}(e,t)},e)}class q extends E{static featureName=k.T;constructor(e){var t;super(e,k.T),t=e,p(u.o5,(e,r)=>F(e,r,t),t),function(e){p(u.bt,function(t){e.runtime.onerror=t},e)}(e),function(e){let t=0;p(u.k6,function(e,r){++t>10||(this.runtime.releaseIds[e.slice(-200)]=(""+r).slice(-200))},e)}(e),Z(e);try{this.removeOnAbort=new AbortController}catch(e){}this.ee.on("internal-error",(t,r)=>{this.abortHandler&&(0,s.p)("ierr",[M(t),(0,c.t)(),!0,{},e.runtime.isRecording,r],void 0,this.featureName,this.ee)}),y.gm.addEventListener("unhandledrejection",t=>{this.abortHandler&&(0,s.p)("err",[D(t),(0,c.t)(),!1,{unhandledPromiseRejection:1},e.runtime.isRecording],void 0,this.featureName,this.ee)},(0,I.jT)(!1,this.removeOnAbort?.signal)),y.gm.addEventListener("error",t=>{this.abortHandler&&(0,s.p)("err",[K(t),(0,c.t)(),!1,{},e.runtime.isRecording],void 0,this.featureName,this.ee)},(0,I.jT)(!1,this.removeOnAbort?.signal)),this.abortHandler=this.#r,this.importAggregator(e,()=>i.e(478).then(i.bind(i,2176)))}#r(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var X=i(8990);let Y=1;function Q(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===y.gm?0:(0,X.I)(e,"nr@id",function(){return Y++})}function J(e){if("string"==typeof e&&e.length)return e.length;if("object"==typeof e){if("undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer&&e.byteLength)return e.byteLength;if("undefined"!=typeof Blob&&e instanceof Blob&&e.size)return e.size;if(!("undefined"!=typeof FormData&&e instanceof FormData))try{return(0,L.A)(e).length}catch(e){return}}}var ee=i(8139),te=i(7836),re=i(3434);const ne={},ie=["open","send"];function oe(e){var t=e||te.ee;const r=function(e){return(e||te.ee).get("xhr")}(t);if(void 0===y.gm.XMLHttpRequest)return r;if(ne[r.debugId]++)return r;ne[r.debugId]=1,(0,ee.u)(t);var n=(0,re.YM)(r),i=y.gm.XMLHttpRequest,o=y.gm.MutationObserver,a=y.gm.Promise,s=y.gm.setInterval,c="readystatechange",u=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],d=[],f=y.gm.XMLHttpRequest=function(e){const t=new i(e),o=r.context(t);try{r.emit("new-xhr",[t],o),t.addEventListener(c,(a=o,function(){var e=this;e.readyState>3&&!a.resolved&&(a.resolved=!0,r.emit("xhr-resolved",[],e)),n.inPlace(e,u,"fn-",b)}),(0,I.jT)(!1))}catch(e){(0,l.R)(15,e);try{r.emit("internal-error",[e])}catch(e){}}var a;return t};function h(e,t){n.inPlace(t,["onreadystatechange"],"fn-",b)}if(function(e,t){for(var r in e)t[r]=e[r]}(i,f),f.prototype=i.prototype,n.inPlace(f.prototype,ie,"-xhr-",b),r.on("send-xhr-start",function(e,t){h(e,t),function(e){d.push(e),o&&(p?p.then(v):s?s(v):(g=-g,m.data=g))}(t)}),r.on("open-xhr-start",h),o){var p=a&&a.resolve();if(!s&&!a){var g=1,m=document.createTextNode(g);new o(v).observe(m,{characterData:!0})}}else t.on("fn-end",function(e){e[0]&&e[0].type===c||v()});function v(){for(var e=0;e<d.length;e++)h(0,d[e]);d.length&&(d=[])}function b(e,t){return t}return r}var ae="fetch-",se=ae+"body-",ce=["arrayBuffer","blob","json","text","formData"],ue=y.gm.Request,de=y.gm.Response,le="prototype";const fe={};function he(e){const t=function(e){return(e||te.ee).get("fetch")}(e);if(!(ue&&de&&y.gm.fetch))return t;if(fe[t.debugId]++)return t;function r(e,r,n){var i=e[r];"function"==typeof i&&(e[r]=function(){var e,r=[...arguments],o={};t.emit(n+"before-start",[r],o),o[te.P]&&o[te.P].dt&&(e=o[te.P].dt);var a=i.apply(this,r);return t.emit(n+"start",[r,e],a),a.then(function(e){return t.emit(n+"end",[null,e],a),e},function(e){throw t.emit(n+"end",[e],a),e})})}return fe[t.debugId]=1,ce.forEach(e=>{r(ue[le],e,se),r(de[le],e,se)}),r(y.gm,"fetch",ae),t.on(ae+"end",function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(ae+"done",[null,r],n)}else t.emit(ae+"done",[e],n)}),t}var pe=i(7485);class ge{constructor(e){this.agentRef=e}generateTracePayload(t){const r=this.agentRef.loader_config;if(!this.shouldGenerateTrace(t)||!r)return null;var n=(r.accountID||"").toString()||null,i=(r.agentID||"").toString()||null,o=(r.trustKey||"").toString()||null;if(!n||!i)return null;var a=(0,e.ZF)(),s=(0,e.el)(),c=Date.now(),u={spanId:a,traceId:s,timestamp:c};return(t.sameOrigin||this.isAllowedOrigin(t)&&this.useTraceContextHeadersForCors())&&(u.traceContextParentHeader=this.generateTraceContextParentHeader(a,s),u.traceContextStateHeader=this.generateTraceContextStateHeader(a,c,n,i,o)),(t.sameOrigin&&!this.excludeNewrelicHeader()||!t.sameOrigin&&this.isAllowedOrigin(t)&&this.useNewrelicHeaderForCors())&&(u.newrelicHeader=this.generateTraceHeader(a,s,c,n,i,o)),u}generateTraceContextParentHeader(e,t){return"00-"+t+"-"+e+"-01"}generateTraceContextStateHeader(e,t,r,n,i){return i+"@nr=0-1-"+r+"-"+n+"-"+e+"----"+t}generateTraceHeader(e,t,r,n,i,o){if(!("function"==typeof y.gm?.btoa))return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(a.d.tk=o),btoa((0,L.A)(a))}shouldGenerateTrace(e){return this.agentRef.init?.distributed_tracing?.enabled&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var t=!1;const r=this.agentRef.init?.distributed_tracing;if(e.sameOrigin)t=!0;else if(r?.allowed_origins instanceof Array)for(var n=0;n<r.allowed_origins.length;n++){var i=(0,pe.D)(r.allowed_origins[n]);if(e.hostname===i.hostname&&e.protocol===i.protocol&&e.port===i.port){t=!0;break}}return t}excludeNewrelicHeader(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!!e.cors_use_tracecontext_headers}}var me=i(9300),ve=i(7295);function be(e){return"string"==typeof e?e:e instanceof(0,N.dV)().o.REQ?e.url:y.gm?.URL&&e instanceof URL?e.href:void 0}var ye=["load","error","abort","timeout"],we=ye.length,Re=(0,N.dV)().o.REQ,xe=(0,N.dV)().o.XHR;const Te="X-NewRelic-App-Data";class Ee extends E{static featureName=me.T;constructor(e){super(e,me.T),this.dt=new ge(e),this.handler=(e,t,r,n)=>(0,s.p)(e,t,r,n,this.ee);try{const e={xmlhttprequest:"xhr",fetch:"fetch",beacon:"beacon"};y.gm?.performance?.getEntriesByType("resource").forEach(t=>{if(t.initiatorType in e&&0!==t.responseStatus){const r={status:t.responseStatus},i={rxSize:t.transferSize,duration:Math.floor(t.duration),cbTime:0};Ae(r,t.name),this.handler("xhr",[r,i,t.startTime,t.responseEnd,e[t.initiatorType]],void 0,n.K7.ajax)}})}catch(e){}he(this.ee),oe(this.ee),function(e,t,r,i){function o(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=E,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},t.latestLongtaskEnd=0,e.addEventListener("load",function(r){A(t,e)},(0,I.jT)(!1)),y.lR||e.addEventListener("progress",function(e){t.lastSize=e.loaded},(0,I.jT)(!1))}function a(e){this.params={method:e[0]},Ae(this,e[1]),this.metrics={}}function u(t,r){e.loader_config.xpid&&this.sameOrigin&&r.setRequestHeader("X-NewRelic-ID",e.loader_config.xpid);var n=i.generateTracePayload(this.parsedOrigin);if(n){var o=!1;n.newrelicHeader&&(r.setRequestHeader("newrelic",n.newrelicHeader),o=!0),n.traceContextParentHeader&&(r.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&r.setRequestHeader("tracestate",n.traceContextStateHeader),o=!0),o&&(this.dt=n)}}function d(e,r){var n=this.metrics,i=e[0],o=this;if(n&&i){var a=J(i);a&&(n.txSize=a)}this.startTime=(0,c.t)(),this.body=i,this.listener=function(e){try{"abort"!==e.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==e.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof r.onload)&&"function"==typeof o.end)&&o.end(r)}catch(e){try{t.emit("internal-error",[e])}catch(e){}}};for(var s=0;s<we;s++)r.addEventListener(ye[s],this.listener,(0,I.jT)(!1))}function l(e,t,r){this.cbTime+=e,t?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof r.onload||"function"!=typeof this.end||this.end(r)}function f(e,t){var r=""+Q(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function p(e,t){var r=""+Q(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function g(){this.endTime=(0,c.t)()}function m(e,r){r instanceof xe&&"load"===e[0]&&t.emit("xhr-load-added",[e[1],e[2]],r)}function v(e,r){r instanceof xe&&"load"===e[0]&&t.emit("xhr-load-removed",[e[1],e[2]],r)}function b(e,t,r){t instanceof xe&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,c.t)()))}function w(e,r){this.xhrCbStart&&t.emit("xhr-cb-time",[(0,c.t)()-this.xhrCbStart,this.onload,r],r)}function R(e){var t,r=e[1]||{};if("string"==typeof e[0]?0===(t=e[0]).length&&y.RI&&(t=""+y.gm.location.href):e[0]&&e[0].url?t=e[0].url:y.gm?.URL&&e[0]&&e[0]instanceof URL?t=e[0].href:"function"==typeof e[0].toString&&(t=e[0].toString()),"string"==typeof t&&0!==t.length){t&&(this.parsedOrigin=(0,pe.D)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var n=i.generateTracePayload(this.parsedOrigin);if(n&&(n.newrelicHeader||n.traceContextParentHeader))if(e[0]&&e[0].headers)s(e[0].headers,n)&&(this.dt=n);else{var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),s(o.headers,n)&&(this.dt=n),e.length>1?e[1]=o:e.push(o)}}function s(e,t){var r=!1;return t.newrelicHeader&&(e.set("newrelic",t.newrelicHeader),r=!0),t.traceContextParentHeader&&(e.set("traceparent",t.traceContextParentHeader),t.traceContextStateHeader&&e.set("tracestate",t.traceContextStateHeader),r=!0),r}}function x(e,t){this.params={},this.metrics={},this.startTime=(0,c.t)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r=this.opts||{},n=this.target;Ae(this,be(n));var i=(""+(n&&n instanceof Re&&n.method||r.method||"GET")).toUpperCase();this.params.method=i,this.body=r.body,this.txSize=J(r.body)||0}function T(e,t){if(this.endTime=(0,c.t)(),this.params||(this.params={}),(0,ve.iW)(this.params))return;let i;this.params.status=t?t.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(i=+this.rxSize);const o={txSize:this.txSize,rxSize:i,duration:(0,c.t)()-this.startTime};r("xhr",[this.params,o,this.startTime,this.endTime,"fetch"],this,n.K7.ajax)}function E(e){const t=this.params,i=this.metrics;if(!this.ended){this.ended=!0;for(let t=0;t<we;t++)e.removeEventListener(ye[t],this.listener,!1);t.aborted||(0,ve.iW)(t)||(i.duration=(0,c.t)()-this.startTime,this.loadCaptureCalled||4!==e.readyState?null==t.status&&(t.status=0):A(this,e),i.cbTime=this.cbTime,r("xhr",[t,i,this.startTime,this.endTime,"xhr"],this,n.K7.ajax))}}function A(e,r){e.params.status=r.status;var i=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?J(e.response):"text"===r||""===r||void 0===r?J(e.responseText):void 0}(r,e.lastSize);if(i&&(e.metrics.rxSize=i),e.sameOrigin&&r.getAllResponseHeaders().indexOf(Te)>=0){var o=r.getResponseHeader(Te);o&&((0,s.p)(h.rs,["Ajax/CrossApplicationTracing/Header/Seen"],void 0,n.K7.metrics,t),e.params.cat=o.split(", ").pop())}e.loadCaptureCalled=!0}t.on("new-xhr",o),t.on("open-xhr-start",a),t.on("open-xhr-end",u),t.on("send-xhr-start",d),t.on("xhr-cb-time",l),t.on("xhr-load-added",f),t.on("xhr-load-removed",p),t.on("xhr-resolved",g),t.on("addEventListener-end",m),t.on("removeEventListener-end",v),t.on("fn-end",w),t.on("fetch-before-start",R),t.on("fetch-start",x),t.on("fn-start",b),t.on("fetch-done",T)}(e,this.ee,this.handler,this.dt),this.importAggregator(e,()=>i.e(478).then(i.bind(i,3845)))}}function Ae(e,t){var r=(0,pe.D)(t),n=e.params||e;n.hostname=r.hostname,n.port=r.port,n.protocol=r.protocol,n.host=r.hostname+":"+r.port,n.pathname=r.pathname,e.parsedOrigin=r,e.sameOrigin=r.sameOrigin}const Oe={},Se=["pushState","replaceState"];function Ne(e){const t=function(e){return(e||te.ee).get("history")}(e);return!y.RI||Oe[t.debugId]++||(Oe[t.debugId]=1,(0,re.YM)(t).inPlace(window.history,Se,"-")),t}var _e=i(3738);function Ie(e){p(u.BL,function(t=Date.now()){const r=t-y.WN;r<0&&(0,l.R)(62,t),(0,s.p)(h.XG,[u.BL,{time:r}],void 0,n.K7.metrics,e.ee),e.addToTrace({name:u.BL,start:t,origin:"nr"}),(0,s.p)(u.Pl+u.hG,[r,u.BL],void 0,n.K7.genericEvents,e.ee)},e)}const{He:Pe,bD:je,d3:Ce,Kp:ke,TZ:Le,Lc:He,uP:Me,Rz:De}=_e;class Ke extends E{static featureName=Le;constructor(e){var t;super(e,Le),t=e,p(u.U2,function(e){if(!(e&&"object"==typeof e&&e.name&&e.start))return;const r={n:e.name,s:e.start-y.WN,e:(e.end||e.start)-y.WN,o:e.origin||"",t:"api"};r.s<0||r.e<0||r.e<r.s?(0,l.R)(61,{start:r.s,end:r.e}):(0,s.p)("bstApi",[r],void 0,n.K7.sessionTrace,t.ee)},t),Ie(e);if(!(0,R.V)(e.init))return void this.deregisterDrain();const r=this.ee;let o;Ne(r),this.eventsEE=(0,ee.u)(r),this.eventsEE.on(Me,function(e,t){this.bstStart=(0,c.t)()}),this.eventsEE.on(He,function(e,t){(0,s.p)("bst",[e[0],t,this.bstStart,(0,c.t)()],void 0,n.K7.sessionTrace,r)}),r.on(De+Ce,function(e){this.time=(0,c.t)(),this.startPath=location.pathname+location.hash}),r.on(De+ke,function(e){(0,s.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,n.K7.sessionTrace,r)});try{o=new PerformanceObserver(e=>{const t=e.getEntries();(0,s.p)(Pe,[t],void 0,n.K7.sessionTrace,r)}),o.observe({type:je,buffered:!0})}catch(e){}this.importAggregator(e,()=>i.e(478).then(i.bind(i,6974)),{resourceObserver:o})}}var Ue=i(6344);class Fe extends E{static featureName=Ue.TZ;#n;recorder;constructor(e){var t;let r;super(e,Ue.TZ),t=e,p(u.CH,function(){(0,s.p)(u.CH,[],void 0,n.K7.sessionReplay,t.ee)},t),function(e){p(u.Tb,function(){(0,s.p)(u.Tb,[],void 0,n.K7.sessionReplay,e.ee)},e)}(e);try{r=JSON.parse(localStorage.getItem("".concat(O.H3,"_").concat(O.uh)))}catch(e){}(0,w.SR)(e.init)&&this.ee.on(Ue.G4.RECORD,()=>this.#i()),this.#o(r)&&this.importRecorder().then(e=>{e.startRecording(Ue.Qb.PRELOAD,r?.sessionReplayMode)}),this.importAggregator(this.agentRef,()=>i.e(478).then(i.bind(i,6167)),this),this.ee.on("err",e=>{this.blocked||this.agentRef.runtime.isRecording&&(this.errorNoticed=!0,(0,s.p)(Ue.G4.ERROR_DURING_REPLAY,[e],void 0,this.featureName,this.ee))})}#o(e){return e&&(e.sessionReplayMode===O.g.FULL||e.sessionReplayMode===O.g.ERROR)||(0,w.Aw)(this.agentRef.init)}importRecorder(){return this.recorder?Promise.resolve(this.recorder):(this.#n??=Promise.all([i.e(478),i.e(249)]).then(i.bind(i,4866)).then(({Recorder:e})=>(this.recorder=new e(this),this.recorder)).catch(e=>{throw this.ee.emit("internal-error",[e]),this.blocked=!0,e}),this.#n)}#i(){this.blocked||(this.featAggregate?this.featAggregate.mode!==O.g.FULL&&this.featAggregate.initializeRecording(O.g.FULL,!0,Ue.Qb.API):this.importRecorder().then(()=>{this.recorder.startRecording(Ue.Qb.API,O.g.FULL)}))}}var We=i(3962);function Be(e){const t=e.ee.get("tracer");function r(){}p(u.dT,function(e){return(new r).get("object"==typeof e?e:{})},e);const i=r.prototype={createTracer:function(r,i){var o={},a=this,d="function"==typeof i;return(0,s.p)(h.xV,["API/createTracer/called"],void 0,n.K7.metrics,e.ee),e.runSoftNavOverSpa||(0,s.p)(u.hw+"tracer",[(0,c.t)(),r,o],a,n.K7.spa,e.ee),function(){if(t.emit((d?"":"no-")+"fn-start",[(0,c.t)(),a,d],o),d)try{return i.apply(this,arguments)}catch(e){const r="string"==typeof e?new Error(e):e;throw t.emit("fn-err",[arguments,this,r],o),r}finally{t.emit("fn-end",[(0,c.t)()],o)}}}};["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach(t=>{p.apply(this,[t,function(){return(0,s.p)(u.hw+t,[(0,c.t)(),...arguments],this,e.runSoftNavOverSpa?n.K7.softNav:n.K7.spa,e.ee),this},e,i])}),p(u.PA,function(){e.runSoftNavOverSpa?(0,s.p)(u.hw+"routeName",[performance.now(),...arguments],void 0,n.K7.softNav,e.ee):(0,s.p)(u.Pl+"routeName",[(0,c.t)(),...arguments],this,n.K7.spa,e.ee)},e)}class Ge extends E{static featureName=We.TZ;constructor(e){if(super(e,We.TZ),Be(e),!y.RI||!(0,N.dV)().o.MO)return;const t=Ne(this.ee);try{this.removeOnAbort=new AbortController}catch(e){}We.tC.forEach(e=>{(0,I.sp)(e,e=>{a(e)},!0,this.removeOnAbort?.signal)});const r=()=>(0,s.p)("newURL",[(0,c.t)(),""+window.location],void 0,this.featureName,this.ee);t.on("pushState-end",r),t.on("replaceState-end",r),(0,I.sp)(We.OV,e=>{a(e),(0,s.p)("newURL",[e.timeStamp,""+window.location],void 0,this.featureName,this.ee)},!0,this.removeOnAbort?.signal);let n=!1;const o=new((0,N.dV)().o.MO)((e,t)=>{n||(n=!0,requestAnimationFrame(()=>{(0,s.p)("newDom",[(0,c.t)()],void 0,this.featureName,this.ee),n=!1}))}),a=(0,x.s)(e=>{(0,s.p)("newUIEvent",[e],void 0,this.featureName,this.ee),o.observe(document.body,{attributes:!0,childList:!0,subtree:!0,characterData:!0})},100,{leading:!0});this.abortHandler=function(){this.removeOnAbort?.abort(),o.disconnect(),this.abortHandler=void 0},this.importAggregator(e,()=>i.e(478).then(i.bind(i,4393)),{domObserver:o})}}var Ve=i(7378);const ze={},Ze=["appendChild","insertBefore","replaceChild"];function qe(e){const t=function(e){return(e||te.ee).get("jsonp")}(e);if(!y.RI||ze[t.debugId])return t;ze[t.debugId]=!0;var r=(0,re.YM)(t),n=/[?&](?:callback|cb)=([^&#]+)/,i=/(.*)\.([^.]+)/,o=/^(\w+)(\.|$)(.*)$/;function a(e,t){if(!e)return t;const r=e.match(o),n=r[1];return a(r[3],t[n])}return r.inPlace(Node.prototype,Ze,"dom-"),t.on("dom-start",function(e){!function(e){if(!e||"string"!=typeof e.nodeName||"script"!==e.nodeName.toLowerCase())return;if("function"!=typeof e.addEventListener)return;var o=(s=e.src,c=s.match(n),c?c[1]:null);var s,c;if(!o)return;var u=function(e){var t=e.match(i);if(t&&t.length>=3)return{key:t[2],parent:a(t[1],window)};return{key:e,parent:window}}(o);if("function"!=typeof u.parent[u.key])return;var d={};function l(){t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,I.jT)(!1)),e.removeEventListener("error",f,(0,I.jT)(!1))}function f(){t.emit("jsonp-error",[],d),t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,I.jT)(!1)),e.removeEventListener("error",f,(0,I.jT)(!1))}r.inPlace(u.parent,[u.key],"cb-",d),e.addEventListener("load",l,(0,I.jT)(!1)),e.addEventListener("error",f,(0,I.jT)(!1)),t.emit("new-jsonp",[e.src],d)}(e[0])}),t}const Xe={};function Ye(e){const t=function(e){return(e||te.ee).get("promise")}(e);if(Xe[t.debugId])return t;Xe[t.debugId]=!0;var r=t.context,n=(0,re.YM)(t),i=y.gm.Promise;return i&&function(){function e(r){var o=t.context(),a=n(r,"executor-",o,null,!1);const s=Reflect.construct(i,[a],e);return t.context(s).getCtx=function(){return o},s}y.gm.Promise=e,Object.defineProperty(e,"name",{value:"Promise"}),e.toString=function(){return i.toString()},Object.setPrototypeOf(e,i),["all","race"].forEach(function(r){const n=i[r];e[r]=function(e){let i=!1;[...e||[]].forEach(e=>{this.resolve(e).then(a("all"===r),a(!1))});const o=n.apply(this,arguments);return o;function a(e){return function(){t.emit("propagate",[null,!i],o,!1,!1),i=i||!e}}}}),["resolve","reject"].forEach(function(r){const n=i[r];e[r]=function(e){const r=n.apply(this,arguments);return e!==r&&t.emit("propagate",[e,!0],r,!1,!1),r}}),e.prototype=i.prototype;const o=i.prototype.then;i.prototype.then=function(...e){var i=this,a=r(i);a.promise=i,e[0]=n(e[0],"cb-",a,null,!1),e[1]=n(e[1],"cb-",a,null,!1);const s=o.apply(this,e);return a.nextPromise=s,t.emit("propagate",[i,!0],s,!1,!1),s},i.prototype.then[re.Jt]=o,t.on("executor-start",function(e){e[0]=n(e[0],"resolve-",this,null,!1),e[1]=n(e[1],"resolve-",this,null,!1)}),t.on("executor-err",function(e,t,r){e[1](r)}),t.on("cb-end",function(e,r,n){t.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),t.on("propagate",function(e,r,n){this.getCtx&&!r||(this.getCtx=function(){if(e instanceof Promise)var r=t.context(e);return r&&r.getCtx?r.getCtx():this})})}(),t}const Qe={},$e="setTimeout",Je="setInterval",et="clearTimeout",tt="-start",rt=[$e,"setImmediate",Je,et,"clearImmediate"];function nt(e){const t=function(e){return(e||te.ee).get("timer")}(e);if(Qe[t.debugId]++)return t;Qe[t.debugId]=1;var r=(0,re.YM)(t);return r.inPlace(y.gm,rt.slice(0,2),$e+"-"),r.inPlace(y.gm,rt.slice(2,3),Je+"-"),r.inPlace(y.gm,rt.slice(3),et+"-"),t.on(Je+tt,function(e,t,n){e[0]=r(e[0],"fn-",null,n)}),t.on($e+tt,function(e,t,n){this.method=n,this.timerDuration=isNaN(e[1])?0:+e[1],e[0]=r(e[0],"fn-",this,n)}),t}const it={};function ot(e){const t=function(e){return(e||te.ee).get("mutation")}(e);if(!y.RI||it[t.debugId])return t;it[t.debugId]=!0;var r=(0,re.YM)(t),n=y.gm.MutationObserver;return n&&(window.MutationObserver=function(e){return this instanceof n?new n(r(e,"fn-")):n.apply(this,arguments)},MutationObserver.prototype=n.prototype),t}const{TZ:at,d3:st,Kp:ct,$p:ut,wW:dt,e5:lt,tH:ft,uP:ht,rw:pt,Lc:gt}=Ve;class mt extends E{static featureName=at;constructor(e){if(super(e,at),Be(e),!y.RI)return;try{this.removeOnAbort=new AbortController}catch(e){}let t,r=0;const n=this.ee.get("tracer"),o=qe(this.ee),a=Ye(this.ee),u=nt(this.ee),d=oe(this.ee),l=this.ee.get("events"),f=he(this.ee),h=Ne(this.ee),p=ot(this.ee);function g(e,t){h.emit("newURL",[""+window.location,t])}function m(){r++,t=window.location.hash,this[ht]=(0,c.t)()}function v(){r--,window.location.hash!==t&&g(0,!0);var e=(0,c.t)();this[lt]=~~this[lt]+e-this[ht],this[gt]=e}function b(e,t){e.on(t,function(){this[t]=(0,c.t)()})}this.ee.on(ht,m),a.on(pt,m),o.on(pt,m),this.ee.on(gt,v),a.on(dt,v),o.on(dt,v),this.ee.on("fn-err",(...t)=>{t[2]?.__newrelic?.[e.agentIdentifier]||(0,s.p)("function-err",[...t],void 0,this.featureName,this.ee)}),this.ee.buffer([ht,gt,"xhr-resolved"],this.featureName),l.buffer([ht],this.featureName),u.buffer(["setTimeout"+ct,"clearTimeout"+st,ht],this.featureName),d.buffer([ht,"new-xhr","send-xhr"+st],this.featureName),f.buffer([ft+st,ft+"-done",ft+ut+st,ft+ut+ct],this.featureName),h.buffer(["newURL"],this.featureName),p.buffer([ht],this.featureName),a.buffer(["propagate",pt,dt,"executor-err","resolve"+st],this.featureName),n.buffer([ht,"no-"+ht],this.featureName),o.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),b(f,ft+st),b(f,ft+"-done"),b(o,"new-jsonp"),b(o,"jsonp-end"),b(o,"cb-start"),h.on("pushState-end",g),h.on("replaceState-end",g),window.addEventListener("hashchange",g,(0,I.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",g,(0,I.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",function(){g(0,r>1)},(0,I.jT)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#r,this.importAggregator(e,()=>i.e(478).then(i.bind(i,5592)))}#r(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var vt=i(3333);class bt extends E{static featureName=vt.TZ;constructor(e){super(e,vt.TZ);const t=[e.init.page_action.enabled,e.init.performance.capture_marks,e.init.performance.capture_measures,e.init.user_actions.enabled,e.init.performance.resources.enabled];var r;if(r=e,p(u.hG,(e,t)=>z(e,t,r),r),function(e){p(u.fF,function(){(0,s.p)(u.Pl+u.fF,[(0,c.t)(),...arguments],void 0,n.K7.genericEvents,e.ee)},e)}(e),Ie(e),Z(e),function(e){p(u.V1,function(t,r){const i=(0,c.t)(),{start:o,end:a,customAttributes:d}=r||{},f={customAttributes:d||{}};if("object"!=typeof f.customAttributes||"string"!=typeof t||0===t.length)return void(0,l.R)(57);const h=(e,t)=>null==e?t:"number"==typeof e?e:e instanceof PerformanceMark?e.startTime:Number.NaN;if(f.start=h(o,0),f.end=h(a,i),Number.isNaN(f.start)||Number.isNaN(f.end))(0,l.R)(57);else{if(f.duration=f.end-f.start,!(f.duration<0))return(0,s.p)(u.Pl+u.V1,[f,t],void 0,n.K7.genericEvents,e.ee),f;(0,l.R)(58)}},e)}(e),y.RI){if(e.init.user_actions.enabled&&(vt.Zp.forEach(e=>(0,I.sp)(e,e=>(0,s.p)("ua",[e],void 0,this.featureName,this.ee),!0)),vt.qN.forEach(e=>{const t=(0,x.s)(e=>{(0,s.p)("ua",[e],void 0,this.featureName,this.ee)},500,{leading:!0});(0,I.sp)(e,t)})),e.init.performance.resources.enabled&&y.gm.PerformanceObserver?.supportedEntryTypes.includes("resource")){new PerformanceObserver(e=>{e.getEntries().forEach(e=>{(0,s.p)("browserPerformance.resource",[e],void 0,this.featureName,this.ee)})}).observe({type:"resource",buffered:!0})}const a=Ne(this.ee);function d(){a.emit("navChange")}a.on("pushState-end",d),a.on("replaceState-end",d),window.addEventListener("hashchange",d,(0,I.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",d,(0,I.jT)(!0,this.removeOnAbort?.signal))}try{this.removeOnAbort=new AbortController}catch(f){}function o(t){const r=(0,pe.D)(t);return e.beacons.includes(r.hostname+":"+r.port)}this.abortHandler=()=>{this.removeOnAbort?.abort(),this.abortHandler=void 0},y.gm.addEventListener("error",()=>{(0,s.p)("uaErr",[],void 0,n.K7.genericEvents,this.ee)},(0,I.jT)(!1,this.removeOnAbort?.signal)),he(this.ee),oe(this.ee),this.ee.on("open-xhr-start",(e,t)=>{o(e[1])||t.addEventListener("readystatechange",()=>{2===t.readyState&&(0,s.p)("uaXhr",[],void 0,n.K7.genericEvents,this.ee)})}),this.ee.on("fetch-start",e=>{e.length>=1&&!o(be(e[0]))&&(0,s.p)("uaXhr",[],void 0,n.K7.genericEvents,this.ee)}),t.some(e=>e)?this.importAggregator(e,()=>i.e(478).then(i.bind(i,8019))):this.deregisterDrain()}}var yt=i(2646);const wt=new Map;function Rt(e,t,r,n){if("object"!=typeof t||!t||"string"!=typeof r||!r||"function"!=typeof t[r])return(0,l.R)(29);const i=function(e){return(e||te.ee).get("logger")}(e),o=(0,re.YM)(i),a=new yt.y(te.P);a.level=n.level,a.customAttributes=n.customAttributes;const s=t[r]?.[re.Jt]||t[r];return wt.set(s,a),o.inPlace(t,[r],"wrap-logger-",()=>wt.get(s)),i}var xt=i(1910);class Tt extends E{static featureName=B.TZ;constructor(e){var t;super(e,B.TZ),t=e,p(u.$9,(e,r)=>V(e,r,t),t),function(e){p(u.Wb,(t,r,{customAttributes:n={},level:i=B.p_.INFO}={})=>{Rt(e.ee,t,r,{customAttributes:n,level:i})},e)}(e),Z(e);const r=this.ee;["log","error","warn","info","debug","trace"].forEach(e=>{(0,xt.i)(y.gm.console[e]),Rt(r,y.gm.console,e,{level:"log"===e?"info":e})}),this.ee.on("wrap-logger-end",function([e]){const{level:t,customAttributes:n}=this;(0,G.R)(r,e,n,t)}),this.importAggregator(e,()=>i.e(478).then(i.bind(i,5288)))}}new class extends r{constructor(e){var t;(super(),y.gm)?(this.features={},(0,N.bQ)(this.agentIdentifier,this),this.desiredFeatures=new Set(e.features||[]),this.desiredFeatures.add(S),this.runSoftNavOverSpa=[...this.desiredFeatures].some(e=>e.featureName===n.K7.softNav),(0,a.j)(this,e,e.loaderType||"agent"),t=this,p(u.cD,function(e,r,n=!1){if("string"==typeof e){if(["string","number","boolean"].includes(typeof r)||null===r)return g(t,e,r,u.cD,n);(0,l.R)(40,typeof r)}else(0,l.R)(39,typeof e)},t),function(e){p(u.Dl,function(t){if("string"==typeof t||null===t)return g(e,"enduser.id",t,u.Dl,!0);(0,l.R)(41,typeof t)},e)}(this),function(e){p(u.nb,function(t){if("string"==typeof t||null===t)return g(e,"application.version",t,u.nb,!1);(0,l.R)(42,typeof t)},e)}(this),function(e){p(u.d3,function(){e.ee.emit("manual-start-all")},e)}(this),this.run()):(0,l.R)(21)}get config(){return{info:this.info,init:this.init,loader_config:this.loader_config,runtime:this.runtime}}get api(){return this}run(){try{const e=function(e){const t={};return o.forEach(r=>{t[r]=!!e[r]?.enabled}),t}(this.init),t=[...this.desiredFeatures];t.sort((e,t)=>n.P3[e.featureName]-n.P3[t.featureName]),t.forEach(t=>{if(!e[t.featureName]&&t.featureName!==n.K7.pageViewEvent)return;if(this.runSoftNavOverSpa&&t.featureName===n.K7.spa)return;if(!this.runSoftNavOverSpa&&t.featureName===n.K7.softNav)return;const r=function(e){switch(e){case n.K7.ajax:return[n.K7.jserrors];case n.K7.sessionTrace:return[n.K7.ajax,n.K7.pageViewEvent];case n.K7.sessionReplay:return[n.K7.sessionTrace];case n.K7.pageViewTiming:return[n.K7.pageViewEvent];default:return[]}}(t.featureName).filter(e=>!(e in this.features));r.length>0&&(0,l.R)(36,{targetFeature:t.featureName,missingDependencies:r}),this.features[t.featureName]=new t(this)})}catch(e){(0,l.R)(22,e);for(const e in this.features)this.features[e].abortHandler?.();const t=(0,N.Zm)();delete t.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator;return t.ee.get(this.agentIdentifier).abort(),!1}}}({features:[Ee,S,j,Ke,Fe,C,q,bt,Tt,Ge,mt],loaderType:"spa"})})()})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" /><title>Get Started</title>
<meta name='robots' content='max-image-preview:large' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<script src="https://cmp.osano.com/16A0DbT9yDNIaQkvZ/31b1b91a-e0b6-47ea-bde2-7f2bd13dbe5c/osano.js"></script>
<link rel='dns-prefetch' href='http://use.fontawesome.com/' />
<link rel="alternate" type="application/rss+xml" title="PyTorch » Feed" href="https://pytorch.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="PyTorch » Comments Feed" href="https://pytorch.org/comments/feed/" />
<link rel="alternate" type="text/calendar" title="PyTorch » iCal Feed" href="https://pytorch.org/eventss/?ical=1" />
<script src="https://lfx-segment.platform.linuxfoundation.org/latest/lfx-segment-analytics.min.js"></script>
<script type="text/javascript" nonce="6afb9b98c2">
if(window.LfxAnalytics&&window.LfxAnalytics.LfxSegmentsAnalytics){var analytics=window.LfxAnalytics.LfxSegmentsAnalytics.getInstance();analytics.init().then(function(){}).catch(function(error){console.error('Failed to initialize analytics:',error)});}else{console.warn('LfxAnalytics not found');}</script>
<script type="text/javascript" nonce="6afb9b98c2">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/pytorch.org\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.8.3"}};
/*! This file is auto-generated */
!function(s,n){var o,i,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),a=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===a[t]})}function u(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);for(var n=e.getImageData(16,16,1,1),a=0;a<n.data.length;a++)if(0!==n.data[a])return!1;return!0}function f(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\udedf")}return!1}function g(e,t,n,a){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):s.createElement("canvas"),o=r.getContext("2d",{willReadFrequently:!0}),i=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(function(e){i[e]=t(o,e,n,a)}),i}function t(e){var t=s.createElement("script");t.src=e,t.defer=!0,s.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",i=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){s.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+g.toString()+"("+[JSON.stringify(i),f.toString(),p.toString(),u.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"}),r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=function(e){c(n=e.data),r.terminate(),t(n)})}catch(e){}c(n=g(i,f,p,u))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel='stylesheet' id='salient-child-featherlight-style-css' href='https://pytorch.org/wp-content/themes/salient-child/vc-addons/css/featherlight.css?ver=6.8.3' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-events-pro-mini-calendar-block-styles-css' href='https://pytorch.org/wp-content/plugins/events-calendar-pro/build/css/tribe-events-pro-mini-calendar-block.css?ver=7.7.7' type='text/css' media='all' />
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://pytorch.org/wp-includes/css/dist/block-library/style.min.css?ver=6.8.3' type='text/css' media='all' />
<style id='kevinbatdorf-code-block-pro-style-inline-css' type='text/css'>
.wp-block-kevinbatdorf-code-block-pro{direction:ltr!important;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;-webkit-text-size-adjust:100%!important;box-sizing:border-box!important;position:relative!important}.wp-block-kevinbatdorf-code-block-pro *{box-sizing:border-box!important}.wp-block-kevinbatdorf-code-block-pro pre,.wp-block-kevinbatdorf-code-block-pro pre *{font-size:inherit!important;line-height:inherit!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre{background-image:none!important;border:0!important;border-radius:0!important;border-style:none!important;border-width:0!important;color:inherit!important;font-family:inherit!important;margin:0!important;overflow:auto!important;overflow-wrap:normal!important;padding:16px 0 16px 16px!important;text-align:left!important;white-space:pre!important;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important;outline:2px solid transparent!important;outline-offset:2px!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre:focus-visible{outline-color:inherit!important}.wp-block-kevinbatdorf-code-block-pro.padding-disabled:not(.code-block-pro-editor) pre{padding:0!important}.wp-block-kevinbatdorf-code-block-pro.padding-bottom-disabled pre{padding-bottom:0!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre code{background:none!important;background-color:transparent!important;border:0!important;border-radius:0!important;border-style:none!important;border-width:0!important;color:inherit!important;display:block!important;font-family:inherit!important;margin:0!important;overflow-wrap:normal!important;padding:0!important;text-align:left!important;white-space:pre!important;width:100%!important;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre code .line{display:inline-block!important;min-width:var(--cbp-block-width,100%)!important;vertical-align:top!important}.wp-block-kevinbatdorf-code-block-pro.cbp-has-line-numbers:not(.code-block-pro-editor) pre code .line{padding-left:calc(12px + var(--cbp-line-number-width, auto))!important}.wp-block-kevinbatdorf-code-block-pro.cbp-has-line-numbers:not(.code-block-pro-editor) pre code{counter-increment:step calc(var(--cbp-line-number-start, 1) - 1)!important;counter-reset:step!important}.wp-block-kevinbatdorf-code-block-pro pre code .line{position:relative!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre code .line:before{content:""!important;display:inline-block!important}.wp-block-kevinbatdorf-code-block-pro.cbp-has-line-numbers:not(.code-block-pro-editor) pre code .line:not(.cbp-line-number-disabled):before{color:var(--cbp-line-number-color,#999)!important;content:counter(step)!important;counter-increment:step!important;left:0!important;opacity:.5!important;position:absolute!important;text-align:right!important;transition-duration:.5s!important;transition-property:opacity!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;width:var(--cbp-line-number-width,auto)!important}.wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover .line{min-height:var(--cbp-block-height,100%)!important}.wp-block-kevinbatdorf-code-block-pro .line.cbp-line-highlight .cbp-line-highlighter,.wp-block-kevinbatdorf-code-block-pro .line.cbp-no-blur:hover .cbp-line-highlighter,.wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover:not(.cbp-blur-enabled:not(.cbp-unblur-on-hover)) .line:hover .cbp-line-highlighter{background:var(--cbp-line-highlight-color,rgb(14 165 233/.2))!important;left:-16px!important;min-height:var(--cbp-block-height,100%)!important;min-width:calc(var(--cbp-block-width, 100%) + 16px)!important;pointer-events:none!important;position:absolute!important;top:0!important;width:100%!important}[data-code-block-pro-font-family="Code-Pro-Comic-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro .line.cbp-line-highlight .cbp-line-highlighter,[data-code-block-pro-font-family="Code-Pro-Comic-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro .line.cbp-no-blur:hover .cbp-line-highlighter,[data-code-block-pro-font-family="Code-Pro-Comic-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover:not(.cbp-blur-enabled:not(.cbp-unblur-on-hover)) .line:hover .cbp-line-highlighter{top:-.125rem!important}[data-code-block-pro-font-family=Code-Pro-Fira-Code].wp-block-kevinbatdorf-code-block-pro .line.cbp-line-highlight .cbp-line-highlighter,[data-code-block-pro-font-family=Code-Pro-Fira-Code].wp-block-kevinbatdorf-code-block-pro .line.cbp-no-blur:hover .cbp-line-highlighter,[data-code-block-pro-font-family=Code-Pro-Fira-Code].wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover:not(.cbp-blur-enabled:not(.cbp-unblur-on-hover)) .line:hover .cbp-line-highlighter{top:-1.5px!important}[data-code-block-pro-font-family="Code-Pro-Deja-Vu-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro .line.cbp-line-highlight .cbp-line-highlighter,[data-code-block-pro-font-family="Code-Pro-Deja-Vu-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro .line.cbp-no-blur:hover .cbp-line-highlighter,[data-code-block-pro-font-family="Code-Pro-Deja-Vu-Mono.ttf"].wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover:not(.cbp-blur-enabled:not(.cbp-unblur-on-hover)) .line:hover .cbp-line-highlighter,[data-code-block-pro-font-family=Code-Pro-Cozette].wp-block-kevinbatdorf-code-block-pro .line.cbp-line-highlight .cbp-line-highlighter,[data-code-block-pro-font-family=Code-Pro-Cozette].wp-block-kevinbatdorf-code-block-pro .line.cbp-no-blur:hover .cbp-line-highlighter,[data-code-block-pro-font-family=Code-Pro-Cozette].wp-block-kevinbatdorf-code-block-pro.cbp-highlight-hover:not(.cbp-blur-enabled:not(.cbp-unblur-on-hover)) .line:hover .cbp-line-highlighter{top:-1px!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor).padding-disabled pre .line.cbp-line-highlight:after{left:0!important;width:100%!important}.wp-block-kevinbatdorf-code-block-pro.cbp-blur-enabled pre .line:not(.cbp-no-blur){filter:blur(1.35px)!important;opacity:.8!important;pointer-events:none!important;transition-duration:.2s!important;transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.wp-block-kevinbatdorf-code-block-pro.cbp-blur-enabled.cbp-unblur-on-hover:hover pre .line:not(.cbp-no-blur){opacity:1!important;pointer-events:auto!important;--tw-blur: ;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.wp-block-kevinbatdorf-code-block-pro:not(.code-block-pro-editor) pre *{font-family:inherit!important}.cbp-see-more-simple-btn-hover{transition-property:none!important}.cbp-see-more-simple-btn-hover:hover{box-shadow:inset 0 0 100px 100px hsla(0,0%,100%,.1)!important}.code-block-pro-copy-button{border:0!important;border-style:none!important;border-width:0!important;cursor:pointer!important;left:auto!important;line-height:1!important;opacity:.1!important;outline:2px solid transparent!important;outline-offset:2px!important;padding:6px!important;position:absolute!important;right:0!important;top:0!important;transition-duration:.2s!important;transition-property:opacity!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;z-index:10!important}.code-block-pro-copy-button:focus{opacity:.4!important}.code-block-pro-copy-button:focus-visible{outline-color:inherit!important}.code-block-pro-copy-button:not([data-has-text-button]){background:none!important;background-color:transparent!important}body .wp-block-kevinbatdorf-code-block-pro:not(#x) .code-block-pro-copy-button-pre,body .wp-block-kevinbatdorf-code-block-pro:not(#x) .code-block-pro-copy-button-textarea{clip:rect(0,0,0,0)!important;background-color:transparent!important;border-width:0!important;color:transparent!important;height:1px!important;left:0!important;margin:-.25rem!important;opacity:0!important;overflow:hidden!important;pointer-events:none!important;position:absolute!important;resize:none!important;top:0!important;white-space:nowrap!important;width:1px!important;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.wp-block-kevinbatdorf-code-block-pro.padding-disabled .code-block-pro-copy-button{padding:0!important}.wp-block-kevinbatdorf-code-block-pro:hover .code-block-pro-copy-button{opacity:.5!important}.wp-block-kevinbatdorf-code-block-pro .code-block-pro-copy-button:hover{opacity:.9!important}.code-block-pro-copy-button[data-has-text-button],.wp-block-kevinbatdorf-code-block-pro:hover .code-block-pro-copy-button[data-has-text-button]{opacity:1!important}.wp-block-kevinbatdorf-code-block-pro .code-block-pro-copy-button[data-has-text-button]:hover{opacity:.8!important}.code-block-pro-copy-button[data-has-text-button]{border-radius:.75rem!important;display:block!important;margin-right:.75rem!important;margin-top:.7rem!important;padding:.125rem .375rem!important}.code-block-pro-copy-button[data-inside-header-type=headlightsMuted],.code-block-pro-copy-button[data-inside-header-type^=headlights]{margin-top:.85rem!important}.code-block-pro-copy-button[data-inside-header-type=headlightsMutedAlt]{margin-top:.65rem!important}.code-block-pro-copy-button[data-inside-header-type=simpleString]{margin-top:.645rem!important}.code-block-pro-copy-button[data-inside-header-type=pillString]{margin-top:1rem!important}.code-block-pro-copy-button[data-inside-header-type=pillString] .cbp-btn-text{position:relative!important;top:1px!important}.cbp-btn-text{font-size:.75rem!important;line-height:1rem!important}.code-block-pro-copy-button .without-check{display:block!important}.code-block-pro-copy-button .with-check{display:none!important}.code-block-pro-copy-button.cbp-copying{opacity:1!important}.code-block-pro-copy-button.cbp-copying .without-check{display:none!important}.code-block-pro-copy-button.cbp-copying .with-check{display:block!important}.cbp-footer-link:hover{text-decoration-line:underline!important}@media print{.wp-block-kevinbatdorf-code-block-pro pre{max-height:none!important}.wp-block-kevinbatdorf-code-block-pro:not(#x) .line:before{background-color:transparent!important;color:inherit!important}.wp-block-kevinbatdorf-code-block-pro:not(#x) .cbp-line-highlighter,.wp-block-kevinbatdorf-code-block-pro:not(#x)>span{display:none!important}}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 1300px;--wp--style--global--wide-size: 1300px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='lf-pt-matrix-css' href='https://pytorch.org/wp-content/plugins/lf-pt-matrix/public/css/matrix.css?ver=1.0.5' type='text/css' media='all' />
<link rel='stylesheet' id='search-filter-plugin-styles-css' href='https://pytorch.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.5.21' type='text/css' media='all' />
<link rel='stylesheet' id='salient-child-style-css' href='https://pytorch.org/wp-content/themes/salient-child/style.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='vc-addons-style-css' href='https://pytorch.org/wp-content/themes/salient-child/vc-addons/css/vc-addons.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='templates-style-css' href='https://pytorch.org/wp-content/themes/salient-child/templates/css/templates.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='widgets-style-css' href='https://pytorch.org/wp-content/themes/salient-child/widgets/css/widgets.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='results-style-css' href='https://pytorch.org/wp-content/themes/salient-child/search-filter/css/results.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='fonts-style-css' href='https://pytorch.org/wp-content/themes/salient-child/fonts/fonts.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='events-calendar-style-css' href='https://pytorch.org/wp-content/themes/salient-child/css/events-calendar.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://use.fontawesome.com/releases/v6.0.0/css/all.css?ver=6.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-shim-css' href='https://use.fontawesome.com/releases/v6.0.0/css/v4-shims.css?ver=6.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='salient-grid-system-css' href='https://pytorch.org/wp-content/themes/salient/css/build/grid-system.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='main-styles-css' href='https://pytorch.org/wp-content/themes/salient/css/build/style.css?ver=17.4.1' type='text/css' media='all' />
<style id='main-styles-inline-css' type='text/css'>
@font-face{
font-family:'Open Sans';
src:url('https://pytorch.org/wp-content/themes/salient/css/fonts/OpenSans-Light.woff') format('woff');
font-weight:300;
font-style:normal;
}
@font-face{
font-family:'Open Sans';
src:url('https://pytorch.org/wp-content/themes/salient/css/fonts/OpenSans-Regular.woff') format('woff');
font-weight:400;
font-style:normal;
}
@font-face{
font-family:'Open Sans';
src:url('https://pytorch.org/wp-content/themes/salient/css/fonts/OpenSans-SemiBold.woff') format('woff');
font-weight:600;
font-style:normal;
}
@font-face{
font-family:'Open Sans';
src:url('https://pytorch.org/wp-content/themes/salient/css/fonts/OpenSans-Bold.woff') format('woff');
font-weight:700;
font-style:normal;
}
html body[data-header-resize="1"] .container-wrap,
html body[data-header-format="left-header"][data-header-resize="0"] .container-wrap,
html body[data-header-resize="0"] .container-wrap,
body[data-header-format="left-header"][data-header-resize="0"] .container-wrap {
padding-top: 0;
}
.main-content > .row > #breadcrumbs.yoast {
padding: 20px 0;
}
</style>
<link rel='stylesheet' id='nectar-header-secondary-nav-css' href='https://pytorch.org/wp-content/themes/salient/css/build/header/header-secondary-nav.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='nectar-element-page-submenu-css' href='https://pytorch.org/wp-content/themes/salient/css/build/elements/element-page-submenu.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='nectar-basic-events-calendar-css' href='https://pytorch.org/wp-content/themes/salient/css/build/third-party/events-calendar.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='nectar-brands-css' href='https://pytorch.org/wp-content/themes/salient/css/nectar-brands.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='responsive-css' href='https://pytorch.org/wp-content/themes/salient/css/build/responsive.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='skin-material-css' href='https://pytorch.org/wp-content/themes/salient/css/build/skin-material.css?ver=17.4.1' type='text/css' media='all' />
<style id='skin-material-inline-css' type='text/css'>
.nectar-color-accent-color,body a,label span,body [class^="icon-"].icon-default-style,.blog-recent[data-style*="classic_enhanced"] .post-meta a:hover i,.masonry.classic_enhanced .post .post-meta a:hover i,.comment-list .comment-meta a:hover,.comment-list .comment-meta a:focus,.comment-author a:hover,.comment-author a:focus,.post .post-header h2 a,.post .post-header a:hover,.post .post-header a:focus,#single-below-header a:hover,#single-below-header a:focus,.comment-list .pingback .comment-body > a:hover,[data-style="list_featured_first_row"] .meta-category a,[data-style="list_featured_first_row"] .meta-category a,.nectar-fancy-box[data-style="color_box_hover"][data-color="accent-color"] .icon-default-style,div[data-style="minimal"] .toggle:hover > .toggle-title a,div[data-style="minimal"] .toggle.open > .toggle-title a,#footer-outer #copyright li a i:hover,.ascend .comment-list .reply a,body.material .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,body.material #sidebar .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,body.material #footer-outer .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,#top nav .sf-menu .current_page_item > a .sf-sub-indicator i,#top nav .sf-menu .current_page_ancestor > a .sf-sub-indicator i,.sf-menu > .current_page_ancestor > a > .sf-sub-indicator i,.material .widget .tagcloud a,#single-below-header a:hover [class^="icon-"],.wpcf7-form .wpcf7-not-valid-tip,#header-outer .nectar-menu-label{color:#de3412;}#header-outer:not(.transparent) .nectar-mobile-only.mobile-header .menu-title-text:after{border-color:#de3412!important;}#header-outer #top nav > ul > .button_bordered > a:hover,#header-outer:not(.transparent) #social-in-menu a i:after,.sf-menu > li > a:hover > .sf-sub-indicator i,.sf-menu > li > a:active > .sf-sub-indicator i,.sf-menu > .sfHover > a > .sf-sub-indicator i,.sf-menu .megamenu > ul > li:hover > a,#header-outer nav > ul > .megamenu > ul > li > a:hover,#header-outer nav > ul > .megamenu > ul > .sfHover > a,#header-outer nav > ul > .megamenu > ul > li > a:focus,#top nav ul #nectar-user-account a:hover span,#top nav ul #search-btn a:hover span,#top nav ul .slide-out-widget-area-toggle a:hover span,body.material:not([data-header-color="custom"]) #header-outer:not([data-format="left-header"]) #top ul.cart_list a:hover,body.material #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap .icon-salient-cart,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a,body #header-secondary-outer #social a:hover i,body #header-secondary-outer #social a:focus i,#footer-outer a:focus,#footer-outer a:hover,.recent-posts .post-header a:hover,.result a:hover,.post-area.standard-minimal .post .post-meta .date a,.post-area.standard-minimal .post .post-header h2 a:hover,.post-area.standard-minimal .post .more-link:hover span,.post-area.standard-minimal .post .more-link span:after,.post-area.standard-minimal .post .minimal-post-meta a:hover,.single .post .post-meta a:hover,.single .post .post-meta a:focus,.single #single-meta div a:hover i,.single #single-meta div:hover > a,.single #single-meta div:focus > a,.result .title a,.circle-border,.home .blog-recent:not([data-style="list_featured_first_row"]) .col .post-header a:hover,.home .blog-recent .col .post-header h3 a,.project-attrs li i,.nectar-milestone .number.accent-color,body #portfolio-nav a:hover i,span.accent-color,.portfolio-items .nectar-love:hover i,.portfolio-items .nectar-love.loved i,body .hovered .nectar-love i,body:not(.material) #search-outer #search #close a span:hover,.carousel-wrap[data-full-width="true"] .carousel-heading a:hover i,#search-outer .ui-widget-content li:hover *,#search-outer .ui-widget-content .ui-state-focus *,.portfolio-filters-inline .container ul li .active,.svg-icon-holder[data-color="accent-color"],.team-member .accent-color:hover,.blog-recent[data-style="minimal"] .col > span,.blog-recent[data-style="title_only"] .col:hover .post-header .title,body #pagination .page-numbers.prev:hover,body #pagination .page-numbers.next:hover,body #pagination a.page-numbers:hover,body #pagination a.page-numbers:focus,body[data-form-submit="see-through"] input[type=submit],body[data-form-submit="see-through"] button[type=submit],.nectar_icon_wrap[data-color="accent-color"] i,.nectar_team_member_close .inner:before,body:not([data-header-format="left-header"]) nav > ul > .megamenu > ul > li > ul > .has-ul > a:hover,body:not([data-header-format="left-header"]) nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,.masonry.material .masonry-blog-item .meta-category a,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="accent-color-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="accent-color-underline"].full-width-section a:hover,.material .comment-list .reply a:hover,.material .comment-list .reply a:focus,.material .widget li:not(.has-img) a:hover .post-title,.material #sidebar .widget li:not(.has-img) a:hover .post-title,.material #sidebar .widget ul[data-style="featured-image-left"] li a:hover .post-title,.material #sidebar .widget .tagcloud a,.single.material .post-area .content-inner > .post-tags a,.post-area.featured_img_left .meta-category a,.post-meta .icon-salient-heart-2.loved,body.material .nectar-button.see-through.accent-color[data-color-override="false"],div[data-style="minimal_small"] .toggle.accent-color > .toggle-title a:hover,div[data-style="minimal_small"] .toggle.accent-color.open > .toggle-title a,.testimonial_slider[data-rating-color="accent-color"] .star-rating .filled:before,.nectar_single_testimonial[data-color="accent-color"] p .open-quote,.nectar-quick-view-box .star-rating,.widget_search .search-form button[type=submit] .icon-salient-search,body.search-no-results .search-form button[type=submit] .icon-salient-search{color:#de3412!important;}.nectar-bg-accent-color,.nectar-bg-hover-accent-color:hover,#ajax-content-wrap .nectar-bg-pseudo-accent-color:before,[data-style="list_featured_first_row"] .meta-category a:before,.tabbed > ul li .active-tab,.tabbed > ul li .active-tab:hover,.wpb_row .nectar-post-grid-filters[data-active-color="accent-color"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote.is-selected p,.nectar_video_lightbox.nectar-button[data-color="default-accent-color"],.nectar_video_lightbox.nectar-button[data-color="transparent-accent-color"]:hover,.nectar-cta[data-color="accent-color"]:not([data-style="material"]) .link_wrap,.flex-direction-nav a,.carousel-prev:hover,.carousel-next:hover,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="accent-color"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="accent-color"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="accent-color"] .visualized-total span,[class*=" icon-"],.toggle.open > .toggle-title a,div[data-style="minimal"] .toggle.open > .toggle-title i:after,div[data-style="minimal"] .toggle:hover > .toggle-title i:after,div[data-style="minimal"] .toggle.open > .toggle-title i:before,div[data-style="minimal"] .toggle:hover > .toggle-title i:before,div[data-style="minimal_small"] .toggle.accent-color > .toggle-title:after,.main-content .widget_calendar caption,#footer-outer .widget_calendar caption,.post .more-link span:hover,.post.format-quote .post-content .quote-inner,.post.format-link .post-content .link-inner,.nectar-post-grid-wrap[data-load-more-color="accent-color"] .load-more:hover,.format-status .post-content .status-inner,.nectar-post-grid-item.nectar-new-item .inner:before,input[type=submit]:hover,input[type="button"]:hover,body[data-form-submit="regular"] input[type=submit],body[data-form-submit="regular"] button[type=submit],body[data-form-submit="regular"] .container-wrap .span_12.light input[type=submit]:hover,body[data-form-submit="regular"] .container-wrap .span_12.light button[type=submit]:hover,#slide-out-widget-area,#slide-out-widget-area-bg.fullscreen,#slide-out-widget-area-bg.fullscreen-split,#slide-out-widget-area-bg.fullscreen-alt .bg-inner,body.material #slide-out-widget-area-bg.slide-out-from-right,.widget .material .widget .tagcloud a:before,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="accent-color"] .nectar-list-item-btn:hover,#header-outer[data-lhe="animated_underline"] .nectar-header-text-content a:after,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .nectar-notice,.woocommerce #review_form #respond .form-submit #submit,#header-outer .nectar-menu-label:before{background-color:#de3412;}.orbit-wrapper .slider-nav .right,.orbit-wrapper .slider-nav .left,.progress li span,.nectar-progress-bar span,#footer-outer #footer-widgets .col .tagcloud a:hover,#sidebar .widget .tagcloud a:hover,#fp-nav.tooltip ul li .fp-tooltip .tooltip-inner,#pagination .next a:hover,#pagination .prev a:hover,.comment-list .reply a:hover,.comment-list .reply a:focus,.icon-normal,.bar_graph li span,.nectar-button[data-color-override="false"].regular-button,.nectar-button.tilt.accent-color,body .swiper-slide .button.transparent_2 .primary-color:hover,#footer-outer #footer-widgets .col input[type="submit"],.blog-recent .more-link span:hover,.post-tags a:hover,#to-top:hover,#to-top.dark:hover,body[data-button-style*="rounded"] #to-top:after,#pagination a.page-numbers:hover,#pagination span.page-numbers.current,.portfolio-items .col[data-default-color="true"] .work-item:not(.style-3) .work-info-bg,.portfolio-items .col[data-default-color="true"] .bottom-meta,.portfolio-items .col.nectar-new-item .inner-wrap:before,.portfolio-filters-inline[data-color-scheme="accent-color-underline"] a:after,.portfolio-filters a,.portfolio-filters #sort-portfolio,.project-attrs li span,.portfolio-filters,.portfolio-filters-inline[data-color-scheme="accent-color"],.bottom_controls #portfolio-nav .controls li a i:after,.bottom_controls #portfolio-nav ul:first-child li#all-items a:hover i,.single-portfolio .facebook-share a:hover,.single-portfolio .twitter-share a:hover,.single-portfolio .pinterest-share a:hover,.single-post .facebook-share a:hover,.single-post .twitter-share a:hover,.single-post .pinterest-share a:hover,.mejs-controls .mejs-time-rail .mejs-time-current,.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.post.quote .content-inner .quote-inner .whole-link,.masonry.classic_enhanced .post.quote.wide_tall .post-content a:hover .quote-inner,.masonry.classic_enhanced .post.link.wide_tall .post-content a:hover .link-inner,.iosSlider .prev_slide:hover,.iosSlider .next_slide:hover,#header-outer .widget_shopping_cart a.button,#header-outer a.cart-contents .cart-wrap span,#header-outer #mobile-cart-link .cart-wrap span,#top nav ul .slide-out-widget-area-toggle a:hover .lines,#top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,#header-outer .widget_shopping_cart a.button,body[data-header-format="left-header"] #header-outer[data-lhe="animated_underline"] #top nav ul li:not([class*="button_"]) > a span:after,#buddypress a.button:focus,.swiper-slide .button.solid_color a,.swiper-slide .button.solid_color_2 a,.select2-container .select2-choice:hover,.select2-dropdown-open .select2-choice,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single:hover,body[data-fancy-form-rcs="1"] .select2-container--default.select2-container--open .select2-selection--single,#top nav > ul > .button_solid_color > a:before,#header-outer.transparent #top nav > ul > .button_solid_color > a:before,.twentytwenty-handle,.twentytwenty-horizontal .twentytwenty-handle:before,.twentytwenty-horizontal .twentytwenty-handle:after,.twentytwenty-vertical .twentytwenty-handle:before,.twentytwenty-vertical .twentytwenty-handle:after,.masonry.classic_enhanced .posts-container article .meta-category a:hover,.blog-recent[data-style*="classic_enhanced"] .meta-category a:hover,.masonry.classic_enhanced .posts-container article .video-play-button,.masonry.material .masonry-blog-item .meta-category a:before,.material.masonry .masonry-blog-item .video-play-button,.masonry.material .quote-inner:before,.masonry.material .link-inner:before,.nectar-recent-posts-slider .container .strong span:before,#page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:hover,#page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:focus,.single .heading-title[data-header-style="default_minimal"] .meta-category a:hover,.single .heading-title[data-header-style="default_minimal"] .meta-category a:focus,.nectar-fancy-box:after,.divider-small-border[data-color="accent-color"],.divider-border[data-color="accent-color"],.nectar-animated-title[data-color="accent-color"] .nectar-animated-title-inner:after,#fp-nav:not(.light-controls).tooltip_alt ul li a span:after,#fp-nav.tooltip_alt ul li a span:after,.nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox,body .nectar-video-box[data-color="default-accent-color"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"]:not([data-style="small"]) .play > .inner-wrap:before,.span_12.dark .owl-theme .owl-dots .owl-dot.active span,.span_12.dark .owl-theme .owl-dots .owl-dot:hover span,.nectar-recent-posts-single_featured .strong a,.post-area.standard-minimal .post .more-link span:before,.nectar-slide-in-cart .widget_shopping_cart a.button,.related-posts[data-style="material"] .meta-category a:before,.post-area.featured_img_left .meta-category a:before,body.material #page-header-bg.fullscreen-header .inner-wrap >a,.nectar-hor-list-item[data-color="accent-color"]:before,.material #sidebar .widget .tagcloud a:before,.single .post-area .content-inner > .post-tags a:before,.auto_meta_overlaid_spaced .post.quote .n-post-bg:after,.auto_meta_overlaid_spaced .post.link .n-post-bg:after,.post-area.featured_img_left .posts-container .article-content-wrap .video-play-button,.post-area.featured_img_left .post .quote-inner:before,.post-area.featured_img_left .link-inner:before,.nectar-recent-posts-single_featured.multiple_featured .controls li:after,.nectar-recent-posts-single_featured.multiple_featured .controls .active:before,.nectar-fancy-box[data-color="accent-color"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.accent-color[data-color-override="false"] i,body.material .nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox:before,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:before,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:after,.fancybox-navigation button:hover:before,button[type=submit]:hover,button[type=submit]:focus,body[data-form-submit="see-through"] input[type=submit]:hover,body[data-form-submit="see-through"].woocommerce #respond input#submit:hover,html body[data-form-submit="see-through"] button[type=submit]:hover,body[data-form-submit="see-through"] .container-wrap .span_12.light input[type=submit]:hover,body[data-form-submit="see-through"] .container-wrap .span_12.light button[type=submit]:hover,body.original .bypostauthor .comment-body:before,.widget_layered_nav ul.yith-wcan-label li a:hover,.widget_layered_nav ul.yith-wcan-label .chosen a,.nectar-next-section-wrap.bounce a:before,body .nectar-button.see-through-2[data-hover-color-override="false"]:hover{background-color:#de3412!important;}#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a,#header-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-secondary-outer ul > li:not(.megamenu) .sfHover > a,#header-secondary-outer ul > li:not(.megamenu) ul a:hover,#header-secondary-outer ul > li:not(.megamenu) ul a:focus,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul ul .current-menu-item > a{background-color:#de3412!important;}#header-outer[data-format="left-header"] #top nav > ul > li:not(.megamenu) ul a:hover{color:#de3412;}#header-outer[data-format="left-header"] .sf-menu .sub-menu .current-menu-item > a,.sf-menu ul .open-submenu > a{color:#de3412!important;}.tabbed > ul li .active-tab,body.material input[type=text]:focus,body.material textarea:focus,body.material input[type=email]:focus,body.material input[type=search]:focus,body.material input[type=password]:focus,body.material input[type=tel]:focus,body.material input[type=url]:focus,body.material input[type=date]:focus,body.material input[type=number]:focus,body.material select:focus,.row .col .wp-caption .wp-caption-text,.material.woocommerce-page input#coupon_code:focus,.material #search-outer #search input[type="text"],#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a .menu-title-text:after,div[data-style="minimal"] .toggle.default.open i,div[data-style="minimal"] .toggle.default:hover i,div[data-style="minimal"] .toggle.accent-color.open i,div[data-style="minimal"] .toggle.accent-color:hover i,.single #single-meta div a:hover,.single #single-meta div a:focus,.single .fullscreen-blog-header #single-below-header > span a:hover,.blog-title #single-meta .nectar-social.hover > div a:hover,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="accent-color"]:hover,.material.woocommerce-page[data-form-style="default"] div input#coupon_code:focus{border-color:#de3412;}body[data-form-style="minimal"] label:after,body .recent_projects_widget a:hover img,.recent_projects_widget a:hover img,#sidebar #flickr a:hover img,body .nectar-button.see-through-2[data-hover-color-override="false"]:hover,#footer-outer #flickr a:hover img,#featured article .post-title a:hover,body #featured article .post-title a:hover,div.wpcf7-validation-errors,.select2-container .select2-choice:hover,.select2-dropdown-open .select2-choice,body:not(.original) .bypostauthor img.avatar,.material blockquote::before,blockquote.wp-block-quote:before,#header-outer:not(.transparent) #top nav > ul > .button_bordered > a:hover:before,.single #project-meta ul li:not(.meta-share-count):hover a,body[data-button-style="rounded"] #pagination > a:hover,body[data-form-submit="see-through"] input[type=submit],body[data-form-submit="see-through"] button[type=submit],.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"] .play:after,#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li >a .menu-title-text:after,body.material .nectar-button.see-through.accent-color[data-color-override="false"],.woocommerce-page.material .widget_price_filter .ui-slider .ui-slider-handle,body[data-form-submit="see-through"] button[type=submit]:not(.search-widget-btn),.woocommerce-account[data-form-submit="see-through"] .woocommerce-form-login button.button,.woocommerce-account[data-form-submit="see-through"] .woocommerce-form-register button.button,body[data-form-submit="see-through"] .woocommerce #order_review #payment #place_order,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single:hover,body[data-fancy-form-rcs="1"] .select2-container--default.select2-container--open .select2-selection--single,.gallery a:hover img{border-color:#de3412!important;}.nectar-highlighted-text[data-using-custom-color="false"]:not([data-style="text_outline"]) em{background-image:linear-gradient(to right,rgba(222,52,18,0.3) 0,rgba(222,52,18,0.3) 100%);}.nectar-highlighted-text[data-using-custom-color="false"][data-style="regular_underline"] a em,.nectar-highlighted-text[data-using-custom-color="false"][data-style="regular_underline"] em.has-link{background-image:linear-gradient(to right,rgba(222,52,18,0.3) 0,rgba(222,52,18,0.3) 100%),linear-gradient(to right,#de3412 0,#de3412 100%);}.nectar_icon_wrap .svg-icon-holder[data-color="accent-color"] svg path{stroke:#de3412!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.accent-color[data-color-override="false"] i:after{box-shadow:#de3412 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="accent-color"]:before{box-shadow:0 30px 90px #de3412;}.nectar-fancy-box[data-style="hover_desc"][data-color="accent-color"] .box-bg:after{background:linear-gradient(to bottom,rgba(0,0,0,0),#de3412 100%);}#footer-outer[data-link-hover="underline"][data-custom-color="false"] #footer-widgets ul:not([class*="nectar_blog_posts"]):not(.cart_list) a:not(.tag-cloud-link):not(.nectar-button),#footer-outer[data-link-hover="underline"] #footer-widgets .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#de3412 0,#de3412 100%);}#search-results .result .title a{background-image:linear-gradient(to right,#de3412 0,#de3412 100%);}.container-wrap .bottom_controls #portfolio-nav ul:first-child li#all-items a:hover i{box-shadow:-.6em 0 #de3412,-.6em .6em #de3412,.6em 0 #de3412,.6em -.6em #de3412,0 -.6em #de3412,-.6em -.6em #de3412,0 .6em #de3412,.6em .6em #de3412;}#fp-nav:not(.light-controls).tooltip_alt ul li a.active span,#fp-nav.tooltip_alt ul li a.active span{box-shadow:inset 0 0 0 2px #de3412;-webkit-box-shadow:inset 0 0 0 2px #de3412;}.default-loading-icon:before{border-top-color:#de3412!important;}#header-outer a.cart-contents span:before,#fp-nav.tooltip ul li .fp-tooltip .tooltip-inner:after{border-color:transparent #de3412!important;}body .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote .bottom-arrow:after,.portfolio-items[data-ps="6"] .bg-overlay,.portfolio-items[data-ps="6"].no-masonry .bg-overlay,.nectar_team_member_close .inner,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close{border-color:#de3412;}.widget .nectar_widget[class*="nectar_blog_posts_"] .arrow-circle svg circle,.nectar-woo-flickity[data-controls="arrows-and-text"] .flickity-prev-next-button svg circle.time{stroke:#de3412;}.im-icon-wrap[data-color="accent-color"] path{fill:#de3412;}@media only screen and (min-width :1px) and (max-width :1000px){body #featured article .post-title > a{background-color:#de3412;}body #featured article .post-title > a{border-color:#de3412;}}#header-outer .widget_shopping_cart .cart_list li a.remove,.original #header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,.stock.out-of-stock,#header-outer #top nav > ul > .button_bordered_2 > a:hover,#header-outer[data-lhe="default"] #top nav > ul > .button_bordered_2 > a:hover,#header-outer[data-lhe="default"] #top nav .sf-menu .button_bordered_2.current-menu-item > a{color:#f3f4f7!important;}#top nav > ul > .button_solid_color_2 > a:before,#header-outer.transparent #top nav > ul > .button_solid_color_2 > a:before,body[data-slide-out-widget-area-style="slide-out-from-right"]:not([data-header-color="custom"]).material .slide_out_area_close:before,#header-outer .widget_shopping_cart a.button,.woocommerce ul.products li.product .onsale,.woocommerce-page ul.products li.product .onsale,.woocommerce span.onsale,.woocommerce-page span.onsale{background-color:#f3f4f7;}#header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,#header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,#header-outer:not(.transparent) #top nav > ul > .button_bordered_2 > a:hover:before{border-color:#f3f4f7;}.nectar-color-extra-color-1,.testimonial_slider[data-rating-color="extra-color-1"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-1:hover > .toggle-title a,div[data-style="minimal"] .toggle.extra-color-1.open > .toggle-title a,div[data-style="minimal_small"] .toggle.extra-color-1 > .toggle-title a:hover,div[data-style="minimal_small"] .toggle.extra-color-1.open > .toggle-title a{color:#f3f4f7;}.nectar-milestone .number.extra-color-1,span.extra-color-1,.team-member .social.extra-color-1 li a,body [class^="icon-"].icon-default-style.extra-color-1,body [class^="icon-"].icon-default-style[data-color="extra-color-1"],.team-member .extra-color-1:hover,.svg-icon-holder[data-color="extra-color-1"],.nectar_icon_wrap[data-color="extra-color-1"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-1-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-1-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-1[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-1"] p .open-quote,.no-highlight.extra-color-1 h3{color:#f3f4f7!important;}.nectar-bg-extra-color-1,#ajax-content-wrap .nectar-bg-pseudo-extra-color-1:before,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-1"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-1"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-1"]:hover,.nectar-cta[data-color="extra-color-1"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-1"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-1"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-1"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-1"] .load-more:hover,[class*=" icon-"].extra-color-1.icon-normal,div[data-style="minimal"] .toggle.extra-color-1.open i:after,div[data-style="minimal"] .toggle.extra-color-1:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-1 i:before,div[data-style="minimal"] .toggle.extra-color-1:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-1 > .toggle-title:after,.toggle.open.extra-color-1 > .toggle-title a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-1"] .nectar-list-item-btn:hover{background-color:#f3f4f7;}.nectar-button.regular-button.extra-color-1,.nectar-button.tilt.extra-color-1,body .swiper-slide .button.transparent_2 .extra-color-1:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-1:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-1"],.portfolio-filters[data-color-scheme="extra-color-1"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-1"] a,.nectar-fancy-box[data-color="extra-color-1"]:after,.divider-small-border[data-color="extra-color-1"],.divider-border[data-color="extra-color-1"],.nectar-animated-title[data-color="extra-color-1"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-1-underline"] a:after,.nectar-video-box[data-color="extra-color-1"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-1"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-1"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-1"]:before,.nectar-fancy-box[data-color="extra-color-1"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-1[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-1"] li:after,.extra-color-1.icon-normal,.bar_graph li .extra-color-1,.nectar-progress-bar .extra-color-1,.swiper-slide .button.solid_color .extra-color-1,.swiper-slide .button.solid_color_2 .extra-color-1{background-color:#f3f4f7!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-1"] svg path{stroke:#f3f4f7!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-1[data-color-override="false"] i:after{box-shadow:#f3f4f7 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-1"]:before{box-shadow:0 30px 90px #f3f4f7;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-1"] .box-bg:after{background:linear-gradient(to bottom,rgba(0,0,0,0),#f3f4f7 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-1 i,div[data-style="minimal"] .toggle.extra-color-1:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-1"]:hover{border-color:#f3f4f7;}body.material .nectar-button.see-through.extra-color-1[data-color-override="false"]{border-color:#f3f4f7!important;}.im-icon-wrap[data-color="extra-color-1"] path{fill:#f3f4f7;}.nectar-color-extra-color-2,.testimonial_slider[data-rating-color="extra-color-2"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-2:hover > .toggle-title a,div[data-style="minimal"] .toggle.extra-color-2.open > .toggle-title a,div[data-style="minimal_small"] .toggle.extra-color-2 > .toggle-title a:hover,div[data-style="minimal_small"] .toggle.extra-color-2.open > .toggle-title a{color:#333333;}.nectar-milestone .number.extra-color-2,span.extra-color-2,.team-member .social.extra-color-2 li a,body [class^="icon-"].icon-default-style.extra-color-2,body [class^="icon-"].icon-default-style[data-color="extra-color-2"],.team-member .extra-color-2:hover,.svg-icon-holder[data-color="extra-color-2"],.nectar_icon_wrap[data-color="extra-color-2"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-2-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-2-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-2[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-2"] p .open-quote,.no-highlight.extra-color-2 h3{color:#333333!important;}.nectar-bg-extra-color-2,#ajax-content-wrap .nectar-bg-pseudo-extra-color-2:before,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-2"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-2"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-2"]:hover,.nectar-cta[data-color="extra-color-2"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-2"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-2"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-2"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-2"] .load-more:hover,[class*=" icon-"].extra-color-2.icon-normal,div[data-style="minimal"] .toggle.extra-color-2.open i:after,div[data-style="minimal"] .toggle.extra-color-2:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-2 i:before,div[data-style="minimal"] .toggle.extra-color-2:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-2 > .toggle-title:after,.toggle.open.extra-color-2 > .toggle-title a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-2"] .nectar-list-item-btn:hover{background-color:#333333;}.nectar-button.regular-button.extra-color-2,.nectar-button.tilt.extra-color-2,body .swiper-slide .button.transparent_2 .extra-color-2:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-2:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-2"],.portfolio-filters[data-color-scheme="extra-color-2"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-2"] a,.nectar-fancy-box[data-color="extra-color-2"]:after,.divider-small-border[data-color="extra-color-2"],.divider-border[data-color="extra-color-2"],.nectar-animated-title[data-color="extra-color-2"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-2-underline"] a:after,.nectar-video-box[data-color="extra-color-2"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-2"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-2"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-2"]:before,.nectar-fancy-box[data-color="extra-color-2"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-2[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-2"] li:after,.extra-color-2.icon-normal,.bar_graph li .extra-color-2,.nectar-progress-bar .extra-color-2,.swiper-slide .button.solid_color .extra-color-2,.swiper-slide .button.solid_color_2 .extra-color-2{background-color:#333333!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-2"] svg path{stroke:#333333!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-2[data-color-override="false"] i:after{box-shadow:#333333 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-2"]:before{box-shadow:0 30px 90px #333333;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-2"] .box-bg:after{background:linear-gradient(to bottom,rgba(0,0,0,0),#333333 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-2 i,div[data-style="minimal"] .toggle.extra-color-2:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-2"]:hover{border-color:#333333;}body.material .nectar-button.see-through.extra-color-2[data-color-override="false"]{border-color:#333333!important;}.im-icon-wrap[data-color="extra-color-2"] path{fill:#333333;}.nectar-color-extra-color-3,.testimonial_slider[data-rating-color="extra-color-3"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-3:hover > .toggle-title a,div[data-style="minimal"] .toggle.extra-color-3.open > .toggle-title a,div[data-style="minimal_small"] .toggle.extra-color-3 > .toggle-title a:hover,div[data-style="minimal_small"] .toggle.extra-color-3.open > .toggle-title a{color:#ffffff;}.nectar-milestone .number.extra-color-3,span.extra-color-3,.team-member .social.extra-color-3 li a,body [class^="icon-"].icon-default-style.extra-color-3,body [class^="icon-"].icon-default-style[data-color="extra-color-3"],.team-member .extra-color-3:hover,.svg-icon-holder[data-color="extra-color-3"],.nectar_icon_wrap[data-color="extra-color-3"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-3-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-3-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-3[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-3"] p .open-quote,.no-highlight.extra-color-3 h3{color:#ffffff!important;}.nectar-bg-extra-color-3,#ajax-content-wrap .nectar-bg-pseudo-extra-color-3:before,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-3"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-3"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-3"]:hover,.nectar-cta[data-color="extra-color-3"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-3"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-3"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-3"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-3"] .load-more:hover,[class*=" icon-"].extra-color-3.icon-normal,div[data-style="minimal"] .toggle.extra-color-3.open i:after,div[data-style="minimal"] .toggle.extra-color-3:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-3 i:before,div[data-style="minimal"] .toggle.extra-color-3:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-3 > .toggle-title:after,.toggle.open.extra-color-3 > .toggle-title a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-3"] .nectar-list-item-btn:hover{background-color:#ffffff;}.nectar-button.regular-button.extra-color-3,.nectar-button.tilt.extra-color-3,body .swiper-slide .button.transparent_2 .extra-color-3:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-3:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-3"],.portfolio-filters[data-color-scheme="extra-color-3"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-3"] a,.nectar-fancy-box[data-color="extra-color-3"]:after,.divider-small-border[data-color="extra-color-3"],.divider-border[data-color="extra-color-3"],.nectar-animated-title[data-color="extra-color-3"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-3-underline"] a:after,.nectar-video-box[data-color="extra-color-3"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-3"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-3"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-3"]:before,.nectar-fancy-box[data-color="extra-color-3"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-3[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-3"] li:after,.extra-color-3.icon-normal,.bar_graph li .extra-color-3,.nectar-progress-bar .extra-color-3,.swiper-slide .button.solid_color .extra-color-3,.swiper-slide .button.solid_color_2 .extra-color-3{background-color:#ffffff!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-3"] svg path{stroke:#ffffff!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-3[data-color-override="false"] i:after{box-shadow:#ffffff 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-3"]:before{box-shadow:0 30px 90px #ffffff;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-3"] .box-bg:after{background:linear-gradient(to bottom,rgba(0,0,0,0),#ffffff 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-3 i,div[data-style="minimal"] .toggle.extra-color-3:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-3"]:hover{border-color:#ffffff;}body.material .nectar-button.see-through.extra-color-3[data-color-override="false"]{border-color:#ffffff!important;}.im-icon-wrap[data-color="extra-color-3"] path{fill:#ffffff;}.widget .nectar_widget[class*="nectar_blog_posts_"][data-style="hover-featured-image-gradient-and-counter"] > li a .popular-featured-img:after{background:#de3412;background:linear-gradient(to right,#de3412,#b72149);}.nectar-bg-extra-color-gradient-1,#ajax-content-wrap .nectar-bg-pseudo-extra-color-gradient-1:before,.divider-small-border[data-color="extra-color-gradient-1"],.divider-border[data-color="extra-color-gradient-1"],.nectar-progress-bar .extra-color-gradient-1,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-gradient-1"] a:after,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-gradient-1"] li:after,.nectar-fancy-box[data-style="default"][data-color="extra-color-gradient-1"]:after{background:#b72149;background:linear-gradient(to right,#b72149,#de3412);}.icon-normal.extra-color-gradient-1,body [class^="icon-"].icon-3x.alt-style.extra-color-gradient-1,.nectar-button.extra-color-gradient-1:after,.nectar-cta[data-color="extra-color-gradient-1"]:not([data-style="material"]) .link_wrap,.nectar-button.see-through-extra-color-gradient-1:after,.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-1"] .box-bg:after,.nectar-post-grid-wrap[data-load-more-color="extra-color-gradient-1"] .load-more:before{background:#b72149;background:linear-gradient(to bottom right,#b72149,#de3412);}body.material .nectar-button.regular.m-extra-color-gradient-1,body.material .nectar-button.see-through.m-extra-color-gradient-1:before,.swiper-slide .button.solid_color .extra-color-gradient-1,.swiper-slide .button.transparent_2 .extra-color-gradient-1:before{background:#b72149;background:linear-gradient(125deg,#b72149,#de3412);}body.material .nectar-button.regular.m-extra-color-gradient-1:before{background:#de3412;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-1"]:before{box-shadow:0 30px 90px #de3412;}.nectar-color-extra-color-gradient-1,.testimonial_slider[data-rating-color="extra-color-gradient-1"] .star-rating .filled:before{color:#b72149;background:linear-gradient(to right,#b72149,#de3412);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}.nectar-button.extra-color-gradient-1,.nectar-button.see-through-extra-color-gradient-1{border-width:3px;border-style:solid;-moz-border-image:-moz-linear-gradient(top right,#b72149 0,#de3412 100%);-webkit-border-image:-webkit-linear-gradient(top right,#b72149 0,#de3412 100%);border-image:linear-gradient(to bottom right,#b72149 0,#de3412 100%);border-image-slice:1;}[class^="icon-"][data-color="extra-color-gradient-1"]:before,[class*=" icon-"][data-color="extra-color-gradient-1"]:before,[class^="icon-"].extra-color-gradient-1:not(.icon-normal):before,[class*=" icon-"].extra-color-gradient-1:not(.icon-normal):before,.nectar_icon_wrap[data-color="extra-color-gradient-1"]:not([data-style="shadow-bg"]) i{color:#b72149;background:linear-gradient(to bottom right,#b72149,#de3412);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:initial;}.nectar-button.extra-color-gradient-1 .hover,.nectar-button.see-through-extra-color-gradient-1 .start{background:#b72149;background:linear-gradient(to bottom right,#b72149,#de3412);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:initial;}.nectar-button.extra-color-gradient-1.no-text-grad .hover,.nectar-button.see-through-extra-color-gradient-1.no-text-grad .start{background:transparent!important;color:#b72149!important;}.nectar-bg-extra-color-gradient-2,#ajax-content-wrap .nectar-bg-pseudo-extra-color-gradient-2:before,.divider-small-border[data-color="extra-color-gradient-2"],.divider-border[data-color="extra-color-gradient-2"],.nectar-progress-bar .extra-color-gradient-2,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-gradient-2"] a:after,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-gradient-2"] li:after,.nectar-fancy-box[data-style="default"][data-color="extra-color-gradient-2"]:after{background:#de3412;background:linear-gradient(to right,#de3412,#b72149);}.icon-normal.extra-color-gradient-2,body [class^="icon-"].icon-3x.alt-style.extra-color-gradient-2,.nectar-button.extra-color-gradient-2:after,.nectar-cta[data-color="extra-color-gradient-2"]:not([data-style="material"]) .link_wrap,.nectar-button.see-through-extra-color-gradient-2:after,.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-2"] .box-bg:after,.nectar-post-grid-wrap[data-load-more-color="extra-color-gradient-2"] .load-more:before{background:#de3412;background:linear-gradient(to bottom right,#de3412,#b72149);}body.material .nectar-button.regular.m-extra-color-gradient-2,body.material .nectar-button.see-through.m-extra-color-gradient-2:before,.swiper-slide .button.solid_color .extra-color-gradient-2,.swiper-slide .button.transparent_2 .extra-color-gradient-2:before{background:#de3412;background:linear-gradient(125deg,#de3412,#b72149);}body.material .nectar-button.regular.m-extra-color-gradient-2:before{background:#b72149;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-2"]:before{box-shadow:0 30px 90px #b72149;}.nectar-color-extra-color-gradient-2,.testimonial_slider[data-rating-color="extra-color-gradient-2"] .star-rating .filled:before{color:#de3412;background:linear-gradient(to right,#de3412,#b72149);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}.nectar-button.extra-color-gradient-2,.nectar-button.see-through-extra-color-gradient-2{border-width:3px;border-style:solid;-moz-border-image:-moz-linear-gradient(top right,#de3412 0,#b72149 100%);-webkit-border-image:-webkit-linear-gradient(top right,#de3412 0,#b72149 100%);border-image:linear-gradient(to bottom right,#de3412 0,#b72149 100%);border-image-slice:1;}[class^="icon-"][data-color="extra-color-gradient-2"]:before,[class*=" icon-"][data-color="extra-color-gradient-2"]:before,[class^="icon-"].extra-color-gradient-2:not(.icon-normal):before,[class*=" icon-"].extra-color-gradient-2:not(.icon-normal):before,.nectar_icon_wrap[data-color="extra-color-gradient-2"]:not([data-style="shadow-bg"]) i{color:#de3412;background:linear-gradient(to bottom right,#de3412,#b72149);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:initial;}.nectar-button.extra-color-gradient-2 .hover,.nectar-button.see-through-extra-color-gradient-2 .start{background:#de3412;background:linear-gradient(to bottom right,#de3412,#b72149);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:initial;}.nectar-button.extra-color-gradient-2.no-text-grad .hover,.nectar-button.see-through-extra-color-gradient-2.no-text-grad .start{background:transparent!important;color:#de3412!important;}:root{--nectar-accent-color:#de3412;--nectar-extra-color-1:#f3f4f7;--nectar-extra-color-2:#333333;--nectar-extra-color-3:#ffffff;}:root{--nectar-bg-color:#ffffff;}body,.container-wrap,.material .ocm-effect-wrap,.project-title,.ascend .container-wrap,.ascend .project-title,body .vc_text_separator div,.carousel-wrap[data-full-width="true"] .carousel-heading,.carousel-wrap .left-border,.carousel-wrap .right-border,.single-post.ascend #page-header-bg.fullscreen-header,.single-post #single-below-header.fullscreen-header,#page-header-wrap,.page-header-no-bg,#full_width_portfolio .project-title.parallax-effect,.portfolio-items .col,.page-template-template-portfolio-php .portfolio-items .col.span_3,.page-template-template-portfolio-php .portfolio-items .col.span_4,body .nectar-quick-view-box div.product .product div.summary,.nectar-global-section.before-footer,.nectar-global-section.after-nav,body.box-rolling,body[data-footer-reveal="1"].ascend.box-rolling,body[data-footer-reveal="1"].box-rolling,.wpml-ls-statics-footer{background-color:#ffffff;}body #header-outer,body #search-outer,body.ascend #search-outer,body[data-header-format="left-header"].ascend #search-outer,.material #header-space,#header-space,.material #header-outer .bg-color-stripe,.material #search-outer .bg-color-stripe,.material #header-outer #search-outer:before,.material #search-outer .nectar-ajax-search-results,body[data-header-format="left-header"].material #search-outer,body.material[data-header-format="centered-menu-bottom-bar"] #page-header-wrap.fullscreen-header,body #header-outer #mobile-menu:before,.nectar-slide-in-cart.style_slide_in_click{background-color:#222222;}body .nectar-slide-in-cart:not(.style_slide_in_click) .blockUI.blockOverlay{background-color:#222222!important;}body #header-outer,body[data-header-color="dark"] #header-outer{background-color:rgba(34,34,34,100);}.material #header-outer:not(.transparent) .bg-color-stripe{display:none;}#header-outer #top nav > ul > li > a,#header-outer .slide-out-widget-area-toggle a i.label,#header-outer:not(.transparent) #top #logo,#header-outer:not(.transparent) #top .logo-clone,#header-outer #top .span_9 > .slide-out-widget-area-toggle i,#header-outer #top .sf-sub-indicator i,body[data-header-color="custom"].ascend #boxed #header-outer .cart-menu .cart-icon-wrap i,#header-outer #top nav ul #nectar-user-account a span,#header-outer #top #toggle-nav i,.material #header-outer:not([data-permanent-transparent="1"]) .mobile-search .icon-salient-search,#header-outer:not([data-permanent-transparent="1"]) .mobile-user-account .icon-salient-m-user,#header-outer:not([data-permanent-transparent="1"]) .mobile-search .icon-salient-search,#header-outer #top #mobile-cart-link i,#header-outer .cart-menu .cart-icon-wrap .icon-salient-cart,body[data-header-format="left-header"] #header-outer #social-in-menu a,#header-outer #top nav ul #search-btn a span,#search-outer #search input[type="text"],#search-outer #search .search-box__button,#search-outer #search #close a span,body.ascend #search-outer #search #close a span,body.ascend #search-outer #search input[type="text"],.material #search-outer #search .span_12 span,.style_slide_in_click .total,.style_slide_in_click .total strong,.nectar-slide-in-cart.style_slide_in_click h4,.nectar-slide-in-cart.style_slide_in_click .header > span,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list.woocommerce-mini-cart .mini_cart_item a,.style_slide_in_click .woocommerce-mini-cart__empty-message h3{color:#ffffff!important;}body #header-outer .nectar-header-text-content,.nectar-ajax-search-results .search-post-item,.nectar-ajax-search-results ul.products li.product,#header-outer:not(.transparent) .nectar-mobile-only.mobile-header{color:#ffffff;}.material #header-outer #search-outer input::-webkit-input-placeholder,body[data-header-format="left-header"].material #search-outer input::-webkit-input-placeholder{color:#ffffff!important;}#header-outer #top .slide-out-widget-area-toggle a .lines:after,#header-outer #top .slide-out-widget-area-toggle a .lines:before,#header-outer #top .slide-out-widget-area-toggle a .lines-button:after,body.material.mobile #header-outer.transparent:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line,body.material.mobile #header-outer:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line,#search-outer .close-wrap .close-line,#header-outer:not(.transparent) #top .slide-out-widget-area-toggle .close-line,.nectar-slide-in-cart.style_slide_in_click .close-cart .close-line,.nectar-ajax-search-results h4 a:before{background-color:#ffffff;}#top nav > ul > .button_bordered > a:before,#header-outer:not(.transparent) #top .slide-out-widget-area-toggle .close-line{border-color:#ffffff;}#header-outer:not(.transparent) .nectar-mobile-only.mobile-header .menu-title-text:after{border-color:#ee4c2c!important;}#header-outer .slide-out-widget-area-toggle a:hover i.label,body #header-outer:not(.transparent) #social-in-menu a i:after,.ascend #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap:not(.has_products) .icon-salient-cart,body.material #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap .icon-salient-cart,body #top nav .sf-menu > .current_page_ancestor > a .sf-sub-indicator i,body #top nav .sf-menu > .current_page_item > a .sf-sub-indicator i,#header-outer #top .sf-menu > .sfHover > a .sf-sub-indicator i,#header-outer #top .sf-menu > li > a:hover .sf-sub-indicator i,#header-outer #top nav ul #search-btn a:hover span,#header-outer #top nav ul #nectar-user-account a:hover span,#header-outer #top nav ul .slide-out-widget-area-toggle a:hover span,body:not(.material) #search-outer #search #close a span:hover{color:#ee4c2c!important;}#top .sf-menu > li.nectar-regular-menu-item > a:hover > .nectar-menu-icon,#top .sf-menu > li.nectar-regular-menu-item.sfHover > a > .nectar-menu-icon,#top .sf-menu > li.nectar-regular-menu-item[class*="current-"] > a > .nectar-menu-icon,#header-outer[data-lhe="default"]:not(.transparent) .nectar-header-text-content a:hover{color:#ee4c2c;}.nectar-ajax-search-results .search-post-item h5{background-image:linear-gradient(to right,#ee4c2c 0,#ee4c2c 100%);}#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,body[data-header-format="left-header"] #header-outer[data-lhe="animated_underline"] #top nav > ul > li:not([class*="button_"]) > a > span:after,#header-outer[data-lhe="animated_underline"] .nectar-header-text-content a:after{background-color:#ee4c2c!important;}#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a .menu-title-text:after,body.material #header-outer #search-outer #search input[type="text"],body[data-header-format="left-header"].material #search-outer #search input[type="text"]{border-color:#ee4c2c;}#top .sf-menu > li.nectar-regular-menu-item > a > .nectar-menu-icon{color:#ffffff;}#search-outer .ui-widget-content,body:not([data-header-format="left-header"]) #top .sf-menu li ul,#header-outer nav > ul > .megamenu > .sub-menu,#header-outer .nectar-global-section-megamenu,body #header-outer nav > ul > .megamenu > .sub-menu > li > a,#header-outer .widget_shopping_cart .cart_list a,#header-outer .widget_shopping_cart .cart_list li,#header-outer .widget_shopping_cart_content,.woocommerce .cart-notification,#header-secondary-outer ul ul li a,#header-secondary-outer .sf-menu li ul{background-color:#222222;}body[data-header-format="left-header"] #header-outer .cart-outer .cart-notification:after{border-color:transparent transparent #222222 transparent;}#top .sf-menu li ul li.menu-item a:hover,body #top nav .sf-menu ul .sfHover > a,#top .sf-menu li ul .current-menu-item > a,#top .sf-menu li ul .current-menu-ancestor > a,#header-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-secondary-outer ul ul li a:hover,#header-secondary-outer ul ul li a:focus,#header-secondary-outer ul > li:not(.megamenu) ul a:hover,body #header-secondary-outer .sf-menu ul .sfHover > a,#search-outer .ui-widget-content li:hover,#search-outer .ui-state-hover,#search-outer .ui-widget-content .ui-state-hover,#search-outer .ui-widget-header .ui-state-hover,#search-outer .ui-state-focus,#search-outer .ui-widget-content .ui-state-focus,#search-outer .ui-widget-header .ui-state-focus,#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a{background-color:#222222!important;}#search-outer .ui-widget-content li a,#search-outer .ui-widget-content i,#top .sf-menu li ul li.menu-item a,body #header-outer .widget_shopping_cart .cart_list a,#header-secondary-outer ul ul li a,.woocommerce .cart-notification .item-name,.cart-outer .cart-notification,.woocommerce-mini-cart__empty-message,#header-outer #top .sf-menu li ul .sf-sub-indicator i,#header-outer .widget_shopping_cart .quantity,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a,#header-outer .cart-notification .item-name,#header-outer #top nav > ul > .nectar-woo-cart .cart-outer .widget ul a:hover,#header-outer .cart-outer .total strong,#header-outer .cart-outer .total,#header-outer ul.product_list_widget li dl dd,#header-outer ul.product_list_widget li dl dt{color:#ffffff!important;}.sf-menu .widget-area-active .widget *,.sf-menu .widget-area-active:hover .widget *{color:#ffffff;}#top .sf-menu > li li > a > .nectar-menu-icon{color:#ee4c2c;}#search-outer .ui-widget-content li:hover *,#search-outer .ui-widget-content .ui-state-focus *,body #top nav .sf-menu ul .sfHover > a,#header-secondary-outer ul ul li:hover > a,#header-secondary-outer ul ul li:hover > a i,#header-secondary-outer ul .sfHover > a,body[data-dropdown-style="minimal"] #header-secondary-outer ul > li:not(.megamenu) .sfHover > a,body #top nav .sf-menu ul .sfHover > a .sf-sub-indicator i,body #top nav .sf-menu ul li:hover > a .sf-sub-indicator i,body #top nav .sf-menu ul li:hover > a,body #top nav .sf-menu ul .current-menu-item > a,body #top nav .sf-menu ul .current_page_item > a .sf-sub-indicator i,body #top nav .sf-menu ul .current_page_ancestor > a .sf-sub-indicator i,body #top nav .sf-menu ul .sfHover > a,body #top nav .sf-menu ul .current_page_ancestor > a,body #top nav .sf-menu ul .current-menu-ancestor > a,body #top nav .sf-menu ul .current_page_item > a,body .sf-menu ul li ul .sfHover > a .sf-sub-indicator i,body .sf-menu > li > a:active > .sf-sub-indicator i,body .sf-menu > .sfHover > a > .sf-sub-indicator i,body .sf-menu li ul .sfHover > a,#header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer nav > ul > .megamenu > ul > li > a:hover,#header-outer nav > ul > .megamenu > ul > .sfHover > a,body #header-outer nav > ul > .megamenu ul li:hover > a,#header-outer #top nav ul li .sfHover > a .sf-sub-indicator i,#header-outer #top nav > ul > .megamenu > ul ul li a:hover,#header-outer #top nav > ul > .megamenu > ul ul li a:focus,#header-outer #top nav > ul > .megamenu > ul ul .sfHover > a,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-outer #top nav ul li li:hover > a .sf-sub-indicator i,#header-outer[data-format="left-header"] .sf-menu .sub-menu .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer #top nav > ul > .megamenu > ul ul .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer #header-secondary-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) ul a:hover,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) #top nav > ul > .megamenu ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #header-secondary-outer nav > ul > .megamenu ul ul .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:hover,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul:hover > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a{color:#ee4c2c!important;}#top .sf-menu > li li > a:hover > .nectar-menu-icon,#top .sf-menu > li li.sfHover > a > .nectar-menu-icon,#top .sf-menu > li li.nectar-regular-menu-item[class*="current-"] > a > .nectar-menu-icon{color:#ee4c2c;}body #header-outer #top nav .sf-menu ul li > a .item_desc{color:#ffffff!important;}body #header-outer #top nav .sf-menu ul .sfHover > a .item_desc,body #header-outer #top nav .sf-menu ul li:hover > a .item_desc,body #header-outer #top nav .sf-menu ul .current-menu-item > a .item_desc,body #header-outer #top nav .sf-menu ul .current_page_item > a .item_desc,body #header-outer #top nav .sf-menu ul .current_page_ancestor > a .item_desc,body #header-outer nav > ul > .megamenu > ul ul li a:focus .item_desc{color:#ee4c2c!important;}body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > a,#header-outer[data-lhe="default"] nav .sf-menu .megamenu ul .current_page_ancestor > a,#header-outer[data-lhe="default"] nav .sf-menu .megamenu ul .current-menu-ancestor > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a{color:#ffffff!important;}body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer #top nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer #header-secondary-outer nav > ul > .megamenu > ul > li:hover > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu > ul > .current-menu-ancestor.menu-item-has-children > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul:hover > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a{color:#ee4c2c!important;}body #header-outer[data-transparent-header="true"] #top nav ul #nectar-user-account > div,body[data-header-color="custom"] #top nav ul #nectar-user-account > div,#header-outer:not(.transparent) .sf-menu > li ul{border-color:#eeeeee;}#header-outer:not(.transparent) .sf-menu > li ul{border-top-width:1px;border-top-style:solid;}#header-secondary-outer,#header-outer #header-secondary-outer,body #header-outer #mobile-menu .secondary-header-text{background-color:#cc2f90;}#header-secondary-outer nav > ul > li > a,#header-secondary-outer .nectar-center-text,#header-secondary-outer .nectar-center-text a,body #header-secondary-outer nav > ul > li > a .sf-sub-indicator i,#header-secondary-outer #social li a i,#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li:hover >a,#header-outer #mobile-menu .secondary-header-text p{color:#ffffff;}#header-secondary-outer #social li a:hover i,#header-secondary-outer .nectar-center-text a:hover,#header-secondary-outer nav > ul > li:hover > a,#header-secondary-outer nav > ul > .current-menu-item > a,#header-secondary-outer nav > ul > .sfHover > a,#header-secondary-outer nav > ul > .sfHover > a .sf-sub-indicator i,#header-secondary-outer nav > ul > .current-menu-item > a .sf-sub-indicator i,#header-secondary-outer nav > ul > .current-menu-ancestor > a,#header-secondary-outer nav > ul > .current-menu-ancestor > a .sf-sub-indicator i,#header-secondary-outer nav > ul > li:hover > a .sf-sub-indicator i{color:#ffffff!important;}#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li >a .menu-title-text:after{border-color:#ffffff!important;}#search-outer .ui-widget-content,body:not([data-header-format="left-header"]) #header-outer .sf-menu li ul,#header-outer nav > ul > .megamenu > .sub-menu,body #header-outer nav > ul > .megamenu > .sub-menu > li > a,#header-outer .widget_shopping_cart .cart_list a,#header-secondary-outer ul ul li a,#header-outer .widget_shopping_cart .cart_list li,.woocommerce .cart-notification,#header-outer .widget_shopping_cart_content{background-color:rgba(34,34,34,100)!important;}#slide-out-widget-area:not(.fullscreen-alt):not(.fullscreen),#slide-out-widget-area-bg.fullscreen,#slide-out-widget-area-bg.fullscreen-split,#slide-out-widget-area-bg.fullscreen-inline-images .nectar-ocm-image-wrap-outer,#slide-out-widget-area-bg.fullscreen-alt .bg-inner,body.material #slide-out-widget-area-bg.slide-out-from-right{background-color:#1f1f1f;}body #slide-out-widget-area,body.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links a:hover i:before,body #slide-out-widget-area a,body #slide-out-widget-area.fullscreen-alt .inner-wrap > .inner .widget.widget_nav_menu li a,body #slide-out-widget-area.fullscreen-alt .inner-wrap > .inner .off-canvas-menu-container li a,#slide-out-widget-area.fullscreen-split .inner-wrap > .inner .widget.widget_nav_menu li a,#slide-out-widget-area.fullscreen-split .inner-wrap > .inner .off-canvas-menu-container li a,#slide-out-widget-area.fullscreen-inline-images .inner-wrap > .inner .off-canvas-menu-container li a,body #slide-out-widget-area.fullscreen .menuwrapper li a,body #slide-out-widget-area.slide-out-from-right-hover .inner-wrap > .inner .off-canvas-menu-container li a,body #slide-out-widget-area .slide_out_area_close .icon-default-style[class^="icon-"],body #slide-out-widget-area .nectar-menu-label{color:#ffffff;}body #slide-out-widget-area .nectar-menu-label:before{background-color:#ffffff;}#slide-out-widget-area .tagcloud a,body.material #slide-out-widget-area[class*="slide-out-from-right"] .off-canvas-menu-container li > a:after,#slide-out-widget-area.fullscreen-split .inner .off-canvas-menu-container li > a:after{border-color:#ffffff;}body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .lines:before,body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .lines:after,body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .lines-button:after,body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .unhidden-line .lines:before,body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .unhidden-line .lines:after,body .slide-out-hover-icon-effect.slide-out-widget-area-toggle .unhidden-line.lines-button:after{background-color:#ffffff;}body #slide-out-widget-area .widget h1,body #slide-out-widget-area .widget h2,body #slide-out-widget-area .widget h3,body #slide-out-widget-area .widget h4,body #slide-out-widget-area .widget h5,body #slide-out-widget-area .widget h6{color:#ffffff;}body #slide-out-widget-area[class*="fullscreen"] .current-menu-item > a,body #slide-out-widget-area.fullscreen a:hover,body #slide-out-widget-area.fullscreen-split a:hover,body #slide-out-widget-area.fullscreen-split .off-canvas-menu-container .current-menu-item > a,#slide-out-widget-area.slide-out-from-right-hover a:hover,body.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links a i:after,body #slide-out-widget-area.slide-out-from-right a:hover,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a:hover,#slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a:hover,#slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li.current-menu-item > a,#slide-out-widget-area.slide-out-from-right-hover.no-text-effect .inner .off-canvas-menu-container li a:hover,body #slide-out-widget-area .slide_out_area_close:hover .icon-default-style[class^="icon-"],body.material #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container .current-menu-item > a,#slide-out-widget-area .widget .nectar_widget[class*="nectar_blog_posts_"] li:not(.has-img) a:hover .post-title{color:#ee4c2c!important;}body.material #slide-out-widget-area[class*="slide-out-from-right"] .off-canvas-menu-container li a:after,#slide-out-widget-area.fullscreen-split .inner .off-canvas-menu-container li a:after,#slide-out-widget-area .tagcloud a:hover{border-color:#ee4c2c;}#slide-out-widget-area.fullscreen-split .widget ul:not([class*="nectar_blog_posts"]) li > a:not(.tag-cloud-link):not(.nectar-button),#slide-out-widget-area.fullscreen-split .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#ee4c2c 0,#ee4c2c 100%);}#slide-out-widget-area ul .menu-item .nectar-ext-menu-item .menu-title-text{background-image:linear-gradient(to right,#ee4c2c 0,#ee4c2c 100%);}#mobile-menu ul .menu-item .nectar-ext-menu-item .menu-title-text{background-image:none;}body[data-slide-out-widget-area-style="slide-out-from-right"].material .slide_out_area_close:before{background-color:#ee4c2c;}@media only screen and (min-width:1000px){body[data-slide-out-widget-area-style="slide-out-from-right"].material .slide_out_area_close .close-line{background-color:#ffffff;}}#footer-outer,#nectar_fullscreen_rows > #footer-outer.wpb_row .full-page-inner-wrap{background-color:#000000!important;}#footer-outer #footer-widgets{border-bottom:none;}body.original #footer-outer #footer-widgets .col ul li{border-bottom:1px solid rgba(0,0,0,0.1);}.original #footer-outer #footer-widgets .col .widget_recent_comments ul li,#footer-outer #footer-widgets .col .widget_recent_comments ul li{background-color:rgba(0,0,0,0.07);border-bottom:0;}#ajax-content-wrap #footer-outer #footer-widgets .col .widget_recent_comments ul li{background-color:rgba(255,255,255,0.05);}#footer-outer,#footer-outer a:not(.nectar-button){color:#CCCCCC!important;}#footer-outer[data-link-hover="underline"][data-custom-color="true"] #footer-widgets ul:not([class*="nectar_blog_posts"]) a:not(.tag-cloud-link):not(.nectar-button),#footer-outer[data-link-hover="underline"] #footer-widgets .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#CCCCCC 0,#CCCCCC 100%);}#footer-outer #footer-widgets .widget h4,#footer-outer .col .widget_recent_entries span,#footer-outer .col .recent_posts_extra_widget .post-widget-text span{color:#777777!important;}body #footer-outer #copyright,.ascend #footer-outer #copyright{border:none;background-color:#000000;}body #footer-outer #copyright .widget h4,body #footer-outer #copyright li a i,body #footer-outer #copyright p{color:#777777;}#footer-outer #copyright a:not(.nectar-button){color:#777777!important;}body #footer-outer[data-cols="1"] #copyright li a i:after{border-color:#777777;}body #footer-outer #copyright li a:hover i,body #footer-outer[data-cols="1"] #copyright li a:hover i,body #footer-outer[data-cols="1"] #copyright li a:hover i:after{border-color:#ffffff;color:#ffffff;}#footer-outer #copyright a:hover:not(.nectar-button){color:#ffffff!important;}body #call-to-action{background-color:#ECEBE9;}body #call-to-action span{color:#4B4F52;}body #slide-out-widget-area-bg{background-color:rgba(0,0,0,0.8);}.single-post #page-header-bg[data-post-hs="default_minimal"] .page-header-bg-image:after{background-color:#2d2d2d;opacity:0.4;}.single-post #page-header-bg[data-post-hs="default_minimal"]{background-color:#2d2d2d;}:root{--header-nav-height:80px;}@media only screen and (max-width:999px){:root{--header-nav-height:54px;}}@media only screen and (min-width:1000px){#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 #logo,#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 .logo-clone{margin-top:-10px;}#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 nav >ul >li:not(#social-in-menu):not(#nectar-user-account):not(#search-btn):not(.slide-out-widget-area-toggle) > a{margin-bottom:20px;}#header-outer #logo,#header-outer .logo-clone,#header-outer .logo-spacing{margin-top:20px;margin-bottom:20px;position:relative;}#header-outer.small-nav #logo,#header-outer.small-nav .logo-clone,#header-outer.small-nav .logo-spacing{margin-top:11.111111111111px;margin-bottom:11.111111111111px;}#header-outer.small-nav .logo-clone img,#header-outer.small-nav #logo img,#header-outer.small-nav .logo-spacing img{height:34px;}}@media only screen and (min-width:1000px){.material #header-outer:not(.transparent) .bg-color-stripe{top:80px;height:calc(35vh - 80px);}.material #header-outer:not(.transparent).small-nav .bg-color-stripe{top:56.222222222222px;height:calc(35vh - 56.222222222222px);}}@media only screen and (max-width:999px){.material #header-outer:not([data-permanent-transparent="1"]):not(.transparent) .bg-color-stripe,.material #header-outer:not([data-permanent-transparent="1"]).transparent .bg-color-stripe{top:54px;height:calc(30vh - 54px);}}#header-outer #logo img,#header-outer .logo-clone img,#header-outer .logo-spacing img{height:40px;}#header-outer[data-lhe="text_reveal"] #top nav >ul >li[class*="menu-item-btn"] >a,#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a,#top nav > ul > li[class*="button_solid_color"] > a,body #header-outer[data-lhe="default"] #top nav .sf-menu > li[class*="button_solid_color"] > a:hover,#header-outer[data-lhe="animated_underline"] #top nav > .sf-menu > li[class*="button_bordered"] > a,#top nav > ul > li[class*="button_bordered"] > a,body #header-outer.transparent #top nav > ul > li[class*="button_bordered"] > a,body #header-outer[data-lhe="default"] #top nav .sf-menu > li[class*="button_bordered"] > a:hover,body #header-outer.transparent #top nav > ul > li[class*="button_solid_color"] > a,#header-outer[data-lhe="animated_underline"] #top nav > ul > li[class*="button_solid_color"] > a{margin-left:15px;margin-right:15px;}#header-outer[data-lhe="default"] #top nav > ul > li > a,#header-outer[data-lhe="text_reveal"] #top nav > ul > li:not([class*="menu-item-btn"]) > a,#header-outer .nectar-header-text-content,body[data-header-search="false"][data-full-width-header="false"] #header-outer[data-lhe="animated_underline"][data-format="default"][data-cart="false"] .nectar-header-text-content{padding-left:15px;padding-right:15px;}#header-outer[data-lhe="animated_underline"][data-condense="true"][data-format="centered-menu-bottom-bar"].fixed-menu #top nav > ul > li > a{margin-left:11px;margin-right:11px;}#header-outer[data-lhe="default"][data-condense="true"][data-format="centered-menu-bottom-bar"].fixed-menu #top nav > ul > li > a{padding-left:11px;padding-right:11px;}#top nav >ul >li >ul >li,#header-outer[data-format="centered-menu"] #top nav >ul >li >ul >li,#header-secondary-outer .sf-menu > li > ul > li,#header-outer .widget_shopping_cart .cart_list,#header-outer .widget_shopping_cart .total,#header-outer .widget_shopping_cart .buttons,#header-outer nav .nectar-global-section-megamenu > .inner{-webkit-transform:translate3d(0,13px,0);transform:translate3d(0,13px,0);}#header-outer nav ul li li:hover >a .sf-sub-indicator i,#header-outer nav ul li .sfHover >a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-ancestor >a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) nav >ul >.megamenu ul ul .current-menu-item >a,#header-outer:not([data-format="left-header"]) nav >ul >.megamenu ul ul .current-menu-ancestor >a,#header-outer nav > ul >.megamenu > ul ul .sfHover >a,#header-outer nav > ul >.megamenu > ul ul li a:hover,#header-outer nav > ul >.megamenu > ul ul li a:focus,body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) .sfHover >a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-item >a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-ancestor >a,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) .sfHover >a,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) ul a:hover{color:#fff}body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul li a:hover,body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul .current-menu-item > a{color:#fff;background-color:#000}#slide-out-widget-area .nectar-ext-menu-item .menu-title-text{background-repeat:no-repeat;background-size:0 2px;background-image:linear-gradient(to right,#ee4c2c 0,#ee4c2c 100%);-webkit-transition:background-size 0.55s cubic-bezier(.2,.75,.5,1);transition:background-size 0.55s cubic-bezier(.2,.75,.5,1);background-position:left bottom;}#slide-out-widget-area a:hover > .nectar-ext-menu-item .menu-title-text,#slide-out-widget-area li[class*="current"] > a > .nectar-ext-menu-item .menu-title-text{background-size:100% 2px;}#header-space{height:122px;}@media only screen and (max-width:999px){#header-space{height:54px;}}#header-outer #logo .mobile-only-logo,#header-outer[data-format="centered-menu-bottom-bar"][data-condense="true"] .span_9 .logo-clone img{height:30px;}@media only screen and (max-width:999px){body #top #logo img,#header-outer[data-permanent-transparent="false"] #logo .dark-version{height:30px!important;}}#header-outer #social-in-menu .icon-salient-x-twitter:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .icon-salient-x-twitter:after{content:"\e918"}#header-outer #social-in-menu .fa-facebook:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .fa-facebook:after{content:"\e60d"}#header-outer #social-in-menu .fa-linkedin:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .fa-linkedin:after{content:"\e605"}#header-outer #social-in-menu .fa-youtube-play:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .fa-youtube-play:after{content:"\f16a"}#header-outer #social-in-menu .fa-github-alt:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .fa-github-alt:after{content:"\f113"}#header-outer #social-in-menu .fa-slack:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .fa-slack:after{content:"\f198"}#header-outer #social-in-menu .icon-salient-discord:after,.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links .icon-salient-discord:after{content:"\e90c"}@media only screen and (max-width:999px){body #header-outer.transparent #top .span_3 #logo[data-supplied-ml-starting="true"] img.mobile-only-logo.starting-logo{transform:translateX(-50%);left:50%;}#header-outer[data-has-menu][data-format] #top .row{display:flex;justify-content:center;}#header-outer[data-format="centered-menu-under-logo"] .row,#header-outer[data-format="centered-menu-bottom-bar"] .row{flex-direction:row;}#header-outer[data-has-menu][data-format] #top .row .span_3,body[data-header-format] #header-outer[data-format="centered-menu-under-logo"] #top .row .span_3{margin:0;float:none;z-index:30000;width:auto!important;position:relative;left:0;}#header-outer[data-has-menu][data-format].material-search-open #top .row .span_3 #logo{pointer-events:none;}#header-outer #top .row .col.span_9,body[data-header-format] #header-outer[data-format="centered-menu-bottom-bar"] #top .row .span_9,body[data-header-format] #header-outer[data-format="centered-menu-under-logo"] #top .row .span_9{width:100%!important;display:flex!important;flex-direction:row;align-items:center;}#header-outer #top .row .col.span_9 .slide-out-widget-area-toggle{order:1;padding:0 10px 0 0;}#header-outer #top .col.span_9 .mobile-search{order:2;}#header-outer #top .col.span_9 .nectar-mobile-only.mobile-header{order:5;margin-left:8px;}#header-outer #top .col.span_9 .mobile-user-account{order:3;margin-left:auto;}#header-outer #top .col.span_9 #mobile-cart-link{order:4;padding-right:0;}#header-outer #mobile-cart-link .cart-wrap{right:-9px;}body[data-cart="false"] #header-outer #top .col.span_9 .mobile-user-account{padding-right:0;}body:not([data-user-account-button="true"])[data-cart="false"] #header-outer #top .col.span_9 .mobile-search,body[data-cart="false"][data-user-account-button="false"][data-header-search="false"] #header-outer #top .col.span_9 .nectar-mobile-only.mobile-header{padding-right:0;margin-left:auto;}#header-outer #top .col.span_9 .nectar-mobile-only.mobile-header ul > li:last-child{margin-right:0;}body:not([data-user-account-button="true"]) #header-outer #top .col.span_9 #mobile-cart-link{margin-left:auto;}#header-outer .logo-spacing{display:none;}}.off-canvas-menu-container .nectar-menu-icon,.off-canvas-menu-container .nectar-menu-icon-img,#header-outer #mobile-menu .nectar-menu-icon,#header-outer #mobile-menu .nectar-menu-icon-img{display:none;}body.original #header-outer[data-full-width="true"][data-remove-border="true"] #top nav ul #search-btn{margin-left:22px}@media only screen and (max-width:999px){#search-outer #search #close a:before,body[data-header-format="left-header"] #search-outer #search #close a:before,body.material #header-outer #search-outer #search #close a:before{height:28px;width:28px;margin:-14px 0 0 -14px;}.material #search-outer #search #close a span{font-size:13px;height:13px;line-height:13px;top:6px;}#search-outer #search #close a span{font-size:16px;height:16px;line-height:16px;}.ascend #search-outer #search #close a span{top:0;}.ascend #search-outer #search #close a{height:20px;}#search-outer #search #close a{height:14px;}#search-outer #search #close,body.material #header-outer #search-outer #search #close{top:0;right:-5px;}#search-outer #search #close a,body.material #header-outer #search-outer #search #close a{right:8px;top:9px;}body.original #search-outer #search #close a{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);}}body[data-bg-header="true"][data-header-search="true"].ascend #header-outer.transparent[data-has-menu="false"] #top nav ul #search-btn a:after,body[data-bg-header="true"][data-header-search="true"].ascend #header-outer[data-has-menu="false"] #top nav ul #search-btn a:after,body[data-bg-header="true"][data-header-search="true"] #header-outer[data-has-menu="false"] #top nav ul #search-btn a:after{border:none;display:none}#search-outer{top:0;left:0;width:100%;height:100%;position:absolute;z-index:10000;overflow:visible;display:none;background-color:#fff}#search-box .search-box__button{opacity:0;position:absolute;top:50%;height:42px;margin-top:-3px;transform:translateY(-50%);right:55px;background-color:rgba(0,0,0,.05)!important;color:inherit;pointer-events:none;padding:5px 15px;border:none;}@media only screen and (min-width:1000px){#search-box .search-box__button:focus{pointer-events:auto;outline:2px solid var(--nectar-accent-color);opacity:1;}}#search-box{position:relative}#search-outer .container{overflow:visible;width:100%;}#search-outer #search input[type=text]{width:100%;color:#888;font-size:43px;line-height:43px;position:relative;padding:0;background-color:transparent;border:0;-webkit-transition:none;transition:none;box-shadow:none;font-family:"Open Sans";font-weight:700;text-transform:uppercase;letter-spacing:1px}#search-outer >#search form{width:92%;float:left}#search-outer #search #close{list-style:none}#search-outer #search #close a{position:absolute;right:0;top:24px;display:block;width:24px;height:17px;line-height:22px;z-index:10}#search-outer #search #close a span:not(.close-line){color:#a0a0a0;font-size:18px;height:20px;line-height:19px;background-color:transparent;transition:color 0.2s ease}#search-outer >#search #close a:hover span{color:#000}#header-outer #search{position:relative}body #search-outer #search #close a span{font-size:20px}@media only screen and (min-width :1px) and (max-width :999px){.original #search-outer #search input[type="text"],body[data-header-format="left-header"]:not(.material) #search-outer #search input[type="text"]{font-size:24px;border-bottom-width:2px;}.original #search-outer .container{width:100%;}body.material #search-outer #search form input[type="text"][name]{font-size:16px;line-height:40px;border-bottom-width:2px;padding-right:50px;}body.material #search-outer,.material #search-outer .bg-color-stripe{height:30vh;}body.material #search-outer{min-height:200px;}body.material #search-outer .col{margin-bottom:0;}}@media only screen and (max-width:2600px){.ascend.using-mobile-browser #search{height:100%;}.ascend.using-mobile-browser #search #search-box{top:20px;}}@media screen and (max-width:999px){.material #header-outer.transparent .bg-color-stripe,.material #header-outer:not([data-permanent-transparent="1"]).transparent .bg-color-stripe,.material #header-outer[data-transparent-header].transparent .bg-color-stripe,.material #header-outer[data-transparent-header]:not([data-permanent-transparent="1"]).transparent .bg-color-stripe{height:200px;top:0;}body.material #search-outer,body.material #header-outer #search-outer{height:200px;transform:translate3d(0,-200px,0);-webkit-transform:translate3d(0,-200px,0);}body.material #header-outer[data-using-secondary="1"] #search-outer{top:auto;margin-top:-13px;}html.material #search-outer .bg-color-stripe{height:200px;top:0;}#search-outer #search-box,#search-outer #search #close,#header-outer #search-outer #search-box,#header-outer #search-outer #search #close{-webkit-transform:translate3d(0,200px,0);transform:translate3d(0,200px,0);}}body.material #search-outer{background-color:transparent;height:35vh;position:absolute;transition:transform 0.8s cubic-bezier(0.2,1,0.3,1),opacity 0.8s cubic-bezier(0.2,1,0.3,1);transform:translate3d(0,-35vh,0);-webkit-transform:translate3d(0,-35vh,0);z-index:2000!important;padding:0;top:-1px;}body.material[data-header-search="false"] #search-outer{visibility:hidden;}body.material #search-outer.perma-trans{position:fixed;}body.material.admin-bar #search-outer.perma-trans{top:32px;}body.material #search-outer #search .container{height:auto!important;float:none;width:100%;}.material #header-outer.transparent .bg-color-stripe,.material #search-outer .bg-color-stripe{height:35vh;top:0;}body[data-header-color="dark"] #header-outer .bg-color-stripe,body[data-header-color="dark"].material #header-outer #search-outer:before{background-color:#000;}#header-outer .bg-color-stripe,#search-outer .bg-color-stripe,#header-outer #search-outer:before{transition:transform 0.8s cubic-bezier(0.2,1,0.3,1);position:absolute;left:0;top:0;height:100%;width:100%;display:block;background-color:#fff;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:top;transform-origin:top;}.material #header-outer #search-outer:before{content:"";-webkit-transform:none;transform:none;backface-visibility:hidden;}body.material[data-header-inherit-rc="true"] #header-outer #search-outer:before{display:none;}body.material[data-header-inherit-rc="true"] #search-outer{background-color:inherit;}#header-outer.material-search-open .bg-color-stripe,#search-outer.material-open .bg-color-stripe{-webkit-transform:scaleY(1);transform:scaleY(1);}.material #search-outer{display:block;overflow:hidden;}#search-outer #search{max-width:1200px;position:relative;z-index:10;margin:0 auto;height:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;}.material #search-outer #search,.material #header-outer #search-outer #search{padding:0;}#search-outer #search-box,#search-outer #search #close{transition:transform 0.8s cubic-bezier(0.2,1,0.3,1),opacity 0.8s cubic-bezier(0.2,1,0.3,1);transform:translate3d(0,35vh,0);opacity:0;}body.material #search-outer.material-open,body.material #header-outer #search-outer.material-open{transform:translate3d(0,0vh,0);-webkit-transform:translate3d(0,0vh,0);}#search-outer.material-open #search-box,#search-outer.material-open #search #close,#header-outer #search-outer.material-open #search-box,#header-outer #search-outer.material-open #search #close{transform:translate3d(0,0vh,0);opacity:1;}body #search-outer #search input[type="text"]{height:auto!important;text-transform:none;color:#000;border-radius:0;border-bottom:2px solid #3452ff;}body #search-outer #search input[type="text"],body.material #search-outer #search form input[type="text"]{font-size:60px;}body.material #search-outer #search input[type="text"]{line-height:60px;}@media only screen and (min-width:1000px){body #search-outer #search input[type="text"]{height:90px!important;}body.material #search-outer #search #search-box input[type="text"]{line-height:90px;}}body[data-header-color="custom"] #search-outer #search .span_12 span{opacity:0.7;}body[data-header-color="light"] #header-outer #search-outer input::-webkit-input-placeholder{color:#000;}body[data-header-color="dark"] #header-outer #search-outer input::-webkit-input-placeholder{color:#fff;}#header-outer #search-outer input::-webkit-input-placeholder,#header-outer #search-outer input::-moz-placeholder{color:#888;}body.material #search-outer > #search form{width:100%;float:none}#header-outer.light-text #search-outer input[type="text"],body[data-header-color="dark"] #header-outer #search-outer input[type="text"]{border-color:#fff;}#header-outer.light-text #search-outer #search .span_12 span,body[data-header-color="dark"] #header-outer #search-outer #search .span_12 span{color:rgba(255,255,255,0.6);}#header-outer.light-text #search-outer #search #close a span,body[data-header-color="dark"] #header-outer #search-outer #search #close a span,body[data-header-color="dark"] .nectar-ajax-search-results .search-post-item,body[data-header-color="dark"] .nectar-ajax-search-results ul.products li.product{color:#fff;}#header-outer.light-text #search-outer input::-webkit-input-placeholder,body[data-header-color="dark"] #header-outer #search-outer input::-webkit-input-placeholder{color:rgba(255,255,255,0.5);}#header-outer.light-text #search-outer input::-moz-placeholder,body[data-header-color="dark"] #header-outer #search-outer input::-moz-placeholder{color:rgba(255,255,255,0.5);}#search-outer #search #close{position:absolute;right:40px}body[data-ext-responsive="false"].material #search-outer #search #close{right:0;}body[data-ext-responsive="false"].material #search-outer #search #close a{right:15px;}body.material #search-outer #search input[type="text"]{padding-right:70px;}body.material #search-outer #search #close a{right:64px;top:16px;}[data-header-color="dark"] #search-outer #search #close a:before{background-color:rgba(255,255,255,.1);}#search-outer #search .span_12 span{display:block;color:rgba(0,0,0,0.4);margin-top:15px}@media only screen and (max-width:999px){#search-outer #search .span_12 span{display:none;}}body.material #search-outer #search #close a span{color:#000;}body #search-outer .ui-widget-content{top:90px}@media only screen and (min-width:1000px){body.material #search-outer #search #search-box input[type="text"]{font-size:48px;line-height:1;height:76px!important;}#search-outer #search .span_12 form > span{position:absolute;bottom:-40px;left:0;}#search-outer #search #close{top:50%;margin-top:-28px;}}#header-outer[data-box-shadow="large"],body.material[data-hhun="1"] #header-outer[data-header-resize="0"][data-box-shadow="large"][data-remove-fixed="0"]:not(.transparent):not(.invisible),body.material[data-hhun="1"] #header-outer[data-header-resize="0"][data-box-shadow="large"][data-remove-fixed="1"]:not(.transparent){box-shadow:0 3px 45px rgba(0,0,0,0.15);}#header-outer[data-transparent-header="true"] #logo img{transition:height 0.32s ease;}#header-outer[data-permanent-transparent="false"][data-transparent-header="true"].dark-slide #logo img{transition:height 0.32s ease;}#header-outer[data-header-resize="1"] #logo,#header-outer[data-header-resize="1"] .logo-spacing{transition:margin 0.32s ease,color 0.32s ease;}#header-outer[data-header-resize="1"] #logo img,#header-outer[data-header-resize="1"] .logo-spacing img{transition:height 0.32s ease,opacity 0.2s ease;}#header-outer[data-header-resize="1"]:not([data-transparent-header="true"]) #logo,#header-outer[data-header-resize="1"]:not([data-transparent-header="true"]) .logo-spacing{transition:margin 0.15s ease;}#header-outer[data-header-resize="1"]:not([data-transparent-header="true"]) #logo img,#header-outer[data-header-resize="1"]:not([data-transparent-header="true"]) .logo-spacing img{transition:height 0.15s ease,opacity 0.2s ease;}#header-outer[data-header-resize="1"].small-nav:not([data-transparent-header="true"]) #logo,#header-outer[data-header-resize="1"].small-nav:not([data-transparent-header="true"]) .logo-spacing{transition:margin 0.3s ease;}#header-outer[data-header-resize="1"].small-nav:not([data-transparent-header="true"]) #logo img,#header-outer[data-header-resize="1"].small-nav:not([data-transparent-header="true"]) .logo-spacing img{transition:height 0.3s ease,opacity 0.2s ease;}#header-outer.small-nav{transition:box-shadow 0.42s ease,opacity 0.3s ease;}#header-outer.small-nav #logo,#header-outer.small-nav .logo-spacing{transition:margin 0.32s ease;}#header-outer.small-nav #logo img,#header-outer.small-nav .logo-spacing img{transition:height 0.32s ease;}#header-outer[data-using-secondary="1"].small-nav{transition:box-shadow 0.42s ease,opacity 0.3s ease,transform 0.32s ease;}@media only screen and (max-width:999px){body[data-slide-out-widget-area-style="slide-out-from-right"].material .slide_out_area_close{right:auto;left:340px;}html body[data-slide-out-widget-area-style="slide-out-from-right"].material .ocm-effect-wrap{-webkit-transform-origin:left;transform-origin:left;}body[data-slide-out-widget-area-style="slide-out-from-right"].material .ocm-effect-wrap.material-ocm-open{-webkit-transform:scale(0.835) translateX(465px) translateZ(0)!important;transform:scale(0.835) translateX(465px) translateZ(0)!important;}}@media only screen and (max-width:999px){body #slide-out-widget-area.slide-out-from-right-hover{transform:translate3d(-101%,0,0);-webkit-transform:translate3d(-101%,0,0);-ms-transform:translate3d(-101%,0,0);right:auto;left:0;opacity:0;transition:transform .7s cubic-bezier(0.25,1,.2,1),opacity .2s ease 0.3s;}body #slide-out-widget-area.slide-out-from-right-hover.open{transition:transform .7s cubic-bezier(0.25,1,.2,1),opacity .1s ease 0s;}body .slide-out-hover-icon-effect.small{left:27px;right:auto;}}body:not(.material) #slide-out-widget-area.slide-out-from-right:not(.open){-webkit-transform:translate(301px,0px)!important;transform:translate(301px,0px)!important;}body #slide-out-widget-area.slide-out-from-right-hover{opacity:0;transition:transform .7s cubic-bezier(0.25,1,.2,1),opacity .2s ease 0.3s;}body #slide-out-widget-area.slide-out-from-right-hover.open{opacity:1;transition:transform .7s cubic-bezier(0.25,1,.2,1),opacity .1s ease 0s;}.lines:before,body[data-slide-out-widget-area-style="slide-out-from-right-hover"] .slide-out-hover-icon-effect.slide-out-widget-area-toggle.small .lines:before{width:1rem;}body[data-slide-out-widget-area-style="slide-out-from-right-hover"] .slide-out-widget-area-toggle.mobile-icon .lines:before,body #header-outer .slide-out-widget-area-toggle.mobile-icon .lines:before,#header-outer .left-aligned-ocm .lines:before{width:1rem!important;}@media only screen and (max-width:999px){.slide-out-hover-icon-effect.slide-out-widget-area-toggle:not(.small) .lines:before{width:1rem;}}.nectar-skip-to-content:focus{position:fixed;left:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;color:#000;z-index:100000;line-height:normal;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,.6);}#header-outer[data-lhe="animated_underline"] li > a .menu-title-text{position:relative;}#header-outer .mobile-header li:not([class*="button_"]) > a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] nav > ul >li:not([class*="button_"]) > a .menu-title-text:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a .menu-title-text:after{-webkit-transition:-webkit-transform .3s ease-out,border-color .3s ease-out;transition:transform .3s ease-out,border-color .3s ease-out;position:absolute;display:block;bottom:-6px;left:0;width:100%;-ms-transform:scaleX(0);-webkit-transform:scaleX(0);transform:scaleX(0);border-top:2px solid #000;content:"";padding-bottom:inherit}#header-outer .mobile-header li:not([class*="button_"]) > a:hover .menu-title-text:after,#header-outer[data-lhe="animated_underline"] #top nav >ul >li >a:hover .menu-title-text:after,#header-outer[data-lhe="animated_underline"] #top nav >ul >.sfHover >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current_page_ancestor >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current-menu-ancestor >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current-menu-item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current_page_item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current_page_parent >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .buttons .current-menu-item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .buttons .current-menu-ancestor >a .menu-title-text:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a .menu-title-text:hover:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a:focus .menu-title-text:after{backface-visibility:hidden;-webkit-transform:scaleX(1);transform:scaleX(1)}body[data-header-inherit-rc="true"] #header-outer[data-lhe="animated_underline"].light-text #top nav >ul >li:not([class*="button_"]) >a .menu-title-text:after{border-color:#fff;}#header-outer[data-lhe="animated_underline"].transparent.dark-slide #top nav >ul >li >a .menu-title-text:after{border-color:#000!important;}:root{--nectar-border-thickness:2px;}.span_12.light .wpb_text_column a{transition:0.3s ease opacity,0.3s ease color;}.span_12.light .wpb_text_column a:not(:hover){opacity:0.7;}@media only screen and (min-width:1000px) and (max-width:1300px){.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2,.full-width-content .vc_span12 .swiper-slide .content h2{font-size:45px!important;line-height:51px!important;}.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p,.full-width-content .vc_span12 .swiper-slide .content p{font-size:18px!important;line-height:31.2px!important;}}@media only screen and (min-width :691px) and (max-width :999px){.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2,.full-width-content .vc_span12 .swiper-slide .content h2{font-size:33px!important;line-height:39px!important;}.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p,.full-width-content .vc_span12 .swiper-slide .content p{font-size:13.2px!important;line-height:24px!important;}}@media only screen and (max-width :690px){.nectar-slider-wrap[data-full-width="true"][data-fullscreen="false"] .swiper-slide .content h2,.full-width-content .vc_col-sm-12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"][data-fullscreen="false"] .swiper-slide .content h2,.full-width-content .vc_span12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content h2{font-size:15px!important;line-height:21px!important;}.nectar-slider-wrap[data-full-width="true"][data-fullscreen="false"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"][data-fullscreen="false"] .swiper-slide .content p,.full-width-content .vc_span12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content p{font-size:10px!important;line-height:17.52px!important;}}:root{--nectar-starting-header-color:#ffffff;}body #header-outer[data-transparent-header="true"],body #header-outer[data-transparent-header="true"] .cart-menu{transition:background-color 0.30s ease,box-shadow 0.30s ease,margin 0.25s ease,backdrop-filter 0.25s ease;-webkit-transition:background-color 0.30s ease,box-shadow 0.30s ease,margin 0.25s ease,backdrop-filter 0.25s ease;}body #header-outer[data-transparent-header="true"].transparent,body #header-outer[data-transparent-header="true"].transparent .cart-menu{transition:border-color 0.30s ease;-webkit-transition:border-color 0.30s ease}body.original #header-outer[data-transparent-header="true"].transparent,body.ascend #header-outer[data-transparent-header="true"].transparent,body.material #header-outer[data-transparent-header="true"].transparent{box-shadow:none;}body #header-outer[data-transparent-header="true"].transparent{background-color:transparent!important;-webkit-box-shadow:none;box-shadow:none;border-bottom:1px solid rgba(255,255,255,0.25)}#header-outer[data-transparent-header="true"][data-transparent-shadow-helper="true"].transparent:not(.dark-slide):before{background:linear-gradient(to top,rgba(255,255,255,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,0.04) 16%,rgba(0,0,0,0.23) 75%,rgba(0,0,0,0.33) 100%);position:absolute;pointer-events:none;height:120%;top:0;left:0;width:100%;content:"";display:block;}body.material #header-outer[data-transparent-header="true"].transparent{border-bottom:0;}body #header-outer[data-transparent-header="true"].transparent nav >ul >li >a{margin-bottom:-1px}body #header-outer[data-transparent-header="true"][data-format="centered-menu"].transparent.side-widget-open.small-nav nav >ul >li >a{margin-bottom:0}#header-outer[data-transparent-header="true"].transparent #logo img,#header-outer[data-transparent-header="true"] #logo .starting-logo,#header-outer[data-transparent-header="true"].light-text #logo img{opacity:0;-ms-filter:"alpha(opacity=0)"}#header-outer[data-transparent-header="true"].transparent #logo .starting-logo,#header-outer[data-transparent-header="true"].light-text #logo .starting-logo{opacity:1;-ms-filter:"alpha(opacity=100)"}#header-outer[data-transparent-header="true"].transparent:not(.dark-text):not(.dark-slide) #logo picture.starting-logo:not(.dark-version) img{opacity:1!important;}#header-outer[data-transparent-header="true"].light-text:not(.dark-text) #logo picture.starting-logo:not(.dark-version) img{opacity:1!important;}#header-outer[data-transparent-header="true"].transparent.dark-slide #logo picture.starting-logo.dark-version img,#header-outer[data-transparent-header="true"].dark-text #logo picture.starting-logo.dark-version img,#header-outer[data-transparent-header="true"].dark-text #logo picture.starting-logo.dark-version{opacity:1!important;}body #header-outer[data-transparent-header="true"][data-remove-border="true"],#header-outer[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] .cart-menu,#header-outer[data-transparent-header="true"][data-full-width="false"][data-remove-border="true"].transparent .cart-menu,.ascend #header-outer.transparent[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] #top .nectar-woo-cart .cart-contents{border:none!important}body #header-outer.transparent[data-transparent-header="true"][data-remove-border="true"]{transition:background-color 0.3s ease 0s,box-shadow 0.3s ease 0s,margin 0.25s ease,backdrop-filter 0.25s ease;-webkit-transition:background-color 0.3s ease 0s,box-shadow 0.3s ease 0s,margin 0.25s ease,backdrop-filter 0.25s ease;}body:not(.ascend) #header-outer[data-transparent-header="true"][data-remove-border="true"]:not(.transparent) .cart-menu:after{border-left:1px solid rgba(0,0,0,0)}body #header-outer[data-transparent-header="true"][data-remove-border="true"].transparent.pseudo-data-transparent{border-color:transparent!important}#header-outer.light-text #top nav >ul >li >a,#header-outer.light-text #top nav ul #search-btn a span,#header-outer.light-text #top nav ul #nectar-user-account a span,#header-outer.light-text #top .container nav >ul >li >a >.sf-sub-indicator i,#header-outer.light-text .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer.light-text .nectar-header-text-content,.light-text .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a,.ascend #boxed #header-outer.light-text .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer[data-lhe="default"].light-text #top nav .sf-menu .current-menu-item >a,body[data-header-inherit-rc="true"] #header-outer[data-lhe="default"].light-text #top nav .sf-menu > .sfHover:not(#social-in-menu) > a,#header-outer[data-lhe="default"].light-text #top nav >ul >li >a:hover,#header-outer[data-lhe="default"].light-text #top nav .sf-menu >.sfHover >a{color:#fff!important;opacity:0.75;}#header-outer.light-text #logo,#header-outer.light-text .sf-menu > li.nectar-regular-menu-item > a > .nectar-menu-icon{color:#fff;}body #header-outer.light-text #top .container nav ul .slide-out-widget-area-toggle a .lines,body #header-outer.light-text #top .container nav ul .slide-out-widget-area-toggle a .lines:before,body #header-outer.light-text #top .container nav ul .slide-out-widget-area-toggle a .lines:after,body #header-outer.light-text #top .container nav ul .slide-out-widget-area-toggle .lines-button:after{background-color:#fff !important}#header-outer.dark-text #top nav >ul >li >a,#header-outer.dark-text #top nav ul #search-btn a span,#header-outer.dark-text #top nav ul #nectar-user-account a span,#header-outer.dark-text nav >ul >li >a >.sf-sub-indicator i,.dark-text .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a,#header-outer.dark-text .cart-menu .cart-icon-wrap .icon-salient-cart,.ascend #boxed #header-outer.dark-text .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer[data-lhe="default"].dark-text #top nav .sf-menu .current-menu-item >a{color:#444!important;opacity:0.75;}#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a .lines:before,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a .lines:after{background-color:#444 !important}#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a .lines-button:after{opacity:0.75;}#header-outer.light-text #top nav >ul >li >a:hover,#header-outer.light-text #top nav .sf-menu >.sfHover >a,#header-outer.light-text #top nav .sf-menu >.current_page_ancestor >a,#header-outer.light-text #top nav .sf-menu >.current-menu-item >a,#header-outer.light-text #top nav .sf-menu >.current-menu-ancestor >a,#header-outer.light-text #top nav .sf-menu >.current_page_item >a,#header-outer.light-text #top nav >ul >li >a:hover >.sf-sub-indicator >i,#header-outer.light-text #top nav >ul >.sfHover >a >span >i,#header-outer.light-text #top nav ul #search-btn a:hover span,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a:hover span,#header-outer.light-text #top nav .sf-menu >.current-menu-item >a i,#header-outer.light-text #top nav .sf-menu >.current-menu-ancestor >a i,#header-outer.light-text .cart-outer:hover .icon-salient-cart,.light-text .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a:hover,.light-text .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"])[class*="current"] a,.dark-text .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a:hover,.dark-text .nectar-mobile-only.mobile-header li[class*="current"] a,.ascend #boxed #header-outer.light-text .cart-outer:hover .cart-menu .cart-icon-wrap .icon-salient-cart,.ascend #boxed #header-outer.dark-text .cart-outer:hover .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer.dark-text #top nav >ul >li >a:hover,#header-outer.dark-text #top nav .sf-menu >.sfHover >a,#header-outer.dark-text #top nav .sf-menu >.current_page_ancestor >a,#header-outer.dark-text #top nav .sf-menu >.current-menu-item >a,#header-outer.dark-text #top nav .sf-menu >.current-menu-ancestor >a,#header-outer.dark-text #top nav .sf-menu >.current_page_item >a,#header-outer.dark-text #top nav >ul >li >a:hover >.sf-sub-indicator >i,#header-outer.dark-text #top nav >ul >.sfHover >a >span >i,#header-outer.dark-text #top nav ul #search-btn a:hover span,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a:hover span,#header-outer.dark-text #top nav .sf-menu >.current-menu-item >a i,#header-outer.dark-text #top nav .sf-menu >.current-menu-ancestor >a i,#header-outer.dark-text .cart-outer:hover .icon-salient-cart,#header-outer.light-text.side-widget-open #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a:hover .lines,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#header-outer.light-text #top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#header-outer.dark-text.side-widget-open #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a:hover .lines,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#header-outer.dark-text #top nav ul .slide-out-widget-area-toggle a:hover .lines:after{opacity:1!important}#header-outer.light-text #top nav >ul >li >a,#header-outer.light-text #top nav >ul >li *,body.ascend #header-outer.light-text .cart-menu,#header-outer.dark-text #top nav >ul >li >a,#header-outer.dark-text #top nav >ul >li *,.ascend #header-outer[data-full-width="true"].dark-text #top nav ul #search-btn a,.ascend #header-outer[data-full-width="true"].dark-text #top nav ul .slide-out-widget-area-toggle a,.ascend #header-outer[data-full-width="true"].light-text #top nav ul #search-btn a,.ascend #header-outer[data-full-width="true"].light-text #top nav ul .slide-out-widget-area-toggle a,body.ascend #header-outer.dark-text .cart-menu{border-color:rgba(0,0,0,0.1)}body #header-outer.transparent[data-transparent-header="true"].dark-slide,body #header-outer.transparent[data-transparent-header="true"].dark-slide .cart-menu,body #header-outer.transparent[data-transparent-header="true"].dark-slide >#top nav ul #nectar-user-account >div,body #header-outer.transparent[data-transparent-header="true"].dark-slide >#top nav ul .slide-out-widget-area-toggle >div,#boxed #header-outer.transparent[data-transparent-header="true"].dark-slide,body #header-outer.transparent[data-transparent-header="true"][data-remove-border="true"].dark-slide .cart-menu:after{border-color:rgba(0,0,0,0.08) !important}#header-outer.transparent.dark-slide #top nav >ul >li[class*="button_bordered"] >a:before,.dark-slide.transparent #top nav >ul >li[class*="button_bordered"] >a:before{border-color:#000!important}#header-outer[data-transparent-header="true"].no-pointer-events{pointer-events:none}#header-outer[data-transparent-header="true"].no-pointer-events.side-widget-open.style-slide-out-from-right,#header-outer[data-transparent-header="true"].no-pointer-events.side-widget-open.style-slide-out-from-right-alt{pointer-events:auto}#header-outer[data-transparent-header="true"].transparent >header #logo img.dark-version,#header-outer[data-transparent-header="true"].light-text >header #logo img.dark-version,#header-outer[data-transparent-header="true"].transparent.dark-slide >header #logo img,#header-outer[data-transparent-header="true"].dark-text >header #logo img,#header-outer[data-transparent-header="true"].dark-text.side-widget-open >header #logo img.dark-version{opacity:0!important}#header-outer[data-transparent-header="true"].transparent.dark-slide >header #logo img.dark-version,#header-outer[data-transparent-header="true"].dark-text >header #logo img.dark-version,#header-outer[data-transparent-header="true"].dark-text.side-widget-open >header #logo img.starting-logo{opacity:1!important}#header-outer.transparent #top #logo,#header-outer.transparent #top .logo-clone,#header-outer.transparent #top #logo:hover{color:#ffffff;}#header-outer:not(.transparent).light-text #top #logo{color:#ffffff!important;}#header-outer.transparent[data-permanent-transparent="false"] #top .slide-out-widget-area-toggle.mobile-icon i:before,#header-outer.transparent[data-permanent-transparent="false"] #top .slide-out-widget-area-toggle.mobile-icon i:after,body.material.mobile #header-outer.transparent:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line,body #header-outer[data-permanent-transparent="1"].transparent:not(.dark-slide) > #top .span_9 > .slide-out-widget-area-toggle .lines-button:after,body #header-outer[data-permanent-transparent="1"].transparent:not(.dark-slide) > #top .span_9 > .slide-out-widget-area-toggle .lines:before,body #header-outer[data-permanent-transparent="1"].transparent:not(.dark-slide) > #top .span_9 > .slide-out-widget-area-toggle .lines:after,#header-outer[data-lhe="animated_underline"].transparent .nectar-header-text-content a:after{background-color:#ffffff!important;}#header-outer.transparent #top nav > ul > li > a,#header-outer.transparent #top nav > .sf-menu > li > a,#header-outer.transparent .slide-out-widget-area-toggle a i.label,#header-outer.transparent #top .span_9 > .slide-out-widget-area-toggle a.using-label .label,#header-outer.transparent #top nav ul #search-btn a .icon-salient-search,#header-outer.transparent #top nav ul #nectar-user-account a span,#header-outer.transparent #top nav > ul > li > a > .sf-sub-indicator i,#header-outer.transparent .cart-menu .cart-icon-wrap .icon-salient-cart,.ascend #boxed #header-outer.transparent .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer.transparent #top .sf-menu > li.nectar-regular-menu-item > a > .nectar-menu-icon,#header-outer.transparent .nectar-header-text-content,#header-outer.transparent .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a{color:#ffffff!important;opacity:0.75;will-change:opacity,color;transition:opacity 0.2s ease,color 0.2s ease;}#header-outer.transparent[data-lhe="default"] #top nav > ul > li > a:hover,#header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .sfHover:not(#social-in-menu) > a,#header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current_page_ancestor > a,#header-outer.transparent #top nav .sf-menu > .current-menu-item > a,#header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current-menu-ancestor > a,#header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current-menu-item > a,#header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current_page_item > a,#header-outer.transparent #top nav > ul > li > a:hover > .sf-sub-indicator > i,#header-outer.transparent #top .sf-menu > .sfHover > a .sf-sub-indicator i,#header-outer.transparent #top nav > ul > .sfHover > a > span > i,#header-outer.transparent #top nav ul #search-btn a:hover span,#header-outer.transparent #top nav ul #nectar-user-account a:hover span,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:hover span,#header-outer.transparent #top nav .sf-menu > .current-menu-item > a i,body #header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current_page_item > a .sf-sub-indicator i,#header-outer.transparent #top nav .sf-menu > .current-menu-ancestor > a i,body #header-outer.transparent[data-lhe="default"] #top nav .sf-menu > .current-menu-ancestor > a i,#header-outer.transparent .cart-outer:hover .icon-salient-cart,.ascend #boxed #header-outer.transparent .cart-outer:hover .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer.transparent[data-permanent-transparent="false"]:not(.dark-slide) #top .span_9 > a[class*="mobile-"] > *,#header-outer.transparent[data-permanent-transparent="false"]:not(.dark-slide) #top #mobile-cart-link i,#header-outer[data-permanent-transparent="1"].transparent:not(.dark-slide) #top .span_9 > a[class*="mobile-"] > *,#header-outer[data-permanent-transparent="1"].transparent:not(.dark-slide) #top #mobile-cart-link i,#header-outer.transparent #top .sf-menu > li.nectar-regular-menu-item > a:hover > .nectar-menu-icon,#header-outer.transparent #top .sf-menu > li.nectar-regular-menu-item.sfHover > a:hover > .nectar-menu-icon,#header-outer.transparent #top .sf-menu > li.nectar-regular-menu-item[class*="current-"] > a:hover > .nectar-menu-icon,#header-outer.transparent .nectar-header-text-content:hover,#header-outer.transparent:not(.dark-slide) .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a:hover,.transparent:not(.dark-slide) .nectar-mobile-only.mobile-header li[class*="menu-item-btn-style-button-border"]:not(:hover) > a{opacity:1;color:#ffffff!important;}#header-outer.transparent[data-lhe="animated_underline"] #top nav > ul > li > a:hover,#header-outer.transparent[data-lhe="animated_underline"] #top nav > ul > li > a:focus,#header-outer.transparent[data-lhe="animated_underline"] #top nav .sf-menu > .sfHover > a,#header-outer.transparent[data-lhe="animated_underline"] #top nav .sf-menu > .current-menu-ancestor > a,#header-outer.transparent[data-lhe="animated_underline"] #top nav .sf-menu > .current_page_item > a,#header-outer.transparent[data-lhe="default"] #top nav > ul > li > a:focus,#header-outer.transparent .slide-out-widget-area-toggle a:hover i.label,#header-outer.transparent #top nav ul #search-btn a:focus span,#header-outer.transparent #top nav ul #nectar-user-account a:focus span,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:focus span,#header-outer.transparent .nectar-woo-cart .cart-contents:focus .icon-salient-cart{opacity:1;}#header-outer[data-lhe="animated_underline"].transparent #top nav > ul > li > a .menu-title-text:after,#header-outer.transparent #top nav>ul>li[class*="button_bordered"]>a:before,#header-outer.transparent .nectar-mobile-only.mobile-header li a .menu-title-text:after{border-color:#ffffff!important;}.transparent .left-aligned-ocm .lines-button i:before,.transparent .left-aligned-ocm .lines-button i:after,.transparent .left-aligned-ocm .lines-button:after,#header-outer.transparent > #top nav ul .slide-out-widget-area-toggle a .lines,#header-outer.transparent > #top nav ul .slide-out-widget-area-toggle a .lines:before,#header-outer.transparent > #top nav ul .slide-out-widget-area-toggle a .lines:after,body.material #header-outer.transparent .slide-out-widget-area-toggle a .close-line,#header-outer.transparent > #top nav ul .slide-out-widget-area-toggle .lines-button:after{background-color:#ffffff!important;}#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a .lines,body.material:not(.mobile) #header-outer.transparent .slide-out-widget-area-toggle a .close-line,#header-outer.transparent:not(.side-widget-open) #top nav ul .slide-out-widget-area-toggle a .lines-button:after{opacity:0.75;}#header-outer.transparent.side-widget-open #top nav ul .slide-out-widget-area-toggle a .lines,body.material #header-outer.transparent .slide-out-widget-area-toggle a:hover .close-line,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:hover .lines,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:focus .lines-button:after,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:focus .lines:before,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:focus .lines:after,#header-outer.transparent #top nav ul .slide-out-widget-area-toggle a:focus .lines{opacity:1;}:root{--nectar-starting-dark-header-color:#000000;}#header-outer.transparent[data-permanent-transparent="false"].dark-slide #top .slide-out-widget-area-toggle.mobile-icon i:before,#header-outer.transparent[data-permanent-transparent="false"].dark-slide #top .slide-out-widget-area-toggle.mobile-icon i:after{background-color:#000000!important;}#header-outer.transparent.dark-slide > #top nav > ul > li > a,#header-outer.transparent.dark-row > #top nav > ul > li > a,#header-outer.transparent.dark-row .slide-out-widget-area-toggle a i.label,#header-outer.transparent.dark-slide .slide-out-widget-area-toggle a i.label,#header-outer.transparent.dark-slide #top .span_9 > .slide-out-widget-area-toggle a.using-label .label,#header-outer.transparent.dark-row #top .span_9 > .slide-out-widget-area-toggle a.using-label .label,#header-outer.transparent.dark-slide > #top nav ul #search-btn a span,#header-outer.transparent.dark-row > #top nav ul #search-btn a span,#header-outer.transparent.dark-slide > #top nav ul #nectar-user-account a span,#header-outer.transparent.dark-row > #top nav ul #nectar-user-account a span,#header-outer.transparent.dark-slide > #top nav > ul > li > a > .sf-sub-indicator [class^="icon-"],#header-outer.transparent.dark-slide > #top nav > ul > li > a > .sf-sub-indicator [class*=" icon-"],#header-outer.transparent.dark-row > #top nav > ul > li > a > .sf-sub-indicator [class*=" icon-"],#header-outer.transparent.dark-slide .cart-menu .cart-icon-wrap .icon-salient-cart,#header-outer.transparent.dark-row .cart-menu .cart-icon-wrap .icon-salient-cart,body.ascend[data-header-color="custom"] #boxed #header-outer.transparent.dark-slide > #top .cart-outer .cart-menu .cart-icon-wrap i,body.ascend #boxed #header-outer.transparent.dark-slide > #top .cart-outer .cart-menu .cart-icon-wrap i,#header-outer[data-permanent-transparent="1"].transparent.dark-slide .mobile-search .icon-salient-search,#header-outer[data-permanent-transparent="1"].transparent.dark-slide .mobile-user-account .icon-salient-m-user,#header-outer[data-permanent-transparent="1"].transparent.dark-slide #top #mobile-cart-link i,#header-outer.transparent[data-permanent-transparent="false"].dark-slide #top .span_9 > a[class*="mobile-"] > *,#header-outer.transparent[data-permanent-transparent="false"].dark-slide #top #mobile-cart-link i,#header-outer.transparent.dark-slide #top .sf-menu > li.nectar-regular-menu-item > a > .nectar-menu-icon,#header-outer.transparent.dark-slide .nectar-header-text-content,#header-outer.dark-slide .nectar-mobile-only.mobile-header li:not([class*="menu-item-btn-style"]) a{color:#000000!important;}#header-outer.transparent.dark-slide > #top nav ul .slide-out-widget-area-toggle a .lines-button i:after,#header-outer.transparent.dark-slide > #top nav ul .slide-out-widget-area-toggle a .lines-button i:before,#header-outer.transparent.dark-slide > #top nav ul .slide-out-widget-area-toggle .lines-button:after,.transparent.dark-slide .left-aligned-ocm .lines-button i:before,.transparent.dark-slide .left-aligned-ocm .lines-button i:after,.transparent.dark-slide .left-aligned-ocm .lines-button:after,body.marterial #header-outer.transparent.dark-slide > #top nav .slide-out-widget-area-toggle a .close-line,body #header-outer[data-permanent-transparent="1"].transparent.dark-slide > #top .span_9 > .slide-out-widget-area-toggle.mobile-icon .lines-button:after,body #header-outer[data-permanent-transparent="1"].transparent.dark-slide > #top .span_9 > .slide-out-widget-area-toggle.mobile-icon .lines:before,body #header-outer[data-permanent-transparent="1"].transparent.dark-slide > #top .span_9 > .slide-out-widget-area-toggle.mobile-icon .lines:after,#header-outer[data-lhe="animated_underline"].transparent.dark-slide .nectar-header-text-content a:after{background-color:#000000!important;}#header-outer.transparent.dark-slide > #top nav > ul > li > a:hover,#header-outer.transparent.dark-slide > #top nav .sf-menu > .sfHover > a,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current_page_ancestor > a,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current-menu-item > a,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current-menu-ancestor > a,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current_page_item > a,#header-outer.transparent.dark-slide > #top nav > ul > li > a:hover > .sf-sub-indicator > i,#header-outer.transparent.dark-slide > #top nav > ul > .sfHover > a > span > i,#header-outer.transparent.dark-slide > #top nav ul #search-btn a:hover span,#header-outer.transparent.dark-slide > #top nav ul #nectar-user-account a:hover span,body #header-outer.dark-slide.transparent[data-lhe="default"] #top nav .sf-menu > .current_page_item > a .sf-sub-indicator i,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current-menu-item > a i,#header-outer.transparent.dark-slide > #top nav .sf-menu > .current-menu-ancestor > a i,body #header-outer.dark-slide.transparent[data-lhe="default"] #top nav .sf-menu > .current-menu-ancestor > a i,#header-outer.transparent.dark-slide > #top .cart-outer:hover .icon-salient-cart,body.ascend[data-header-color="custom"] #boxed #header-outer.transparent.dark-slide > #top .cart-outer:hover .cart-menu .cart-icon-wrap i,#header-outer.transparent.dark-slide > #top #logo,#header-outer.transparent.dark-slide > #top .logo-clone,#header-outer.transparent[data-lhe="default"].dark-slide #top nav .sf-menu > .current_page_item > a,#header-outer.transparent[data-lhe="default"].dark-slide #top nav .sf-menu > .current-menu-ancestor > a,#header-outer.transparent[data-lhe="default"].dark-slide #top nav > ul > li > a:hover,#header-outer.transparent[data-lhe="default"].dark-slide #top nav .sf-menu > .sfHover:not(#social-in-menu) > a,#header-outer.transparent.dark-slide #top nav > ul > .sfHover > a > span > i,body.ascend[data-header-color="custom"] #boxed #header-outer.transparent.dark-slide > #top .cart-outer:hover .cart-menu .cart-icon-wrap i,.swiper-wrapper .swiper-slide[data-color-scheme="dark"] .slider-down-arrow i.icon-default-style[class^="icon-"],.slider-prev.dark-cs i,.slider-next.dark-cs i,.swiper-container .dark-cs.slider-prev .slide-count span,.swiper-container .dark-cs.slider-next .slide-count span,#header-outer.transparent.dark-slide #top .sf-menu > li.nectar-regular-menu-item > a:hover > .nectar-menu-icon,#header-outer.transparent.dark-slide #top .sf-menu > li.nectar-regular-menu-item.sfHover > a:hover > .nectar-menu-icon,#header-outer.transparent.dark-slide #top .sf-menu > li.nectar-regular-menu-item[class*="current-"] > a:hover > .nectar-menu-icon,#header-outer.transparent.dark-slide .nectar-header-text-content:hover,.transparent.dark-slide .nectar-mobile-only.mobile-header li[class*="menu-item-btn-style-button-border"]:not(:hover) > a{color:#000000!important;}#header-outer[data-lhe="animated_underline"].transparent.dark-slide #top nav > ul > li > a .menu-title-text:after,#header-outer.dark-slide.transparent:not(.side-widget-open) #top nav>ul>li[class*="button_bordered"]>a:before,#header-outer.dark-slide .nectar-mobile-only.mobile-header li a .menu-title-text:after{border-color:#000000!important;}.swiper-container[data-bullet_style="scale"] .slider-pagination.dark-cs .swiper-pagination-switch.swiper-active-switch i,.swiper-container[data-bullet_style="scale"] .slider-pagination.dark-cs .swiper-pagination-switch:hover i{background-color:#000000;}.slider-pagination.dark-cs .swiper-pagination-switch{border:1px solid #000000;background-color:transparent;}.slider-pagination.dark-cs .swiper-pagination-switch:hover{background:none repeat scroll 0 0 #000000;}.slider-pagination.dark-cs .swiper-active-switch{background:none repeat scroll 0 0 #000000;}#fp-nav:not(.light-controls) ul li a span:after{background-color:#000000;}#fp-nav:not(.light-controls) ul li a span{box-shadow:inset 0 0 0 8px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 0 0 8px rgba(0,0,0,0.3);}body #fp-nav ul li a.active span{box-shadow:inset 0 0 0 2px rgba(0,0,0,0.8);-webkit-box-shadow:inset 0 0 0 2px rgba(0,0,0,0.8);}:root{--wp--style--root--padding-left:90px;--wp--style--root--padding-right:90px;--container-padding:90px;--nectar-resp-container-padding:90px;}@media only screen and (min-width:1000px){.container,body[data-header-format="left-header"] .container,.woocommerce-tabs .full-width-content .tab-container,.nectar-recent-posts-slider .flickity-page-dots,.post-area.standard-minimal.full-width-content .post .inner-wrap,.material #search-outer #search{max-width:1425px;width:100%;margin:0 auto;padding:0 90px;}body .container .page-submenu.stuck .container:not(.tab-container):not(.normal-container),.nectar-recent-posts-slider .flickity-page-dots,#nectar_fullscreen_rows[data-footer="default"] #footer-widgets .container,#nectar_fullscreen_rows[data-footer="default"] #copyright .container{padding:0 90px!important;}.swiper-slide .content{padding:0 90px;}body .container .container:not(.tab-container):not(.recent-post-container):not(.normal-container){width:100%!important;padding:0!important;}body .carousel-heading .container .carousel-next{right:10px;}body .carousel-heading .container .carousel-prev{right:35px;}.carousel-wrap[data-full-width="true"] .carousel-heading .portfolio-page-link{left:90px;}.carousel-wrap[data-full-width="true"] .carousel-heading{margin-left:-20px;margin-right:-20px;}#ajax-content-wrap .carousel-wrap[data-full-width="true"] .carousel-next{right:90px;}#ajax-content-wrap .carousel-wrap[data-full-width="true"] .carousel-prev{right:115px;}.carousel-wrap[data-full-width="true"]{padding:0;}.carousel-wrap[data-full-width="true"] .caroufredsel_wrapper{padding:20px;}#search-outer #search #close a{right:90px;}body.material #search-outer #search #close{right:90px;}body.material #search-outer #search #close a{right:12px;}}@media only screen and (min-width:1000px){.container,body[data-header-format="left-header"] .container,.woocommerce-tabs .full-width-content .tab-container,.nectar-recent-posts-slider .flickity-page-dots,.post-area.standard-minimal.full-width-content .post .inner-wrap,.material #search-outer #search{max-width:1425px;}}:root{--container-width:1425px;}html body{--wp--style--global--content-size:1425px;--wp--style--global--wide-size:1725px;}span.wpcf7-not-valid-tip,.woocommerce input#coupon_code,body[data-fancy-form-rcs="1"] .select2-container,body[data-fancy-form-rcs="1"] .select2-drop,body[data-fancy-form-rcs="1"] .select2-search,.select2-search input,body[data-form-style="minimal"] .container-wrap .span_12.light input[type="email"]{font-size:14px;}.container-wrap input[type=text],.container-wrap input[type=email],.container-wrap input[type=password],.container-wrap input[type=tel],.container-wrap input[type=url],.container-wrap input[type=search],.container-wrap input[type=date],.container-wrap input[type=number],.container-wrap textarea,.container-wrap select,body > #review_form_wrapper.modal input[type=text],body > #review_form_wrapper.modal textarea,body > #review_form_wrapper.modal select,body > #review_form_wrapper.modal input[type=email],.select2-container--default .select2-selection--single,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single,.woocommerce input#coupon_code,.material.woocommerce-page[data-form-style="default"] input#coupon_code,body[data-form-style="minimal"] input[type="text"],body[data-form-style="minimal"] textarea,body[data-form-style="minimal"] input[type="email"],body[data-form-style="minimal"] input[type=password],body[data-form-style="minimal"] input[type=tel],body[data-form-style="minimal"] input[type=url],body[data-form-style="minimal"] input[type=search],body[data-form-style="minimal"] input[type=date],body[data-form-style="minimal"] input[type=number],body[data-form-style="minimal"] select{font-size:14px;}#ajax-loading-screen .reveal-1{background-color:#ffffff;}#ajax-loading-screen .reveal-2{background-color:#ffffff;}@keyframes nectar_material_loader_colors{0%{stroke:#3452ff;}50%{stroke:#3452ff;}100%{stroke:#3452ff;}}.nectar-inherit-border-radius,body[data-button-style*="slightly_rounded"] .nectar-cta:not([data-style="material"]) .link_wrap,body[data-button-style*="slightly_rounded"] .nectar-button.see-through,body[data-button-style*="slightly_rounded"] .nectar-button.see-through-2,body[data-button-style*="slightly_rounded"] .nectar-button.see-through-3,body[data-button-style*="slightly_rounded"] .portfolio-filters-inline .container ul li a,body[data-button-style*="slightly_rounded"] .slide-out-widget-area-toggle[data-custom-color="true"] a:before,body[data-button-style*="slightly_rounded"] #infscr-loading,body[data-button-style*="slightly_rounded"] .flex-direction-nav a,body[data-button-style*="slightly_rounded"] #pagination span,body[data-button-style*="slightly_rounded"] #pagination a,body[data-button-style*="slightly_rounded"] #pagination .next.inactive,body[data-button-style*="slightly_rounded"] #pagination .prev.inactive,body[data-button-style*="slightly_rounded"].woocommerce nav.woocommerce-pagination ul li a,body[data-button-style*="slightly_rounded"].woocommerce .container-wrap nav.woocommerce-pagination ul li span,body[data-button-style*="slightly_rounded"] .container-wrap nav.woocommerce-pagination ul li span,body[data-button-style*="slightly_rounded"].woocommerce-cart .wc-proceed-to-checkout a.checkout-button,body[data-button-style*="slightly_rounded"] input[type=submit],body[data-button-style*="slightly_rounded"] button[type=submit],body[data-button-style*="slightly_rounded"] input[type="button"],body[data-button-style*="slightly_rounded"] button,body[data-button-style*="slightly_rounded"] .nectar-button,body[data-button-style*="slightly_rounded"] .swiper-slide .button a,body[data-button-style*="slightly_rounded"] #top nav > ul > li[class*="button_solid_color"] > a:before,body[data-button-style*="slightly_rounded"] #top nav > ul > li[class*="button_bordered"] > a:before,body[data-button-style*="slightly_rounded"] #header-outer .widget_shopping_cart a.button,body[data-button-style*="slightly_rounded"] .comment-list .reply a,body[data-button-style*="slightly_rounded"].material #page-header-bg.fullscreen-header .inner-wrap >a,body[data-button-style*="slightly_rounded"] .sharing-default-minimal .nectar-social-inner >a,body[data-button-style*="slightly_rounded"] .sharing-default-minimal .nectar-love,body[data-button-style*="slightly_rounded"].single .heading-title[data-header-style="default_minimal"] .meta-category a,body[data-button-style*="slightly_rounded"] #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a,body[data-button-style*="slightly_rounded"] .masonry.classic_enhanced .posts-container article .meta-category a,body[data-button-style*="slightly_rounded"] .blog-recent[data-style*="classic_enhanced"] .meta-category a,body[data-button-style*="slightly_rounded"] .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart a.button,li[class*="menu-item-btn-style"] > a:before,li[class*="menu-item-btn-style"] > a:after{border-radius:8px!important;-webkit-border-radius:8px!important;box-shadow:none;-webkit-transition:opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1),border-color .45s cubic-bezier(0.25,1,0.33,1),color .45s cubic-bezier(0.25,1,0.33,1),background-color .45s cubic-bezier(0.25,1,0.33,1),box-shadow .45s cubic-bezier(0.25,1,0.33,1);transition:opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1),border-color .45s cubic-bezier(0.25,1,0.33,1),color .45s cubic-bezier(0.25,1,0.33,1),background-color .45s cubic-bezier(0.25,1,0.33,1),box-shadow .45s cubic-bezier(0.25,1,0.33,1);}.nectar-shop-filters .nectar-shop-filter-trigger,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering .select2-selection--single,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering select,body[data-button-style*="slightly_rounded"] .widget_layered_nav_filters ul li a,.nectar-menu-label:before,.nectar-ext-menu-item__button,.nectar-post-grid .meta-category .style-button{border-radius:8px;}.material[data-button-style*="slightly_rounded"] .widget .tagcloud a:before,.material[data-button-style*="slightly_rounded"] #sidebar .widget .tagcloud a:before,.single[data-button-style*="slightly_rounded"] .post-area .content-inner > .post-tags a:before,.material[data-button-style*="slightly_rounded"] .widget .tagcloud a,.material[data-button-style*="slightly_rounded"] #sidebar .widget .tagcloud a,.single[data-button-style*="slightly_rounded"] .post-area .content-inner > .post-tags a,#slide-out-widget-area.fullscreen-inline-images .menuwrapper li.back >a{border-radius:8px!important;}:root{--nectar-border-radius:8px;}@media only screen and (min-width :1px) and (max-width :999px){body:not([data-m-animate="1"]) .wpb_animate_when_almost_visible,body:not([data-m-animate="1"]) .wpb_animate_when_almost_visible.wpb_start_animation{opacity:1;-webkit-animation:none;-o-animation:none;animation:none;}body:not([data-m-animate="1"]) .clients.no-carousel.fade-in-animation > div{opacity:1;}.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"]{visibility:visible!important;}img.img-with-animation[data-animation="fade-in-from-left"],.col.has-animation[data-animation="fade-in-from-left"],.wpb_column.has-animation[data-animation="fade-in-from-left"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-left"],img.img-with-animation[data-animation="fade-in-from-right"],.col.has-animation[data-animation="fade-in-from-right"],.wpb_column.has-animation[data-animation="fade-in-from-right"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-right"],.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"],.col.has-animation[data-animation="fade-in-from-bottom"],.wpb_column.has-animation[data-animation="fade-in-from-bottom"],.wpb_column.has-animation[data-animation="slight-fade-in-from-bottom"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-bottom"],img.img-with-animation[data-animation="grow-in"],.col.has-animation[data-animation="grow-in"],.wpb_column.has-animation[data-animation="grow-in"],.nectar-fancy-box.has-animation[data-animation="grow-in"],img.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.nectar-fancy-box.has-animation[data-animation="flip-in"],img.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="slight-twist"],.nectar-fancy-box.has-animation[data-animation="flip-in-vertical"],.img-with-aniamtion-wrap[data-animation="flip-in-vertical"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="flip-in"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-bottom"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-right"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-left"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="grow-in"] .hover-wrap,.nectar-split-heading .heading-line > div,.nectar-split-heading span > .inner,.nectar-split-heading[data-animation-type="twist-in"],.nectar_food_menu_item .item_description,.nectar_food_menu_item .inner,.col.has-animation[data-animation="zoom-out"],.col.has-animation[data-animation="zoom-out-high"],.nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,.column-bg-overlay-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"] .inner-wrap,.column-image-bg-wrap[data-bg-animation*="reveal-from-"],.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap,.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap .column-image-bg,.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"],.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"] > div,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] img.img-with-animation,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,.img-with-aniamtion-wrap[data-animation*="reveal-from-"],.nectar-rotating-words-title.element_stagger_words .text-wrap > span,.nectar-waypoint-el{transform:none!important;-webkit-transform:none!important;}.clients.fade-in-animation > div,img.img-with-animation,.img-with-aniamtion-wrap .hover-wrap,.col.has-animation,.wpb_column.has-animation,.nectar-fancy-box.has-animation,img.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.nectar-fancy-box.has-animation[data-animation="flip-in"],img.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.nectar-fancy-box.has-animation[data-animation="flip-in-vertical"],.nectar_food_menu_item .item_description,.nectar_food_menu_item .inner,.nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,.nectar-fancy-ul[data-animation="true"] ul li,.nectar-split-heading[data-animation-type="line-reveal-by-space"]:not(.markup-generated),.nectar-split-heading[data-animation-type="twist-in"],.nectar-split-heading span > .inner,.column-bg-overlay-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap,.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"],.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"] > div,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,.nectar-waypoint-el{opacity:1!important;}body:not([data-m-animate="1"]) .span_12.flip-in-vertical-wrap{-webkit-perspective:none;perspective:none;}.nectar_cascading_images .cascading-image .inner-wrap,.nectar-icon-list[data-animate="true"] .content,.nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,.nectar-icon-list[data-animate="true"]:after,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,.nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner,.nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell > .product{transform:none!important;-webkit-transform:none!important;opacity:1!important;animation:none!important;}.child_column[class*="nectar-mask-reveal"] .vc_column-inner{clip-path:none!important;}}@media only screen and (min-width:481px) and (max-width:1025px) and (orientation:landscape){.col.has-animation[data-animation="fade-in-from-left"],.wpb_column.has-animation[data-animation="fade-in-from-left"],.img-with-animation[data-animation="fade-in-from-right"],.img-with-animation[data-animation="fade-in-from-left"],.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"],.img-with-animation[data-animation="grow-in"],.col.has-animation[data-animation="grow-in"],.wpb_column.has-animation[data-animation="grow-in"],.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="slight-twist"],.col.has-animation[data-animation="fade-in-from-bottom"],.col.has-animation[data-animation="slight-fade-in-from-bottom"],.wpb_column.has-animation[data-animation="fade-in-from-bottom"]{transform:none!important;-webkit-transform:none!important;}.clients.fade-in-animation > div,.img-with-animation,.col.has-animation,.wpb_column.has-animation,.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"]{opacity:1!important;}body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner{transform:none;-webkit-transform:none;}.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"]{visibility:visible;}}@media only screen and (max-width:2600px){body.using-mobile-browser .col.has-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .wpb_column.has-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .img-with-animation[data-animation="fade-in-from-right"],body.using-mobile-browser .img-with-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .col.has-animation[data-animation="fade-in-from-bottom"],body.using-mobile-browser .wpb_column.has-animation[data-animation="fade-in-from-bottom"],body.using-mobile-browser .img-with-animation[data-animation="grow-in"],body.using-mobile-browser .col.has-animation[data-animation="grow-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="grow-in"],body.using-mobile-browser .divider-border[data-animate="yes"],body.using-mobile-browser .divider-small-border[data-animate="yes"],body.using-mobile-browser .img-with-aniamtion-wrap .hover-wrap,body.using-mobile-browser .img-with-animation[data-animation="flip-in"],body.using-mobile-browser .col.has-animation[data-animation="flip-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in"],body.using-mobile-browser .img-with-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .col.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation*="reveal-from"] > .vc_column-inner,body.using-mobile-browser .nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,body.using-mobile-browser .nectar_cascading_images .cascading-image .inner-wrap,body.using-mobile-browser .nectar-split-heading[data-animation-type="twist-in"],body.using-mobile-browser .nectar-split-heading span > .inner,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .content,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,body.using-mobile-browser .nectar-icon-list[data-animate="true"]:after,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,body.using-mobile-browser .nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner,body.using-mobile-browser .nectar-fancy-box.has-animation,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] img.img-with-animation,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"],body.using-mobile-browser [data-animation="zoom-out-reveal"] .nectar-link-underline,body.using-mobile-browser [data-animation="zoom-out-reveal"] .item-main:before,body.using-mobile-browser [data-animation="zoom-out-reveal"] .nectar-post-grid-item__meta-wrap,body.using-mobile-browser .nectar-post-grid[data-animation="zoom-out-reveal"] .meta-category,body.using-mobile-browser .nectar-post-grid[data-animation="zoom-out-reveal"] .meta-author,body.using-mobile-browser .nectar-post-grid:not(.nectar-flickity):not([data-animation="none"]) .nectar-post-grid-item,body.using-mobile-browser .nectar-post-grid.nectar-flickity:not([data-animation="none"]) .nectar-post-grid-item div.inner,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .post-heading span,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .meta-date,body.using-mobile-browser .nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell > .product,body.using-mobile-browser .nectar-rotating-words-title.element_stagger_words .text-wrap > span,body.using-mobile-browser .nectar-waypoint-el{transform:none!important;-webkit-transform:none!important;}body.using-mobile-browser .clients.fade-in-animation > div,body.using-mobile-browser .img-with-animation,body.using-mobile-browser .img-with-aniamtion-wrap .hover-wrap,body.using-mobile-browser .col.has-animation,body.using-mobile-browser .wpb_column.has-animation,body.using-mobile-browser .nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,body.using-mobile-browser .img-with-animation[data-animation="flip-in"],body.using-mobile-browser .col.has-animation[data-animation="flip-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in"],body.using-mobile-browser .img-with-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .col.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .nectar-fancy-box.has-animation,body.using-mobile-browser .nectar-split-heading[data-animation-type="twist-in"],body.using-mobile-browser .nectar-split-heading span > .inner,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,body.using-mobile-browser [data-animation="zoom-out-reveal"] .nectar-link-underline,body.using-mobile-browser [data-animation="zoom-out-reveal"] .item-main:before,body.using-mobile-browser [data-animation="zoom-out-reveal"] .nectar-post-grid-item__meta-wrap,body.using-mobile-browser .nectar-post-grid[data-animation="zoom-out-reveal"] .meta-category,body.using-mobile-browser .nectar-post-grid[data-animation="zoom-out-reveal"] .meta-author,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .post-heading span,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .meta-date,body.using-mobile-browser .nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell > .product,body.using-mobile-browser .nectar-waypoint-el{opacity:1!important;}body.using-mobile-browser .divider-border[data-animate="yes"],body.using-mobile-browser .divider-small-border[data-animate="yes"]{visibility:visible!important;}body.using-mobile-browser .nectar_cascading_images .cascading-image .inner-wrap,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .content,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,body.using-mobile-browser .nectar-icon-list[data-animate="true"]:after,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,body.using-mobile-browser .nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner{opacity:1!important;animation:none!important;}body.using-mobile-browser:not([data-m-animate="1"]) .wpb_animate_when_almost_visible,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_animate_when_almost_visible.wpb_start_animation{opacity:1;-webkit-animation:none;-o-animation:none;animation:none;}body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner{transform:none;-webkit-transform:none;}body.using-mobile-browser:not([data-m-animate="1"]) .nectar-split-heading .heading-line > div{transform:none;-webkit-transform:none;}body.using-mobile-browser:not([data-m-animate="1"]) .nectar-milestone:not(.animated-in){opacity:1;}body.using-mobile-browser:not([data-m-animate="1"]) .child_column[class*="nectar-mask-reveal"] .vc_column-inner{clip-path:none!important;}}#footer-outer .widget.widget_media_image img{margin-bottom:0;}#footer-outer #footer-widgets .col .tagcloud a:hover,#footer-outer .nectar-button:hover{color:#fff!important}#footer-outer,#nectar_fullscreen_rows > #footer-outer.wpb_row .full-page-inner-wrap{color:#ccc;position:relative;z-index:10;background-color:#252525}#footer-outer .row{padding:55px 0;margin-bottom:0}#footer-outer #footer-widgets[data-has-widgets="false"] .row{padding:0;}#footer-outer .widget h4{color:#777;font-size:14px;font-weight:600;margin-bottom:20px}#footer-outer .widget h3,#footer-outer .widget h5,#footer-outer .widget h6{color:inherit;}#footer-outer .widget{margin-bottom:30px}#footer-outer .widget.widget_categories ul ul,#footer-outer .widget.widget_pages ul ul,#footer-outer .widget.widget_nav_menu ul ul{margin:0!important;padding:0 0 0 20px}#footer-outer #footer-widgets .widget.widget_pages li,#footer-outer #footer-widgets .widget.widget_nav_menu li{border-bottom:0;padding:0!important}#footer-outer .widget.widget_pages li a,#footer-outer .widget.widget_nav_menu li a{padding:8px 0;display:block;}#footer-outer .widget_pages li a,#footer-outer .widget_nav_menu li a{border-bottom:1px solid #444}#ajax-content-wrap #footer-outer #footer-widgets .widget.widget_categories li a,#ajax-content-wrap #footer-outer #footer-widgets .widget.widget_archive li a{display:inline-block;border-bottom:0;}#footer-outer .widget.widget_categories >ul >li:first-child >a,#footer-outer .widget.widget_pages >ul >li:first-child >a,#footer-outer .widget.widget_nav_menu >ul >li:first-child >a{padding-top:0}#footer-outer .span_3 .widget:last-child{margin-bottom:0}#footer-outer a{color:#ccc}#footer-outer a:hover{color:#000}#footer-outer .widget ul li{margin-bottom:7px}#footer-outer[data-full-width="1"] .container{width:100%;padding:0 28px;max-width:none}#footer-outer .col{z-index:10;min-height:1px;}#footer-outer .col .widget_recent_entries span,#footer-outer .col .recent_posts_extra_widget .post-widget-text span{display:block;line-height:17px;color:#999;font-size:11px;margin-bottom:6px}#footer-outer #footer-widgets .col ul li{padding:8px 0;list-style:none;margin-bottom:0;border-bottom:1px solid #444}#footer-outer #footer-widgets .col ul li:last-child{margin-bottom:0}#footer-outer .widget.widget_nav_menu li a,#footer-outer #footer-widgets .col ul ul li:last-child{border-bottom:0!important}#footer-outer #footer-widgets .col p{padding-bottom:20px}#footer-outer #footer-widgets .col p:last-child{padding-bottom:0}#footer-outer #footer-widgets .col .widget_calendar table th{text-align:center}#footer-outer #footer-widgets .col .widget_calendar table tbody td{border:0;color:#666;padding:8px;font-size:14px}#footer-outer #footer-widgets .col .widget_calendar table{border-collapse:collapse}#footer-outer #footer-widgets .col .widget_calendar table tbody tr td:first-child{border-left:0}#footer-outer #footer-widgets .col .widget_calendar table tbody tr:nth-child(2n+1){background-color:rgba(0,0,0,0.1)}#footer-outer #footer-widgets .col .widget_calendar table th{border-bottom:0;padding-bottom:10px;font-weight:700;padding:10px;color:#666}#footer-outer #footer-widgets .col .widget_calendar table tfoot tr{margin-top:20px}#footer-outer .widget_search .search-form input[type=submit],#footer-outer .newsletter-widget form input[type=submit]{padding:10px 11px 11px 10px}#footer-outer #footer-widgets .col .tagcloud a{background-color:rgba(0,0,0,0.1);color:#A0A0A0;cursor:pointer;display:inline-block;float:left;margin:3px 3px 0 0;padding:5px 7px;position:relative;font-size:8pt;text-transform:capitalize;transition:all 0.2s linear;border-radius:2px;line-height:22px;}#footer-outer #footer-widgets .col .widget_tag_cloud:after{display:block;height:0;clear:both;content:"";visibility:hidden}#footer-outer #footer-widgets .col .tagcloud a:hover{background-color:#000;}#footer-outer #footer-widgets .col .widget_recent_comments ul li{background:none repeat scroll 0 0 rgba(0,0,0,0.15);border:medium none;display:block;margin-bottom:18px;padding:15px;position:relative}#footer-outer #footer-widgets .col .widget.widget_recent_comments ul li{padding:15px!important;}#footer-outer #footer-widgets .col .widget_recent_comments ul li:last-child{margin-bottom:0}#footer-outer #footer-widgets .col input[type=text],#footer-outer #footer-widgets .col input[type=email]{padding:10px;width:100%}body[data-form-style="minimal"] #footer-outer #footer-widgets .col input[type=text]{color:#fff}body:not([data-form-style="minimal"]) #footer-outer #footer-widgets .col input[type=text]:focus,body:not([data-form-style="minimal"]) #footer-outer #footer-widgets .col input[type=email]:focus{background-color:#fff}#footer-outer #footer-widgets .col input[type=submit]{background-color:#000;opacity:0.9;transition:opacity 0.2s linear 0s;-webkit-transition:opacity 0.2s linear 0s;}#footer-outer #footer-widgets .col input[type=submit]:hover{opacity:1}#footer-outer #footer-widgets .col .search-form form,#footer-outer #footer-widgets .col .search-form label,#footer-outer #footer-widgets .col .newsletter-widget form,#footer-outer #footer-widgets .col .search-form{line-height:12px}#footer-outer .recent_projects_widget img{background-color:#444;border-color:#4d4d4d}#footer-outer .recent_projects_widget a:hover img{border-color:#616161;background-color:#616161}#footer-outer #footer-widgets .col ul li:first-child >a,#footer-outer #footer-widgets .col ul li:first-child{padding-top:0!important}.original #footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li:first-child >a{padding-top:8px!important;}#footer-outer #footer-widgets .rsswidget img{margin-bottom:-2px;margin-right:2px}#footer-outer .recent_projects_widget img{margin-bottom:0;}@media only screen and (min-width :691px) and (max-width :999px){#footer-outer .one-fourths.span_3,#footer-outer .one-fourths.vc_span3,#footer-outer .one-fourths.vc_col-sm-3:not([class*="vc_col-xs-"]){width:48%!important;margin-bottom:2%;margin-right:15px;margin-left:0!important;padding:15px;float:left;}#footer-widgets .container .col{margin-left:15px;width:48%;}#footer-widgets .one-fourths .span_3:nth-child(2n+1){margin-left:0;}#footer-widgets .container .col.span_6,#footer-widgets .container .col.span_4{margin-left:0;margin-right:15px;padding:15px;margin-bottom:0;}#footer-widgets .container .col.span_4{margin-bottom:40px;}#footer-widgets .container .row > div:last-child,#footer-widgets .container .row > div.col_last{margin-right:0;}}@media only screen and (max-width :690px){#ajax-content-wrap #footer-widgets .container .col:nth-child(3){margin-bottom:40px;}#footer-outer #flickr img,#sidebar #flickr img{width:95px;}}@media only screen and (min-width :1px) and (max-width :999px){#footer-widgets .container .col{margin-bottom:40px;}#footer-widgets .container .col:nth-child(3),#footer-widgets .container .col:nth-child(4){margin-bottom:0;}}#footer-outer #copyright{padding:20px 0;font-size:12px;background-color:#1c1c1c;color:#777}#footer-outer #copyright li{float:left;margin-left:20px}#footer-outer #copyright .container div:last-child{margin-bottom:0}#footer-outer #copyright li a{display:block;line-height:22px;height:24px;position:relative;transition:all 0.2s linear;-webkit-transition:all 0.2s linear;background-position:center top}#footer-outer #copyright li a i{color:#777;transition:all 0.2s linear;top:0;}#footer-outer .fa-vine{font-size:16px}#footer-outer #copyright li .vimeo,#footer-outer #copyright li .behance{background-color:#666}#footer-outer #copyright li .vimeo:hover,#footer-outer #copyright li .behance:hover{background-color:#000}#footer-outer #copyright p{line-height:22px;margin-top:3px}#footer-outer #copyright .col ul{float:right}#footer-outer #copyright li .facebook{width:12px}#footer-outer #copyright li .twitter{width:20px}#footer-outer #copyright li .dribbble{width:24px}#footer-outer #copyright li .google-plus{width:20px}#footer-outer #copyright li .pinterest{width:17px}#footer-outer #copyright li .rss{width:18px}#footer-outer #copyright li .vimeo{width:20px;text-indent:-9999px}#footer-outer #copyright li .tumblr{width:21px}#footer-outer #copyright li .youtube{width:21px}#footer-outer #copyright li .linkedin{width:19px}#footer-outer #copyright li .behance{width:27px;text-indent:-9999px}#footer-outer #copyright li .instagram{width:20px}#footer-outer #copyright #social .icon-soundcloud{font-size:26px}body #footer-outer i{font-size:20px;width:auto;background-color:transparent}#footer-outer #copyright i.icon-be{font-size:24px}@media only screen and (min-width:1000px){#footer-outer[data-full-width="1"]:not([data-cols="1"]) #copyright:not([data-layout="centered"]) .col ul{padding-right:35px;}}#footer-outer[data-cols="1"] #copyright{padding:45px 0;}#footer-outer #copyright .widget_products img{display:none;}#footer-outer #copyright .widget .nectar_widget[class*="nectar_blog_posts_"][data-style="featured-image-left"] > li{margin:20px 0;}@media only screen and (min-width :691px) and (max-width :999px){#footer-outer #copyright .col{width:49%;margin-bottom:0;}}@media only screen and (max-width :690px){body #footer-outer #copyright .col ul{float:left;}body #footer-outer #copyright .col ul li:first-child{margin-left:0;}#footer-outer #social li{margin-right:10px;margin-left:0;}}#footer-outer[data-cols="1"] #copyright .social li a{height:50px;}#footer-outer[data-cols="1"] .col{text-align:center;}#footer-outer[data-cols="1"] #footer-widgets .container .col{width:100%;}#footer-outer[data-cols="1"] #footer-widgets .span_12 > div:last-child{margin-bottom:0;}#footer-outer[data-cols="1"] #copyright .col,#footer-outer[data-cols="1"] #copyright .col ul{width:100%;float:none;}#footer-outer[data-cols="1"] #copyright #social li a{display:block;height:50px;width:50px;}#footer-outer[data-cols="1"] #copyright li a i{-webkit-transition:all .45s cubic-bezier(0.25,1,0.33,1);transition:all .45s cubic-bezier(0.25,1,0.33,1);font-size:20px;height:50px;width:50px;line-height:48px;}#footer-outer[data-cols="1"]:not([data-custom-color="true"]) #copyright li a:hover i{border-color:#fff;color:#fff;}#footer-outer[data-cols="1"] #copyright .col ul li{margin-bottom:25px;}.ascend #footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li:first-child,.material #footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li:first-child{padding-top:4px!important;}#footer-outer[data-cols="1"] #copyright li,#footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li{float:none;display:inline-block;margin:0 10px;width:auto;}#footer-outer[data-cols="1"] #copyright .widget{margin-bottom:0;}#footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li,#footer-outer[data-cols="1"] #copyright .widget_nav_menu li,#footer-outer[data-cols="1"] #copyright .widget_pages li{vertical-align:top;text-align:left;margin:0 15px;}#footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li ul,#footer-outer[data-cols="1"] #copyright .widget_nav_menu li ul,#footer-outer[data-cols="1"] #copyright .widget_pages li ul{padding-left:0;margin-left:0;}#footer-outer[data-cols="1"] #footer-widgets .widget.widget_nav_menu li ul li,#footer-outer[data-cols="1"] #copyright .widget_nav_menu li ul li,#footer-outer[data-cols="1"] #copyright .widget_pages li ul li{display:block;margin-left:0;}#footer-outer[data-cols="1"] #copyright .widget [data-style="minimal-counter"] > li::before,#footer-outer[data-cols="1"] #copyright .arrow-circle{display:none;}#footer-outer[data-cols="1"] #copyright .widget_search{margin:20px 0;}#footer-outer[data-cols="1"] #copyright li a i:after{position:absolute;-webkit-transition:all .45s cubic-bezier(0.25,1,0.33,1);transition:all .45s cubic-bezier(0.25,1,0.33,1);pointer-events:none;display:block;content:"";top:0;left:0;opacity:0.2;border-radius:50%;height:46px;width:46px;}#footer-outer[data-cols="1"] #copyright a i:after{border:2px solid #fff;}#footer-outer[data-cols="1"] #copyright li a:hover i:after{opacity:1;}body #footer-outer[data-cols="1"][data-disable-copyright="false"] .row{padding-top:70px;padding-bottom:40px;}#footer-outer[data-cols="1"][data-disable-copyright="false"] #copyright{padding-bottom:70px;}body #footer-outer[data-cols="1"][data-disable-copyright="false"][data-using-widget-area="false"][data-copyright-line="false"][data-matching-section-color="true"] #copyright,body #footer-outer[data-cols="1"][data-disable-copyright="false"][data-using-widget-area="false"] #copyright{padding-top:70px;}body #footer-outer[data-cols="1"][data-disable-copyright="false"][data-copyright-line="false"][data-matching-section-color="true"] .row{padding-bottom:0;}body #footer-outer[data-cols="1"][data-disable-copyright="false"][data-copyright-line="false"][data-matching-section-color="true"] #copyright{padding-top:30px;}#footer-outer[data-cols="1"] #copyright[data-layout="centered"] .col .social li{margin-top:0;}#to-top{display:block;position:fixed;text-align:center;line-height:12px;right:17px;bottom:0;transform:translateY(105%);color:#fff;cursor:pointer;border-radius:2px;-webkit-border-radius:2px;z-index:9994;height:29px;width:29px;background-color:rgba(0,0,0,0.25);background-repeat:no-repeat;background-position:center;transition:background-color 0.1s linear;-webkit-transition:background-color 0.1s linear;}body[data-button-style*="rounded"] #to-top{transition:box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.1s linear;-webkit-transition:-webkit-box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.1s linear;background-color:rgba(0,0,0,0.25)}body[data-button-style*="rounded"] #to-top:hover,body[data-button-style*="rounded"] #to-top.dark:hover{transition:box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.05s linear 0.25s;-webkit-transition:-webkit-box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.05s linear 0.25s;box-shadow:1px 2px 3px rgba(0,0,0,0.16);background-color:transparent!important}body[data-button-style*="rounded"] #to-top:after,body[data-button-style*="rounded"] #to-top:before{display:block;content:" ";height:100%;width:100%;position:absolute;top:0;left:0;z-index:1;background-color:#000;transform:scale(0);-webkit-transform:scale(0);transition:all 0.3s cubic-bezier(.55,0,.1,1);-webkit-transition:all 0.3s cubic-bezier(.55,0,.1,1);border-radius:100px;-webkit-border-radius:100px}body[data-button-style*="rounded"] #to-top:before{background-color:rgba(255,255,255,0.25);transform:scale(1);-webkit-transform:scale(1);transition:all 0.5s cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:all 0.5s cubic-bezier(0.165,0.84,0.44,1);opacity:0;z-index:2}body[data-button-style*="rounded"] #to-top:hover:after{transform:scale(1);-webkit-transform:scale(1);}body[data-button-style*="rounded"] #to-top{overflow:hidden}body[data-button-style*="rounded"] #to-top i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top i.fa-angle-up{-webkit-transform:translate(0,0px);transform:translate(0,0px);transition:transform 0.2s ease;-webkit-transition:transform 0.2s ease;}body[data-button-style*="rounded"] #to-top:hover i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top:hover i.fa-angle-up,body[data-button-style*="rounded"] #to-top.hovered i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top.hovered i.fa-angle-up{-webkit-transform:translate(0,-29px);transform:translate(0,-29px)}body[data-button-style*="rounded"] #to-top:active:before{opacity:1}#to-top i{line-height:29px;width:29px;height:29px;font-size:14px;top:0;left:0;text-align:center;position:relative;z-index:10;background-color:transparent}#to-top:hover,#to-top.dark:hover{background-color:#000}#to-top.dark{background-color:rgba(0,0,0,0.87)}body[data-button-style*="slightly_rounded"] #to-top{border-radius:200px!important;-webkit-border-radius:200px!important;}#ajax-content-wrap .container-wrap{padding-bottom:0;}.woocommerce-checkout .nectar-global-section.before-footer,.woocommerce-account .nectar-global-section.before-footer,.woocommerce-cart .nectar-global-section.before-footer,body:not(.page):not(.single-post):not(.single-portfolio) .nectar-global-section.before-footer,.single-portfolio #regular_portfolio [data-nav-pos="in_header"] .nectar-global-section.before-footer{padding-top:40px;}.container-wrap .row >.wpb_row:not(.full-width-section):not(.full-width-content):last-child{margin-bottom:1.5em;}.nectar-waypoint-el{transition:transform 750ms cubic-bezier(0.33,1,0.68,1),opacity 450ms ease;}body,.toggle h3 a,body .ui-widget,table,select,.bar_graph li span strong,#slide-out-widget-area .tagcloud a,body .container .woocommerce-message a.button,#search-results .result .title span,.woocommerce ul.products li.product h3,.woocommerce-page ul.products li.product h3,.row .col.section-title .nectar-love span,body .nectar-love span,body .nectar-social .nectar-love .nectar-love-count,body .carousel-heading h2,.sharing-default-minimal .nectar-social .social-text,body .sharing-default-minimal .nectar-love,.widget ul.nectar_widget[class*="nectar_blog_posts_"] > li .post-date,.single [data-post-hs="default_minimal"] #single-below-header span,.single .heading-title[data-header-style="default_minimal"] #single-below-header span,#header-outer .nectar-image-link-widget .image-link-content span,#slide-out-widget-area.fullscreen .nectar-image-link-widget .image-link-content span,#slide-out-widget-area.fullscreen-alt .nectar-image-link-widget .image-link-content span,.nectar-header-text-content,#slide-out-widget-area .nectar-ext-menu-item .menu-item-desc,.woocommerce-checkout-review-order-table .product-info .product-quantity,#ajax-content-wrap .nectar-shop-header-bottom .widget_layered_nav_filters ul li a,#ajax-content-wrap .nectar-sticky-tabs .wpb_tabs_nav li .menu-content > a{font-family:Helvetica,sans-serif;font-size:18px;line-height:28px;font-weight:400;}.bold,strong,b{font-family:Helvetica,sans-serif;font-weight:600;}.single #single-below-header span{font-family:Helvetica,sans-serif;}:root{--nectar-body-line-height:28px;}:root{--nectar-body-font-size:18px;}.nectar-fancy-ul ul li .icon-default-style[class^="icon-"]{line-height:28px;}#ajax-content-wrap .nectar-shop-header-bottom .widget_layered_nav_filters ul li a,.nectar-shop-header-bottom .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering select{font-weight:400!important;}.nectar-shop-header-bottom .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering select{font-family:Helvetica,sans-serif!important;}@media only screen and (max-width:1300px) and (min-width:1000px){body{font-size:18px;line-height:28px;}}@media only screen and (max-width:999px) and (min-width:691px){body{font-size:18px;line-height:28px;}}@media only screen and (max-width:690px){body{font-size:18px;line-height:28px;}}#header-outer #logo.no-image,#header-outer .logo-clone.no-image,#header-outer[data-format="centered-menu"] .logo-spacing[data-using-image="false"],#header-outer[data-format="centered-logo-between-menu"] .logo-spacing[data-using-image="false"]{font-family:Montserrat;font-size:18px;line-height:28px;font-weight:400;}#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 #logo.no-image,#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 .logo-clone.no-image{font-size:15px;}@media only screen and (max-width:999px){#header-outer[data-format="centered-menu-bottom-bar"] .logo-clone.no-image,#header-outer[data-format="centered-menu-bottom-bar"] #logo.no-image{font-size:15px;}}#top nav > ul > li > a,.span_3 .pull-left-wrap > ul > li > a,body.material #search-outer #search input[type="text"],#top ul .slide-out-widget-area-toggle a i.label,#top .span_9 > .slide-out-widget-area-toggle a.using-label .label,#header-secondary-outer .nectar-center-text,#slide-out-widget-area .secondary-header-text,#header-outer #mobile-menu ul li > a,#header-outer #mobile-menu .secondary-header-text,.nectar-mobile-only.mobile-header a{font-family:Montserrat;font-size:15px;line-height:18px;font-weight:400;}#top nav > ul > li[class*="button_solid_color"] > a:before,#header-outer.transparent #top nav > ul > li[class*="button_solid_color"] > a:before,#header-outer #top .slide-out-widget-area-toggle[data-custom-color="true"] a:before{height:26px;}#top nav > ul > li[class*="button_bordered"] > a:before,#header-outer.transparent #top nav > ul > li[class*="button_bordered"] > a:before{height:36px;}#top .sf-menu li ul li.menu-item a,#header-secondary-outer nav > ul > li > a,#header-secondary-outer .sf-menu li ul li a,#header-secondary-outer ul ul li a,#header-outer .widget_shopping_cart .cart_list a,.nectar-slide-in-cart.style_slide_in_click .close-cart{font-family:Montserrat;font-size:15px;line-height:24px;font-weight:400;}#page-header-bg h1,body h1,body .row .col.section-title h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2,body #error-404 h1,[data-inherit-heading-family="h1"]{font-family:Montserrat;text-transform:none;font-size:56px;line-height:64px;font-weight:200;}@media only screen and (max-width:1300px) and (min-width:1000px){body .row .col.section-title h1,body h1,.full-width-content .recent-post-container .inner-wrap h2{font-size:42px;line-height:48px;}}@media only screen and (max-width:999px) and (min-width:691px){body .row .col.section-title h1,body h1,html body .row .col.section-title.span_12 h1,#page-header-bg .span_6 h1,#page-header-bg.fullscreen-header .span_6 h1,body .featured-media-under-header h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2{font-size:39.2px;line-height:44.8px;}.full-width-content .recent-post-container .inner-wrap h2{font-size:39.2px;line-height:44.8px;}.wpb_wrapper h1.vc_custom_heading{font-size:39.2px!important;line-height:44.8px!important;}}@media only screen and (max-width:690px){body .row .col.section-title h1,body h1,html body .row .col.section-title.span_12 h1,body.single.single-post .row .col.section-title.span_12 h1,#page-header-bg .span_6 h1,#page-header-bg.fullscreen-header .span_6 h1,body .featured-media-under-header h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2{font-size:36.4px;line-height:41.6px;}.wpb_wrapper h1.vc_custom_heading{font-size:36.4px!important;line-height:41.6px!important;}}#page-header-bg h2,body h2,article.post .post-header h2,article.post.quote .post-content h2,article.post.link .post-content h2,#call-to-action span,.woocommerce .full-width-tabs #reviews h3,.row .col.section-title h2,.nectar_single_testimonial[data-style="bold"] p,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,body #error-404 h2,.woocommerce-page .woocommerce p.cart-empty,.nectar-ext-menu-item .inherit-h2 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#mobile-menu .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,#header-outer .nectar-inherit-h2,[data-inherit-heading-family="h2"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h2{font-family:Montserrat;text-transform:none;font-size:36px;line-height:48px;font-weight:300;}.single-product div.product h1.product_title,.nectar-shop-header .page-title{font-size:36px;line-height:48px;}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:36px;}@media only screen and (max-width:1300px) and (min-width:1000px){body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:30.6px;line-height:40.8px;}}@media only screen and (max-width:999px) and (min-width:691px){.col h2,body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,.nectar_single_testimonial[data-style="bold"] p,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#mobile-menu .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:28.8px;line-height:38.4px;}.wpb_wrapper h2.vc_custom_heading{font-size:28.8px!important;line-height:38.4px!important;}}@media only screen and (max-width:690px){.col h2,body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,.nectar_single_testimonial[data-style="bold"] p,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:27px;line-height:36px;}.wpb_wrapper h2.vc_custom_heading{font-size:27px!important;line-height:36px!important;}}body h3,.row .col h3,.toggle > h3.toggle-title a,.ascend #respond h3,.ascend h3#comments,.woocommerce ul.products li.product.text_on_hover h3,.masonry.classic_enhanced .masonry-blog-item h3.title,.woocommerce ul.products li.product.material h3,.woocommerce-page ul.products li.product.material h3,.portfolio-items[data-ps="8"] .col h3,.nectar-hor-list-item[data-font-family="h3"],.woocommerce ul.products li.product h2,.nectar-quick-view-box h1,.nectar-ext-menu-item .inherit-h3 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#mobile-menu .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,#header-outer .nectar-inherit-h3,[data-inherit-heading-family="h3"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h3,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h3,body.woocommerce div.product p.price.nectar-inherit-h3 ins{font-family:Montserrat;text-transform:none;font-size:28px;line-height:40px;font-weight:300;}@media only screen and (min-width:1000px){.ascend .comments-section .comment-wrap.full-width-section > h3#comments,.blog_next_prev_buttons[data-post-header-style="default_minimal"] .col h3{font-size:47.6px;line-height:55.6px;}#ajax-content-wrap .masonry.classic_enhanced .masonry-blog-item.large_featured h3.title{font-size:42px;line-height:60px;}}@media only screen and (min-width:1300px) and (max-width:1500px){body .portfolio-items.constrain-max-cols.masonry-items .col.elastic-portfolio-item h3{font-size:23.8px;line-height:34px;}}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:28px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:23.8px;line-height:34px;}}@media only screen and (max-width:999px) and (min-width:691px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:22.4px;line-height:32px;}.wpb_wrapper h3.vc_custom_heading{font-size:22.4px!important;line-height:32px!important;}}@media only screen and (max-width:690px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#mobile-menu .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:22.4px;line-height:32px;}.wpb_wrapper h3.vc_custom_heading{font-size:22.4px!important;line-height:32px!important;}}@media only screen and (min-width:1300px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:39.2px;}}@media only screen and (max-width:1300px) and (min-width:1000px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:33.32px;}}@media only screen and (max-width:999px) and (min-width:691px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:31.36px;}}body h4,.row .col h4,.portfolio-items .work-meta h4,.list-icon-holder[data-icon_type="numerical"] span,.portfolio-items .col.span_3 .work-meta h4,#respond h3,.blog-recent.related-posts h3.title,h3#comments,.portfolio-items[data-ps="6"] .work-meta h4,.nectar-hor-list-item[data-font-family="h4"],.toggles[data-style="minimal_small"] .toggle > h3 a,.woocommerce #reviews #reply-title,p.woocommerce.add_to_cart_inline > span.woocommerce-Price-amount,p.woocommerce.add_to_cart_inline ins > span.woocommerce-Price-amount,#header-outer .total,#header-outer .total strong,.nectar-ext-menu-item .inherit-h4 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,#mobile-menu .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,#header-outer .nectar-inherit-h4,.archive.woocommerce .container-wrap > .main-content #sidebar > .header h4,[data-inherit-heading-family="h4"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h4,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h4,body.woocommerce div.product p.price.nectar-inherit-h4 ins{font-family:Montserrat;text-transform:none;font-size:24px;line-height:36px;font-weight:300;}@media only screen and (min-width:691px){.portfolio-items[data-ps="6"] .wide_tall .work-meta h4{font-size:40.8px!important;line-height:48.8px!important;}.nectar-slide-in-cart .widget_shopping_cart .cart_list .mini_cart_item > a:not(.remove){font-family:Montserrat!important;font-weight:300!important;}}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:24px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .col h4,body h4,.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:24px;line-height:36px;}}@media only screen and (max-width:999px) and (min-width:691px){.row .col h4,body h4,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:24px;line-height:36px;}}@media only screen and (max-width:690px){.row .col h4,body h4,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.archive.woocommerce .container-wrap > .main-content #sidebar > .header h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:21.6px;line-height:32.4px;}}body h5,.row .col h5,.portfolio-items .work-item.style-3-alt p,.nectar-hor-list-item[data-font-family="h5"],.nectar-ext-menu-item .inherit-h5 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h5,#ajax-content-wrap .nectar-inherit-h5,#header-outer .nectar-inherit-h5,[data-inherit-heading-family="h5"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h5,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h5,body.woocommerce div.product p.price.nectar-inherit-h5 ins{font-family:Montserrat;text-transform:uppercase;font-size:20px;line-height:32px;font-weight:300;}body .wpb_column > .wpb_wrapper > .morphing-outline .inner > h5{font-size:27px}@media only screen and (max-width:1300px) and (min-width:1000px){.row .col h5,body h5,#ajax-content-wrap .nectar-inherit-h5{font-size:20px;line-height:32px;}}@media only screen and (max-width:999px) and (min-width:691px){.row .col h5,body h5,#ajax-content-wrap .nectar-inherit-h5{font-size:20px;line-height:32px;}}@media only screen and (max-width:690px){.row .col h5,body h5,#slide-out-widget-area .nectar-ext-menu-item .inherit-h5,#ajax-content-wrap .nectar-inherit-h5{font-size:20px;line-height:32px;}}body #page-header-bg h1,html body .row .col.section-title h1,.nectar-box-roll .overlaid-content h1,.featured-media-under-header h1{font-family:Montserrat;text-transform:capitalize;font-size:36px;line-height:48px;font-weight:400;}@media only screen and (min-width:691px) and (max-width:999px){.overlaid-content h1{font-size:25.2px!important;line-height:29.2px!important;}}@media only screen and (min-width:1000px) and (max-width:1300px){#page-header-bg .span_6 h1,.nectar-box-roll .overlaid-content h1,body .featured-media-under-header h1{font-size:30.6px;line-height:40.8px;}}@media only screen and (min-width:1300px) and (max-width:1500px){#page-header-bg .span_6 h1,.nectar-box-roll .overlaid-content h1{font-size:32.4px;line-height:43.2px;}}@media only screen and (max-width:690px){.overlaid-content h1{font-size:16.2px!important;line-height:21.6px!important;}}
#header-space{background-color:#ffffff}@media only screen and (min-width:1000px){body #ajax-content-wrap.no-scroll{min-height:calc(100vh - 122px);height:calc(100vh - 122px)!important;}}@media only screen and (min-width:1000px){#page-header-wrap.fullscreen-header,#page-header-wrap.fullscreen-header #page-header-bg,html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header,.nectar_fullscreen_zoom_recent_projects,#nectar_fullscreen_rows:not(.afterLoaded) > div{height:calc(100vh - 121px);}.wpb_row.vc_row-o-full-height.top-level,.wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 121px);}html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header{top:122px;}.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 120px)!important;}.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 120px - 32px)!important;}}.admin-bar[class*="page-template-template-no-header"] .wpb_row.vc_row-o-full-height.top-level,.admin-bar[class*="page-template-template-no-header"] .wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 32px);}body[class*="page-template-template-no-header"] .wpb_row.vc_row-o-full-height.top-level,body[class*="page-template-template-no-header"] .wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:100vh;}@media only screen and (max-width:999px){.using-mobile-browser #nectar_fullscreen_rows:not(.afterLoaded):not([data-mobile-disable="on"]) > div{height:calc(100vh - 106px);}.using-mobile-browser .wpb_row.vc_row-o-full-height.top-level,.using-mobile-browser .wpb_row.vc_row-o-full-height.top-level > .col.span_12,[data-permanent-transparent="1"].using-mobile-browser .wpb_row.vc_row-o-full-height.top-level,[data-permanent-transparent="1"].using-mobile-browser .wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 106px);}html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header,.nectar_fullscreen_zoom_recent_projects,.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container,#nectar_fullscreen_rows:not(.afterLoaded):not([data-mobile-disable="on"]) > div{height:calc(100vh - 53px);}.wpb_row.vc_row-o-full-height.top-level,.wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 53px);}body[data-transparent-header="false"] #ajax-content-wrap.no-scroll{min-height:calc(100vh - 53px);height:calc(100vh - 53px);}}#nectar_fullscreen_rows{background-color:transparent;}.nectar-shape-divider-wrap{position:absolute;top:auto;bottom:0;left:0;right:0;width:100%;height:150px;z-index:3;transform:translateZ(0);}.post-area.span_9 .nectar-shape-divider-wrap{overflow:hidden;}.nectar-shape-divider-wrap[data-front="true"]{z-index:50;}.nectar-shape-divider-wrap[data-style="waves_opacity"] svg path:first-child{opacity:0.6;}.nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(1),.nectar-shape-divider-wrap[data-style="waves_opacity_alt"] svg path:nth-child(1){opacity:0.15;}.nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(2),.nectar-shape-divider-wrap[data-style="waves_opacity_alt"] svg path:nth-child(2){opacity:0.3;}.nectar-shape-divider{width:100%;left:0;bottom:-1px;height:100%;position:absolute;}.nectar-shape-divider-wrap.no-color .nectar-shape-divider{fill:#fff;}@media only screen and (max-width:999px){.nectar-shape-divider-wrap:not([data-using-percent-val="true"]) .nectar-shape-divider{height:75%;}.nectar-shape-divider-wrap[data-style="clouds"]:not([data-using-percent-val="true"]) .nectar-shape-divider{height:55%;}}@media only screen and (max-width:690px){.nectar-shape-divider-wrap:not([data-using-percent-val="true"]) .nectar-shape-divider{height:33%;}.nectar-shape-divider-wrap[data-style="clouds"]:not([data-using-percent-val="true"]) .nectar-shape-divider{height:33%;}}#ajax-content-wrap .nectar-shape-divider-wrap[data-height="1"] .nectar-shape-divider,#ajax-content-wrap .nectar-shape-divider-wrap[data-height="1px"] .nectar-shape-divider{height:1px;}@media only screen and (max-width:690px){body .vc_row.bottom_padding_phone_6pct{padding-bottom:6%!important;}}@media only screen and (max-width:690px){body .vc_row.top_padding_phone_6pct{padding-top:6%!important;}}@media only screen and (max-width:690px){body .vc_row.bottom_padding_phone_7pct{padding-bottom:7%!important;}}@media only screen and (max-width:690px){body .vc_row.top_padding_phone_7pct{padding-top:7%!important;}}.screen-reader-text,.nectar-skip-to-content:not(:focus){border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;}.row .col img:not([srcset]){width:auto;}.row .col img.img-with-animation.nectar-lazy:not([srcset]){width:100%;}
</style>
<link rel='stylesheet' id='salient-wp-menu-dynamic-css' href='https://pytorch.org/wp-content/uploads/salient/menu-dynamic.css?ver=20916' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='https://pytorch.org/wp-content/themes/salient/css/build/plugins/js_composer.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='pytorch-style-css' href='https://pytorch.org/wp-content/themes/salient-child/sites/pytorch/pytorch.css?ver=17.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='prism-styles-css' href='https://pytorch.org/wp-content/themes/salient-child/vc-addons/css/prism.css?ver=17.4.1' type='text/css' media='all' />
<script type="text/javascript" nonce="6afb9b98c2">
var pt_published_versions = {"preview,pip,linux,accnone,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,linux,cuda.x,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu126","preview,pip,linux,cuda.y,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu128","preview,pip,linux,cuda.z,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu130","preview,pip,linux,rocm5.x,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/rocm7.0","preview,libtorch,linux,accnone,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-shared-with-deps-latest.zip<\/a><br \/>","preview,libtorch,linux,cuda.x,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-shared-with-deps-latest.zip<\/a><br \/>","preview,libtorch,linux,cuda.y,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-shared-with-deps-latest.zip<\/a><br \/>","preview,libtorch,linux,cuda.z,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-shared-with-deps-latest.zip<\/a><br \/>","preview,libtorch,linux,rocm5.x,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/rocm7.0\/libtorch-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/rocm7.0\/libtorch-shared-with-deps-latest.zip<\/a><br \/>","preview,pip,macos,cuda.x,python":"# CUDA is not available on MacOS, please use default packagepip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,macos,cuda.y,python":"# CUDA is not available on MacOS, please use default packagepip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,macos,cuda.z,python":"# CUDA is not available on MacOS, please use default packagepip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,macos,rocm5.x,python":"# ROCm is not available on MacOS, please use default packagepip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,macos,accnone,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,libtorch,macos,accnone,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip<\/a><br \/>","preview,libtorch,macos,cuda.x,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip<\/a><br \/>","preview,libtorch,macos,cuda.y,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip<\/a><br \/>","preview,libtorch,macos,cuda.z,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip<\/a><br \/>","preview,libtorch,macos,rocm5.x,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-macos-arm64-latest.zip<\/a><br \/>","preview,pip,windows,accnone,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cpu","preview,pip,windows,cuda.x,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu126","preview,pip,windows,cuda.y,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu128","preview,pip,windows,cuda.z,python":"pip3 install --pre torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/nightly\/cu130","preview,pip,windows,rocm5.x,python":"<b>NOTE:<\/b> ROCm is not available on Windows","preview,libtorch,windows,accnone,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-win-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-win-shared-with-deps-latest.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-win-shared-with-deps-debug-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cpu\/libtorch-win-shared-with-deps-debug-latest.zip<\/a><br \/>","preview,libtorch,windows,cuda.x,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-win-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-win-shared-with-deps-latest.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-win-shared-with-deps-debug-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu126\/libtorch-win-shared-with-deps-debug-latest.zip<\/a><br \/>","preview,libtorch,windows,cuda.y,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-win-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-win-shared-with-deps-latest.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-win-shared-with-deps-debug-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu128\/libtorch-win-shared-with-deps-debug-latest.zip<\/a><br \/>","preview,libtorch,windows,cuda.z,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-win-shared-with-deps-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-win-shared-with-deps-latest.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-win-shared-with-deps-debug-latest.zip\">https:\/\/download.pytorch.org\/libtorch\/nightly\/cu130\/libtorch-win-shared-with-deps-debug-latest.zip<\/a><br \/>","preview,libtorch,windows,rocm5.x,cplusplus":"<b>NOTE:<\/b> ROCm is not available on Windows","stable,pip,linux,accnone,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cpu","stable,pip,linux,cuda.x,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cu126","stable,pip,linux,cuda.y,python":"pip3 install torch torchvision","stable,pip,linux,cuda.z,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cu130","stable,pip,linux,rocm5.x,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/rocm6.4","stable,libtorch,linux,accnone,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-shared-with-deps-2.9.0%2Bcpu.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-shared-with-deps-2.9.0%2Bcpu.zip<\/a><br \/>","stable,libtorch,linux,cuda.x,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-shared-with-deps-2.9.0%2Bcu126.zip\">https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-shared-with-deps-2.9.0%2Bcu126.zip<\/a><br \/>","stable,libtorch,linux,cuda.y,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-shared-with-deps-2.9.0%2Bcu128.zip\">https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-shared-with-deps-2.9.0%2Bcu128.zip<\/a><br \/>","stable,libtorch,linux,cuda.z,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-shared-with-deps-2.9.0%2Bcu130.zip\">https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-shared-with-deps-2.9.0%2Bcu130.zip<\/a><br \/>","stable,libtorch,linux,rocm5.x,cplusplus":"Download here (cxx11 ABI):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/rocm6.4\/libtorch-shared-with-deps-2.9.0%2Brocm6.4.zip\">https:\/\/download.pytorch.org\/libtorch\/rocm6.4\/libtorch-shared-with-deps-2.9.0%2Brocm6.4.zip<\/a><br \/>","stable,pip,macos,cuda.x,python":"# CUDA is not available on MacOS, please use default packagepip3 install torch torchvision","stable,pip,macos,cuda.y,python":"# CUDA is not available on MacOS, please use default packagepip3 install torch torchvision","stable,pip,macos,cuda.z,python":"# CUDA is not available on MacOS, please use default packagepip3 install torch torchvision","stable,pip,macos,rocm5.x,python":"# ROCm is not available on MacOS, please use default packagepip3 install torch torchvision","stable,pip,macos,accnone,python":"pip3 install torch torchvision","stable,libtorch,macos,accnone,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip<\/a><br \/>","stable,libtorch,macos,cuda.x,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip<\/a><br \/>","stable,libtorch,macos,cuda.y,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip<\/a><br \/>","stable,libtorch,macos,cuda.z,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip<\/a><br \/>","stable,libtorch,macos,rocm5.x,cplusplus":"Download arm64 libtorch here (ROCm and CUDA are not supported):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-macos-arm64-2.9.0.zip<\/a><br \/>","stable,pip,windows,accnone,python":"pip3 install torch torchvision","stable,pip,windows,cuda.x,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cu126","stable,pip,windows,cuda.y,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cu128","stable,pip,windows,cuda.z,python":"pip3 install torch torchvision --index-url https:\/\/download.pytorch.org\/whl\/cu130","stable,pip,windows,rocm5.x,python":"<b>NOTE:<\/b> ROCm is not available on Windows","stable,libtorch,windows,accnone,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-win-shared-with-deps-2.9.0%2Bcpu.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-win-shared-with-deps-2.9.0%2Bcpu.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcpu.zip\">https:\/\/download.pytorch.org\/libtorch\/cpu\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcpu.zip<\/a><br \/>","stable,libtorch,windows,cuda.x,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-win-shared-with-deps-2.9.0%2Bcu126.zip\">https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-win-shared-with-deps-2.9.0%2Bcu126.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu126.zip\">https:\/\/download.pytorch.org\/libtorch\/cu126\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu126.zip<\/a><br \/>","stable,libtorch,windows,cuda.y,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-win-shared-with-deps-2.9.0%2Bcu128.zip\">https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-win-shared-with-deps-2.9.0%2Bcu128.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu128.zip\">https:\/\/download.pytorch.org\/libtorch\/cu128\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu128.zip<\/a><br \/>","stable,libtorch,windows,cuda.z,cplusplus":"Download here (Release version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-win-shared-with-deps-2.9.0%2Bcu130.zip\">https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-win-shared-with-deps-2.9.0%2Bcu130.zip<\/a><br \/>Download here (Debug version):<br \/><a href=\"https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu130.zip\">https:\/\/download.pytorch.org\/libtorch\/cu130\/libtorch-win-shared-with-deps-debug-2.9.0%2Bcu130.zip<\/a><br \/>","stable,libtorch,windows,rocm5.x,cplusplus":"<b>NOTE:<\/b> ROCm is not available on Windows","latest_stable":"2.9.0"};
var pt_stable_version = "Stable (2.9.0)";
var pt_version_map = {"nightly":{"accnone":["cpu",""],"cuda.x":["cuda","12.6"],"cuda.y":["cuda","12.8"],"cuda.z":["cuda","13.0"],"rocm5.x":["rocm","7.0"]},"release":{"accnone":["cpu",""],"cuda.x":["cuda","12.6"],"cuda.y":["cuda","12.8"],"cuda.z":["cuda","13.0"],"rocm5.x":["rocm","6.4"]}};
</script>
<script type="text/javascript" src="https://pytorch.org/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" nonce="6afb9b98c2"></script>
<script type="text/javascript" src="https://pytorch.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" nonce="6afb9b98c2"></script>
<script type="text/javascript" src="https://pytorch.org/wp-content/plugins/lf-pt-matrix/public/js/matrix.js?ver=1.0.5" id="lf-pt-matrix-js" nonce="6afb9b98c2"></script>
<script type="text/javascript" id="search-filter-plugin-build-js-extra" nonce="6afb9b98c2">
/* <![CDATA[ */
var SF_LDATA = {"ajax_url":"https:\/\/pytorch.org\/wp-admin\/admin-ajax.php","home_url":"https:\/\/pytorch.org\/","extensions":[]};
/* ]]> */
</script>
<script type="text/javascript" src="https://pytorch.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.5.21" id="search-filter-plugin-build-js" nonce="6afb9b98c2"></script>
<script type="text/javascript" src="https://pytorch.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.5.21" id="search-filter-plugin-chosen-js" nonce="6afb9b98c2"></script>
<script type="text/javascript" nonce="6afb9b98c2"></script><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pytorch.org/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.8.3" />
<link rel="canonical" href="index.html" />
<link rel='shortlink' href='https://pytorch.org/?p=2159' />
<meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="https://pytorch.org"><link rel="alternate" href="https://pytorch.org/wp-json/tribe/events/v1/" />
<style>
.button_social_group .fa-wechat:after {
content: "\f1d7";
}
.button_social_group .fa-weibo::before,
.button_social_group .fa-weibo::after {
content: "\f18a";
}
</style><script type="text/javascript" nonce="6afb9b98c2"> var root = document.getElementsByTagName( "html" )[0]; root.setAttribute( "class", "js" ); </script><!-- Google Tag Manager -->
<script type="text/javascript" nonce="6afb9b98c2">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T8XT4PS');</script>
<!-- End Google Tag Manager --><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<meta name="description" content="Set up PyTorch easily with local installation or supported cloud platforms."><meta property="og:locale" content="en_US"><meta property="og:type" content="article"><meta property="og:url" content="https://pytorch.org/get-started/locally/"><meta property="og:site_name" content="PyTorch"><meta property="og:title" content="Get Started"><meta property="og:description" content="Set up PyTorch easily with local installation or supported cloud platforms."><meta property="og:image" content="https://pytorch.org/wp-content/uploads/2025/01/pytorch_seo.png"><meta property="og:image:width" content="1920"><meta property="og:image:height" content="1080"><meta property="og:image:type" content="image/png"><meta property="twitter:card" content="summary_large_image"><meta property="twitter:title" content="Get Started"><meta property="twitter:description" content="Set up PyTorch easily with local installation or supported cloud platforms."><link rel="icon" href="https://pytorch.org/wp-content/uploads/2024/10/cropped-favicon-32x32.webp" sizes="32x32" />
<link rel="icon" href="https://pytorch.org/wp-content/uploads/2024/10/cropped-favicon-192x192.webp" sizes="192x192" />
<link rel="apple-touch-icon" href="https://pytorch.org/wp-content/uploads/2024/10/cropped-favicon-180x180.webp" />
<meta name="msapplication-TileImage" content="https://pytorch.org/wp-content/uploads/2024/10/cropped-favicon-270x270.webp" />
<style type="text/css" id="wp-custom-css">
.disabled-button {
pointer-events: none;
opacity: 0.5;
cursor: not-allowed;
} </style>
<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head><body class="wp-singular page-template-default page page-id-2159 page-child parent-pageid-2163 wp-theme-salient wp-child-theme-salient-child tribe-no-js material language-py wpb-js-composer js-comp-ver-8.4.2 vc_responsive" data-footer-reveal="false" data-footer-reveal-shadow="none" data-header-format="default" data-body-border="off" data-boxed-style="" data-header-breakpoint="1000" data-dropdown-style="minimal" data-cae="easeOutCubic" data-cad="750" data-megamenu-width="contained" data-aie="none" data-ls="fancybox" data-apte="standard" data-hhun="0" data-fancy-form-rcs="default" data-form-style="default" data-form-submit="regular" data-is="minimal" data-button-style="slightly_rounded" data-user-account-button="false" data-flex-cols="true" data-col-gap="default" data-header-inherit-rc="false" data-header-search="true" data-animated-anchors="true" data-ajax-transitions="false" data-full-width-header="false" data-slide-out-widget-area="true" data-slide-out-widget-area-style="slide-out-from-right-hover" data-user-set-ocm="off" data-loading-animation="none" data-bg-header="false" data-responsive="1" data-ext-responsive="true" data-ext-padding="90" data-header-resize="1" data-header-color="custom" data-cart="false" data-remove-m-parallax="" data-remove-m-video-bgs="" data-m-animate="0" data-force-header-trans-color="light" data-smooth-scrolling="0" data-permanent-transparent="false" >
<script type="text/javascript" nonce="6afb9b98c2">
(function(window, document) {
document.documentElement.classList.remove("no-js");
if(navigator.userAgent.match(/(Android|iPod|iPhone|iPad|BlackBerry|IEMobile|Opera Mini)/)) {
document.body.className += " using-mobile-browser mobile ";
}
if(navigator.userAgent.match(/Mac/) && navigator.maxTouchPoints && navigator.maxTouchPoints > 2) {
document.body.className += " using-ios-device ";
}
if( !("ontouchstart" in window) ) {
var body = document.querySelector("body");
var winW = window.innerWidth;
var bodyW = body.clientWidth;
if (winW > bodyW + 4) {
body.setAttribute("style", "--scroll-bar-w: " + (winW - bodyW - 4) + "px");
} else {
body.setAttribute("style", "--scroll-bar-w: 0px");
}
}
})(window, document);
</script><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T8XT4PS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --><a href="#ajax-content-wrap" class="nectar-skip-to-content">Skip to main content</a><div class="ocm-effect-wrap"><div class="ocm-effect-wrap-inner">
<div id="header-space" data-header-mobile-fixed='1'></div>
<div id="header-outer" data-has-menu="true" data-has-buttons="yes" data-header-button_style="default" data-using-pr-menu="false" data-mobile-fixed="1" data-ptnm="false" data-lhe="animated_underline" data-user-set-bg="#222222" data-format="default" data-permanent-transparent="false" data-megamenu-rt="0" data-remove-fixed="0" data-header-resize="1" data-cart="false" data-transparency-option="" data-box-shadow="large" data-shrink-num="6" data-using-secondary="1" data-using-logo="1" data-logo-height="40" data-m-logo-height="30" data-padding="20" data-full-width="false" data-condense="false" >
<div id="header-secondary-outer" class="default" data-mobile="default" data-remove-fixed="0" data-lhe="animated_underline" data-secondary-text="true" data-full-width="false" data-mobile-fixed="1" data-permanent-transparent="false" >
<div class="container">
<nav aria-label="Secondary Navigation">
<ul id="social"><li><a target="_blank" rel="noopener" href="https://github.com/pytorch/pytorch"><span class="screen-reader-text">github</span><i class="fa fa-github-alt" aria-hidden="true"></i> </a></li></ul><div class="nectar-center-text"><a href="https://events.linuxfoundation.org/pytorch-conference/">Join us at PyTorch Conference in San Francisco, October 22-23. Register now!</a></div>
</nav>
</div>
</div>
<div id="search-outer" class="nectar">
<div id="search">
<div class="container">
<div id="search-box">
<div class="inner-wrap">
<div class="col span_12">
<form role="search" action="https://pytorch.org/" method="GET">
<input type="text" name="s" value="" aria-label="Search" placeholder="Search" />
<span>Hit enter to search or ESC to close</span>
<button aria-label="Search" class="search-box__button" type="submit">Search</button> </form>
</div><!--/span_12-->
</div><!--/inner-wrap-->
</div><!--/search-box-->
<div id="close"><a href="#" role="button"><span class="screen-reader-text">Close Search</span>
<span class="close-wrap"> <span class="close-line close-line1" role="presentation"></span> <span class="close-line close-line2" role="presentation"></span> </span> </a></div>
</div><!--/container-->
</div><!--/search-->
</div><!--/search-outer-->
<header id="top">
<div class="container">
<div class="row">
<div class="col span_3">
<a id="logo" href="https://pytorch.org/" data-supplied-ml-starting-dark="false" data-supplied-ml-starting="false" data-supplied-ml="false" >
<img class="stnd skip-lazy" width="" height="" alt="PyTorch" src="https://pytorch.org/wp-content/uploads/2024/10/logo.svg" /> </a>
</div><!--/span_3-->
<div class="col span_9 col_last">
<div class="nectar-mobile-only mobile-header"><div class="inner"></div></div>
<a class="mobile-search" href="#searchbox"><span class="nectar-icon icon-salient-search" aria-hidden="true"></span><span class="screen-reader-text">search</span></a>
<div class="slide-out-widget-area-toggle mobile-icon slide-out-from-right-hover" data-custom-color="false" data-icon-animation="simple-transform">
<div> <a href="#sidewidgetarea" aria-label="Navigation Menu" aria-expanded="false" class="closed">
<span class="screen-reader-text">Menu</span><span aria-hidden="true"> <i class="lines-button x2"> <i class="lines"></i> </i> </span>
</a></div>
</div>
<nav>
<ul class="sf-menu">
<li id="menu-item-89" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children nectar-regular-menu-item menu-item-89"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">Learn</span></a>
<ul class="sub-menu">
<li id="menu-item-2296" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2159 current_page_item nectar-regular-menu-item menu-item-2296"><a href="index.html" aria-current="page"><span class="menu-title-text">Get Started</span></a></li>
<li id="menu-item-90" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-90"><a href="https://pytorch.org/tutorials/"><span class="menu-title-text">Tutorials</span></a></li>
<li id="menu-item-91" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-91"><a href="https://pytorch.org/tutorials/beginner/basics/intro.html"><span class="menu-title-text">Learn the Basics</span></a></li>
<li id="menu-item-92" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-92"><a href="https://docs.pytorch.org/tutorials/recipes_index.html"><span class="menu-title-text">PyTorch Recipes</span></a></li>
<li id="menu-item-93" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-93"><a href="https://pytorch.org/tutorials/beginner/introyt.html"><span class="menu-title-text">Intro to PyTorch – YouTube Series</span></a></li>
<li id="menu-item-2200" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2200"><a href="https://pytorch.org/webinars/"><span class="menu-title-text">Webinars</span></a></li>
</ul>
</li>
<li id="menu-item-94" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-94"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">Community</span></a>
<ul class="sub-menu">
<li id="menu-item-2299" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-2299"><a href="https://landscape.pytorch.org/"><span class="menu-title-text">Landscape</span></a></li>
<li id="menu-item-3291" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-3291"><a href="https://pytorch.org/join-ecosystem"><span class="menu-title-text">Join the Ecosystem</span></a></li>
<li id="menu-item-3724" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3724"><a href="https://pytorch.org/community-hub/"><span class="menu-title-text">Community Hub</span></a></li>
<li id="menu-item-95" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-95"><a href="https://discuss.pytorch.org/"><span class="menu-title-text">Forums</span></a></li>
<li id="menu-item-2304" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2304"><a href="https://pytorch.org/resources/"><span class="menu-title-text">Developer Resources</span></a></li>
<li id="menu-item-3721" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3721"><a href="https://pytorch.org/community-events/"><span class="menu-title-text">Community Events</span></a></li>
<li id="menu-item-3991" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3991"><a href="https://pytorch.org/programs/ambassadors/"><span class="menu-title-text">PyTorch Ambassadors</span></a></li>
</ul>
</li>
<li id="menu-item-105" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-105"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">Projects</span></a>
<ul class="sub-menu">
<li id="menu-item-3560" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3560"><a href="https://pytorch.org/projects/pytorch/"><span class="menu-title-text">PyTorch</span></a></li>
<li id="menu-item-3981" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3981"><a href="https://pytorch.org/projects/vllm/"><span class="menu-title-text">vLLM</span></a></li>
<li id="menu-item-3980" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3980"><a href="https://pytorch.org/projects/deepspeed/"><span class="menu-title-text">DeepSpeed</span></a></li>
<li id="menu-item-3573" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-3573"><a href="https://pytorch.org/projects/host-your-project/"><span class="menu-title-text">Host Your Project</span></a></li>
<li id="menu-item-5731" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-5731"><a href="https://pytorch.org/projects/ray/"><span class="menu-title-text">RAY</span></a></li>
</ul>
</li>
<li id="menu-item-96" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-96"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">Docs</span></a>
<ul class="sub-menu">
<li id="menu-item-97" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-97"><a href="https://pytorch.org/docs/stable/index.html"><span class="menu-title-text">PyTorch</span></a></li>
<li id="menu-item-2319" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2319"><a href="https://pytorch.org/domains/"><span class="menu-title-text">Domains</span></a></li>
</ul>
</li>
<li id="menu-item-348" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-348"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">Blog & News</span></a>
<ul class="sub-menu">
<li id="menu-item-349" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-349"><a href="https://pytorch.org/blog/"><span class="menu-title-text">Blog</span></a></li>
<li id="menu-item-3420" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-3420"><a href="https://pytorch.org/announcements"><span class="menu-title-text">Announcements</span></a></li>
<li id="menu-item-2113" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2113"><a href="https://pytorch.org/case-studies/"><span class="menu-title-text">Case Studies</span></a></li>
<li id="menu-item-2209" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2209"><a href="https://pytorch.org/events/"><span class="menu-title-text">Events</span></a></li>
<li id="menu-item-2904" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-2904"><a href="https://pytorch.org/newsletter/"><span class="menu-title-text">Newsletter</span></a></li>
</ul>
</li>
<li id="menu-item-87" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-87"><a href="#" aria-haspopup="true" aria-expanded="false"><span class="menu-title-text">About</span></a>
<ul class="sub-menu">
<li id="menu-item-290" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-290"><a href="https://pytorch.org/foundation/"><span class="menu-title-text">PyTorch Foundation</span></a></li>
<li id="menu-item-3418" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-3418"><a href="https://pytorch.org/members"><span class="menu-title-text">Members</span></a></li>
<li id="menu-item-245" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-245"><a href="https://pytorch.org/governing-board/"><span class="menu-title-text">Governing Board</span></a></li>
<li id="menu-item-259" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-259"><a href="https://pytorch.org/tac/"><span class="menu-title-text">Technical Advisory Council</span></a></li>
<li id="menu-item-215" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-215"><a href="https://pytorch.org/credits/"><span class="menu-title-text">Cloud Credit Program</span></a></li>
<li id="menu-item-277" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-277"><a href="https://pytorch.org/staff/"><span class="menu-title-text">Staff</span></a></li>
<li id="menu-item-88" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-88"><a href="https://pytorch.org/contact/"><span class="menu-title-text">Contact</span></a></li>
<li id="menu-item-5289" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-5289"><a href="https://pytorch.org/wp-content/uploads/2025/09/pytorch_brand_guide_091925a.pdf"><span class="menu-title-text">Brand Guidelines</span></a></li>
</ul>
</li>
<li id="menu-item-135" class="menu-item menu-item-type-post_type menu-item-object-page button_solid_color menu-item-135"><a href="https://pytorch.org/join/"><span class="menu-title-text">JOIN</span></a></li>
</ul>
<ul class="buttons sf-menu" data-user-set-ocm="off">
<li id="search-btn"><div><a href="#searchbox"><span class="icon-salient-search" aria-hidden="true"></span><span class="screen-reader-text">search</span></a></div> </li>
</ul>
</nav>
</div><!--/span_9-->
</div><!--/row-->
</div><!--/container-->
</header>
</div>
<div id="ajax-content-wrap">
<div class="container-wrap">
<div class="container main-content" role="main">
<div class="row">
<div id="fws_68fa9de414f87" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row top-level has-global-section" style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer" ><div class="row-bg viewport-desktop" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div id="fws_68fa9de415827" data-column-margin="default" data-midnight="light" data-top-percent="3%" data-bottom-percent="3%" class="wpb_row vc_row-fluid vc_row full-width-section top_padding_phone_6pct bottom_padding_phone_6pct" style="padding-top: calc(100vw * 0.03); padding-bottom: calc(100vw * 0.03); "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer using-image" ><div class="row-bg viewport-desktop using-image using-bg-color" style="background-image: url(https://pytorch.org/wp-content/uploads/2024/12/pytorch_bg_purple.jpg); background-position: left top; background-repeat: no-repeat; background-color: #f3f4f7; "></div></div></div><div class="nectar-shape-divider-wrap no-color " style=" height:50px;" data-height="50" data-front="" data-style="curve_opacity" data-position="bottom" ><svg class="nectar-shape-divider" fill="" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path d="M 0 14 s 88.64 3.48 300 36 c 260 40 514 27 703 -10 l 12 28 l 3 36 h -1018 z"></path> <path d="M 0 45 s 271 45.13 500 32 c 157 -9 330 -47 515 -63 v 86 h -1015 z"></path> <path d="M 0 58 s 188.29 32 508 32 c 290 0 494 -35 494 -35 v 45 h -1002 z"></path> </svg></div><div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-6 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h1>Get Started</h1>
<p>Select preferences and run the command to install PyTorch locally, or get started quickly with one of the supported cloud platforms.</p>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-6 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
</div>
</div>
</div>
</div></div>
<div id="fws_68fa9de415f1d" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row" style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer" ><div class="row-bg viewport-desktop" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="page-submenu" data-bg-color="#f3f4f7" data-sticky="false" data-alignment="center"><div class="full-width-content" style="background-color:#f3f4f7; color: #000000;"><a href="#" class="mobile-menu-link"><i class="salient-page-submenu-icon"></i>Menu</a><ul style="background-color:#f3f4f7; color: #000000;"><li><a href="index.html">Start Locally</a></li><li><a href="https://pytorch.org/get-started/pytorch-2-x/">PyTorch 2.x</a></li><li><a href="https://pytorch.org/get-started/cloud-partners/">Start via Cloud Partners</a></li><li><a href="https://pytorch.org/get-started/previous-versions/">Previous PyTorch Versions</a></li><li><a href="https://pytorch.org/get-started/executorch/">PyTorch for Edge</a></li></ul></div></div>
<div class="wpb_raw_code wpb_raw_js" >
<div class="wpb_wrapper">
<script type="text/javascript" nonce="6afb9b98c2">jQuery(document).ready(function($) {
// highlight sub-menu item of current URL/page
var currentPagePath = window.location.pathname;
$("body .page-submenu li").removeClass("active-page");
$('body .page-submenu li a[href^="' + currentPagePath + '"]').parent().addClass("active-page");
});
</script>
</div>
</div>
</div>
</div>
</div>
</div></div>
<style data-type="vc_custom-css">body .page-submenu li a { padding: 20px; }
body .page-submenu li.active-page a { background-color: #fff; }</style><style data-type="vc_custom-css">body .page-submenu li a { padding: 20px; }
body .page-submenu li.active-page a { background-color: #fff; }</style>
</div>
</div>
</div>
</div></div>
<div id="fws_68fa9de4182e3" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row get-started" style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer" ><div class="row-bg viewport-desktop" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-3 wpb_column column_container vc_column_container col nectar-sticky-column no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_raw_html wpb_content_element" >
<div class="wpb_wrapper">
<div class="sticky-top get-started-locally-sidebar">
<p id="get-started-shortcuts-menu">Shortcuts</p>
<ul id="get-started-locally-sidebar-list"></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-9 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_raw_html wpb_content_element get-started" >
<div class="wpb_wrapper">
<article class="pytorch-article">
<h2 id="start-locally">Start Locally<a class="anchorjs-link " href="#start-locally" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<div class="container-fluid quick-start-module quick-starts">
<div class="row">
<div class="col-md-12">
<p>Select your preferences and run the install command. Stable represents the most currently tested and supported version of PyTorch. This should
be suitable for many users. Preview is available if you want the latest, not fully tested and supported, builds that are generated nightly.
Please ensure that you have <b>met the prerequisites below (e.g., numpy)</b>, depending on your package manager. You can also
<a href="https://pytorch.org/get-started/previous-versions">install previous versions of PyTorch</a>. Note that LibTorch is only available for C++.
</p>
<p><b>NOTE:</b> Latest Stable PyTorch requires Python 3.10 or later. </p>
<div class="row quick-start-module-table">
<div class="col-md-3 headings">
<div class="col-md-12 title-block">
<div class="option-text">PyTorch Build</div>
</div>
<div class="col-md-12 title-block">
<div class="option-text os-text">Your OS</div>
</div>
<div class="col-md-12 title-block">
<div class="option-text">Package</div>
</div>
<div class="col-md-12 title-block">
<div class="option-text">Language</div>
</div>
<div class="col-md-12 title-block">
<div class="option-text">Compute Platform</div>
</div>
<div class="col-md-12 title-block command-block">
<div class="option-text command-text">Run this Command:</div>
</div>
</div>
<div class="col-md-9">
<div class="row ptbuild">
<div class="col-md-12 title-block mobile-heading">
<div class="option-text">PyTorch Build</div>
</div>
<div class="col-md-6 option block version selected" id="stable">
<div class="option-text">Stable (2.7.0)</div>
</div>
<div class="col-md-6 option block version" id="preview">
<div class="option-text">Preview (Nightly)</div>
</div>
</div>
<div class="row os">
<div class="col-md-12 title-block mobile-heading">
<div class="option-text">Your OS</div>
</div>
<div class="col-md-4 option block" id="linux">
<div class="option-text">Linux</div>
</div>
<div class="col-md-4 option block" id="macos">
<div class="option-text">Mac</div>
</div>
<div class="col-md-4 option block selected" id="windows">
<div class="option-text">Windows</div>
</div>
</div>
<div class="row package">
<div class="col-md-12 title-block mobile-heading">
<div class="option-text">Package</div>
</div>
<div class="col-md-4 option block selected" id="pip">
<div class="option-text">Pip</div>
</div>
<div class="col-md-4 option block" id="libtorch">
<div class="option-text">LibTorch</div>
</div>
<div class="col-md-4 option block" id="source">
<div class="option-text">Source</div>
</div>
</div>
<div class="row language">
<div class="col-md-12 title-block mobile-heading">
<div class="option-text">Language</div>
</div>
<div class="col-md-6 option block version selected" id="python">
<div class="option-text">Python</div>
</div>
<div class="col-md-6 option block" id="cplusplus">
<div class="option-text">C++ / Java</div>
</div>
</div>
<div class="row cuda">
<div class="col-md-12 title-block mobile-heading">
<div class="option-text">Compute Platform</div>
</div>
<div class="col-md-2 option block version selected" id="cuda.x">
<div class="option-text">CUDA 11.8</div>
</div>
<div class="col-md-2 option block version" id="cuda.y">
<div class="option-text">CUDA 12.6</div>
</div>
<div class="col-md-2 option block version" id="cuda.z">
<div class="option-text">CUDA 12.8</div>
</div>
<div class="col-md-3 option block version" id="rocm5.x" style="text-decoration: line-through;">
<div class="option-text">ROCm 6.3</div>
</div>
<div class="col-md-3 option block version" id="accnone">
<div class="option-text">CPU</div>
</div>
</div>
<div class="row">
<div class="col-md-12 title-block command-mobile-heading">
<div class="option-text">Run this Command:</div>
</div>
<div class="command-container">
<div class="col-md-12" id="command"><pre>pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118</pre></div>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
<hr>
<div id="installation">
<div class="os macos">
<h1 class="no_toc" id="installing-on-macos">Installing on macOS</h1>
<p>PyTorch can be installed and used on macOS. Depending on your system and GPU capabilities, your experience with PyTorch on macOS may vary in terms of processing time.</p>
<h2 id="mac-prerequisites">Prerequisites<a class="anchorjs-link " href="#mac-prerequisites" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="macos-version">macOS Version<a class="anchorjs-link " href="#macos-version" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>PyTorch is supported on macOS 10.15 (Catalina) or above.</p>
<h3 id="mac-python">Python<a class="anchorjs-link " href="#mac-python" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>It is recommended that you use Python 3.10 - 3.14.
You can install Python either through <a href="https://brew.sh/" target="_blank">Homebrew</a> or
the <a href="https://www.python.org/downloads/mac-osx/" target="_blank">Python website</a>.</p>
<h3 id="mac-package-manager">Package Manager<a class="anchorjs-link " href="#mac-package-manager" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>To install the PyTorch binaries, you will need to use the supported package manager: <a href="https://pypi.org/project/pip/" target="_blank">pip</a>.</p>
<h4 id="pip">pip<a class="anchorjs-link " href="#pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p><em>Python 3</em></p>
<p>If you installed Python via Homebrew or the Python website, <code class="language-plaintext highlighter-rouge">pip</code> was installed with it. If you installed Python 3.x, then you will be using the command <code class="language-plaintext highlighter-rouge">pip3</code>.</p>
<blockquote>
<p>Tip: If you want to use just the command <code class="language-plaintext highlighter-rouge">pip</code>, instead of <code class="language-plaintext highlighter-rouge">pip3</code>, you can symlink <code class="language-plaintext highlighter-rouge">pip</code> to the <code class="language-plaintext highlighter-rouge">pip3</code> binary.</p>
</blockquote>
<h2 id="mac-installation">Installation<a class="anchorjs-link " href="#mac-installation" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="mac-pip">pip<a class="anchorjs-link " href="#mac-pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>To install PyTorch via pip, use the following command, depending on your Python version:</p>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># Python 3.x</span>
pip3 <span class="nb">install </span>torch torchvision
</code></pre></div></div>
<h2 id="mac-verification">Verification<a class="anchorjs-link " href="#mac-verification" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>To ensure that PyTorch was installed correctly, we can verify the installation by running sample PyTorch code. Here we will construct a randomly initialized tensor.</p>
<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">torch</span>
<span class="n">x</span> <span class="o">=</span> <span class="n">torch</span><span class="p">.</span><span class="n">rand</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span> <span class="mi">3</span><span class="p">)</span>
<span class="k">print</span><span class="p">(</span><span class="n">x</span><span class="p">)</span>
</code></pre></div></div>
<p>The output should be something similar to:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>tensor([[0.3380, 0.3845, 0.3217],
[0.8337, 0.9050, 0.2650],
[0.2979, 0.7141, 0.9069],
[0.1449, 0.1132, 0.1375],
[0.4675, 0.3947, 0.1426]])
</code></pre></div></div>
<h2 id="mac-from-source">Building from source<a class="anchorjs-link " href="#mac-from-source" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>For the majority of PyTorch users, installing from a pre-built binary via a package manager will provide the best experience. However, there are times when you may want to install the bleeding edge PyTorch code, whether for testing or actual development on the PyTorch core. To install the latest PyTorch code, you will need to <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">build PyTorch from source</a>.</p>
<h3 id="mac-prerequisites-2">Prerequisites<a class="anchorjs-link " href="#mac-prerequisites-2" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<ol>
<li>[Optional] Install <a href="https://pypi.org/project/pip/" target="_blank">pip</a></li>
<li>Follow the steps described here: <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">https://github.com/pytorch/pytorch#from-source</a></li>
</ol>
<p>You can verify the installation as described <a href="#mac-verification">above</a>.</p>
</div>
<div class="os linux">
<h1 class="no_toc" id="installing-on-linux">Installing on Linux</h1>
<p>PyTorch can be installed and used on various Linux distributions. Depending on your system and compute requirements, your experience with PyTorch on Linux may vary in terms of processing time. It is recommended, but not required, that your Linux system has an NVIDIA or AMD GPU in order to harness the full power of PyTorch’s <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA</a> <a href="https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html?highlight=cuda&__hstc=76629258.724dacd2270c1ae797f3a62ecd655d50.1746547368336.1746547368336.1746547368336.1&__hssc=76629258.10.1746547368336&__hsfp=2230748894#cuda-tensors" target="_blank">support</a> or <a href="https://rocm.docs.amd.com/" target="_blank">ROCm</a> support.</p>
<h2 id="linux-prerequisites">Prerequisites<a class="anchorjs-link " href="#linux-prerequisites" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="supported-linux-distributions">Supported Linux Distributions<a class="anchorjs-link " href="#supported-linux-distributions" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>PyTorch is supported on Linux distributions that use <a href="https://www.gnu.org/software/libc/" target="_blank">glibc</a> >= v2.28, which include the following:</p>
<ul>
<li><a href="https://www.archlinux.org/download/" target="_blank">Arch Linux</a>, minimum version 2020.01.22</li>
<li><a href="https://www.centos.org/download/" target="_blank">CentOS</a>, minimum version 8</li>
<li><a href="https://www.debian.org/distrib/" target="_blank">Debian</a>, minimum version 10.0</li>
<li><a href="https://getfedora.org/" target="_blank">Fedora</a>, minimum version 24</li>
<li><a href="https://linuxmint.com/download.php" target="_blank">Mint</a>, minimum version 20</li>
<li><a href="https://get.opensuse.org/" target="_blank">OpenSUSE</a>, minimum version 15</li>
<li><a href="https://www.pclinuxos.com/" target="_blank">PCLinuxOS</a>, minimum version 2014.7</li>
<li><a href="http://www.slackware.com/getslack/" target="_blank">Slackware</a>, minimum version 14.2</li>
<li><a href="https://www.ubuntu.com/download/desktop" target="_blank">Ubuntu</a>, minimum version 20.04 (please note that 20.04 reached EOL)</li>
</ul>
<blockquote>
<p>The install instructions here will generally apply to all supported Linux distributions. An example difference is that your distribution may support <code class="language-plaintext highlighter-rouge">yum</code> instead of <code class="language-plaintext highlighter-rouge">apt</code>. The specific examples shown were run on an Ubuntu 18.04 machine.</p>
</blockquote>
<h3 id="linux-python">Python<a class="anchorjs-link " href="#linux-python" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>Python 3.10-3.14 is generally installed by default on any of our supported Linux distributions, which meets our recommendation.</p>
<blockquote>
<p>Tip: By default, you will have to use the command <code class="language-plaintext highlighter-rouge">python3</code> to run Python. If you want to use just the command <code class="language-plaintext highlighter-rouge">python</code>, instead of <code class="language-plaintext highlighter-rouge">python3</code>, you can symlink <code class="language-plaintext highlighter-rouge">python</code> to the <code class="language-plaintext highlighter-rouge">python3</code> binary.</p>
</blockquote>
<p>However, if you want to install another version, there are multiple ways:</p>
<ul>
<li>APT</li>
<li><a href="https://www.python.org/downloads/mac-osx/" target="_blank">Python website</a></li>
</ul>
<p>If you decide to use APT, you can run the following command to install it:</p>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nb">sudo </span>apt <span class="nb">install </span>python
</code></pre></div></div>
<h3 id="linux-package-manager">Package Manager<a class="anchorjs-link " href="#linux-package-manager" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>To install the PyTorch binaries, you will need to use the supported package manager: <a href="https://pypi.org/project/pip/" target="_blank">pip</a>.</p>
<h4 id="pip">pip<a class="anchorjs-link " href="#pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p><em>Python 3</em></p>
<p>While Python 3.x is installed by default on Linux, <code class="language-plaintext highlighter-rouge">pip</code> is not installed by default.</p>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nb">sudo </span>apt <span class="nb">install </span>python3-pip
</code></pre></div></div>
<blockquote>
<p>Tip: If you want to use just the command <code class="language-plaintext highlighter-rouge">pip</code>, instead of <code class="language-plaintext highlighter-rouge">pip3</code>, you can symlink <code class="language-plaintext highlighter-rouge">pip</code> to the <code class="language-plaintext highlighter-rouge">pip3</code> binary.</p>
</blockquote>
<h2 id="linux-installation">Installation<a class="anchorjs-link " href="#linux-installation" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="linux-pip">pip<a class="anchorjs-link " href="#linux-pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<h4 id="no-cuda">No CUDA<a class="anchorjs-link " href="#no-cuda" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>To install PyTorch via pip, and do not have a <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA-capable</a> or <a href="https://rocm.docs.amd.com/" target="_blank">ROCm-capable</a> system or do not require CUDA/ROCm (i.e. GPU support), in the above selector, choose OS: Linux, Package: Pip, Language: Python and Compute Platform: CPU.
Then, run the command that is presented to you.</p>
<h4 id="with-cuda">With CUDA<a class="anchorjs-link " href="#with-cuda" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>To install PyTorch via pip, and do have a <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA-capable</a> system, in the above selector, choose OS: Linux, Package: Pip, Language: Python and the CUDA version suited to your machine. Often, the latest CUDA version is better.
Then, run the command that is presented to you.</p>
<h4 id="with-rocm">With ROCm<a class="anchorjs-link " href="#with-rocm" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>To install PyTorch via pip, and do have a <a href="https://rocm.docs.amd.com/" target="_blank">ROCm-capable</a> system, in the above selector, choose OS: Linux, Package: Pip, Language: Python and the ROCm version supported.
Then, run the command that is presented to you.</p>
<h2 id="linux-verification">Verification<a class="anchorjs-link " href="#linux-verification" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>To ensure that PyTorch was installed correctly, we can verify the installation by running sample PyTorch code. Here we will construct a randomly initialized tensor.</p>
<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">torch</span>
<span class="n">x</span> <span class="o">=</span> <span class="n">torch</span><span class="p">.</span><span class="n">rand</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span> <span class="mi">3</span><span class="p">)</span>
<span class="k">print</span><span class="p">(</span><span class="n">x</span><span class="p">)</span>
</code></pre></div></div>
<p>The output should be something similar to:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>tensor([[0.3380, 0.3845, 0.3217],
[0.8337, 0.9050, 0.2650],
[0.2979, 0.7141, 0.9069],
[0.1449, 0.1132, 0.1375],
[0.4675, 0.3947, 0.1426]])
</code></pre></div></div>
<p>Additionally, to check if your GPU driver and CUDA/ROCm is enabled and accessible by PyTorch, run the following commands to return whether or not the GPU driver is enabled (the ROCm build of PyTorch uses the same semantics at the python API level <a href="https://github.com/pytorch/pytorch/blob/master/docs/source/notes/hip.rst#hip-interfaces-reuse-the-cuda-interfaces" target="_blank">link</a>, so the below commands should also work for ROCm):</p>
<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">torch</span>
<span class="n">torch</span><span class="p">.</span><span class="n">cuda</span><span class="p">.</span><span class="n">is_available</span><span class="p">()</span>
</code></pre></div></div>
<h2 id="linux-from-source">Building from source<a class="anchorjs-link " href="#linux-from-source" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>For the majority of PyTorch users, installing from a pre-built binary via a package manager will provide the best experience. However, there are times when you may want to install the bleeding edge PyTorch code, whether for testing or actual development on the PyTorch core. To install the latest PyTorch code, you will need to <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">build PyTorch from source</a>.</p>
<h3 id="linux-prerequisites-2">Prerequisites<a class="anchorjs-link " href="#linux-prerequisites-2" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<ol>
<li>Install <a href="#pip">Pip</a></li>
<li>If you need to build PyTorch with GPU support
a. for NVIDIA GPUs, install <a href="https://developer.nvidia.com/cuda-downloads" target="_blank">CUDA</a>, if your machine has a <a href="https://developer.nvidia.com/cuda-gpus" target="_blank">CUDA-enabled GPU</a>.
b. for AMD GPUs, install <a href="https://rocm.docs.amd.com/" target="_blank">ROCm</a>, if your machine has a <a href="https://rocm.docs.amd.com/" target="_blank">ROCm-enabled GPU</a></li>
<li>Follow the steps described here: <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">https://github.com/pytorch/pytorch#from-source</a></li>
</ol>
<p>You can verify the installation as described <a href="#linux-verification">above</a>.</p>
</div>
<div class="os windows selected">
<h1 class="no_toc" id="installing-on-windows">Installing on Windows</h1>
<p>PyTorch can be installed and used on various Windows distributions. Depending on your system and compute requirements, your experience with PyTorch on Windows may vary in terms of processing time. It is recommended, but not required, that your Windows system has an NVIDIA GPU in order to harness the full power of PyTorch’s <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA</a> <a href="https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html?highlight=cuda&__hstc=76629258.724dacd2270c1ae797f3a62ecd655d50.1746547368336.1746547368336.1746547368336.1&__hssc=76629258.10.1746547368336&__hsfp=2230748894#cuda-tensors" target="_blank">support</a>.</p>
<h2 id="windows-prerequisites">Prerequisites<a class="anchorjs-link " href="#windows-prerequisites" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="supported-windows-distributions">Supported Windows Distributions<a class="anchorjs-link " href="#supported-windows-distributions" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>PyTorch is supported on the following Windows distributions:</p>
<ul>
<li><a href="https://www.microsoft.com/en-us/windows" target="_blank">Windows</a> 7 and greater; <a href="https://www.microsoft.com/en-us/software-download/windows10ISO" target="_blank">Windows 10</a> or greater recommended.</li>
<li><a href="https://docs.microsoft.com/en-us/windows-server/windows-server" target="_blank">Windows Server 2008</a> r2 and greater</li>
</ul>
<blockquote>
<p>The install instructions here will generally apply to all supported Windows distributions. The specific examples shown will be run on a Windows 10 Enterprise machine</p>
</blockquote>
<h3 id="windows-python">Python<a class="anchorjs-link " href="#windows-python" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>Currently, PyTorch on Windows only supports Python 3.9-3.13; Python 2.x is not supported.</p>
<p>As it is not installed by default on Windows, there are multiple ways to install Python:</p>
<ul>
<li><a href="https://chocolatey.org/" target="_blank">Chocolatey</a></li>
<li><a href="https://www.python.org/downloads/windows/" target="_blank">Python website</a></li>
</ul>
<blockquote>
<p>If you decide to use Chocolatey, and haven’t installed Chocolatey yet, ensure that you are running your command prompt as an administrator.</p>
</blockquote>
<p>For a Chocolatey-based install, run the following command in an administrative command prompt:</p>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>choco <span class="nb">install </span>python
</code></pre></div></div>
<h3 id="windows-package-manager">Package Manager<a class="anchorjs-link " href="#windows-package-manager" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<p>To install the PyTorch binaries, you will need to use the supported package manager: <a href="https://pypi.org/project/pip/" target="_blank">pip</a>.</p>
<h4 id="pip">pip<a class="anchorjs-link " href="#pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>If you installed Python by any of the recommended ways <a href="#windows-python">above</a>, <a href="https://pypi.org/project/pip/" target="_blank">pip</a> will have already been installed for you.</p>
<h2 id="windows-installation">Installation<a class="anchorjs-link " href="#windows-installation" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<h3 id="windows-pip">pip<a class="anchorjs-link " href="#windows-pip" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<h4 id="no-cuda">No CUDA<a class="anchorjs-link " href="#no-cuda" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>To install PyTorch via pip, and do not have a <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA-capable</a> system or do not require CUDA, in the above selector, choose OS: Windows, Package: Pip and CUDA: None.
Then, run the command that is presented to you.</p>
<h4 id="with-cuda">With CUDA<a class="anchorjs-link " href="#with-cuda" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h4>
<p>To install PyTorch via pip, and do have a <a href="https://developer.nvidia.com/cuda-zone" target="_blank">CUDA-capable</a> system, in the above selector, choose OS: Windows, Package: Pip and the CUDA version suited to your machine. Often, the latest CUDA version is better.
Then, run the command that is presented to you.</p>
<h2 id="windows-verification">Verification<a class="anchorjs-link " href="#windows-verification" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>To ensure that PyTorch was installed correctly, we can verify the installation by running sample PyTorch code. Here we will construct a randomly initialized tensor.</p>
<p>From the command line, type:</p>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>python
</code></pre></div></div>
<p>then enter the following code:</p>
<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">torch</span>
<span class="n">x</span> <span class="o">=</span> <span class="n">torch</span><span class="p">.</span><span class="n">rand</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span> <span class="mi">3</span><span class="p">)</span>
<span class="k">print</span><span class="p">(</span><span class="n">x</span><span class="p">)</span>
</code></pre></div></div>
<p>The output should be something similar to:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>tensor([[0.3380, 0.3845, 0.3217],
[0.8337, 0.9050, 0.2650],
[0.2979, 0.7141, 0.9069],
[0.1449, 0.1132, 0.1375],
[0.4675, 0.3947, 0.1426]])
</code></pre></div></div>
<p>Additionally, to check if your GPU driver and CUDA is enabled and accessible by PyTorch, run the following commands to return whether or not the CUDA driver is enabled:</p>
<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">torch</span>
<span class="n">torch</span><span class="p">.</span><span class="n">cuda</span><span class="p">.</span><span class="n">is_available</span><span class="p">()</span>
</code></pre></div></div>
<h2 id="windows-from-source">Building from source<a class="anchorjs-link " href="#windows-from-source" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h2>
<p>For the majority of PyTorch users, installing from a pre-built binary via a package manager will provide the best experience. However, there are times when you may want to install the bleeding edge PyTorch code, whether for testing or actual development on the PyTorch core. To install the latest PyTorch code, you will need to <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">build PyTorch from source</a>.</p>
<h3 id="windows-prerequisites-2">Prerequisites<a class="anchorjs-link " href="#windows-prerequisites-2" aria-label="Anchor" data-anchorjs-icon="" style="font: 1em / 1 anchorjs-icons; padding-left: 0.375em;"></a></h3>
<ol>
<li>Install <a href="https://pypi.org/project/pip/" target="_blank">pip</a></li>
<li>Install <a href="https://developer.nvidia.com/cuda-downloads" target="_blank">CUDA</a>, if your machine has a <a href="https://developer.nvidia.com/cuda-gpus" target="_blank">CUDA-enabled GPU</a>.</li>
<li>If you want to build on Windows, Visual Studio with MSVC toolset, and NVTX are also needed. The exact requirements of those dependencies could be found out <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">here</a>.</li>
<li>Follow the steps described here: <a href="https://github.com/pytorch/pytorch#from-source" target="_blank">https://github.com/pytorch/pytorch#from-source</a></li>
</ol>
<p>You can verify the installation as described <a href="#windows-verification">above</a>.</p>
</div>
</div>
<script page-id="get-started-locally" src="https://pytorch.org/assets/menu-tab-selection.js"></script>
<script src="https://pytorch.org/assets/quick-start-module.js"></script>
<script src="https://pytorch.org/assets/show-screencast.js"></script>
<script src="https://pytorch.org/assets/get-started-sidebar.js"></script>
</article>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div>
</div>
<div class="nectar-global-section before-footer" role="contentinfo"><div class="container normal-container row">
<div id="fws_68fa9de419ce8" data-column-margin="default" data-midnight="light" data-top-percent="3%" data-bottom-percent="3%" class="wpb_row vc_row-fluid vc_row full-width-section top_padding_phone_7pct bottom_padding_phone_7pct" style="padding-top: calc(100vw * 0.03); padding-bottom: calc(100vw * 0.03); "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer" ><div class="row-bg viewport-desktop using-bg-color" style="background-color: #333333; "></div></div></div><div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h3>Docs</h3>
<p>Access comprehensive developer documentation for PyTorch</p>
<p><span style="color: #ee4c2c;"><a style="color: #ee4c2c;" href="https://pytorch.org/docs">View Docs ›</a></span></p>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h3>Tutorials</h3>
<p>Get in-depth tutorials for beginners and advanced developers</p>
<p><span style="color: #ee4c2c;"><a style="color: #ee4c2c;" href="https://pytorch.org/tutorials">View Tutorials ›</a></span></p>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h3>Resources</h3>
<p>Find development resources and get your questions answered</p>
<p><span style="color: #ee4c2c;"><a style="color: #ee4c2c;" href="https://pytorch.org/resources">View Resources ›</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div></div>
<div id="fws_68fa9de41a73f" data-column-margin="default" data-midnight="light" class="wpb_row vc_row-fluid vc_row full-width-section" style="padding-top: 60px; padding-bottom: 60px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer" ><div class="row-bg viewport-desktop using-bg-color" style="background-color: #000000; "></div></div></div><div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" >
<div class="vc_column-inner" >
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h2><strong>Stay in touch</strong> for updates, event info, and the latest news</h2>
</div>
</div>
<div class="wpb_raw_code wpb_raw_html wpb_content_element" >
<div class="wpb_wrapper">
<script charset="utf-8" type="text/javascript" src="http://js.hsforms.net/forms/embed/v2.js"></script>
<script type="text/javascript" nonce="6afb9b98c2">
hbspt.forms.create({
region: "na1",
portalId: "8112310",
formId: "2fb2231c-000b-4ec5-88a0-1ab242549c9e"
});
</script>
</div>
</div>
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<p><span style="color: #777777; font-size: .8em;">By submitting this form, I consent to receive marketing emails from the LF and its projects regarding their events, training, research, developments, and related announcements. I understand that I can unsubscribe at any time using the links in the footers of the emails I receive. <a style="color: #777777;" href="https://www.linuxfoundation.org/privacy/">Privacy Policy</a>.</span></p>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div></div></div>
<div id="footer-outer" data-midnight="light" data-cols="1" data-custom-color="true" data-disable-copyright="false" data-matching-section-color="true" data-copyright-line="false" data-using-bg-img="false" data-bg-img-overlay="0.8" data-full-width="false" data-using-widget-area="true" data-link-hover="default"role="contentinfo">
<div id="footer-widgets" data-has-widgets="false" data-cols="1">
<div class="container">
<div class="row">
<div class="col span_12">
<div class="widget">
</div>
</div>
</div>
</div><!--/container-->
</div><!--/footer-widgets-->
<div class="row" id="copyright" data-layout="default">
<div class="container">
<div class="col span_7 col_last">
<ul class="social">
<li><a target="_blank" rel="noopener" href="https://twitter.com/pytorch"><span class="screen-reader-text">x-twitter</span><i class="icon-salient-x-twitter" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://www.facebook.com/pytorch"><span class="screen-reader-text">facebook</span><i class="fa fa-facebook" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://www.linkedin.com/company/pytorch"><span class="screen-reader-text">linkedin</span><i class="fa fa-linkedin" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://www.youtube.com/pytorch"><span class="screen-reader-text">youtube</span><i class="fa fa-youtube-play" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://github.com/pytorch/pytorch"><span class="screen-reader-text">github</span><i class="fa fa-github-alt" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://join.slack.com/t/pytorch/shared_invite/zt-2j2la612p-miUinTTaxXczKOJw48poHA"><span class="screen-reader-text">slack</span><i class="fa fa-slack" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://discord.com/invite/eNSRmh92XT"><span class="screen-reader-text">discord</span><i class="icon-salient-discord" aria-hidden="true"></i></a></li><li><a target="_blank" rel="noopener" href="https://pytorch.org/wechat/"><span class="screen-reader-text">wechat</span><i class="fa fa-wechat" aria-hidden="true"></i></a></li> </ul>
</div><!--/span_7-->
<div class="col span_5">
<div class="widget"></div>