-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetode-pakalpojuma-simulacijas.html
2399 lines (1431 loc) · 317 KB
/
metode-pakalpojuma-simulacijas.html
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 xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" lang="en-US" >
<!-- Mirrored from pigeon-guitar-2f54.squarespace.com/metode-pakalpojuma-simulacijas by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 27 Apr 2022 07:30:17 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- This is Squarespace. --><!-- pigeon-guitar-2f54 -->
<base #href="">
<meta charset="utf-8" />
<title>VII. Metode: pakalpojuma simulācijas — Start Design</title>
<link rel="shortcut icon" type="image/x-icon" href="https://images.squarespace-cdn.com/content/v1/5f06fd23a667bb31dbca5507/1596904499569-B99LJ50K9ZMFZMOUB566/favicon.ico?format=100w"/>
<link rel="canonical" href="https://www.startdesign.lv/metode-pakalpojuma-simulacijas"/>
<meta property="og:site_name" content="Start Design"/>
<meta property="og:title" content="VII. Metode: pakalpojuma simulācijas — Start Design"/>
<meta property="og:url" content="https://www.startdesign.lv/metode-pakalpojuma-simulacijas"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="../images.squarespace-cdn.com/content/5f06fd23a667bb31dbca5507/1596534646650-6U03TMTSSALBO1QOHEYO/prototipesana-header-022acd.png?format=1500w"/>
<meta property="og:image:width" content="1500"/>
<meta property="og:image:height" content="402"/>
<meta itemprop="name" content="VII. Metode: pakalpojuma simulācijas — Start Design"/>
<meta itemprop="url" content="https://www.startdesign.lv/metode-pakalpojuma-simulacijas"/>
<meta itemprop="thumbnailUrl" content="../images.squarespace-cdn.com/content/5f06fd23a667bb31dbca5507/1596534646650-6U03TMTSSALBO1QOHEYO/prototipesana-header-022acd.png?format=1500w"/>
<link rel="image_src" href="../images.squarespace-cdn.com/content/5f06fd23a667bb31dbca5507/1596534646650-6U03TMTSSALBO1QOHEYO/prototipesana-header-022acd.png?format=1500w" />
<meta itemprop="image" content="../images.squarespace-cdn.com/content/5f06fd23a667bb31dbca5507/1596534646650-6U03TMTSSALBO1QOHEYO/prototipesana-header-022acd.png?format=1500w"/>
<meta name="twitter:title" content="VII. Metode: pakalpojuma simulācijas — Start Design"/>
<meta name="twitter:image" content="../images.squarespace-cdn.com/content/5f06fd23a667bb31dbca5507/1596534646650-6U03TMTSSALBO1QOHEYO/prototipesana-header-022acd.png?format=1500w"/>
<meta name="twitter:url" content="https://www.startdesign.lv/metode-pakalpojuma-simulacijas"/>
<meta name="twitter:card" content="summary"/>
<meta name="description" content="" />
<link rel="preconnect" href="https://images.squarespace-cdn.com/">
<script type="text/javascript" src="../use.typekit.net/ik/q3r7AcGZc3pP0He5x2RUkPTXt4LSdP9kB8BpiYONzFIfeG9IfFHN4UJLFRbh52jhWDmcw2ZcZ2JDjQjhFh4KwDBqjcFyFQ93FU7bMkG0jAFu-WsoShFGZAsude80ZkoRdhXCHKoyjamTiY8Djhy8ZYmC-Ao1Oco8if37OcBDOcu8OfG0Se81ZAN0OA"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript" crossorigin="anonymous" defer="defer" nomodule="nomodule" src="../assets.squarespace.com/%40sqs/polyfiller/1.2.2/legacy.js"></script>
<script type="text/javascript" crossorigin="anonymous" defer="defer" src="../assets.squarespace.com/%40sqs/polyfiller/1.2.2/modern.js"></script>
<script type="text/javascript">SQUARESPACE_ROLLUPS = {};</script>
<script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/style-loader-runtime-3b32196fd63237cb77125-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-style_loader_runtime');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/style-loader-runtime-3b32196fd63237cb77125-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/extract-css-runtime-df0bcb3fb161c9761a2a8-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-extract_css_runtime');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/extract-css-runtime-df0bcb3fb161c9761a2a8-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/extract-css-moment-js-vendor-0c99b8bf7f3dd5358b2f5-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-extract_css_moment_js_vendor');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/extract-css-moment-js-vendor-0c99b8bf7f3dd5358b2f5-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/moment-js-vendor-ac5d1bbd5d874f86c9e4f-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-moment_js_vendor');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/moment-js-vendor-ac5d1bbd5d874f86c9e4f-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/cldr-resource-pack-51def4af8f210f9d1e4fa-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-cldr_resource_pack');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/cldr-resource-pack-51def4af8f210f9d1e4fa-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-vendors-stable-21627972afe15f645442b-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common_vendors_stable');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/common-vendors-stable-21627972afe15f645442b-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-vendors-a34c8c7e7b49cef1381a6-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common_vendors');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/common-vendors-a34c8c7e7b49cef1381a6-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-fa03803b51ab0465f1277-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/common-fa03803b51ab0465f1277-min.en-US.js" defer ></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/performance-496e3739d1c4053c9ea16-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-performance');</script>
<script crossorigin="anonymous" src="../assets.squarespace.com/universal/scripts-compressed/performance-496e3739d1c4053c9ea16-min.en-US.js" defer ></script><script data-name="static-context">Static = window.Static || {}; Static.SQUARESPACE_CONTEXT = {"facebookAppId":"314192535267336","facebookApiVersion":"v6.0","rollups":{"squarespace-announcement-bar":{"js":"//assets.squarespace.com/universal/scripts-compressed/announcement-bar-e2ca8929cbbeedbecc976-min.en-US.js"},"squarespace-audio-player":{"css":"//assets.squarespace.com/universal/styles-compressed/audio-player-70726ef1bec308aee857d-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/audio-player-23140af750f742d8d1526-min.en-US.js"},"squarespace-blog-collection-list":{"css":"//assets.squarespace.com/universal/styles-compressed/blog-collection-list-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/blog-collection-list-3a11c75798160d66ee949-min.en-US.js"},"squarespace-calendar-block-renderer":{"css":"//assets.squarespace.com/universal/styles-compressed/calendar-block-renderer-49c4a5f3dae67a728e3f4-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/calendar-block-renderer-6ec132eda95af5c63d4f2-min.en-US.js"},"squarespace-chartjs-helpers":{"css":"//assets.squarespace.com/universal/styles-compressed/chartjs-helpers-53c004ac7d4bde1c92e38-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/chartjs-helpers-2d63c594b2ab77010558a-min.en-US.js"},"squarespace-comments":{"css":"//assets.squarespace.com/universal/styles-compressed/comments-521dd067b3c16dc54502f-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/comments-349ef755e85434fb284f6-min.en-US.js"},"squarespace-dialog":{"css":"//assets.squarespace.com/universal/styles-compressed/dialog-1e8b04c974609e8e985b2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/dialog-37d2b04c25ea9bb29b153-min.en-US.js"},"squarespace-events-collection":{"css":"//assets.squarespace.com/universal/styles-compressed/events-collection-49c4a5f3dae67a728e3f4-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/events-collection-24365623fb7da3f461a82-min.en-US.js"},"squarespace-form-rendering-utils":{"js":"//assets.squarespace.com/universal/scripts-compressed/form-rendering-utils-105103146202bf8c44738-min.en-US.js"},"squarespace-forms":{"css":"//assets.squarespace.com/universal/styles-compressed/forms-7bb2169a5edade4c08ca7-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/forms-cf7660357e4f2f09e45a3-min.en-US.js"},"squarespace-gallery-collection-list":{"css":"//assets.squarespace.com/universal/styles-compressed/gallery-collection-list-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/gallery-collection-list-5c733ce28f15b61f41f05-min.en-US.js"},"squarespace-image-zoom":{"css":"//assets.squarespace.com/universal/styles-compressed/image-zoom-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/image-zoom-a7fd34955cbd7e3d6a813-min.en-US.js"},"squarespace-pinterest":{"css":"//assets.squarespace.com/universal/styles-compressed/pinterest-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/pinterest-9856527470d97038c40f3-min.en-US.js"},"squarespace-popup-overlay":{"css":"//assets.squarespace.com/universal/styles-compressed/popup-overlay-4d585c3ab0b56e73aacfb-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/popup-overlay-1cc926afc11263e419eb3-min.en-US.js"},"squarespace-product-quick-view":{"css":"//assets.squarespace.com/universal/styles-compressed/product-quick-view-9eabb37cb7ba1b1da783a-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/product-quick-view-59ea9e0aa1f5fc95c0624-min.en-US.js"},"squarespace-products-collection-item-v2":{"css":"//assets.squarespace.com/universal/styles-compressed/products-collection-item-v2-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/products-collection-item-v2-5932c6d2074b1c0db8148-min.en-US.js"},"squarespace-products-collection-list-v2":{"css":"//assets.squarespace.com/universal/styles-compressed/products-collection-list-v2-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/products-collection-list-v2-114dd6284b00f27891ef8-min.en-US.js"},"squarespace-search-page":{"css":"//assets.squarespace.com/universal/styles-compressed/search-page-9d0a55de1efafbb9218e1-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/search-page-ed49d554bfd1f83530436-min.en-US.js"},"squarespace-search-preview":{"js":"//assets.squarespace.com/universal/scripts-compressed/search-preview-1ba8fbb119237da52a76a-min.en-US.js"},"squarespace-simple-liking":{"css":"//assets.squarespace.com/universal/styles-compressed/simple-liking-ef94529873378652e6e86-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/simple-liking-8f2d4de6e9bd31a5caa06-min.en-US.js"},"squarespace-social-buttons":{"css":"//assets.squarespace.com/universal/styles-compressed/social-buttons-1f18e025ea682ade6293a-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/social-buttons-ef4d8558d82172762c4fb-min.en-US.js"},"squarespace-tourdates":{"css":"//assets.squarespace.com/universal/styles-compressed/tourdates-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/tourdates-58f2ecc4985cc9187d230-min.en-US.js"},"squarespace-website-overlays-manager":{"css":"//assets.squarespace.com/universal/styles-compressed/website-overlays-manager-e02f37cb215feb91e3a3f-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/website-overlays-manager-7b02db2dab6595c39f4dd-min.en-US.js"}},"pageType":2,"website":{"id":"5f06fd23a667bb31dbca5507","identifier":"pigeon-guitar-2f54","websiteType":1,"contentModifiedOn":1644358059585,"cloneable":false,"hasBeenCloneable":false,"siteStatus":{},"language":"en-US","timeZone":"Europe/Riga","machineTimeZoneOffset":10800000,"timeZoneOffset":10800000,"timeZoneAbbr":"EEST","siteTitle":"Start Design","fullSiteTitle":"VII. Metode: pakalpojuma simul\u0101c\u0133as \u2014 Start Design","siteDescription":"","location":{"mapLat":56.9708628,"mapLng":24.1600497,"addressTitle":"Nodibin\u0101jums \"IT Izgl\u012Bt\u012Bbas fonds\" ","addressLine1":"214 Br\u012Bv\u012Bbas gatve","addressLine2":"R\u012Bga, 1039","addressCountry":"Latvia"},"socialLogoImageId":"5f2ed4a29056f72a0cea2a5b","shareButtonOptions":{"2":true,"1":true,"3":true,"4":true,"6":true,"8":true,"7":true},"socialLogoImageUrl":"//images.squarespace-cdn.com/content/v1/5f06fd23a667bb31dbca5507/1596904611102-GP24M5GE19Q3KNM2YF3S/Kursa-parskats_galvenes-02.png","authenticUrl":"https://www.startdesign.lv","internalUrl":"https://pigeon-guitar-2f54.squarespace.com","baseUrl":"https://www.startdesign.lv","primaryDomain":"www.startdesign.lv","sslSetting":3,"isHstsEnabled":false,"socialAccounts":[{"serviceId":64,"addedOn":1594293539730,"profileUrl":"https://www.instagram.com/startit_latvia/","iconEnabled":true,"serviceName":"instagram-unauth"},{"serviceId":69,"addedOn":1594293539735,"profileUrl":"https://www.youtube.com/channel/UCF80F250Gsm6z0X18nfo29Q?view_as=subscriber","iconEnabled":true,"serviceName":"youtube-unauth"},{"serviceId":60,"addedOn":1594293539740,"profileUrl":"https://www.facebook.com/startitlv","iconEnabled":true,"serviceName":"facebook-unauth"}],"typekitId":"","statsMigrated":false,"imageMetadataProcessingEnabled":false,"captchaSettings":{"enabledForDonations":false},"showOwnerLogin":false},"websiteSettings":{"id":"5f06fd23a667bb31dbca5509","websiteId":"5f06fd23a667bb31dbca5507","subjects":[],"country":"LV","state":"RIX","simpleLikingEnabled":true,"mobileInfoBarSettings":{"isContactEmailEnabled":false,"isContactPhoneNumberEnabled":false,"isLocationEnabled":false,"isBusinessHoursEnabled":false},"commentLikesAllowed":true,"commentAnonAllowed":true,"commentThreaded":true,"commentApprovalRequired":false,"commentAvatarsOn":true,"commentSortType":2,"commentFlagThreshold":0,"commentFlagsAllowed":true,"commentEnableByDefault":true,"commentDisableAfterDaysDefault":0,"disqusShortname":"","commentsEnabled":false,"contactPhoneNumber":"","businessHours":{"monday":{"text":"","ranges":[{}]},"tuesday":{"text":"","ranges":[{}]},"wednesday":{"text":"","ranges":[{}]},"thursday":{"text":"","ranges":[{}]},"friday":{"text":"","ranges":[{}]},"saturday":{"text":"","ranges":[{}]},"sunday":{"text":"","ranges":[{}]}},"storeSettings":{"returnPolicy":null,"termsOfService":null,"privacyPolicy":null,"expressCheckout":false,"continueShoppingLinkUrl":"/","useLightCart":false,"showNoteField":false,"shippingCountryDefaultValue":"US","billToShippingDefaultValue":false,"showShippingPhoneNumber":true,"isShippingPhoneRequired":false,"showBillingPhoneNumber":true,"isBillingPhoneRequired":false,"currenciesSupported":["USD","CAD","GBP","AUD","EUR","CHF","NOK","SEK","DKK","NZD","SGD","MXN","HKD","CZK","ILS","MYR","RUB","PHP","PLN","THB","BRL","ARS","COP","IDR","INR","JPY","ZAR"],"defaultCurrency":"USD","selectedCurrency":"USD","measurementStandard":1,"showCustomCheckoutForm":false,"checkoutPageMarketingOptInEnabled":false,"enableMailingListOptInByDefault":false,"sameAsRetailLocation":false,"merchandisingSettings":{"scarcityEnabledOnProductItems":false,"scarcityEnabledOnProductBlocks":false,"scarcityMessageType":"DEFAULT_SCARCITY_MESSAGE","scarcityThreshold":10,"multipleQuantityAllowedForServices":true,"restockNotificationsEnabled":false,"restockNotificationsMailingListSignUpEnabled":false,"relatedProductsEnabled":false,"relatedProductsOrdering":"random","soldOutVariantsDropdownDisabled":false,"productComposerOptedIn":false,"productComposerABTestOptedOut":false,"productReviewsEnabled":false,"displayImportedProductReviewsEnabled":false,"hasOptedToCollectNativeReviews":false},"isLive":false,"multipleQuantityAllowedForServices":true},"useEscapeKeyToLogin":true,"ssBadgeType":1,"ssBadgePosition":4,"ssBadgeVisibility":1,"ssBadgeDevices":1,"pinterestOverlayOptions":{"mode":"disabled"},"ampEnabled":false},"cookieSettings":{"isCookieBannerEnabled":true,"isRestrictiveCookiePolicyEnabled":false,"isRestrictiveCookiePolicyAbsolute":false,"cookieBannerText":"<p class=\"\" style=\"white-space:pre-wrap;\">\u0160\u012B vietne izmanto s\u012Bkdatnes, lai uzlabotu lieto\u0161anas pieredzi un optimiz\u0113tu t\u0101s darb\u012Bbu. Turpinot lietot \u0161o vietni, J\u016Bs piekr\u012Btat s\u012Bkdat\u0146u lieto\u0161anai. <a href=\"/sikndatu-politika\" target=\"\"><span style=\"text-decoration:underline\"><strong>Uzzin\u0101t vair\u0101k.</strong></span></a></p>","cookieBannerTheme":"DARK","cookieBannerVariant":"BAR","cookieBannerPosition":"BOTTOM","cookieBannerCtaVariant":"BUTTON","cookieBannerCtaText":"Piekr\u012Btu","cookieBannerAcceptType":"OPT_IN"},"websiteCloneable":false,"collection":{"title":"VII. Metode: pakalpojuma simul\u0101c\u0133as","id":"5f2809129526e63b9bc2a9a1","fullUrl":"/metode-pakalpojuma-simulacijas","type":10,"permissionType":1},"subscribed":false,"appDomain":"squarespace.com","templateTweakable":true,"tweakJSON":{"header-logo-height":"20px","header-mobile-logo-max-height":"30px","header-vert-padding":"1vw","header-width":"Full","maxPageWidth":"1200px","pagePadding":"4vw","tweak-blog-alternating-side-by-side-image-aspect-ratio":"1:1 Square","tweak-blog-alternating-side-by-side-image-spacing":"6%","tweak-blog-alternating-side-by-side-meta-spacing":"20px","tweak-blog-alternating-side-by-side-primary-meta":"Categories","tweak-blog-alternating-side-by-side-read-more-spacing":"20px","tweak-blog-alternating-side-by-side-secondary-meta":"Date","tweak-blog-basic-grid-columns":"2","tweak-blog-basic-grid-image-aspect-ratio":"3:2 Standard","tweak-blog-basic-grid-image-spacing":"20px","tweak-blog-basic-grid-meta-spacing":"10px","tweak-blog-basic-grid-primary-meta":"Date","tweak-blog-basic-grid-read-more-spacing":"20px","tweak-blog-basic-grid-secondary-meta":"Categories","tweak-blog-item-custom-width":"75","tweak-blog-item-show-author-profile":"false","tweak-blog-item-width":"Medium","tweak-blog-masonry-columns":"2","tweak-blog-masonry-horizontal-spacing":"30px","tweak-blog-masonry-image-spacing":"20px","tweak-blog-masonry-meta-spacing":"20px","tweak-blog-masonry-primary-meta":"Categories","tweak-blog-masonry-read-more-spacing":"20px","tweak-blog-masonry-secondary-meta":"Date","tweak-blog-masonry-vertical-spacing":"30px","tweak-blog-side-by-side-image-aspect-ratio":"1:1 Square","tweak-blog-side-by-side-image-spacing":"6%","tweak-blog-side-by-side-meta-spacing":"20px","tweak-blog-side-by-side-primary-meta":"Categories","tweak-blog-side-by-side-read-more-spacing":"20px","tweak-blog-side-by-side-secondary-meta":"Date","tweak-blog-single-column-image-spacing":"50px","tweak-blog-single-column-meta-spacing":"0px","tweak-blog-single-column-primary-meta":"Date","tweak-blog-single-column-read-more-spacing":"0px","tweak-blog-single-column-secondary-meta":"Categories","tweak-events-stacked-show-thumbnails":"true","tweak-events-stacked-thumbnail-size":"3:2 Standard","tweak-fixed-header":"false","tweak-fixed-header-style":"Basic","tweak-global-animations-animation-curve":"ease","tweak-global-animations-animation-delay":"1.0s","tweak-global-animations-animation-duration":"0.50s","tweak-global-animations-animation-style":"fade","tweak-global-animations-animation-type":"none","tweak-global-animations-complexity-level":"detailed","tweak-global-animations-enabled":"false","tweak-portfolio-grid-basic-custom-height":"50","tweak-portfolio-grid-overlay-custom-height":"50","tweak-portfolio-hover-follow-acceleration":"10%","tweak-portfolio-hover-follow-animation-duration":"Fast","tweak-portfolio-hover-follow-animation-type":"Fade","tweak-portfolio-hover-follow-delimiter":"Bullet","tweak-portfolio-hover-follow-front":"false","tweak-portfolio-hover-follow-layout":"Inline","tweak-portfolio-hover-follow-size":"50","tweak-portfolio-hover-follow-text-spacing-x":"1.5","tweak-portfolio-hover-follow-text-spacing-y":"1.5","tweak-portfolio-hover-static-animation-duration":"Fast","tweak-portfolio-hover-static-animation-type":"Fade","tweak-portfolio-hover-static-delimiter":"Hyphen","tweak-portfolio-hover-static-front":"true","tweak-portfolio-hover-static-layout":"Inline","tweak-portfolio-hover-static-size":"50","tweak-portfolio-hover-static-text-spacing-x":"1.5","tweak-portfolio-hover-static-text-spacing-y":"1.5","tweak-portfolio-index-background-animation-duration":"Medium","tweak-portfolio-index-background-animation-type":"Fade","tweak-portfolio-index-background-custom-height":"50","tweak-portfolio-index-background-delimiter":"None","tweak-portfolio-index-background-height":"Large","tweak-portfolio-index-background-horizontal-alignment":"Center","tweak-portfolio-index-background-link-format":"Stacked","tweak-portfolio-index-background-persist":"false","tweak-portfolio-index-background-vertical-alignment":"Middle","tweak-portfolio-index-background-width":"Full","tweak-product-basic-item-click-action":"None","tweak-product-basic-item-gallery-aspect-ratio":"3:4 Three-Four (Vertical)","tweak-product-basic-item-gallery-design":"Slideshow","tweak-product-basic-item-gallery-width":"50%","tweak-product-basic-item-hover-action":"None","tweak-product-basic-item-image-spacing":"2vw","tweak-product-basic-item-image-zoom-factor":"2","tweak-product-basic-item-thumbnail-placement":"Side","tweak-product-basic-item-variant-picker-layout":"Dropdowns","tweak-products-columns":"2","tweak-products-gutter-column":"2vw","tweak-products-gutter-row":"2vw","tweak-products-header-text-alignment":"Middle","tweak-products-image-aspect-ratio":"2:3 Standard (Vertical)","tweak-products-image-text-spacing":"0.5vw","tweak-products-text-alignment":"Left","tweak-transparent-header":"false"},"templateId":"5c5a519771c10ba3470d8101","templateVersion":"7.1","pageFeatures":[1,2,4],"gmRenderKey":"QUl6YVN5Q0JUUk9xNkx1dkZfSUUxcjQ2LVQ0QWVUU1YtMGQ3bXk4","templateScriptsRootUrl":"https://static1.squarespace.com/static/vta/5c5a519771c10ba3470d8101/scripts/","betaFeatureFlags":["commerce_etsy_shipping_import","reduce_general_search_api_traffic","member_areas_schedule_interview","themes","customer_account_creation_recaptcha","override_block_styles","viewer-role-contributor-invites","commerce_restock_notifications","nested_categories_migration_enabled","collection_typename_switching","commerce_clearpay","commerce_category_id_discounts_enabled","commerce_site_visitor_metrics","campaigns_content_editing_survey","commerce_product_reviews_dashboard","scheduling_block_schema_editor","new_stacked_index","campaigns_global_uc_ab","campaigns_attached_to_scheduling","supports_versioned_template_assets","deletion_v1_in_asset_picker","crm_show_subscriber_import_in_profiles","background_art_onboarding","commerce_etsy_product_import","nested_categories","send_local_pickup_ready_email","member_areas_spanish_interviews","campaigns_new_subscriber_search","scripts_defer","campaigns_thumbnail_layout","site_header_footer"],"impersonatedSession":false,"tzData":{"zones":[[120,"EU","EE%sT",null]],"rules":{"EU":[[1981,"max",null,"Mar","lastSun","1:00u","1:00","S"],[1996,"max",null,"Oct","lastSun","1:00u","0",null]]}},"showAnnouncementBar":false};</script><script type="application/ld+json">{"url":"https://www.startdesign.lv","name":"Start Design","description":"","@context":"http://schema.org","@type":"WebSite"}</script><script type="application/ld+json">{"legalName":"Nodibin\u0101jums \"IT Izgl\u012Bt\u012Bbas fonds\" ","address":"214 Br\u012Bv\u012Bbas gatve\nR\u012Bga, 1039\nLatvia","email":"fonds@startit.lv","telephone":"","sameAs":["https://www.instagram.com/startit_latvia/","https://www.youtube.com/channel/UCF80F250Gsm6z0X18nfo29Q?view_as=subscriber","https://www.facebook.com/startitlv"],"@context":"http://schema.org","@type":"Organization"}</script><script type="application/ld+json">{"address":"214 Br\u012Bv\u012Bbas gatve\nR\u012Bga, 1039\nLatvia","name":"Nodibin\u0101jums \"IT Izgl\u012Bt\u012Bbas fonds\" ","openingHours":", , , , , , ","@context":"http://schema.org","@type":"LocalBusiness"}</script><link rel="stylesheet" type="text/css" href="site.css"/><script>Static.COOKIE_BANNER_CAPABLE = true;</script>
<!-- End of Squarespace Headers -->
<script>
window.__INITIAL_SQUARESPACE_7_1_SITE_PALETTE__ = [{"id":"white","value":"#ffffff"},{"id":"black","value":"#000000"},{"id":"accent","value":"#E6E6E6"},{"id":"lightAccent","value":"#333333"},{"id":"darkAccent","value":"#9D2235"}];
</script>
<style id="sectionThemesStyles">
/*! Squarespace LESS Compiler (less.js language v1.3.3) */
.bright-inverse.page-section{color:#e6e6e6}.bright-inverse.page-section .sqs-background-enabled{color:#000}.bright-inverse.page-section.background-width--inset{background-color:#fff}.bright-inverse:not(.has-background) .section-background{background-color:#333}.bright-inverse h1{color:#e6e6e6}.bright-inverse h2{color:#e6e6e6}.bright-inverse h3{color:#e6e6e6}.bright-inverse h4{color:#e6e6e6}.bright-inverse .sqsrte-large{color:#e6e6e6}.bright-inverse .sqsrte-small{color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-html,.bright-inverse .sqs-background-enabled.sqs-block-accordion{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-html p.sqsrte-large,.bright-inverse .sqs-background-enabled.sqs-block-accordion p.sqsrte-large{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html p,.bright-inverse .sqs-background-enabled.sqs-block-accordion p,.bright-inverse .sqs-background-enabled.sqs-block-html code,.bright-inverse .sqs-background-enabled.sqs-block-accordion code{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html p.sqsrte-small,.bright-inverse .sqs-background-enabled.sqs-block-accordion p.sqsrte-small{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html h1,.bright-inverse .sqs-background-enabled.sqs-block-accordion h1{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html h2,.bright-inverse .sqs-background-enabled.sqs-block-accordion h2{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html h3,.bright-inverse .sqs-background-enabled.sqs-block-accordion h3{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html h4,.bright-inverse .sqs-background-enabled.sqs-block-accordion h4{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-marquee{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-accordion{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-accordion .accordion-divider{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-accordion .accordion-icon-container{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-form .field-list .title{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form .field-list .description{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form .field-list .caption{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form .field-list .option{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form .field-list .question{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button{background:#000;color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#e6e6e6;color:#000;border-color:#000}.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{background:#000;color:#e6e6e6}}.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#e6e6e6;color:#000;border-color:#000}.bright-inverse .sqs-background-enabled.sqs-block-newsletter{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header-title{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header-description{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button{background-color:#000 !important;color:#e6e6e6 !important}.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{color:#000 !important;border-color:#000 !important}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{background-color:#000 !important;color:#e6e6e6 !important}}.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{border-color:#e6e6e6 !important}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{background-color:#e6e6e6 !important;color:#000 !important;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-solid .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#000 !important;background-color:#e6e6e6 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#e6e6e6 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#000 !important;background-color:#000 !important}.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-footnote{color:#000 !important}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2{background-color:#e6e6e6}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-header-text{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-title{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-excerpt{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-read-more-link{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-metadata--primary{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-summary-v2 .summary-metadata--secondary{color:#000}.bright-inverse .sqs-background-enabled.sqs-block-html a,.bright-inverse .sqs-background-enabled .read-more-link,.bright-inverse .sqs-background-enabled .entry-excerpt a,.bright-inverse .sqs-background-enabled .blog-excerpt a,.bright-inverse .sqs-background-enabled .eventlist-excerpt a,.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header a,.bright-inverse .sqs-background-enabled.sqs-block-newsletter .newsletter-form-footnote a,.bright-inverse .sqs-background-enabled.sqs-block-newsletter .form-submission-text a,.bright-inverse .sqs-background-enabled.sqs-block-form .form-submission-text a,.bright-inverse .sqs-background-enabled.sqs-block-accordion .accordion-item__description a{color:#000}.bright-inverse .sqs-block-html a,.bright-inverse .read-more-link,.bright-inverse .entry-excerpt a,.bright-inverse .blog-excerpt a,.bright-inverse .eventlist-excerpt a,.bright-inverse .sqs-block-newsletter .newsletter-form-header a,.bright-inverse .sqs-block-newsletter .newsletter-form-footnote a,.bright-inverse .sqs-block-newsletter .form-submission-text a,.bright-inverse .sqs-block-form .form-submission-text a,.bright-inverse .sqs-block-accordion .accordion-item__description a{color:#e6e6e6}.bright-inverse :focus,.bright-inverse a:focus{outline-color:#e6e6e6}.bright-inverse .sqs-search-page-input.focus-within{outline-color:#e6e6e6}.bright-inverse .sqs-search-page-input:focus-within{outline-color:#e6e6e6}.bright-inverse .header[data-first-focusable-element][data-focus-visible-added] .header-announcement-bar-wrapper{outline-color:#e6e6e6}.bright-inverse .ProductItem .variant-radiobtn[data-focus-visible-added]+label{outline-color:#e6e6e6}.bright-inverse #pdp .star{fill:#e6e6e6}.bright-inverse #pdp .star path{fill:#e6e6e6}.bright-inverse .product-item-gallery-carousel-control:focus{outline-color:#000}.bright-inverse .sqs-modal-lightbox :focus{outline-color:#000}.bright-inverse .sqs-modal-lightbox.sqs-product-quick-view-lightbox :focus{outline-color:#000}.bright-inverse .sqs-modal-lightbox.sqs-product-quick-view-lightbox .sqs-product-quick-view-content :focus{outline-color:#e6e6e6}.bright-inverse .sqs-modal-lightbox.sqs-product-quick-view-lightbox .sqs-product-quick-view-content .product-item-gallery-carousel-control:focus{outline-color:#000}.primary-button-style-solid .bright-inverse .sqs-button-element--primary,.primary-button-style-solid .bright-inverse .comment-btn-wrapper .sqs-button-element--primary.comment-btn,.primary-button-style-solid .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--primary,.primary-button-style-solid .with-button-variants .bright-inverse .comment-btn-wrapper .sqs-button-element--primary.comment-btn,.primary-button-style-solid .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#000}.site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary,.site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--primary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--primary:hover{background-color:#e6e6e6;color:#000}}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--secondary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--secondary:hover{background-color:#e6e6e6;color:#000}}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--tertiary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--tertiary:hover{background-color:#e6e6e6;color:#000}}.bright-inverse .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--secondary,.secondary-button-style-solid .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#000;background:#e6e6e6;border-color:#000}.secondary-button-style-underline .with-button-variants .bright-inverse .sqs-button-element--secondary,.secondary-button-style-underline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{border-color:#e6e6e6}.secondary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--secondary,.secondary-button-style-outline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--secondary:hover,.secondary-button-style-outline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover{background:#e6e6e6;color:#000}}.tertiary-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--tertiary,.tertiary-button-style-solid .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#000;background:#e6e6e6;border-color:#000}.tertiary-button-style-underline .with-button-variants .bright-inverse .sqs-button-element--tertiary,.tertiary-button-style-underline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{border-color:#e6e6e6}.tertiary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--tertiary,.tertiary-button-style-outline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--tertiary:hover,.tertiary-button-style-outline .with-button-variants .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary,.primary-button-style-outline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary:hover,.primary-button-style-outline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline .bright-inverse .sqs-button-element--primary,.primary-button-style-outline .bright-inverse .sqs-button-element--primary.comment-btn,.primary-button-style-outline .bright-inverse .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,.primary-button-style-outline .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-button-element--primary:hover,.primary-button-style-outline .bright-inverse .sqs-button-element--primary.comment-btn:hover,.primary-button-style-outline .bright-inverse .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary:hover,.primary-button-style-outline .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary,.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary{border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary:hover,.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary:hover{border-color:#000}}.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-button-element--primary,.primary-button-style-outline.primary-button-shape-underline .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-button-element--primary:hover,.primary-button-style-outline.primary-button-shape-underline .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{border-color:#000}}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-button-element--primary,.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-button-element--primary.comment-btn,.primary-button-style-solid.primary-button-shape-underline .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--secondary,.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--secondary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--secondary,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--secondary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover{border-color:#000}}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--tertiary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--tertiary,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-button-element--tertiary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover{border-color:#000}}.bright-inverse .sqs-block-horizontalrule hr{background-color:#e6e6e6}.bright-inverse .section-background-overlay{background-color:#000}.bright-inverse .floating-cart{background-color:#e6e6e6;color:#000}.bright-inverse .floating-cart :focus{outline-color:#000}.bright-inverse .floating-cart .icon--stroke svg{stroke:#000}.tweak-transparent-header .sections .bright-inverse.page-section:first-child.background-width--full-bleed.has-background .section-background:after{content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(#000,150px,transparent);opacity:.05}[data-header-style="theme"].header.bright-inverse,[data-header-style="dynamic"].header.bright-inverse{background-color:#333}body:not(.header--menu-open) .bright-inverse .header-title-text a{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-nav-folder-content,body:not(.header--menu-open) .bright-inverse .language-picker-content{background-color:#333}body:not(.header--menu-open) .bright-inverse .header-nav-wrapper a{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-nav-wrapper .header-nav-item--active a{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-border[data-header-style="dynamic"]{border:solid #e6e6e6}body:not(.header--menu-open) .bright-inverse .language-picker{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .user-accounts-text-link{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .cart-text-link{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .burger-inner .top-bun,body:not(.header--menu-open) .bright-inverse .burger-inner .patty,body:not(.header--menu-open) .bright-inverse .burger-inner .bottom-bun{background-color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-actions .icon--stroke svg{stroke:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-actions .icon--fill svg{fill:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-actions .icon-cart-quantity{color:#e6e6e6}body:not(.header--menu-open) .bright-inverse .header-nav-item--active a{background-image:linear-gradient(to right,currentColor 100%,currentColor 0)}body.header--menu-open .header.bright-inverse .header-title-text a{color:#e6e6e6}body.header--menu-open .header.bright-inverse .header-burger .top-bun,body.header--menu-open .header.bright-inverse .header-burger .patty,body.header--menu-open .header.bright-inverse .header-burger .bottom-bun{background-color:#e6e6e6}body.header--menu-open .header.bright-inverse .header-nav-folder-content,body.header--menu-open .header.bright-inverse .language-picker-content{background-color:#000}body.header--menu-open .header.bright-inverse .header-nav-wrapper a{color:#e6e6e6}body.header--menu-open .header.bright-inverse .header-nav-wrapper .header-menu-nav-item--active a,body.header--menu-open .header.bright-inverse .header-nav-wrapper .header-nav-item--active a{color:#e6e6e6}body.header--menu-open .header.bright-inverse .user-accounts-text-link{color:#e6e6e6}body.header--menu-open .header.bright-inverse .cart-text-link{color:#e6e6e6}body.header--menu-open .header.bright-inverse .header-actions .icon--stroke svg{stroke:#e6e6e6}body.header--menu-open .header.bright-inverse .header-actions .icon--fill svg{fill:#e6e6e6}body.header--menu-open .header.bright-inverse .header-actions .icon-cart-quantity{color:#e6e6e6}.site-wrapper .header-menu.bright-inverse .header-menu-bg{background-color:#000}.site-wrapper .header-menu.bright-inverse .header-menu-nav a:not(.btn){color:#e6e6e6}.site-wrapper .header-menu.bright-inverse .header-menu-nav .header-menu-nav-item--active a,.site-wrapper .header-menu.bright-inverse .header-menu-nav .header-nav-item--active a{color:#e6e6e6}.site-wrapper .header-menu.bright-inverse .header-menu-cta a{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .header-menu.bright-inverse .header-menu-cta .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .header-menu.bright-inverse .header-menu-cta .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .header-menu.bright-inverse .header-menu-cta .sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-outline .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--primary,.secondary-button-style-outline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--secondary,.tertiary-button-style-outline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--primary:hover,.secondary-button-style-outline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--secondary:hover,.tertiary-button-style-outline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .header-menu.bright-inverse .header-menu-cta a.sqs-button-element--tertiary:hover{border-color:#000}.bright-inverse .sqs-announcement-bar{background:#e6e6e6}.bright-inverse .sqs-announcement-bar :focus,.bright-inverse .sqs-announcement-bar a:focus{outline-color:#000}.bright-inverse .sqs-announcement-bar-text p,.bright-inverse .sqs-announcement-bar-text a{color:#000}.bright-inverse .sqs-announcement-bar-close{color:#000}.bright-inverse .gallery-fullscreen-slideshow-control-btn::before,.bright-inverse .gallery-slideshow-control-btn::before{background:#000}.bright-inverse .gallery-fullscreen-slideshow-control-btn svg,.bright-inverse .gallery-slideshow-control-btn svg{stroke:#e6e6e6}.bright-inverse .gallery-fullscreen-slideshow-bullet{border-color:#000}.bright-inverse .gallery-fullscreen-slideshow-bullet.active{background-color:#000}.bright-inverse .gallery-lightbox-background{background-color:#000;opacity:.9}.bright-inverse .gallery-lightbox-control-btn{color:#e6e6e6}.bright-inverse .gallery-lightbox-control-btn .gallery-lightbox-control-btn-icon svg *{stroke:currentColor}.bright-inverse .gallery-lightbox-close-btn{color:#e6e6e6}.bright-inverse .gallery-lightbox-close-btn .gallery-lightbox-close-btn-icon svg *{stroke:currentColor}.bright-inverse .user-items-list .list-section-title{color:#e6e6e6}.bright-inverse .user-items-list .list-section-title a{color:#e6e6e6}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#e6e6e6}}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#e6e6e6}}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#e6e6e6}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#e6e6e6}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#e6e6e6}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#e6e6e6}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#e6e6e6}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#e6e6e6}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#e6e6e6}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#e6e6e6}}.bright-inverse .user-items-list-simple .list-item-content__title{color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item-content__description{color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item-content__description a{color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"]{background-color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#000}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item-content__title{color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item-content__description{color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item-content__description a{color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-carousel .user-items-list-carousel__arrow-icon-foreground{stroke:#000}.bright-inverse .user-items-list-carousel .user-items-list-carousel__arrow-icon-background{background-color:#e6e6e6}.bright-inverse .user-items-list-carousel .user-items-list-carousel__arrow-button::after{border-color:#000}.bright-inverse .user-items-list-carousel .user-items-list-carousel__gutter::after{border-color:#e6e6e6}.bright-inverse .user-items-list-carousel[data-layout-width="full"] .user-items-list-carousel__gutter::after{border-color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"]{background-color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#000}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item-content__title{color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item-content__description{color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item-content__description a{color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.bright-inverse .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-icon-foreground{stroke:#000}.bright-inverse .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-icon-background{background-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-button::after{border-color:#000}.bright-inverse .user-items-list-banner-slideshow .slideshow-gutter::after{border-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow[data-layout-width="full-bleed"] .slideshow-gutter::after{border-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-card-background{background-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#000}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}.bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#e6e6e6}@media (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--primary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--secondary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--tertiary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--primary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--secondary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-button-element--tertiary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}.tweak-global-animations-animation-type-flex.secondary-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--secondary:not(input):hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.secondary-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--secondary:not(input)::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.tertiarty-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--tertiary:not(input):hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.tertiarty-button-style-solid .with-button-variants .bright-inverse .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#000}@media (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--primary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--secondary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--tertiary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--primary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--secondary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover){.tweak-global-animations-animation-type-flex.secondary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--secondary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.secondary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--secondary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}}@media (hover:hover){.tweak-global-animations-animation-type-flex.tertiary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--tertiary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.tertiary-button-style-outline .with-button-variants .bright-inverse .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}}.bright-inverse .ImageAndText__headline{color:#e6e6e6}.bright-inverse .ImageAndText__subheadline{color:#e6e6e6}.bright-inverse .ImageAndText__button-link{color:#000;background-color:#e6e6e6}.bright-inverse .ImageAndText__text-outer-wrapper[data-text-card-enabled="true"]{background-color:#333}.bright-inverse .portfolio-grid-overlay .portfolio-title{color:#e6e6e6}.bright-inverse .portfolio-grid-overlay .portfolio-overlay{background-color:#000}.bright-inverse .portfolio-grid-basic .portfolio-title{color:#e6e6e6}.bright-inverse .portfolio-hover[data-variant-hover-cover] .portfolio-hover-item-title{color:#e6e6e6}.bright-inverse .collection-type-portfolio-index-background .portfolio-index-background-link h1{color:#e6e6e6}.bright-inverse .portfolio-hover[data-variant-hover-follow] .portfolio-hover-item-title{color:#e6e6e6}.bright-inverse .portfolio-hover[data-variant-hover-static] .portfolio-hover-item-title{color:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="portfolio"],.bright-inverse.item-pagination[data-collection-type^="portfolio"]{background-color:#333}.bright-inverse .item-pagination[data-collection-type^="portfolio"] .item-pagination-icon svg,.bright-inverse.item-pagination[data-collection-type^="portfolio"] .item-pagination-icon svg{stroke:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="portfolio"] .item-pagination-prev-next,.bright-inverse.item-pagination[data-collection-type^="portfolio"] .item-pagination-prev-next{color:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="portfolio"] .item-pagination-title,.bright-inverse.item-pagination[data-collection-type^="portfolio"] .item-pagination-title{color:#e6e6e6}.bright-inverse .lesson-title{color:#e6e6e6}.bright-inverse .lessons-grid-meta-container{color:#e6e6e6}.bright-inverse .lessons-list .grid-desc{color:#e6e6e6}.bright-inverse .lessons-list .nested-category-children,.bright-inverse .lessons-list .nested-category-tree-wrapper{color:#e6e6e6}.bright-inverse .lesson-details-title{color:#e6e6e6}.bright-inverse .lesson-grid-meta-container{color:#e6e6e6}.bright-inverse .lesson-details-description{color:#e6e6e6}.bright-inverse .lesson-item-pagination-title{color:#e6e6e6}.bright-inverse .lesson-item-pagination-icon svg{stroke:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-more-link{color:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-more-link::after{background:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-title{color:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-categories-list a,.bright-inverse .blog-alternating-side-by-side .blog-author,.bright-inverse .blog-alternating-side-by-side .blog-date,.bright-inverse .blog-alternating-side-by-side .blog-meta-delimiter{color:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-excerpt{color:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-list-pagination{color:#e6e6e6}.bright-inverse .blog-alternating-side-by-side .blog-list-pagination .blog-list-pagination-icon{stroke:#e6e6e6}.bright-inverse .blog-basic-grid .blog-more-link{color:#e6e6e6}.bright-inverse .blog-basic-grid .blog-more-link::after{background:#e6e6e6}.bright-inverse .blog-basic-grid .blog-title{color:#e6e6e6}.bright-inverse .blog-basic-grid .blog-categories-list a,.bright-inverse .blog-basic-grid .blog-author,.bright-inverse .blog-basic-grid .blog-date,.bright-inverse .blog-basic-grid .blog-meta-delimiter{color:#e6e6e6}.bright-inverse .blog-basic-grid .blog-excerpt{color:#e6e6e6}.bright-inverse .blog-basic-grid .blog-list-pagination{color:#e6e6e6}.bright-inverse .blog-basic-grid .blog-list-pagination .blog-list-pagination-icon{stroke:#e6e6e6}.bright-inverse .blog-masonry .blog-more-link{color:#e6e6e6}.bright-inverse .blog-masonry .blog-more-link::after{background:#e6e6e6}.bright-inverse .blog-masonry .blog-title{color:#e6e6e6}.bright-inverse .blog-masonry .blog-categories-list a,.bright-inverse .blog-masonry .blog-author,.bright-inverse .blog-masonry .blog-date,.bright-inverse .blog-masonry .blog-meta-delimiter{color:#e6e6e6}.bright-inverse .blog-masonry .blog-excerpt{color:#e6e6e6}.bright-inverse .blog-masonry .blog-list-pagination{color:#e6e6e6}.bright-inverse .blog-masonry .blog-list-pagination .blog-list-pagination-icon{stroke:#e6e6e6}.bright-inverse .blog-side-by-side .blog-more-link{color:#e6e6e6}.bright-inverse .blog-side-by-side .blog-more-link::after{background:#e6e6e6}.bright-inverse .blog-side-by-side .blog-title{color:#e6e6e6}.bright-inverse .blog-side-by-side .blog-categories-list a,.bright-inverse .blog-side-by-side .blog-author,.bright-inverse .blog-side-by-side .blog-date,.bright-inverse .blog-side-by-side .blog-meta-delimiter{color:#e6e6e6}.bright-inverse .blog-side-by-side .blog-excerpt{color:#e6e6e6}.bright-inverse .blog-side-by-side .blog-list-pagination{color:#e6e6e6}.bright-inverse .blog-side-by-side .blog-list-pagination .blog-list-pagination-icon{stroke:#e6e6e6}.bright-inverse .blog-single-column .blog-more-link{color:#e6e6e6}.bright-inverse .blog-single-column .blog-more-link::after{background:#e6e6e6}.bright-inverse .blog-single-column .blog-title{color:#e6e6e6}.bright-inverse .blog-single-column .blog-categories-list a,.bright-inverse .blog-single-column .blog-author,.bright-inverse .blog-single-column .blog-date,.bright-inverse .blog-single-column .blog-meta-delimiter{color:#e6e6e6}.bright-inverse .blog-single-column .blog-excerpt{color:#e6e6e6}.bright-inverse .blog-single-column .blog-list-pagination{color:#e6e6e6}.bright-inverse .blog-single-column .blog-list-pagination .blog-list-pagination-icon{stroke:#e6e6e6}.bright-inverse .blog-item-wrapper .blog-item-title h1.entry-title{color:#e6e6e6}.bright-inverse .blog-item-wrapper .blog-meta-item,.bright-inverse .blog-item-wrapper .blog-meta-item a,.bright-inverse .blog-item-wrapper .blog-meta-item span{color:#e6e6e6}.bright-inverse .blog-item-wrapper .author-name,.bright-inverse .blog-item-wrapper .author-website,.bright-inverse .blog-item-wrapper .author-bio{color:#e6e6e6}.bright-inverse .blog-item-wrapper #comments .header-controls,.bright-inverse .blog-item-wrapper #comments .header-controls .comment-count,.bright-inverse .blog-item-wrapper .comment-header .user-info,.bright-inverse .blog-item-wrapper .comment-header .controls{color:#e6e6e6}.bright-inverse .blog-item-wrapper .comment-body *{color:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="blog"],.bright-inverse.item-pagination[data-collection-type^="blog"]{background-color:#333}.bright-inverse .item-pagination[data-collection-type^="blog"] .item-pagination-icon svg,.bright-inverse.item-pagination[data-collection-type^="blog"] .item-pagination-icon svg{stroke:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="blog"] .item-pagination-prev-next,.bright-inverse.item-pagination[data-collection-type^="blog"] .item-pagination-prev-next{color:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="blog"] .item-pagination-title,.bright-inverse.item-pagination[data-collection-type^="blog"] .item-pagination-title{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .nested-category-breadcrumb-link{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .ProductItem-nav-breadcrumb-link{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .grid-item.on-sale .sqs-money-native{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .grid-item.on-sale .original-price .sqs-money-native{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .product-mark.sale{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .list-pagination .product-list-pagination-icon svg{stroke:#e6e6e6}.bright-inverse .products.collection-content-wrapper .category-filter-delimiter{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .category-filter-link::after{background:#e6e6e6}@media (hover:hover){.bright-inverse .products.collection-content-wrapper .category-filter-link:hover{color:#e6e6e6}}.bright-inverse .products.collection-content-wrapper .category-filter-link.category-filter-link-all,.bright-inverse .products.collection-content-wrapper .category-filter-link.active{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link{color:#e6e6e6}@media (hover:hover){.bright-inverse .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link:hover{color:#e6e6e6}}.bright-inverse .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link.active{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .grid-main-meta .grid-title{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .grid-main-meta .grid-prices{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .grid-meta-status{color:#e6e6e6}.bright-inverse .products.collection-content-wrapper .product-scarcity{color:#e6e6e6}.bright-inverse .on-sale .product-details .sqs-money-native{color:#e6e6e6}.bright-inverse .on-sale .product-details .original-price .sqs-money-native{color:#e6e6e6}.bright-inverse .ProductItem.on-sale .ProductItem-details .product-price .sqs-money-native{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details h1.ProductItem-details-title{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details .product-price{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details .product-price,.bright-inverse .ProductItem .ProductItem-details .product-price .original-price .sqs-money-native{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details .product-scarcity{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details .variant-option,.bright-inverse .ProductItem .ProductItem-details .product-quantity-input,.bright-inverse .ProductItem .ProductItem-details .product-quantity-input input{color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-details .variant-select-wrapper:after{border-bottom-color:#e6e6e6;border-right-color:#e6e6e6}.bright-inverse .ProductItem .ProductItem-nav-breadcrumb span,.bright-inverse .ProductItem .ProductItem-nav-pagination span,.bright-inverse .ProductItem .ProductItem-nav-breadcrumb a,.bright-inverse .ProductItem .ProductItem-nav-pagination a{color:#e6e6e6}.bright-inverse .ProductItem .product-item-gallery-carousel-control::after{border-color:#000}.bright-inverse .ProductItem .ProductItem-gallery-current-slide-indicator{color:#000}.bright-inverse .ProductItem .ProductItem-gallery-scroll::after{background:linear-gradient(to bottom,rgba(255,255,255,0) 0%,#333 100%)}.bright-inverse .sqs-product-quick-view-content{background-color:#333}.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-content{background-color:#333}.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details{color:#e6e6e6}.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .ProductItem-details-title{color:#e6e6e6 !important}.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .product-price,.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-option-title,.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-option,.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .quantity-label,.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .product-quantity-input input{color:#e6e6e6}.bright-inverse [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-select-wrapper:after{border-bottom-color:#e6e6e6;border-right-color:#e6e6e6}.bright-inverse .product-block .product-quantity-input input{color:#e6e6e6 !important}.bright-inverse .item-pagination[data-collection-type^="events"],.bright-inverse.item-pagination[data-collection-type^="events"]{background-color:#333}.bright-inverse .item-pagination[data-collection-type^="events"] .item-pagination-icon svg,.bright-inverse.item-pagination[data-collection-type^="events"] .item-pagination-icon svg{stroke:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="events"] .events-item-pagination-date,.bright-inverse.item-pagination[data-collection-type^="events"] .events-item-pagination-date{color:#e6e6e6}.bright-inverse .item-pagination[data-collection-type^="events"] .item-pagination-title,.bright-inverse.item-pagination[data-collection-type^="events"] .item-pagination-title{color:#e6e6e6}.bright-inverse .sqs-block-collectionlink .collectionlink-title{color:#e6e6e6}.bright-inverse .image-overlay,.bright-inverse .sqs-image-content::after{background-color:#000}.bright-inverse .sqs-block-image .design-layout-poster .sqs-image-content::after,.bright-inverse .sqs-block-image .design-layout-poster .image-overlay{background-color:#9d2235}.bright-inverse .sqs-block-image .design-layout-poster .image-title *{color:#fff}.bright-inverse .sqs-block-image .design-layout-poster .image-subtitle *{color:#fff}.bright-inverse .sqs-block-image .design-layout-poster .image-title a,.bright-inverse .sqs-block-image .design-layout-poster .image-subtitle a{color:#fff}@media (hover:hover){.bright-inverse .sqs-block-image .design-layout-poster .image-title a:hover,.bright-inverse .sqs-block-image .design-layout-poster .image-subtitle a:hover{opacity:.8}}.bright-inverse .sqs-block-image .design-layout-poster .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-solid .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-card .sqs-image-content::after,.bright-inverse .sqs-block-image .design-layout-card .image-overlay{background-color:#9d2235}.bright-inverse .sqs-block-image .design-layout-card .image-title *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-card .image-subtitle *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-card .image-title a,.bright-inverse .sqs-block-image .design-layout-card .image-subtitle a{color:#e6e6e6}@media (hover:hover){.bright-inverse .sqs-block-image .design-layout-card .image-title a:hover,.bright-inverse .sqs-block-image .design-layout-card .image-subtitle a:hover{opacity:.8}}.bright-inverse .sqs-block-image .design-layout-card .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-solid .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-overlap .sqs-image-content::after,.bright-inverse .sqs-block-image .design-layout-overlap .image-overlay{background-color:#9d2235}.bright-inverse .sqs-block-image .design-layout-overlap .image-title *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-overlap .image-subtitle *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-overlap .image-title a,.bright-inverse .sqs-block-image .design-layout-overlap .image-subtitle a{color:#e6e6e6}@media (hover:hover){.bright-inverse .sqs-block-image .design-layout-overlap .image-title a:hover,.bright-inverse .sqs-block-image .design-layout-overlap .image-subtitle a:hover{opacity:.8}}.bright-inverse .sqs-block-image .design-layout-overlap .image-title *{background-color:#000;box-shadow:.2em 0 0 #000,-.2em 0 0 #000}.primary-button-style-solid .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-solid .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-collage .sqs-image-content::after,.bright-inverse .sqs-block-image .design-layout-collage .image-overlay{background-color:#9d2235}.bright-inverse .sqs-block-image .design-layout-collage .image-card{background-color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-collage .image-title *{color:#000}.bright-inverse .sqs-block-image .design-layout-collage .image-subtitle *{color:#000}.bright-inverse .sqs-block-image .design-layout-collage .image-title a,.bright-inverse .sqs-block-image .design-layout-collage .image-subtitle a{color:#000}@media (hover:hover){.bright-inverse .sqs-block-image .design-layout-collage .image-title a:hover,.bright-inverse .sqs-block-image .design-layout-collage .image-subtitle a:hover{opacity:.8}}.bright-inverse .sqs-block-image .design-layout-collage .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-solid .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary::before{border-color:#000;background-color:#e6e6e6}.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:transparent;color:#000;border:2px solid #000}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary:hover{background:#000;color:#e6e6e6}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary:hover{border-color:#e6e6e6}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary::before{border-color:#000;background-color:#000}.bright-inverse .sqs-block-image .design-layout-stack .sqs-image-content::after,.bright-inverse .sqs-block-image .design-layout-stack .image-overlay{background-color:#9d2235}.bright-inverse .sqs-block-image .design-layout-stack .image-title *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-stack .image-subtitle *{color:#e6e6e6}.bright-inverse .sqs-block-image .design-layout-stack .image-title a,.bright-inverse .sqs-block-image .design-layout-stack .image-subtitle a{color:#e6e6e6}@media (hover:hover){.bright-inverse .sqs-block-image .design-layout-stack .image-title a:hover,.bright-inverse .sqs-block-image .design-layout-stack .image-subtitle a:hover{opacity:.8}}.bright-inverse .sqs-block-image .design-layout-stack .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-solid .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.bright-inverse .sqs-block-accordion .accordion-divider{color:#e6e6e6}.bright-inverse .sqs-block-accordion .accordion-icon-container{color:#e6e6e6}.bright-inverse .menu-block .menu-select-labels{color:#e6e6e6}.bright-inverse .menu-block .menu-section-title{color:#e6e6e6}.bright-inverse .menu-block .menu-item-title{color:#e6e6e6}.bright-inverse .menu-block .menu-item-description{color:#e6e6e6}.bright-inverse .menu-block .menu-item-price-bottom{color:#e6e6e6}.bright-inverse .sqs-block-form .field-list .title{color:#e6e6e6}.bright-inverse .sqs-block-form .field-list .description{color:#e6e6e6}.bright-inverse .sqs-block-form .field-list .caption{color:#e6e6e6}.bright-inverse .sqs-block-form .field-list ::placeholder{color:#737373;opacity:1}.bright-inverse .sqs-block-form .field-list :-ms-input-placeholder{color:#737373}.bright-inverse .sqs-block-form .field-list ::-ms-input-placeholder{color:#737373}.bright-inverse .sqs-block-form .field-list .option{color:#e6e6e6}.bright-inverse .sqs-block-form .field-list .question{color:#e6e6e6}.bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{border-color:#000}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .bright-inverse .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.bright-inverse .sqs-block-quote blockquote{color:#e6e6e6}.bright-inverse .sqs-block-quote .source{color:#e6e6e6}.bright-inverse .sqs-block-newsletter .newsletter-form-header-title{color:#e6e6e6}.bright-inverse .sqs-block-newsletter .newsletter-form-header-description{color:#e6e6e6}.bright-inverse .sqs-block-newsletter .newsletter-form-button{background-color:#e6e6e6 !important;color:#000 !important}.primary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{color:#e6e6e6 !important;border-color:#e6e6e6 !important}@media (hover:hover){.primary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{background-color:#e6e6e6 !important;color:#000 !important}}.primary-button-style-outline.primary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{border-color:#000 !important}.primary-button-style-solid.primary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{background-color:#000 !important;color:#e6e6e6 !important;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#e6e6e6 !important}.tweak-global-animations-animation-type-flex.primary-button-style-solid .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#e6e6e6 !important;background-color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .bright-inverse .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#e6e6e6 !important;background-color:#e6e6e6 !important}.bright-inverse .sqs-block-newsletter .newsletter-form-footnote{color:#e6e6e6 !important}.bright-inverse .sqs-block-summary-v2 .summary-header-text{color:#e6e6e6}.bright-inverse .sqs-block-summary-v2 .summary-title{color:#e6e6e6}.bright-inverse .sqs-block-summary-v2 .summary-excerpt{color:#e6e6e6}.bright-inverse .sqs-block-summary-v2 .summary-read-more-link{color:#e6e6e6}.bright-inverse .sqs-block-summary-v2 .summary-metadata--primary{color:#e6e6e6}.bright-inverse .sqs-block-summary-v2 .summary-metadata--secondary{color:#e6e6e6}.bright-inverse .product-scarcity{color:#e6e6e6}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-regular .sqs-use--icon,.bright-inverse .social-account-links-v2-block .social-icons-style-regular .sqs-use--icon{fill:#e6e6e6}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-knockout .sqs-use--mask,.bright-inverse .social-account-links-v2-block .social-icons-style-knockout .sqs-use--mask{fill:#e6e6e6}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-solid .sqs-svg-icon--wrapper,.bright-inverse .social-account-links-v2-block .social-icons-style-solid .sqs-svg-icon--wrapper{background-color:#e6e6e6}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-solid .sqs-use--icon,.bright-inverse .social-account-links-v2-block .social-icons-style-solid .sqs-use--icon{fill:#000}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-border .sqs-svg-icon--wrapper,.bright-inverse .social-account-links-v2-block .social-icons-style-border .sqs-svg-icon--wrapper{border-color:#e6e6e6}.bright-inverse .socialaccountlinks-v2-block .social-icons-style-border .sqs-use--icon,.bright-inverse .social-account-links-v2-block .social-icons-style-border .sqs-use--icon{fill:#e6e6e6}
/*! Squarespace LESS Compiler (less.js language v1.3.3) */
.black.page-section{color:#fff}.black.page-section .sqs-background-enabled{color:#000}.black.page-section.background-width--inset{background-color:#fff}.black:not(.has-background) .section-background{background-color:#333}.black h1{color:#fff}.black h2{color:#fff}.black h3{color:#fff}.black h4{color:#fff}.black .sqsrte-large{color:#fff}.black .sqsrte-small{color:#fff}.black .sqs-background-enabled.sqs-block-html,.black .sqs-background-enabled.sqs-block-accordion{background-color:#fff}.black .sqs-background-enabled.sqs-block-html p.sqsrte-large,.black .sqs-background-enabled.sqs-block-accordion p.sqsrte-large{color:#000}.black .sqs-background-enabled.sqs-block-html p,.black .sqs-background-enabled.sqs-block-accordion p,.black .sqs-background-enabled.sqs-block-html code,.black .sqs-background-enabled.sqs-block-accordion code{color:#000}.black .sqs-background-enabled.sqs-block-html p.sqsrte-small,.black .sqs-background-enabled.sqs-block-accordion p.sqsrte-small{color:#000}.black .sqs-background-enabled.sqs-block-html h1,.black .sqs-background-enabled.sqs-block-accordion h1{color:#000}.black .sqs-background-enabled.sqs-block-html h2,.black .sqs-background-enabled.sqs-block-accordion h2{color:#000}.black .sqs-background-enabled.sqs-block-html h3,.black .sqs-background-enabled.sqs-block-accordion h3{color:#000}.black .sqs-background-enabled.sqs-block-html h4,.black .sqs-background-enabled.sqs-block-accordion h4{color:#000}.black .sqs-background-enabled.sqs-block-marquee{background-color:#fff}.black .sqs-background-enabled.sqs-block-accordion{background-color:#fff}.black .sqs-background-enabled.sqs-block-accordion .accordion-divider{color:#000}.black .sqs-background-enabled.sqs-block-accordion .accordion-icon-container{color:#000}.black .sqs-background-enabled.sqs-block-form{background-color:#fff}.black .sqs-background-enabled.sqs-block-form .field-list .title{color:#000}.black .sqs-background-enabled.sqs-block-form .field-list .description{color:#000}.black .sqs-background-enabled.sqs-block-form .field-list .caption{color:#000}.black .sqs-background-enabled.sqs-block-form .field-list .option{color:#000}.black .sqs-background-enabled.sqs-block-form .field-list .question{color:#000}.black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button{background:#000;color:#fff}.primary-button-style-solid.primary-button-shape-underline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#fff;color:#000;border-color:#000}.primary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{background:#000;color:#fff}}.primary-button-style-outline.primary-button-shape-underline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{border-color:#fff}.primary-button-style-solid.primary-button-shape-underline .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#fff;color:#000;border-color:#000}.black .sqs-background-enabled.sqs-block-newsletter{background-color:#fff}.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header-title{color:#000}.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header-description{color:#000}.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button{background-color:#000 !important;color:#fff !important}.primary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{color:#000 !important;border-color:#000 !important}@media (hover:hover){.primary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{background-color:#000 !important;color:#fff !important}}.primary-button-style-outline.primary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{border-color:#fff !important}.primary-button-style-solid.primary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{background-color:#fff !important;color:#000 !important;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-solid .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#000 !important;background-color:#fff !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#fff !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#000 !important;background-color:#000 !important}.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-footnote{color:#000 !important}.black .sqs-background-enabled.sqs-block-summary-v2{background-color:#fff}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-header-text{color:#000}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-title{color:#000}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-excerpt{color:#000}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-read-more-link{color:#000}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-metadata--primary{color:#000}.black .sqs-background-enabled.sqs-block-summary-v2 .summary-metadata--secondary{color:#000}.black .sqs-background-enabled.sqs-block-html a,.black .sqs-background-enabled .read-more-link,.black .sqs-background-enabled .entry-excerpt a,.black .sqs-background-enabled .blog-excerpt a,.black .sqs-background-enabled .eventlist-excerpt a,.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-header a,.black .sqs-background-enabled.sqs-block-newsletter .newsletter-form-footnote a,.black .sqs-background-enabled.sqs-block-newsletter .form-submission-text a,.black .sqs-background-enabled.sqs-block-form .form-submission-text a,.black .sqs-background-enabled.sqs-block-accordion .accordion-item__description a{color:#e6e6e6}.black .sqs-block-html a,.black .read-more-link,.black .entry-excerpt a,.black .blog-excerpt a,.black .eventlist-excerpt a,.black .sqs-block-newsletter .newsletter-form-header a,.black .sqs-block-newsletter .newsletter-form-footnote a,.black .sqs-block-newsletter .form-submission-text a,.black .sqs-block-form .form-submission-text a,.black .sqs-block-accordion .accordion-item__description a{color:#e6e6e6}.black :focus,.black a:focus{outline-color:#fff}.black .sqs-search-page-input.focus-within{outline-color:#fff}.black .sqs-search-page-input:focus-within{outline-color:#fff}.black .header[data-first-focusable-element][data-focus-visible-added] .header-announcement-bar-wrapper{outline-color:#fff}.black .ProductItem .variant-radiobtn[data-focus-visible-added]+label{outline-color:#fff}.black #pdp .star{fill:#fff}.black #pdp .star path{fill:#fff}.black .product-item-gallery-carousel-control:focus{outline-color:#000}.black .sqs-modal-lightbox :focus{outline-color:#000}.black .sqs-modal-lightbox.sqs-product-quick-view-lightbox :focus{outline-color:#000}.black .sqs-modal-lightbox.sqs-product-quick-view-lightbox .sqs-product-quick-view-content :focus{outline-color:#fff}.black .sqs-modal-lightbox.sqs-product-quick-view-lightbox .sqs-product-quick-view-content .product-item-gallery-carousel-control:focus{outline-color:#000}.primary-button-style-solid .black .sqs-button-element--primary,.primary-button-style-solid .black .comment-btn-wrapper .sqs-button-element--primary.comment-btn,.primary-button-style-solid .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-solid .with-button-variants .black .sqs-button-element--primary,.primary-button-style-solid .with-button-variants .black .comment-btn-wrapper .sqs-button-element--primary.comment-btn,.primary-button-style-solid .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#000;background-color:#e6e6e6;border-color:#000}.site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary,.site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--primary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--primary:hover{background-color:#e6e6e6;color:#000}}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--secondary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--secondary:hover{background-color:#e6e6e6;color:#000}}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--tertiary{color:#e6e6e6;border:1px solid #e6e6e6}@media (hover:hover){.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-button.sqs-button-element--tertiary:hover{background-color:#e6e6e6;color:#000}}.black .ma-pricing-toggle-wrapper .ma-pricing-options .ma-pricing-option-selected.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid .with-button-variants .black .sqs-button-element--secondary,.secondary-button-style-solid .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#000;background:#e6e6e6;border-color:#000}.secondary-button-style-underline .with-button-variants .black .sqs-button-element--secondary,.secondary-button-style-underline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{border-color:#e6e6e6}.secondary-button-style-outline .with-button-variants .black .sqs-button-element--secondary,.secondary-button-style-outline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .sqs-button-element--secondary:hover,.secondary-button-style-outline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover{background:#e6e6e6;color:#000}}.tertiary-button-style-solid .with-button-variants .black .sqs-button-element--tertiary,.tertiary-button-style-solid .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#000;background:#e6e6e6;border-color:#000}.tertiary-button-style-underline .with-button-variants .black .sqs-button-element--tertiary,.tertiary-button-style-underline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{border-color:#e6e6e6}.tertiary-button-style-outline .with-button-variants .black .sqs-button-element--tertiary,.tertiary-button-style-outline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .sqs-button-element--tertiary:hover,.tertiary-button-style-outline .with-button-variants .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary,.primary-button-style-outline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary:hover,.primary-button-style-outline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline .black .sqs-button-element--primary,.primary-button-style-outline .black .sqs-button-element--primary.comment-btn,.primary-button-style-outline .black .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,.primary-button-style-outline .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-button-element--primary:hover,.primary-button-style-outline .black .sqs-button-element--primary.comment-btn:hover,.primary-button-style-outline .black .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary:hover,.primary-button-style-outline .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary,.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary{border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary:hover,.primary-button-style-outline.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary:hover{border-color:#000}}.primary-button-style-outline.primary-button-shape-underline .black .sqs-button-element--primary,.primary-button-style-outline.primary-button-shape-underline .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-button-element--primary:hover,.primary-button-style-outline.primary-button-shape-underline .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{border-color:#000}}.primary-button-style-solid.primary-button-shape-underline .black .sqs-button-element--primary,.primary-button-style-solid.primary-button-shape-underline .black .sqs-button-element--primary.comment-btn,.primary-button-style-solid.primary-button-shape-underline .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--secondary,.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .sqs-button-element--secondary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black .sqs-button-element--secondary,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary{border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black .sqs-button-element--secondary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover{border-color:#000}}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .sqs-button-element--tertiary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black .sqs-button-element--tertiary,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary{border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black .sqs-button-element--tertiary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover{border-color:#000}}.black .sqs-block-horizontalrule hr{background-color:#fff}.black .section-background-overlay{background-color:#000}.black .floating-cart{background-color:#e6e6e6;color:#000}.black .floating-cart :focus{outline-color:#000}.black .floating-cart .icon--stroke svg{stroke:#000}.tweak-transparent-header .sections .black.page-section:first-child.background-width--full-bleed.has-background .section-background:after{content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(#000,150px,transparent);opacity:.05}[data-header-style="theme"].header.black,[data-header-style="dynamic"].header.black{background-color:#333}body:not(.header--menu-open) .black .header-title-text a{color:#fff}body:not(.header--menu-open) .black .header-nav-folder-content,body:not(.header--menu-open) .black .language-picker-content{background-color:#333}body:not(.header--menu-open) .black .header-nav-wrapper a{color:#fff}body:not(.header--menu-open) .black .header-nav-wrapper .header-nav-item--active a{color:#fff}body:not(.header--menu-open) .black .header-border[data-header-style="dynamic"]{border:solid #fff}body:not(.header--menu-open) .black .language-picker{color:#fff}body:not(.header--menu-open) .black .user-accounts-text-link{color:#fff}body:not(.header--menu-open) .black .cart-text-link{color:#fff}body:not(.header--menu-open) .black .burger-inner .top-bun,body:not(.header--menu-open) .black .burger-inner .patty,body:not(.header--menu-open) .black .burger-inner .bottom-bun{background-color:#fff}body:not(.header--menu-open) .black .header-actions .icon--stroke svg{stroke:#fff}body:not(.header--menu-open) .black .header-actions .icon--fill svg{fill:#fff}body:not(.header--menu-open) .black .header-actions .icon-cart-quantity{color:#fff}body:not(.header--menu-open) .black .header-nav-item--active a{background-image:linear-gradient(to right,currentColor 100%,currentColor 0)}body.header--menu-open .header.black .header-title-text a{color:#fff}body.header--menu-open .header.black .header-burger .top-bun,body.header--menu-open .header.black .header-burger .patty,body.header--menu-open .header.black .header-burger .bottom-bun{background-color:#fff}body.header--menu-open .header.black .header-nav-folder-content,body.header--menu-open .header.black .language-picker-content{background-color:#000}body.header--menu-open .header.black .header-nav-wrapper a{color:#fff}body.header--menu-open .header.black .header-nav-wrapper .header-menu-nav-item--active a,body.header--menu-open .header.black .header-nav-wrapper .header-nav-item--active a{color:#fff}body.header--menu-open .header.black .user-accounts-text-link{color:#fff}body.header--menu-open .header.black .cart-text-link{color:#fff}body.header--menu-open .header.black .header-actions .icon--stroke svg{stroke:#fff}body.header--menu-open .header.black .header-actions .icon--fill svg{fill:#fff}body.header--menu-open .header.black .header-actions .icon-cart-quantity{color:#fff}.site-wrapper .header-menu.black .header-menu-bg{background-color:#000}.site-wrapper .header-menu.black .header-menu-nav a:not(.btn){color:#fff}.site-wrapper .header-menu.black .header-menu-nav .header-menu-nav-item--active a,.site-wrapper .header-menu.black .header-menu-nav .header-nav-item--active a{color:#fff}.site-wrapper .header-menu.black .header-menu-cta a{color:#000;background-color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .header-menu.black .header-menu-cta .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .header-menu.black .header-menu-cta .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .header-menu.black .header-menu-cta .sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-outline .header-menu.black .header-menu-cta a.sqs-button-element--primary,.secondary-button-style-outline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--secondary,.tertiary-button-style-outline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .header-menu.black .header-menu-cta a.sqs-button-element--primary:hover,.secondary-button-style-outline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--secondary:hover,.tertiary-button-style-outline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .header-menu.black .header-menu-cta a.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .header-menu.black .header-menu-cta a.sqs-button-element--tertiary:hover{border-color:#000}.black .sqs-announcement-bar{background:#fff}.black .sqs-announcement-bar :focus,.black .sqs-announcement-bar a:focus{outline-color:#000}.black .sqs-announcement-bar-text p,.black .sqs-announcement-bar-text a{color:#000}.black .sqs-announcement-bar-close{color:#000}.black .gallery-fullscreen-slideshow-control-btn::before,.black .gallery-slideshow-control-btn::before{background:#000}.black .gallery-fullscreen-slideshow-control-btn svg,.black .gallery-slideshow-control-btn svg{stroke:#fff}.black .gallery-fullscreen-slideshow-bullet{border-color:#000}.black .gallery-fullscreen-slideshow-bullet.active{background-color:#000}.black .gallery-lightbox-background{background-color:#000;opacity:.9}.black .gallery-lightbox-control-btn{color:#fff}.black .gallery-lightbox-control-btn .gallery-lightbox-control-btn-icon svg *{stroke:currentColor}.black .gallery-lightbox-close-btn{color:#fff}.black .gallery-lightbox-close-btn .gallery-lightbox-close-btn-icon svg *{stroke:currentColor}.black .user-items-list .list-section-title{color:#fff}.black .user-items-list .list-section-title a{color:#fff}.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#fff}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#fff}}.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#fff}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#fff}}.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#000}}.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{background-color:#000;color:#fff}.primary-button-shape-underline.primary-button-style-outline .site-wrapper .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary.sqs-block-button-element:hover{border-color:#fff}}.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#fff}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#fff}}.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#fff}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#fff}}.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#000}}.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{background-color:#000;color:#fff}.secondary-button-shape-underline.secondary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary.sqs-block-button-element:hover{border-color:#fff}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#fff}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#fff}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#fff}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#fff}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#e6e6e6;color:#000}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#000}}.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element{color:#000;border-color:#000}@media (hover:hover){.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{background-color:#000;color:#fff}.tertiary-button-shape-underline.tertiary-button-style-outline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary.sqs-block-button-element:hover{border-color:#fff}}.black .user-items-list-simple .list-item-content__title{color:#fff}.black .user-items-list-simple .list-item-content__description{color:#fff}.black .user-items-list-simple .list-item-content__description a{color:#fff}.black .user-items-list-simple .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-simple .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-simple .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-simple .list-item[data-is-card-enabled="true"]{background-color:#fff}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#e6e6e6}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#fff;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#fff;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#fff;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-carousel .list-item-content__title{color:#fff}.black .user-items-list-carousel .list-item-content__description{color:#fff}.black .user-items-list-carousel .list-item-content__description a{color:#fff}.black .user-items-list-carousel .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-carousel .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-carousel .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-carousel .user-items-list-carousel__arrow-icon-foreground{stroke:#000}.black .user-items-list-carousel .user-items-list-carousel__arrow-icon-background{background-color:#e6e6e6}.black .user-items-list-carousel .user-items-list-carousel__arrow-button::after{border-color:#000}.black .user-items-list-carousel .user-items-list-carousel__gutter::after{border-color:#fff}.black .user-items-list-carousel[data-layout-width="full"] .user-items-list-carousel__gutter::after{border-color:#e6e6e6}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"]{background-color:#fff}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#e6e6e6}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#fff;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#fff;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#fff;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-banner-slideshow .list-item-content__title{color:#fff}.black .user-items-list-banner-slideshow .list-item-content__description{color:#fff}.black .user-items-list-banner-slideshow .list-item-content__description a{color:#fff}.black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--primary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#e6e6e6}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--secondary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#e6e6e6}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item-content__button.sqs-button-element--tertiary{color:#e6e6e6;background-color:#000;border-color:#e6e6e6}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item-content__button.sqs-block-button-element{border-color:#000}.black .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-icon-foreground{stroke:#000}.black .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-icon-background{background-color:#e6e6e6}.black .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-button::after{border-color:#000}.black .user-items-list-banner-slideshow .slideshow-gutter::after{border-color:#fff}.black .user-items-list-banner-slideshow[data-layout-width="full-bleed"] .slideshow-gutter::after{border-color:#e6e6e6}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-card-background{background-color:#fff}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__title{color:#000}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__description{color:#000}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__description a{color:#e6e6e6}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#fff;background-color:#000}.primary-button-style-solid.primary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--primary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#fff;background-color:#000}.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--secondary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}.black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#fff;background-color:#000}.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-button-element--tertiary{color:#000;background-color:#fff;border-color:#000}.primary-button-style-solid.primary-button-shape-underline .site-wrapper:not(.with-button-variants) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button.sqs-block-button-element{border-color:#fff}@media (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--primary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--secondary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--tertiary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--primary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--secondary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-button-element--tertiary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .tock-block div#Tock_widget_container>div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#fff}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#fff}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#fff}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#e6e6e6}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#000}}.tweak-global-animations-animation-type-flex.secondary-button-style-solid .with-button-variants .black .sqs-button-element--secondary:not(input):hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.secondary-button-style-solid .with-button-variants .black .sqs-button-element--secondary:not(input)::before{border-color:#e6e6e6;background-color:#000}.tweak-global-animations-animation-type-flex.tertiarty-button-style-solid .with-button-variants .black .sqs-button-element--tertiary:not(input):hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.tertiarty-button-style-solid .with-button-variants .black .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#000}@media (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--primary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--secondary:not(input):hover,.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--tertiary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--primary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--secondary:not(input)::before,.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button{color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button::before{border-color:#e6e6e6;background-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button{color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button::before{border-color:#000;background-color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-simple .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#fff}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-carousel .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#fff}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="false"] .list-item-content__button:hover{color:#000}}@media (hover:hover) and (hover:hover){.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .user-items-list-banner-slideshow .list-item[data-is-card-enabled="true"] .list-item-content__button:hover{color:#fff}}@media (hover:hover){.tweak-global-animations-animation-type-flex.secondary-button-style-outline .with-button-variants .black .sqs-button-element--secondary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.secondary-button-style-outline .with-button-variants .black .sqs-button-element--secondary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}}@media (hover:hover){.tweak-global-animations-animation-type-flex.tertiary-button-style-outline .with-button-variants .black .sqs-button-element--tertiary:not(input):hover{color:#000}.tweak-global-animations-animation-type-flex.tertiary-button-style-outline .with-button-variants .black .sqs-button-element--tertiary:not(input)::before{border-color:#e6e6e6;background-color:#e6e6e6}}.black .ImageAndText__headline{color:#fff}.black .ImageAndText__subheadline{color:#fff}.black .ImageAndText__button-link{color:#000;background-color:#e6e6e6}.black .ImageAndText__text-outer-wrapper[data-text-card-enabled="true"]{background-color:#9d2235}.black .portfolio-grid-overlay .portfolio-title{color:#fff}.black .portfolio-grid-overlay .portfolio-overlay{background-color:#000}.black .portfolio-grid-basic .portfolio-title{color:#fff}.black .portfolio-hover[data-variant-hover-cover] .portfolio-hover-item-title{color:#fff}.black .collection-type-portfolio-index-background .portfolio-index-background-link h1{color:#fff}.black .portfolio-hover[data-variant-hover-follow] .portfolio-hover-item-title{color:#fff}.black .portfolio-hover[data-variant-hover-static] .portfolio-hover-item-title{color:#fff}.black .item-pagination[data-collection-type^="portfolio"],.black.item-pagination[data-collection-type^="portfolio"]{background-color:#333}.black .item-pagination[data-collection-type^="portfolio"] .item-pagination-icon svg,.black.item-pagination[data-collection-type^="portfolio"] .item-pagination-icon svg{stroke:#fff}.black .item-pagination[data-collection-type^="portfolio"] .item-pagination-prev-next,.black.item-pagination[data-collection-type^="portfolio"] .item-pagination-prev-next{color:#fff}.black .item-pagination[data-collection-type^="portfolio"] .item-pagination-title,.black.item-pagination[data-collection-type^="portfolio"] .item-pagination-title{color:#fff}.black .lesson-title{color:#fff}.black .lessons-grid-meta-container{color:#fff}.black .lessons-list .grid-desc{color:#fff}.black .lessons-list .nested-category-children,.black .lessons-list .nested-category-tree-wrapper{color:#fff}.black .lesson-details-title{color:#fff}.black .lesson-grid-meta-container{color:#fff}.black .lesson-details-description{color:#fff}.black .lesson-item-pagination-title{color:#fff}.black .lesson-item-pagination-icon svg{stroke:#fff}.black .blog-alternating-side-by-side .blog-more-link{color:#e6e6e6}.black .blog-alternating-side-by-side .blog-more-link::after{background:#e6e6e6}.black .blog-alternating-side-by-side .blog-title{color:#fff}.black .blog-alternating-side-by-side .blog-categories-list a,.black .blog-alternating-side-by-side .blog-author,.black .blog-alternating-side-by-side .blog-date,.black .blog-alternating-side-by-side .blog-meta-delimiter{color:#fff}.black .blog-alternating-side-by-side .blog-excerpt{color:#fff}.black .blog-alternating-side-by-side .blog-list-pagination{color:#fff}.black .blog-alternating-side-by-side .blog-list-pagination .blog-list-pagination-icon{stroke:#fff}.black .blog-basic-grid .blog-more-link{color:#e6e6e6}.black .blog-basic-grid .blog-more-link::after{background:#e6e6e6}.black .blog-basic-grid .blog-title{color:#fff}.black .blog-basic-grid .blog-categories-list a,.black .blog-basic-grid .blog-author,.black .blog-basic-grid .blog-date,.black .blog-basic-grid .blog-meta-delimiter{color:#fff}.black .blog-basic-grid .blog-excerpt{color:#fff}.black .blog-basic-grid .blog-list-pagination{color:#fff}.black .blog-basic-grid .blog-list-pagination .blog-list-pagination-icon{stroke:#fff}.black .blog-masonry .blog-more-link{color:#e6e6e6}.black .blog-masonry .blog-more-link::after{background:#e6e6e6}.black .blog-masonry .blog-title{color:#fff}.black .blog-masonry .blog-categories-list a,.black .blog-masonry .blog-author,.black .blog-masonry .blog-date,.black .blog-masonry .blog-meta-delimiter{color:#fff}.black .blog-masonry .blog-excerpt{color:#fff}.black .blog-masonry .blog-list-pagination{color:#fff}.black .blog-masonry .blog-list-pagination .blog-list-pagination-icon{stroke:#fff}.black .blog-side-by-side .blog-more-link{color:#e6e6e6}.black .blog-side-by-side .blog-more-link::after{background:#e6e6e6}.black .blog-side-by-side .blog-title{color:#fff}.black .blog-side-by-side .blog-categories-list a,.black .blog-side-by-side .blog-author,.black .blog-side-by-side .blog-date,.black .blog-side-by-side .blog-meta-delimiter{color:#fff}.black .blog-side-by-side .blog-excerpt{color:#fff}.black .blog-side-by-side .blog-list-pagination{color:#fff}.black .blog-side-by-side .blog-list-pagination .blog-list-pagination-icon{stroke:#fff}.black .blog-single-column .blog-more-link{color:#e6e6e6}.black .blog-single-column .blog-more-link::after{background:#e6e6e6}.black .blog-single-column .blog-title{color:#fff}.black .blog-single-column .blog-categories-list a,.black .blog-single-column .blog-author,.black .blog-single-column .blog-date,.black .blog-single-column .blog-meta-delimiter{color:#fff}.black .blog-single-column .blog-excerpt{color:#fff}.black .blog-single-column .blog-list-pagination{color:#fff}.black .blog-single-column .blog-list-pagination .blog-list-pagination-icon{stroke:#fff}.black .blog-item-wrapper .blog-item-title h1.entry-title{color:#fff}.black .blog-item-wrapper .blog-meta-item,.black .blog-item-wrapper .blog-meta-item a,.black .blog-item-wrapper .blog-meta-item span{color:#fff}.black .blog-item-wrapper .author-name,.black .blog-item-wrapper .author-website,.black .blog-item-wrapper .author-bio{color:#fff}.black .blog-item-wrapper #comments .header-controls,.black .blog-item-wrapper #comments .header-controls .comment-count,.black .blog-item-wrapper .comment-header .user-info,.black .blog-item-wrapper .comment-header .controls{color:#fff}.black .blog-item-wrapper .comment-body *{color:#fff}.black .item-pagination[data-collection-type^="blog"],.black.item-pagination[data-collection-type^="blog"]{background-color:#333}.black .item-pagination[data-collection-type^="blog"] .item-pagination-icon svg,.black.item-pagination[data-collection-type^="blog"] .item-pagination-icon svg{stroke:#fff}.black .item-pagination[data-collection-type^="blog"] .item-pagination-prev-next,.black.item-pagination[data-collection-type^="blog"] .item-pagination-prev-next{color:#fff}.black .item-pagination[data-collection-type^="blog"] .item-pagination-title,.black.item-pagination[data-collection-type^="blog"] .item-pagination-title{color:#fff}.black .products.collection-content-wrapper .nested-category-breadcrumb-link{color:#fff}.black .products.collection-content-wrapper .ProductItem-nav-breadcrumb-link{color:#fff}.black .products.collection-content-wrapper .grid-item.on-sale .sqs-money-native{color:#e6e6e6}.black .products.collection-content-wrapper .grid-item.on-sale .original-price .sqs-money-native{color:#fff}.black .products.collection-content-wrapper .product-mark.sale{color:#e6e6e6}.black .products.collection-content-wrapper .list-pagination .product-list-pagination-icon svg{stroke:#fff}.black .products.collection-content-wrapper .category-filter-delimiter{color:#fff}.black .products.collection-content-wrapper .category-filter-link::after{background:#fff}@media (hover:hover){.black .products.collection-content-wrapper .category-filter-link:hover{color:#fff}}.black .products.collection-content-wrapper .category-filter-link.category-filter-link-all,.black .products.collection-content-wrapper .category-filter-link.active{color:#fff}.black .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link{color:#fff}@media (hover:hover){.black .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link:hover{color:#fff}}.black .products.collection-content-wrapper .category-filter-list.other-active .category-filter-link.active{color:#fff}.black .products.collection-content-wrapper .grid-main-meta .grid-title{color:#fff}.black .products.collection-content-wrapper .grid-main-meta .grid-prices{color:#fff}.black .products.collection-content-wrapper .grid-meta-status{color:#e6e6e6}.black .products.collection-content-wrapper .product-scarcity{color:#fff}.black .on-sale .product-details .sqs-money-native{color:#e6e6e6}.black .on-sale .product-details .original-price .sqs-money-native{color:#fff}.black .ProductItem.on-sale .ProductItem-details .product-price .sqs-money-native{color:#e6e6e6}.black .ProductItem .ProductItem-details{color:#fff}.black .ProductItem .ProductItem-details h1.ProductItem-details-title{color:#fff}.black .ProductItem .ProductItem-details .product-price{color:#fff}.black .ProductItem .ProductItem-details .product-price,.black .ProductItem .ProductItem-details .product-price .original-price .sqs-money-native{color:#fff}.black .ProductItem .ProductItem-details .product-scarcity{color:#e6e6e6}.black .ProductItem .ProductItem-details .variant-option,.black .ProductItem .ProductItem-details .product-quantity-input,.black .ProductItem .ProductItem-details .product-quantity-input input{color:#fff}.black .ProductItem .ProductItem-details .variant-select-wrapper:after{border-bottom-color:#fff;border-right-color:#fff}.black .ProductItem .ProductItem-nav-breadcrumb span,.black .ProductItem .ProductItem-nav-pagination span,.black .ProductItem .ProductItem-nav-breadcrumb a,.black .ProductItem .ProductItem-nav-pagination a{color:#fff}.black .ProductItem .product-item-gallery-carousel-control::after{border-color:#000}.black .ProductItem .ProductItem-gallery-current-slide-indicator{color:#000}.black .ProductItem .ProductItem-gallery-scroll::after{background:linear-gradient(to bottom,rgba(255,255,255,0) 0%,#333 100%)}.black .sqs-product-quick-view-content{background-color:#333}.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-content{background-color:#333}.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details{color:#fff}.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .ProductItem-details-title{color:#fff !important}.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .product-price,.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-option-title,.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-option,.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .quantity-label,.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .product-quantity-input input{color:#fff}.black [data-quick-view-lightbox-colors="true"] .sqs-product-quick-view-lightbox .ProductItem-details .variant-select-wrapper:after{border-bottom-color:#fff;border-right-color:#fff}.black .product-block .product-quantity-input input{color:#fff !important}.black .item-pagination[data-collection-type^="events"],.black.item-pagination[data-collection-type^="events"]{background-color:#333}.black .item-pagination[data-collection-type^="events"] .item-pagination-icon svg,.black.item-pagination[data-collection-type^="events"] .item-pagination-icon svg{stroke:#fff}.black .item-pagination[data-collection-type^="events"] .events-item-pagination-date,.black.item-pagination[data-collection-type^="events"] .events-item-pagination-date{color:#fff}.black .item-pagination[data-collection-type^="events"] .item-pagination-title,.black.item-pagination[data-collection-type^="events"] .item-pagination-title{color:#fff}.black .sqs-block-collectionlink .collectionlink-title{color:#fff}.black .image-overlay,.black .sqs-image-content::after{background-color:#000}.black .sqs-block-image .design-layout-poster .sqs-image-content::after,.black .sqs-block-image .design-layout-poster .image-overlay{background-color:#9d2235}.black .sqs-block-image .design-layout-poster .image-title *{color:#fff}.black .sqs-block-image .design-layout-poster .image-subtitle *{color:#fff}.black .sqs-block-image .design-layout-poster .image-title a,.black .sqs-block-image .design-layout-poster .image-subtitle a{color:#fff}@media (hover:hover){.black .sqs-block-image .design-layout-poster .image-title a:hover,.black .sqs-block-image .design-layout-poster .image-subtitle a:hover{opacity:.8}}.black .sqs-block-image .design-layout-poster .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-solid .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-poster .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.black .sqs-block-image .design-layout-card .sqs-image-content::after,.black .sqs-block-image .design-layout-card .image-overlay{background-color:#9d2235}.black .sqs-block-image .design-layout-card .image-title *{color:#fff}.black .sqs-block-image .design-layout-card .image-subtitle *{color:#fff}.black .sqs-block-image .design-layout-card .image-title a,.black .sqs-block-image .design-layout-card .image-subtitle a{color:#fff}@media (hover:hover){.black .sqs-block-image .design-layout-card .image-title a:hover,.black .sqs-block-image .design-layout-card .image-subtitle a:hover{opacity:.8}}.black .sqs-block-image .design-layout-card .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-solid .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-card .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.black .sqs-block-image .design-layout-overlap .sqs-image-content::after,.black .sqs-block-image .design-layout-overlap .image-overlay{background-color:#9d2235}.black .sqs-block-image .design-layout-overlap .image-title *{color:#fff}.black .sqs-block-image .design-layout-overlap .image-subtitle *{color:#fff}.black .sqs-block-image .design-layout-overlap .image-title a,.black .sqs-block-image .design-layout-overlap .image-subtitle a{color:#fff}@media (hover:hover){.black .sqs-block-image .design-layout-overlap .image-title a:hover,.black .sqs-block-image .design-layout-overlap .image-subtitle a:hover{opacity:.8}}.black .sqs-block-image .design-layout-overlap .image-title *{background-color:#000;box-shadow:.2em 0 0 #000,-.2em 0 0 #000}.primary-button-style-solid .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-solid .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-overlap .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.black .sqs-block-image .design-layout-collage .sqs-image-content::after,.black .sqs-block-image .design-layout-collage .image-overlay{background-color:#9d2235}.black .sqs-block-image .design-layout-collage .image-card{background-color:#fff}.black .sqs-block-image .design-layout-collage .image-title *{color:#000}.black .sqs-block-image .design-layout-collage .image-subtitle *{color:#000}.black .sqs-block-image .design-layout-collage .image-title a,.black .sqs-block-image .design-layout-collage .image-subtitle a{color:#000}@media (hover:hover){.black .sqs-block-image .design-layout-collage .image-title a:hover,.black .sqs-block-image .design-layout-collage .image-subtitle a:hover{opacity:.8}}.black .sqs-block-image .design-layout-collage .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-solid .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:#000;color:#fff}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:#fff;color:#000;border-color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary::before{border-color:#000;background-color:#fff}.primary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary{background:transparent;color:#000;border:2px solid #000}@media (hover:hover){.primary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary:hover{background:#000;color:#fff}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--tertiary:hover{border-color:#fff}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary:hover{color:#fff}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-collage .image-button .sqs-button-element--primary::before{border-color:#000;background-color:#000}.black .sqs-block-image .design-layout-stack .sqs-image-content::after,.black .sqs-block-image .design-layout-stack .image-overlay{background-color:#9d2235}.black .sqs-block-image .design-layout-stack .image-title *{color:#fff}.black .sqs-block-image .design-layout-stack .image-subtitle *{color:#fff}.black .sqs-block-image .design-layout-stack .image-title a,.black .sqs-block-image .design-layout-stack .image-subtitle a{color:#fff}@media (hover:hover){.black .sqs-block-image .design-layout-stack .image-title a:hover,.black .sqs-block-image .design-layout-stack .image-subtitle a:hover{opacity:.8}}.black .sqs-block-image .design-layout-stack .image-title *{background-color:rgba(0,0,0,0);box-shadow:.2em 0 0 rgba(0,0,0,0),-.2em 0 0 rgba(0,0,0,0)}.primary-button-style-solid .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-solid .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-solid .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover{color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid:not(.primary-button-shape-underline) .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#000}.primary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary{background:transparent;color:#e6e6e6;border:2px solid #e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}@media (hover:hover){.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--tertiary:hover{border-color:#000}}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary:hover{color:#000}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-image .design-layout-stack .image-button .sqs-button-element--primary::before{border-color:#e6e6e6;background-color:#e6e6e6}.black .sqs-block-accordion .accordion-divider{color:#fff}.black .sqs-block-accordion .accordion-icon-container{color:#fff}.black .menu-block .menu-select-labels{color:#fff}.black .menu-block .menu-section-title{color:#fff}.black .menu-block .menu-item-title{color:#fff}.black .menu-block .menu-item-description{color:#fff}.black .menu-block .menu-item-price-bottom{color:#fff}.black .sqs-block-form .field-list .title{color:#fff}.black .sqs-block-form .field-list .description{color:#fff}.black .sqs-block-form .field-list .caption{color:#fff}.black .sqs-block-form .field-list ::placeholder{color:#737373;opacity:1}.black .sqs-block-form .field-list :-ms-input-placeholder{color:#737373}.black .sqs-block-form .field-list ::-ms-input-placeholder{color:#737373}.black .sqs-block-form .field-list .option{color:#fff}.black .sqs-block-form .field-list .question{color:#fff}.black .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.with-button-variants .black .sqs-block-form .sqs-editable-button{background:#e6e6e6;color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.primary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{color:#e6e6e6;border-color:#e6e6e6}@media (hover:hover){.primary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{background:#e6e6e6;color:#000}}.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-form .sqs-editable-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:hover{border-color:#000}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-form .sqs-editable-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .with-button-variants .black .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary{background:#000;color:#e6e6e6;border-color:#e6e6e6}.black .sqs-block-quote blockquote{color:#fff}.black .sqs-block-quote .source{color:#fff}.black .sqs-block-newsletter .newsletter-form-header-title{color:#fff}.black .sqs-block-newsletter .newsletter-form-header-description{color:#fff}.black .sqs-block-newsletter .newsletter-form-button{background-color:#e6e6e6 !important;color:#000 !important}.primary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{color:#e6e6e6 !important;border-color:#e6e6e6 !important}@media (hover:hover){.primary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{background-color:#e6e6e6 !important;color:#000 !important}}.primary-button-style-outline.primary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover,.secondary-button-style-outline.secondary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary:hover,.tertiary-button-style-outline.tertiary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary:hover{border-color:#000 !important}.primary-button-style-solid.primary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary,.secondary-button-style-solid.secondary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--secondary,.tertiary-button-style-solid.tertiary-button-shape-underline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--tertiary{background-color:#000 !important;color:#e6e6e6 !important;border-color:#e6e6e6}.tweak-global-animations-animation-type-flex.primary-button-style-solid .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#e6e6e6 !important}.tweak-global-animations-animation-type-flex.primary-button-style-solid .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#e6e6e6 !important;background-color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary:hover{color:#000 !important}.tweak-global-animations-animation-type-flex.primary-button-style-outline .black .sqs-block-newsletter .newsletter-form-button.sqs-button-element--primary::before{border-color:#e6e6e6 !important;background-color:#e6e6e6 !important}.black .sqs-block-newsletter .newsletter-form-footnote{color:#fff !important}.black .sqs-block-summary-v2 .summary-header-text{color:#fff}.black .sqs-block-summary-v2 .summary-title{color:#fff}.black .sqs-block-summary-v2 .summary-excerpt{color:#fff}.black .sqs-block-summary-v2 .summary-read-more-link{color:#fff}.black .sqs-block-summary-v2 .summary-metadata--primary{color:#fff}.black .sqs-block-summary-v2 .summary-metadata--secondary{color:#fff}.black .product-scarcity{color:#fff}.black .socialaccountlinks-v2-block .social-icons-style-regular .sqs-use--icon,.black .social-account-links-v2-block .social-icons-style-regular .sqs-use--icon{fill:#fff}.black .socialaccountlinks-v2-block .social-icons-style-knockout .sqs-use--mask,.black .social-account-links-v2-block .social-icons-style-knockout .sqs-use--mask{fill:#fff}.black .socialaccountlinks-v2-block .social-icons-style-solid .sqs-svg-icon--wrapper,.black .social-account-links-v2-block .social-icons-style-solid .sqs-svg-icon--wrapper{background-color:#fff}.black .socialaccountlinks-v2-block .social-icons-style-solid .sqs-use--icon,.black .social-account-links-v2-block .social-icons-style-solid .sqs-use--icon{fill:#000}.black .socialaccountlinks-v2-block .social-icons-style-border .sqs-svg-icon--wrapper,.black .social-account-links-v2-block .social-icons-style-border .sqs-svg-icon--wrapper{border-color:#fff}.black .socialaccountlinks-v2-block .social-icons-style-border .sqs-use--icon,.black .social-account-links-v2-block .social-icons-style-border .sqs-use--icon{fill:#fff}</style>
<style id="rteTextColorMapping" >
.sqsrte-text-color--white { color: #ffffff; }
.sqsrte-text-color--black { color: #000000; }
.sqsrte-text-color--accent { color: #E6E6E6; }
.sqsrte-text-color--lightAccent { color: #333333; }
.sqsrte-text-color--darkAccent { color: #9D2235; }
</style>
</head>
<body
id="collection-5f2809129526e63b9bc2a9a1"
data-controller="SiteLoader, Flags"
class="
tweak-products-width-full tweak-products-image-aspect-ratio-23-standard-vertical tweak-products-text-alignment-left tweak-products-price-show tweak-products-nested-category-type-top tweak-products-category-title tweak-products-header-text-alignment-middle tweak-products-breadcrumbs tweak-blog-alternating-side-by-side-width-full tweak-blog-alternating-side-by-side-image-aspect-ratio-11-square tweak-blog-alternating-side-by-side-text-alignment-left tweak-blog-alternating-side-by-side-read-more-style-show tweak-blog-alternating-side-by-side-image-text-alignment-middle tweak-blog-alternating-side-by-side-delimiter-bullet tweak-blog-alternating-side-by-side-meta-position-top tweak-blog-alternating-side-by-side-primary-meta-categories tweak-blog-alternating-side-by-side-secondary-meta-date tweak-blog-alternating-side-by-side-excerpt-show tweak-global-animations-complexity-level-detailed tweak-global-animations-animation-style-fade tweak-global-animations-animation-type-none tweak-global-animations-animation-curve-ease tweak-blog-masonry-width-full tweak-blog-masonry-text-alignment-left tweak-blog-masonry-primary-meta-categories tweak-blog-masonry-secondary-meta-date tweak-blog-masonry-meta-position-top tweak-blog-masonry-read-more-style-show tweak-blog-masonry-delimiter-space tweak-blog-masonry-image-placement-above tweak-blog-masonry-excerpt-show tweak-portfolio-grid-overlay-width-full tweak-portfolio-grid-overlay-height-large tweak-portfolio-grid-overlay-image-aspect-ratio-11-square tweak-portfolio-grid-overlay-text-placement-center tweak-portfolio-grid-overlay-show-text-after-hover image-block-poster-text-alignment-center image-block-card-content-position-center image-block-card-text-alignment-left image-block-overlap-content-position-center image-block-overlap-text-alignment-left image-block-collage-content-position-center image-block-collage-text-alignment-left image-block-stack-text-alignment-left tweak-blog-single-column-width-full tweak-blog-single-column-text-alignment-center tweak-blog-single-column-image-placement-above tweak-blog-single-column-delimiter-bullet tweak-blog-single-column-read-more-style-show tweak-blog-single-column-primary-meta-date tweak-blog-single-column-secondary-meta-categories tweak-blog-single-column-meta-position-top tweak-blog-single-column-content-title-only tweak-product-basic-item-width-full tweak-product-basic-item-gallery-aspect-ratio-34-three-four-vertical tweak-product-basic-item-text-alignment-left tweak-product-basic-item-navigation-both tweak-product-basic-item-content-alignment-top tweak-product-basic-item-gallery-design-slideshow tweak-product-basic-item-gallery-placement-left tweak-product-basic-item-thumbnail-placement-side tweak-product-basic-item-click-action-none tweak-product-basic-item-hover-action-none tweak-product-basic-item-variant-picker-layout-dropdowns header-width-full tweak-fixed-header-style-basic tweak-blog-item-width-medium tweak-blog-item-text-alignment-center tweak-blog-item-meta-position-above-title tweak-blog-item-show-categories tweak-blog-item-show-date tweak-blog-item-delimiter-bullet primary-button-style-solid primary-button-shape-pill secondary-button-style-solid secondary-button-shape-square tertiary-button-style-solid tertiary-button-shape-square tweak-blog-side-by-side-width-full tweak-blog-side-by-side-image-placement-left tweak-blog-side-by-side-image-aspect-ratio-11-square tweak-blog-side-by-side-primary-meta-categories tweak-blog-side-by-side-secondary-meta-date tweak-blog-side-by-side-meta-position-top tweak-blog-side-by-side-text-alignment-left tweak-blog-side-by-side-image-text-alignment-middle tweak-blog-side-by-side-read-more-style-show tweak-blog-side-by-side-delimiter-bullet tweak-blog-side-by-side-excerpt-show tweak-events-stacked-width-full tweak-events-stacked-height-large tweak-events-stacked-show-thumbnails tweak-events-stacked-thumbnail-size-32-standard tweak-events-stacked-date-style-with-text tweak-events-stacked-show-time tweak-events-stacked-show-location tweak-events-stacked-show-excerpt tweak-blog-basic-grid-width-inset tweak-blog-basic-grid-image-aspect-ratio-32-standard tweak-blog-basic-grid-text-alignment-left tweak-blog-basic-grid-delimiter-bullet tweak-blog-basic-grid-image-placement-above tweak-blog-basic-grid-read-more-style-show tweak-blog-basic-grid-primary-meta-date tweak-blog-basic-grid-secondary-meta-categories tweak-blog-basic-grid-excerpt-show tweak-portfolio-grid-basic-width-full tweak-portfolio-grid-basic-height-large tweak-portfolio-grid-basic-image-aspect-ratio-11-square tweak-portfolio-grid-basic-text-alignment-left tweak-portfolio-grid-basic-hover-effect-fade header-overlay-alignment-center tweak-portfolio-index-background-link-format-stacked tweak-portfolio-index-background-width-full tweak-portfolio-index-background-height-large tweak-portfolio-index-background-vertical-alignment-middle tweak-portfolio-index-background-horizontal-alignment-center tweak-portfolio-index-background-delimiter-none tweak-portfolio-index-background-animation-type-fade tweak-portfolio-index-background-animation-duration-medium tweak-portfolio-hover-follow-layout-inline tweak-portfolio-hover-follow-delimiter-bullet tweak-portfolio-hover-follow-animation-type-fade tweak-portfolio-hover-follow-animation-duration-fast tweak-portfolio-hover-static-layout-inline tweak-portfolio-hover-static-front tweak-portfolio-hover-static-delimiter-hyphen tweak-portfolio-hover-static-animation-type-fade tweak-portfolio-hover-static-animation-duration-fast hide-opentable-icons opentable-style-dark tweak-product-quick-view-button-style-floating tweak-product-quick-view-button-position-bottom tweak-product-quick-view-lightbox-excerpt-display-truncate tweak-product-quick-view-lightbox-show-arrows tweak-product-quick-view-lightbox-show-close-button tweak-product-quick-view-lightbox-controls-weight-light native-currency-code-usd collection-type-page collection-layout-default collection-5f2809129526e63b9bc2a9a1 mobile-style-available sqs-seven-one
"
tabindex="-1"
>
<div
id="siteWrapper"
class="clearfix site-wrapper "
>
<div class="floating-cart hidden" data-controller="FloatingCart">
<a href="cart.html" class="icon icon--stroke icon--cart sqs-custom-cart">
<span class="Cart-inner">
<svg class="icon icon--cart" viewBox="0 0 31 24">
<g class="svg-icon cart-icon--odd">
<circle stroke-miterlimit="10" cx="22.5" cy="21.5" r="1"/>
<circle stroke-miterlimit="10" cx="9.5" cy="21.5" r="1"/>
<path fill="none" stroke-miterlimit="10" d="M0,1.5h5c0.6,0,1.1,0.4,1.1,1l1.7,13
c0.1,0.5,0.6,1,1.1,1h15c0.5,0,1.2-0.4,1.4-0.9l3.3-8.1c0.2-0.5-0.1-0.9-0.6-0.9H12"/>
</g>
</svg>
<div class="icon-cart-quantity">
<span class="sqs-cart-quantity">0</span>
</div>
</span>
</a>
</div>
<header
data-test="header"
id="header"
class="
header theme-col--primary
"
data-controller="Header"
data-current-styles="{
"layout": "navRight",
"action": {
"href": "/donate",
"buttonText": "Donate",
"newWindow": false
},
"showSocial": true,
"sectionTheme": "",
"menuOverlayAnimation": "fade",
"cartStyle": "cart",
"cartText": "Cart",
"showButton": false,
"showCart": false,
"showAccountLogin": true,
"headerStyle": "theme",
"languagePicker": {
"enabled": false,
"iconEnabled": false,
"iconType": "globe",
"flagShape": "shiny",
"languageFlags": [ ]
},
"mobileOptions": {
"layout": "logoLeftNavRight",
"menuIcon": "doubleLineHamburger",
"menuIconOptions": {
"style": "doubleLineHamburger",
"thickness": {
"unit": "px",
"value": 1.0
}
}
},
"dynamicOptions": {
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
}
},
"solidOptions": {
"headerOpacity": {
"unit": "%",
"value": 100.0
},
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
},
"dropShadow": {
"enabled": false,
"blur": {
"unit": "px",
"value": 30.0
},
"spread": {
"unit": "px",
"value": 0.0
},
"distance": {
"unit": "px",
"value": 0.0
}
},
"blurBackground": {
"enabled": false,
"blurRadius": {
"unit": "px",
"value": 12.0
}
}
},
"gradientOptions": {
"gradientType": "faded",
"headerOpacity": {
"unit": "%",
"value": 90.0
},
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
},
"dropShadow": {
"enabled": false,
"blur": {
"unit": "px",
"value": 30.0
},
"spread": {
"unit": "px",
"value": 0.0
},
"distance": {
"unit": "px",
"value": 0.0
}
},
"blurBackground": {
"enabled": false,
"blurRadius": {
"unit": "px",
"value": 12.0
}
}
},
"showPromotedElement": false
}"
data-section-id="header"
data-header-theme=""
data-menu-overlay-theme=""
data-header-style="theme"
data-language-picker="{
"enabled": false,
"iconEnabled": false,
"iconType": "globe",
"flagShape": "shiny",
"languageFlags": [ ]
}"
data-first-focusable-element
tabindex="-1"
>
<div class="sqs-announcement-bar-dropzone"></div>
<div class="header-announcement-bar-wrapper"
>
<a
href="#page"
tabindex="1"
class="header-skip-link sqs-button-element--primary"
>
Skip to Content
</a>
<style>
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
.header-blur-background {
}
}
</style>
<div
class="header-border"
data-header-style="theme"
data-test="header-border"
style="
"
></div>
<div
class="header-dropshadow"
data-header-style="theme"
data-test="header-dropshadow"
style="
"
></div>
<div class='header-inner container--fluid
header-mobile-layout-logo-left-nav-right
header-layout-nav-right
'
style="
"
data-test="header-inner"
>
<!-- Background -->
<div class="header-background theme-bg--primary"></div>
<div class="header-display-desktop" data-content-field="site-title">
<!-- Social -->
<!-- Title and nav wrapper -->
<div class="header-title-nav-wrapper">
<!-- Title -->
<div
class="
header-title
"
data-animation-role="header-element"
>
<div class="header-title-text">
<a id="site-title" href="index.html" data-animation-role="header-element">Start Design</a>
</div>
</div>
<!-- Nav -->
<div class="header-nav">
<div class="header-nav-wrapper">
<nav class="header-nav-list">
<div class="header-nav-item header-nav-item--folder">
<a class="header-nav-folder-title" href="dizaina-domana.html" tabindex="-1" data-animation-role="header-element">Mācību kurss</a>
<div class="header-nav-folder-content">
<div class="header-nav-folder-item">
<a href="dizaina-domana.html">Dizaina domāšana</a>
</div>
<div class="header-nav-folder-item">
<a href="izpete.html">Izpēte</a>
</div>
<div class="header-nav-folder-item">
<a href="problemas-definesana.html">Problēmas definēšana</a>
</div>
<div class="header-nav-folder-item">
<a href="ideju-izstrde.html">Ideju izstrāde</a>
</div>
<div class="header-nav-folder-item">
<a href="prototipesana.html">Prototipēšana</a>
</div>
<div class="header-nav-folder-item">
<a href="testesana.html">Testēšana</a>
</div>
</div>
</div>
<div class="header-nav-item header-nav-item--collection">
<a href="par-projektu.html" data-animation-role="header-element">
Par projektu
</a>
</div>
<div class="header-nav-item header-nav-item--collection">
<a href="dizains-un-tehnologijas.html" data-animation-role="header-element">
Dizains & tehnoloģijas
</a>
</div>
</nav>
</div>
</div>
</div>
<!-- Actions -->
<div class="header-actions header-actions--right">
<div class="header-actions-action header-actions-action--social">
<a class="icon icon--fill" href="https://www.instagram.com/startit_latvia/" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#instagram-unauth-icon" width="110" height="110"></use>
</svg>
</a>
<a class="icon icon--fill" href="https://www.youtube.com/channel/UCF80F250Gsm6z0X18nfo29Q?view_as=subscriber" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#youtube-unauth-icon" width="110" height="110"></use>
</svg>
</a>
<a class="icon icon--fill" href="https://www.facebook.com/startitlv" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#facebook-unauth-icon" width="110" height="110"></use>
</svg>
</a>
</div>
<div class="showOnMobile">
</div>
<div class="showOnDesktop">
</div>
</div>
<!-- Burger -->
<div class="header-burger
menu-overlay-has-visible-non-navigation-items
" data-animation-role="header-element">
<button class="header-burger-btn burger" data-test="header-burger">
<span hidden class="js-header-burger-open-title visually-hidden">Open Menu</span>
<span hidden class="js-header-burger-close-title visually-hidden">Close Menu</span>
<div class="burger-box">
<div class="burger-inner
header-menu-icon-doubleLineHamburger
">
<div class="top-bun"></div>
<div class="patty"></div>
<div class="bottom-bun"></div>
</div>
</div>
</button>
</div>
</div>
<div class="header-display-mobile" data-content-field="site-title">
<!-- Social -->
<!-- Title and nav wrapper -->
<div class="header-title-nav-wrapper">
<!-- Title -->
<div
class="
header-title
"
data-animation-role="header-element"
>
<div class="header-title-text">
<a id="site-title" href="index.html" data-animation-role="header-element">Start Design</a>
</div>
</div>
<!-- Nav -->
<div class="header-nav">
<div class="header-nav-wrapper">
<nav class="header-nav-list">
<div class="header-nav-item header-nav-item--folder">
<a class="header-nav-folder-title" href="dizaina-domana.html" tabindex="-1" data-animation-role="header-element">Mācību kurss</a>
<div class="header-nav-folder-content">
<div class="header-nav-folder-item">
<a href="dizaina-domana.html">Dizaina domāšana</a>
</div>
<div class="header-nav-folder-item">
<a href="izpete.html">Izpēte</a>
</div>
<div class="header-nav-folder-item">
<a href="problemas-definesana.html">Problēmas definēšana</a>
</div>
<div class="header-nav-folder-item">
<a href="ideju-izstrde.html">Ideju izstrāde</a>
</div>
<div class="header-nav-folder-item">
<a href="prototipesana.html">Prototipēšana</a>
</div>
<div class="header-nav-folder-item">
<a href="testesana.html">Testēšana</a>
</div>
</div>
</div>
<div class="header-nav-item header-nav-item--collection">
<a href="par-projektu.html" data-animation-role="header-element">
Par projektu
</a>
</div>
<div class="header-nav-item header-nav-item--collection">
<a href="dizains-un-tehnologijas.html" data-animation-role="header-element">
Dizains & tehnoloģijas
</a>
</div>
</nav>
</div>
</div>
</div>
<!-- Actions -->
<div class="header-actions header-actions--right">
<div class="header-actions-action header-actions-action--social">
<a class="icon icon--fill" href="https://www.instagram.com/startit_latvia/" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#instagram-unauth-icon" width="110" height="110"></use>
</svg>
</a>
<a class="icon icon--fill" href="https://www.youtube.com/channel/UCF80F250Gsm6z0X18nfo29Q?view_as=subscriber" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#youtube-unauth-icon" width="110" height="110"></use>
</svg>
</a>
<a class="icon icon--fill" href="https://www.facebook.com/startitlv" target="_blank" aria-label="">
<svg viewBox="23 23 64 64">
<use xlink:href="#facebook-unauth-icon" width="110" height="110"></use>
</svg>
</a>
</div>
<div class="showOnMobile">
</div>
<div class="showOnDesktop">
</div>
</div>
<!-- Burger -->
<div class="header-burger
menu-overlay-has-visible-non-navigation-items
" data-animation-role="header-element">
<button class="header-burger-btn burger" data-test="header-burger">
<span hidden class="js-header-burger-open-title visually-hidden">Open Menu</span>
<span hidden class="js-header-burger-close-title visually-hidden">Close Menu</span>
<div class="burger-box">
<div class="burger-inner
header-menu-icon-doubleLineHamburger
">
<div class="top-bun"></div>
<div class="patty"></div>
<div class="bottom-bun"></div>
</div>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- (Mobile) Menu Navigation -->
<div class="header-menu header-menu--folder-list
"
data-current-styles="{
"layout": "navRight",
"action": {
"href": "/donate",
"buttonText": "Donate",
"newWindow": false
},
"showSocial": true,
"sectionTheme": "",
"menuOverlayAnimation": "fade",
"cartStyle": "cart",
"cartText": "Cart",
"showButton": false,
"showCart": false,
"showAccountLogin": true,
"headerStyle": "theme",
"languagePicker": {
"enabled": false,
"iconEnabled": false,
"iconType": "globe",
"flagShape": "shiny",
"languageFlags": [ ]
},
"mobileOptions": {
"layout": "logoLeftNavRight",
"menuIcon": "doubleLineHamburger",
"menuIconOptions": {
"style": "doubleLineHamburger",
"thickness": {
"unit": "px",
"value": 1.0
}
}
},
"dynamicOptions": {
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
}
},
"solidOptions": {
"headerOpacity": {
"unit": "%",
"value": 100.0
},
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
},
"dropShadow": {
"enabled": false,
"blur": {
"unit": "px",
"value": 30.0
},
"spread": {
"unit": "px",
"value": 0.0
},
"distance": {
"unit": "px",
"value": 0.0
}
},
"blurBackground": {
"enabled": false,
"blurRadius": {
"unit": "px",
"value": 12.0
}
}
},
"gradientOptions": {
"gradientType": "faded",
"headerOpacity": {
"unit": "%",
"value": 90.0
},
"border": {
"enabled": false,
"position": "allSides",
"thickness": {
"unit": "px",
"value": 4.0
}
},
"dropShadow": {
"enabled": false,
"blur": {
"unit": "px",
"value": 30.0
},
"spread": {
"unit": "px",
"value": 0.0
},
"distance": {
"unit": "px",
"value": 0.0
}
},
"blurBackground": {
"enabled": false,
"blurRadius": {
"unit": "px",
"value": 12.0
}
}
},
"showPromotedElement": false
}"
data-section-id="overlay-nav"
data-show-account-login="true"
data-test="header-menu">
<div class="header-menu-bg theme-bg--primary"></div>
<div class="header-menu-nav">
<nav class="header-menu-nav-list">
<div data-folder="root" class="header-menu-nav-folder">
<!-- Menu Navigation -->
<div class="header-menu-nav-folder-content">
<div class="container header-menu-nav-item">
<a data-folder-id="/mcbu-kurss" href="dizaina-domana.html">
<div class="header-menu-nav-item-content">
<span class="visually-hidden">Folder:</span>
<span>Mācību kurss</span>
<span class="chevron chevron--right"></span>
</div>
</a>
</div>
<div data-folder="/mcbu-kurss" class="header-menu-nav-folder">
<div class="header-menu-nav-folder-content">
<div class="header-menu-controls container header-menu-nav-item">
<a class="header-menu-controls-control header-menu-controls-control--active" data-action="back" href="index.html">
<span class="chevron chevron--left"></span><span>Back</span>
</a>
</div>
<div class="container header-menu-nav-item">
<a href="dizaina-domana.html">
Dizaina domāšana
</a>
</div>
<div class="container header-menu-nav-item">
<a href="izpete.html">
Izpēte
</a>
</div>
<div class="container header-menu-nav-item">
<a href="problemas-definesana.html">
Problēmas definēšana
</a>
</div>
<div class="container header-menu-nav-item">
<a href="ideju-izstrde.html">
Ideju izstrāde
</a>
</div>
<div class="container header-menu-nav-item">
<a href="prototipesana.html">
Prototipēšana
</a>
</div>
<div class="container header-menu-nav-item">
<a href="testesana.html">
Testēšana
</a>
</div>
</div>
</div>
<div class="container header-menu-nav-item header-menu-nav-item--collection">
<a href="par-projektu.html">
Par projektu
</a>
</div>
<div class="container header-menu-nav-item header-menu-nav-item--collection">
<a href="dizains-un-tehnologijas.html">