@royaloperahouse/harmonic 0.1.9-a → 0.1.10-a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/SponsorLogo/SponsorLogo.d.ts +1 -1
- package/dist/components/atoms/SponsorLogo/SponsorLogo.style.d.ts +1 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/organisms/Footer/Footer.style.d.ts +0 -1
- package/dist/harmonic.cjs.development.css +1 -1
- package/dist/harmonic.cjs.development.js +252 -80
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +253 -81
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/editorial.d.ts +3 -3
- package/dist/types/types.d.ts +0 -8
- package/package.json +1 -1
|
@@ -365,6 +365,20 @@ function _taggedTemplateLiteralLoose(e, t) {
|
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
var _excluded = ["children", "size", "color", "className"];
|
|
368
|
+
/* ~~~ Headers - size and hierarchy set separately ~~~ */
|
|
369
|
+
var HarmonicHeader = function HarmonicHeader(_ref2) {
|
|
370
|
+
var children = _ref2.children,
|
|
371
|
+
size = _ref2.size,
|
|
372
|
+
em = _ref2.em,
|
|
373
|
+
_ref2$color = _ref2.color,
|
|
374
|
+
color = _ref2$color === void 0 ? 'primary' : _ref2$color,
|
|
375
|
+
serif = _ref2.serif,
|
|
376
|
+
Tag = _ref2.hierarchy,
|
|
377
|
+
className = _ref2.className;
|
|
378
|
+
return /*#__PURE__*/React__default.createElement(Tag, {
|
|
379
|
+
className: "header " + size + " color-" + color + " " + (serif ? "serif" : '') + " " + (em ? "em" : '') + " " + className
|
|
380
|
+
}, children);
|
|
381
|
+
};
|
|
368
382
|
/* ~~~ Body Copy Text - (use case) ~~~ */
|
|
369
383
|
var BodyCopyHarmonic = function BodyCopyHarmonic(_ref4) {
|
|
370
384
|
var children = _ref4.children,
|
|
@@ -3467,51 +3481,219 @@ var SectionSplitter = function SectionSplitter(_ref) {
|
|
|
3467
3481
|
};
|
|
3468
3482
|
|
|
3469
3483
|
var _templateObject$i;
|
|
3470
|
-
|
|
3471
|
-
// width: 100%;
|
|
3472
|
-
// max-width: 90%;
|
|
3473
|
-
// height: auto;
|
|
3474
|
-
// @media ${devices.tablet} {
|
|
3475
|
-
// max-width: 100%;
|
|
3476
|
-
// }
|
|
3477
|
-
// @media ${devices.mobile} {
|
|
3478
|
-
// max-width: 50%;
|
|
3479
|
-
// }
|
|
3480
|
-
// svg {
|
|
3481
|
-
// display: block; /* Avoids inline SVG extra spacing issues */
|
|
3482
|
-
// width: 100%;
|
|
3483
|
-
// height: auto;
|
|
3484
|
-
// max-width: 100%;
|
|
3485
|
-
// }
|
|
3486
|
-
// `;
|
|
3487
|
-
var SponsorLogoWrapper = /*#__PURE__*/styled__default.div(_templateObject$i || (_templateObject$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: block;\n height: auto;\n width: 100%;\n max-width: 100%;\n\n @media ", " {\n max-width: 100%;\n }\n\n @media ", " {\n max-width: 50%;\n }\n"])), devices.tablet, devices.mobile);
|
|
3488
|
-
/*
|
|
3489
|
-
img {
|
|
3490
|
-
display: block; Avoids inline SVG extra spacing issues
|
|
3491
|
-
width: 100%;
|
|
3492
|
-
height: auto;
|
|
3493
|
-
max-width: 100%;
|
|
3494
|
-
}
|
|
3495
|
-
|
|
3496
|
-
*/
|
|
3484
|
+
var SponsorLogoWrapper = /*#__PURE__*/styled__default.div(_templateObject$i || (_templateObject$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--color-base-black);\n width: 100%;\n max-width: 90%;\n height: auto;\n\n @media ", " {\n max-width: 100%;\n }\n\n @media ", " {\n max-width: 50%;\n }\n\n svg {\n display: block; /* Avoids inline SVG extra spacing issues */\n width: 100%;\n height: auto;\n max-width: 100%;\n }\n"])), devices.tablet, devices.mobile);
|
|
3497
3485
|
|
|
3486
|
+
/* eslint-disable max-len */
|
|
3498
3487
|
var SponsorLogo = function SponsorLogo(_ref) {
|
|
3499
3488
|
var _ref$colorLogo = _ref.colorLogo,
|
|
3500
3489
|
colorLogo = _ref$colorLogo === void 0 ? '#fff' : _ref$colorLogo,
|
|
3501
3490
|
_ref$colorBackground = _ref.colorBackground,
|
|
3502
3491
|
colorBackground = _ref$colorBackground === void 0 ? '#1d1d1b' : _ref$colorBackground,
|
|
3503
3492
|
_ref$alt = _ref.alt,
|
|
3504
|
-
alt = _ref$alt === void 0 ? 'Sponsor Logo' : _ref$alt
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3493
|
+
alt = _ref$alt === void 0 ? 'Sponsor Logo' : _ref$alt;
|
|
3494
|
+
return /*#__PURE__*/React__default.createElement(SponsorLogoWrapper, null, /*#__PURE__*/React__default.createElement("svg", {
|
|
3495
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3496
|
+
viewBox: "0 0 258.64 57.26",
|
|
3497
|
+
preserveAspectRatio: "xMidYMid meet" // Maintains the aspect ratio while centering
|
|
3498
|
+
,
|
|
3499
|
+
role: "img",
|
|
3510
3500
|
"aria-label": alt
|
|
3511
|
-
},
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
}
|
|
3501
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
3502
|
+
id: "Layer_2",
|
|
3503
|
+
"data-name": "Layer 2"
|
|
3504
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
3505
|
+
id: "Layer_1-2",
|
|
3506
|
+
"data-name": "Layer 1"
|
|
3507
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
3508
|
+
fill: colorLogo,
|
|
3509
|
+
d: "M48.59,20.83l0-1.16-4.8,1.72,0,1.26,4.9,1.44,0-1.1-1.09-.3-.06-1.52Zm-1.89.59,0,1.11-2-.52v0Z"
|
|
3510
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3511
|
+
fill: colorLogo,
|
|
3512
|
+
d: "M48.8,18.33l.36-1.09-1.87-.6c.13-.4.18-.55.86-.52l1.36,0L49.88,15l-1.66,0c-.61,0-.84.07-1,.39h0a1.14,1.14,0,0,0-.84-1.29c-.85-.27-1.39.26-1.64,1l-.55,1.68ZM45.31,16l.1-.33c.19-.58.6-.52.79-.46a.63.63,0,0,1,.41.84l-.11.33Z"
|
|
3513
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3514
|
+
fill: colorLogo,
|
|
3515
|
+
points: "50.82 13.54 51.47 12.61 48.22 10.32 48.82 9.46 48.1 8.96 46.23 11.62 46.95 12.13 47.56 11.26 50.82 13.54"
|
|
3516
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3517
|
+
fill: colorLogo,
|
|
3518
|
+
d: "M51.76,5.65a4.57,4.57,0,0,0-1,.61,1.43,1.43,0,0,0-.4,2.14c1.11,1.33,2.28-.25,2.89.46a.62.62,0,0,1-.18.9,2.56,2.56,0,0,1-1,.46l.56.76a4.67,4.67,0,0,0,1.14-.68,1.52,1.52,0,0,0,.35-2.22c-1.11-1.32-2.31.22-2.88-.46-.23-.27-.13-.58.16-.82a2.15,2.15,0,0,1,.89-.42Z"
|
|
3519
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3520
|
+
fill: colorLogo,
|
|
3521
|
+
d: "M60.54,2.18a2.8,2.8,0,0,0-1.3.06,2.23,2.23,0,0,0-1.56,2.91,2.28,2.28,0,0,0,2.77,2,4,4,0,0,0,1.14-.44l-.26-1a2.05,2.05,0,0,1-.91.47c-.71.17-1.39-.34-1.6-1.26s.11-1.67.85-1.84a1.85,1.85,0,0,1,1,0Z"
|
|
3522
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3523
|
+
fill: colorLogo,
|
|
3524
|
+
d: "M63.1,4.21c-.17,1.42.35,2.58,1.74,2.75S67,6.13,67.19,4.72,66.84,2.14,65.45,2s-2.17.82-2.35,2.23m1.16.15c.12-.93.44-1.65,1.09-1.57s.8.86.69,1.78-.45,1.65-1.1,1.57-.79-.86-.68-1.78"
|
|
3525
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3526
|
+
fill: colorLogo,
|
|
3527
|
+
d: "M68.82,5.91a1.65,1.65,0,0,0,.75,2.45A1.65,1.65,0,0,0,72,7.52L73.4,4.77l-1-.52L70.89,7.17c-.22.43-.51.61-.92.41s-.44-.56-.21-1l1.48-2.91-1-.52Z"
|
|
3528
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3529
|
+
fill: colorLogo,
|
|
3530
|
+
points: "72.35 9.88 73.04 10.6 75.57 8.16 75.58 8.17 74.02 11.61 74.96 12.58 78.45 9.21 77.75 8.49 75.34 10.83 75.33 10.82 76.76 7.47 75.84 6.5 72.35 9.88"
|
|
3531
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3532
|
+
fill: colorLogo,
|
|
3533
|
+
d: "M81.32,14.62A2.92,2.92,0,0,0,81,13.36a2.24,2.24,0,0,0-3.2-.87,2.28,2.28,0,0,0-1.28,3.14,4.1,4.1,0,0,0,.69,1l.89-.49a2,2,0,0,1-.66-.78,1.4,1.4,0,0,1,.86-1.84c.88-.43,1.65-.26,2,.43a1.79,1.79,0,0,1,.18,1Z"
|
|
3534
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
3535
|
+
fill: colorLogo,
|
|
3536
|
+
x: "77.47",
|
|
3537
|
+
y: "17.86",
|
|
3538
|
+
width: "4.85",
|
|
3539
|
+
height: "1.14",
|
|
3540
|
+
transform: "translate(-1.99 14.27) rotate(-10.08)"
|
|
3541
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3542
|
+
fill: colorLogo,
|
|
3543
|
+
points: "77.75 21.16 77.56 23.9 78.43 23.96 78.54 22.36 82.51 22.64 82.59 21.49 77.75 21.16"
|
|
3544
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3545
|
+
fill: colorLogo,
|
|
3546
|
+
points: "48.1 32.49 49.47 34.12 49.78 33.85 48.68 32.56 50.15 31.32 51.15 32.52 51.45 32.25 50.46 31.06 51.78 29.94 52.83 31.2 53.14 30.93 51.81 29.36 48.1 32.49"
|
|
3547
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3548
|
+
fill: colorLogo,
|
|
3549
|
+
points: "51.54 36.09 51.88 36.31 54.27 32.76 54.28 32.77 53.58 37.46 54.04 37.78 56.75 33.74 56.42 33.52 54.01 37.11 53.99 37.1 54.72 32.38 54.26 32.06 51.54 36.09"
|
|
3550
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3551
|
+
fill: colorLogo,
|
|
3552
|
+
d: "M59.06,37.34l.83.24-.47,1.64a1.43,1.43,0,0,1-.68,0,1.83,1.83,0,0,1-1.05-2.46c.43-1.47,1.47-1.73,2.13-1.53a1.89,1.89,0,0,1,.9.57l.15-.45A2.92,2.92,0,0,0,60,34.8a2.23,2.23,0,0,0-2.7,1.75,2.27,2.27,0,0,0,1.35,3,2.24,2.24,0,0,0,1.15,0l.66-2.3L59.17,37Z"
|
|
3553
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3554
|
+
fill: colorLogo,
|
|
3555
|
+
points: "62.58 40.06 64.59 40.06 64.59 39.67 63.01 39.67 63.01 35.22 62.58 35.22 62.58 40.06"
|
|
3556
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3557
|
+
fill: colorLogo,
|
|
3558
|
+
d: "M66.56,39.85l.41-.12L67,38.32l1.86-.53L69.66,39l.44-.12L67.21,34.6l-.44.13Zm.55-4.73h0l1.53,2.31L67,37.91Z"
|
|
3559
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3560
|
+
fill: colorLogo,
|
|
3561
|
+
points: "72.18 37.79 72.52 37.56 70.19 33.97 70.2 33.97 74.24 36.45 74.7 36.16 72.06 32.07 71.72 32.3 74.07 35.92 74.06 35.92 70.01 33.42 69.54 33.71 72.18 37.79"
|
|
3562
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3563
|
+
fill: colorLogo,
|
|
3564
|
+
d: "M77.11,33.88l.47-.58A2.21,2.21,0,0,0,77,30a2.07,2.07,0,0,0-3.31.42l-.4.5ZM73.88,30.8l.22-.28c1-1.3,2.07-.62,2.67-.14,1,.75,1.23,1.71.56,2.56l-.27.36Z"
|
|
3565
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3566
|
+
fill: colorLogo,
|
|
3567
|
+
d: "M110.46,21h0l-2.33,6.65h4.71Zm-1.78-3.24h3.65l6.33,16.12h-3.58l-1.39-3.69h-6.53l-1.41,3.69H102.4Z"
|
|
3568
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3569
|
+
fill: colorLogo,
|
|
3570
|
+
d: "M123.57,24.66h1.07c1.59,0,3.42-.24,3.42-2.24s-1.81-2.11-3.42-2.11h-1.07Zm-3.23-6.89h3.49c3.46,0,7.6-.11,7.6,4.37a3.69,3.69,0,0,1-3.33,3.74v0c.88.07,1.39.95,1.71,1.67l2.59,6.31h-3.61l-1.93-5c-.47-1.2-.88-1.66-2.25-1.66h-1v6.7h-3.23Z"
|
|
3571
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3572
|
+
fill: colorLogo,
|
|
3573
|
+
points: "137.59 20.31 132.97 20.31 132.97 17.77 145.45 17.77 145.45 20.31 140.82 20.31 140.82 33.9 137.59 33.9 137.59 20.31"
|
|
3574
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3575
|
+
fill: colorLogo,
|
|
3576
|
+
d: "M156.16,20.73a8.35,8.35,0,0,0-3.28-.69,2.24,2.24,0,0,0-2.54,2.24c0,2.79,7.07,1.61,7.07,7,0,3.53-2.8,4.87-6,4.87a14.29,14.29,0,0,1-4.14-.62l.3-2.91a7.79,7.79,0,0,0,3.65,1c1.22,0,2.86-.62,2.86-2.08,0-3.07-7.06-1.8-7.06-7.13,0-3.61,2.79-4.92,5.63-4.92a12.25,12.25,0,0,1,3.86.57Z"
|
|
3577
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3578
|
+
fill: colorLogo,
|
|
3579
|
+
d: "M178,33.67a16.81,16.81,0,0,1-3.67.5c-5.22,0-8.85-2.61-8.85-8.06s3.37-8.61,8.85-8.61a10.39,10.39,0,0,1,3.64.67l-.23,2.72a6.65,6.65,0,0,0-3.48-.85c-3.33,0-5.41,2.54-5.41,5.84s2,5.75,5.48,5.75a9.05,9.05,0,0,0,3.53-.67Z"
|
|
3580
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3581
|
+
fill: colorLogo,
|
|
3582
|
+
d: "M187.42,31.63c3.3,0,4.53-2.93,4.53-5.84S190.63,20,187.42,20,182.9,23,182.9,25.79s1.22,5.84,4.52,5.84m0-14.13c5.06,0,7.9,3.42,7.9,8.29s-2.79,8.38-7.9,8.38-7.89-3.44-7.89-8.38,2.77-8.29,7.89-8.29"
|
|
3583
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3584
|
+
fill: colorLogo,
|
|
3585
|
+
d: "M197.47,17.77h3.23v9.31c0,2.75.88,4.55,3.35,4.55s3.35-1.8,3.35-4.55V17.77h3.23V28.08c0,4.31-2.45,6.09-6.58,6.09s-6.58-1.78-6.58-6.09Z"
|
|
3586
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3587
|
+
fill: colorLogo,
|
|
3588
|
+
points: "213.06 17.77 217.03 17.77 223.17 29.83 223.22 29.83 223.22 17.77 226.31 17.77 226.31 33.89 222.36 33.89 216.2 21.84 216.15 21.84 216.15 33.89 213.06 33.89 213.06 17.77"
|
|
3589
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3590
|
+
fill: colorLogo,
|
|
3591
|
+
d: "M240.93,33.67a16.81,16.81,0,0,1-3.67.5c-5.22,0-8.85-2.61-8.85-8.06s3.37-8.61,8.85-8.61a10.43,10.43,0,0,1,3.64.67l-.23,2.72a6.65,6.65,0,0,0-3.48-.85c-3.33,0-5.41,2.54-5.41,5.84s2,5.75,5.48,5.75a9.05,9.05,0,0,0,3.53-.67Z"
|
|
3592
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
3593
|
+
fill: colorLogo,
|
|
3594
|
+
x: "243.37",
|
|
3595
|
+
y: "17.77",
|
|
3596
|
+
width: "3.23",
|
|
3597
|
+
height: "16.12"
|
|
3598
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3599
|
+
fill: colorLogo,
|
|
3600
|
+
points: "249.15 17.77 252.38 17.77 252.38 31.35 258.64 31.35 258.64 33.89 249.15 33.89 249.15 17.77"
|
|
3601
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3602
|
+
fill: colorLogo,
|
|
3603
|
+
points: "102.45 40.87 111.96 40.87 111.96 43.41 105.68 43.41 105.68 47.38 111.43 47.38 111.43 49.92 105.68 49.92 105.68 54.45 112.01 54.45 112.01 56.99 102.45 56.99 102.45 40.87"
|
|
3604
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3605
|
+
fill: colorLogo,
|
|
3606
|
+
points: "114.66 40.87 118.64 40.87 124.78 52.92 124.82 52.92 124.82 40.87 127.92 40.87 127.92 56.99 123.97 56.99 117.8 44.93 117.76 44.93 117.76 56.99 114.66 56.99 114.66 40.87"
|
|
3607
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3608
|
+
fill: colorLogo,
|
|
3609
|
+
d: "M143.51,44a10.56,10.56,0,0,0-4.17-.86A5.48,5.48,0,0,0,133.51,49c0,3.28,2,5.75,5.47,5.75a8.6,8.6,0,0,0,2.12-.23v-4.2h-3.42V47.75h6.51v8.68a20.3,20.3,0,0,1-5.21.83c-5.22,0-8.85-2.61-8.85-8.06s3.38-8.61,8.85-8.61a15.72,15.72,0,0,1,4.73.67Z"
|
|
3610
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3611
|
+
fill: colorLogo,
|
|
3612
|
+
points: "146.78 40.87 150.01 40.87 150.01 54.45 156.27 54.45 156.27 56.99 146.78 56.99 146.78 40.87"
|
|
3613
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3614
|
+
fill: colorLogo,
|
|
3615
|
+
d: "M165.76,44.1h0l-2.34,6.65h4.72ZM164,40.87h3.65L174,57h-3.58L169,53.29h-6.54l-1.4,3.7H157.7Z"
|
|
3616
|
+
}), /*#__PURE__*/React__default.createElement("polygon", {
|
|
3617
|
+
fill: colorLogo,
|
|
3618
|
+
points: "175.53 40.87 179.5 40.87 185.65 52.92 185.69 52.92 185.69 40.87 188.79 40.87 188.79 56.99 184.84 56.99 178.67 44.93 178.62 44.93 178.62 56.99 175.53 56.99 175.53 40.87"
|
|
3619
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3620
|
+
fill: colorLogo,
|
|
3621
|
+
d: "M194.66,54.45h1.8a5.27,5.27,0,0,0,5.31-5.52,5.27,5.27,0,0,0-5.31-5.52h-1.8Zm-3.23-13.58h4.41c4.94,0,9.3,1.66,9.3,8.06S200.78,57,195.84,57h-4.41Z"
|
|
3622
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3623
|
+
fill: colorLogo,
|
|
3624
|
+
d: "M248,3.39h-.7l1.84,5.24-.13.46c-.2.67-.39,1.12-.94,1.12a1.29,1.29,0,0,1-.47-.08l-.06.55a3,3,0,0,0,.69.08c.72,0,1.08-.71,1.33-1.42l2.07-5.95h-.67L249.43,7.7h0ZM245.88,6c0,1-.31,2.16-1.53,2.16S242.81,6.92,242.81,6s.37-2.17,1.54-2.17S245.88,5,245.88,6m-3.71,2.59h.64V7.75h0a1.68,1.68,0,0,0,1.62.94c1.42,0,2.13-1.18,2.13-2.71s-.61-2.71-2.13-2.71a1.75,1.75,0,0,0-1.62,1h0V1h-.64Zm-3.46-5.18h-.64V4h0a1.7,1.7,0,0,0-1.61-.71c-1.53,0-2.14,1.13-2.14,2.71,0,1.15.53,2.59,2.19,2.59a1.6,1.6,0,0,0,1.57-1h0c0,1.46-.14,2.66-1.79,2.66a3.55,3.55,0,0,1-1.52-.36l-.05.64a5.45,5.45,0,0,0,1.56.27c1.78,0,2.43-1.18,2.43-2.62ZM235,6c0-1,.32-2.17,1.54-2.17s1.53.92,1.53,2.17c0,.94-.41,2-1.57,2S235,7,235,6m-6.17,2.59h.64V5.7c0-.86.37-1.89,1.54-1.89.88,0,1.23.63,1.23,1.61V8.57h.63V5.26c0-1.14-.48-2-1.76-2a1.64,1.64,0,0,0-1.68,1h0V3.39h-.62c0,.41,0,.82,0,1.22Zm-1.71-7.42h-.64V2h.64Zm-.64,7.42h.64V3.39h-.64ZM221.1,6c0-1,.31-2.17,1.53-2.17S224.17,5,224.17,6s-.4,2.16-1.54,2.16S221.1,7,221.1,6m3.7-5h-.63V4.26h0a1.76,1.76,0,0,0-1.62-1C221,3.27,220.4,4.4,220.4,6s.71,2.71,2.13,2.71a1.68,1.68,0,0,0,1.62-.94h0v.82h.63Zm-9.89,7.62h.64V5.7c0-.86.37-1.89,1.54-1.89.88,0,1.22.63,1.22,1.61V8.57H219V5.26c0-1.14-.48-2-1.76-2a1.64,1.64,0,0,0-1.68,1h0V3.39h-.62c0,.41,0,.82,0,1.22Zm-1.72-5.18h-.64V6.25c0,.87-.36,1.89-1.53,1.89-.89,0-1.23-.63-1.23-1.6V3.39h-.64V6.7c0,1.14.49,2,1.77,2a1.64,1.64,0,0,0,1.67-1h0v.93h.62c0-.42,0-.83,0-1.22Zm-7.08,5.18h.64V3.93h1.17V3.39h-1.17V2.94c0-.62-.09-1.57.78-1.57a1.13,1.13,0,0,1,.51.12l0-.56a1.47,1.47,0,0,0-.6-.1c-1.33,0-1.37,1.09-1.37,2.18v.38h-1v.54h1Zm-3.5-5.1a3.91,3.91,0,0,0-1.25-.2A2.51,2.51,0,0,0,198.8,6a2.45,2.45,0,0,0,2.48,2.71,3.89,3.89,0,0,0,1.33-.18l-.06-.6a3.38,3.38,0,0,1-1.17.23A2,2,0,0,1,199.5,6a1.93,1.93,0,0,1,1.95-2.17,2.78,2.78,0,0,1,1.11.27Zm-5.2-2.32h-.64V2h.64Zm-.64,7.42h.64V3.39h-.64Zm-2.35,0h.64V1h-.64ZM192.26,6c0,1-.31,2.16-1.53,2.16S189.19,6.92,189.19,6s.37-2.17,1.54-2.17S192.26,5,192.26,6m-3.71,2.59h.64V7.75h0a1.68,1.68,0,0,0,1.62.94C192.25,8.69,193,7.51,193,6s-.61-2.71-2.13-2.71a1.75,1.75,0,0,0-1.62,1h0V1h-.64Zm-1.68-5.18h-.64V6.25c0,.87-.36,1.89-1.53,1.89-.89,0-1.23-.63-1.23-1.6V3.39h-.64V6.7c0,1.14.49,2,1.77,2a1.64,1.64,0,0,0,1.67-1h0v.93h.62c0-.42,0-.83,0-1.22ZM180.69,6c0,1-.32,2.16-1.54,2.16S177.62,6.92,177.62,6s.39-2.17,1.53-2.17S180.69,5,180.69,6M177,10.7h.64v-3h0a1.6,1.6,0,0,0,1.61,1c1.43,0,2.13-1.18,2.13-2.71s-.6-2.71-2.13-2.71a1.78,1.78,0,0,0-1.65,1.06h0l0-.94H177Zm-3.46-7.31h-.64V4h0a1.72,1.72,0,0,0-1.62-.71c-1.52,0-2.13,1.13-2.13,2.71,0,1.15.53,2.59,2.18,2.59a1.62,1.62,0,0,0,1.58-1h0c0,1.46-.14,2.66-1.79,2.66a3.59,3.59,0,0,1-1.53-.36l0,.64a5.54,5.54,0,0,0,1.57.27c1.78,0,2.43-1.18,2.43-2.62ZM169.81,6c0-1,.31-2.17,1.53-2.17s1.54.92,1.54,2.17c0,.94-.42,2-1.58,2s-1.49-1-1.49-2m-6.17,2.59h.64V5.7c0-.86.36-1.89,1.53-1.89.89,0,1.23.63,1.23,1.61V8.57h.64V5.26c0-1.14-.49-2-1.77-2a1.62,1.62,0,0,0-1.67,1h0V3.39h-.62c0,.41,0,.82,0,1.22Zm-1.71-7.42h-.64V2h.64Zm-.64,7.42h.64V3.39h-.64Zm-4.53-.12a3.91,3.91,0,0,0,1.45.24c.78,0,1.81-.38,1.81-1.47,0-1.7-2.55-1.58-2.55-2.54,0-.66.45-.87,1.11-.87a2.87,2.87,0,0,1,1.15.25l.06-.56a4.08,4.08,0,0,0-1.28-.23c-.85,0-1.68.38-1.68,1.41,0,1.5,2.49,1.31,2.49,2.54,0,.59-.54.92-1.15.92a3.05,3.05,0,0,1-1.35-.32ZM155.5,3.39h-.64V6.25c0,.87-.37,1.89-1.54,1.89-.88,0-1.23-.63-1.23-1.6V3.39h-.63V6.7c0,1.14.48,2,1.76,2a1.65,1.65,0,0,0,1.68-1h0v.93h.62c0-.42,0-.83,0-1.22ZM144.23,6c0-1,.31-2.17,1.53-2.17S147.29,5,147.29,6s-.39,2.16-1.53,2.16S144.23,7,144.23,6m3.7-5h-.64V4.26h0a1.75,1.75,0,0,0-1.61-1c-1.53,0-2.13,1.13-2.13,2.71s.71,2.71,2.13,2.71a1.66,1.66,0,0,0,1.61-.94h0v.82h.64Zm-9.06,4.66a1.7,1.7,0,0,1,1.52-1.8c1,0,1.32.9,1.32,1.8ZM142,7.75a3.27,3.27,0,0,1-1.45.39,1.75,1.75,0,0,1-1.71-2h3.54V5.83c0-1.39-.6-2.56-2.06-2.56-1.31,0-2.18,1.12-2.18,2.71s.64,2.71,2.35,2.71A4.14,4.14,0,0,0,142,8.4Zm-4.71-4.36h-1.18V1.91l-.64.23V3.39h-1v.54h1V7c0,1,.05,1.73,1.18,1.73a2.32,2.32,0,0,0,.78-.14l0-.53a1.47,1.47,0,0,1-.59.12c-.51,0-.69-.39-.69-.85V3.93h1.18Zm-6,5.18h.64V6c0-.94.28-2.08,1.29-2.08a1.41,1.41,0,0,1,.47.07V3.33a2,2,0,0,0-.45-.06,1.52,1.52,0,0,0-1.33,1.11h0v-1h-.64a9.26,9.26,0,0,1,0,1.15ZM125.76,6c0-1.2.6-2.17,1.71-2.17s1.72,1,1.72,2.17-.6,2.16-1.72,2.16-1.71-1-1.71-2.16m-.7,0a2.43,2.43,0,1,0,4.83,0,2.43,2.43,0,1,0-4.83,0m-1.83,0c0,1-.32,2.16-1.54,2.16S120.16,6.92,120.16,6s.4-2.17,1.53-2.17S123.23,5,123.23,6m-3.71,4.72h.64v-3h0a1.61,1.61,0,0,0,1.62,1c1.42,0,2.13-1.18,2.13-2.71s-.61-2.71-2.13-2.71a1.79,1.79,0,0,0-1.66,1.06h0l0-.94h-.64ZM117.4,6c0,1-.32,2.16-1.54,2.16S114.33,6.92,114.33,6s.39-2.17,1.53-2.17S117.4,5,117.4,6m-3.71,4.72h.64v-3h0a1.6,1.6,0,0,0,1.61,1c1.43,0,2.14-1.18,2.14-2.71s-.61-2.71-2.14-2.71a1.79,1.79,0,0,0-1.65,1.06h0l0-.94h-.64ZM112,3.39h-.64V6.25c0,.87-.37,1.89-1.54,1.89-.88,0-1.23-.63-1.23-1.6V3.39H108V6.7c0,1.14.49,2,1.77,2a1.64,1.64,0,0,0,1.68-1h0v.93h.62c0-.42,0-.83,0-1.22Zm-9.4,5a3.92,3.92,0,0,0,1.61.31,2.08,2.08,0,0,0,2.32-2c0-2.07-3.25-2.09-3.25-3.51,0-.91.8-1.22,1.54-1.22a2.89,2.89,0,0,1,1.28.27l.12-.64a4.31,4.31,0,0,0-1.39-.23c-1.25,0-2.25.71-2.25,1.84,0,1.86,3.25,2,3.25,3.43a1.41,1.41,0,0,1-1.59,1.45,2.77,2.77,0,0,1-1.57-.42Z"
|
|
3625
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
3626
|
+
fill: colorLogo,
|
|
3627
|
+
x: "92.12",
|
|
3628
|
+
width: "0.75",
|
|
3629
|
+
height: "56.99"
|
|
3630
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3631
|
+
fill: colorLogo,
|
|
3632
|
+
d: "M2.46,50.42H4.22v5.07H7.29V57H2.46Z"
|
|
3633
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3634
|
+
fill: colorLogo,
|
|
3635
|
+
d: "M10.84,57.2a3.59,3.59,0,0,1-1.37-.26,3.27,3.27,0,0,1-1.82-1.83,4,4,0,0,1,0-2.79,3.5,3.5,0,0,1,.72-1.1,3.28,3.28,0,0,1,1.1-.72,3.59,3.59,0,0,1,1.37-.26,3.65,3.65,0,0,1,1.38.26,3.14,3.14,0,0,1,1.09.72,3.33,3.33,0,0,1,.72,1.1,4,4,0,0,1,0,2.79,3.3,3.3,0,0,1-1.81,1.83A3.65,3.65,0,0,1,10.84,57.2Zm0-1.65a1.67,1.67,0,0,0,.69-.14A1.65,1.65,0,0,0,12,55a1.68,1.68,0,0,0,.32-.59,2.35,2.35,0,0,0,.11-.71,2.41,2.41,0,0,0-.11-.72,1.64,1.64,0,0,0-.32-.58,1.54,1.54,0,0,0-.51-.4,1.77,1.77,0,0,0-1.38,0,1.54,1.54,0,0,0-.51.4,1.64,1.64,0,0,0-.32.58,2.41,2.41,0,0,0-.11.72,2.35,2.35,0,0,0,.11.71,1.68,1.68,0,0,0,.32.59,1.65,1.65,0,0,0,.51.39A1.67,1.67,0,0,0,10.84,55.55Z"
|
|
3636
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3637
|
+
fill: colorLogo,
|
|
3638
|
+
d: "M16.43,52h-2V50.42h5.83V52h-2V57H16.43Z"
|
|
3639
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3640
|
+
fill: colorLogo,
|
|
3641
|
+
d: "M22.49,52h-2V50.42h5.83V52h-2V57H22.49Z"
|
|
3642
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3643
|
+
fill: colorLogo,
|
|
3644
|
+
d: "M26.7,50.42h4.77v1.52h-3v1h2.47v1.43H28.46v1.13h3.22V57h-5Z"
|
|
3645
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3646
|
+
fill: colorLogo,
|
|
3647
|
+
d: "M32.4,50.42h2.74a3.24,3.24,0,0,1,1,.14,2.05,2.05,0,0,1,.74.41,2,2,0,0,1,.48.68,2.5,2.5,0,0,1,.16.94,2.19,2.19,0,0,1-.28,1.14,2.27,2.27,0,0,1-.77.77L37.86,57H36l-1.13-2.25h-.73V57H32.4Zm2.57,3a.75.75,0,0,0,.79-.79.8.8,0,0,0-.21-.59.77.77,0,0,0-.59-.22h-.84v1.6Z"
|
|
3648
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3649
|
+
fill: colorLogo,
|
|
3650
|
+
d: "M39.81,54.4l-2.35-4h2l1.29,2.36L42,50.42h2l-2.36,4V57H39.81Z"
|
|
3651
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3652
|
+
fill: colorLogo,
|
|
3653
|
+
d: "M45.71,50.42h4.62V52H47.47v1.28h2.21v1.45H47.47V57H45.71Z"
|
|
3654
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3655
|
+
fill: colorLogo,
|
|
3656
|
+
d: "M50.76,50.42h1.76V54.3a1.46,1.46,0,0,0,.25.89,1.17,1.17,0,0,0,1.67,0,1.48,1.48,0,0,0,.25-.89V50.42h1.78v4a3,3,0,0,1-.21,1.15,2.4,2.4,0,0,1-.59.86,2.66,2.66,0,0,1-.9.55,3.58,3.58,0,0,1-2.3,0,2.85,2.85,0,0,1-.91-.54,2.49,2.49,0,0,1-.59-.86,3,3,0,0,1-.21-1.16Z"
|
|
3657
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3658
|
+
fill: colorLogo,
|
|
3659
|
+
d: "M57.42,50.42H59l2.54,3.69V50.42h1.74V57h-1.5l-2.64-3.8V57H57.42Z"
|
|
3660
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3661
|
+
fill: colorLogo,
|
|
3662
|
+
d: "M64.28,50.42h2.54a4.85,4.85,0,0,1,1.41.2,3.06,3.06,0,0,1,1.13.6,2.67,2.67,0,0,1,.74,1.05,3.78,3.78,0,0,1,.27,1.49,3.56,3.56,0,0,1-.27,1.44,2.77,2.77,0,0,1-.75,1,3.18,3.18,0,0,1-1.13.62,5,5,0,0,1-1.41.2H64.28Zm2.47,5.07a1.67,1.67,0,0,0,1.81-1.76,2.27,2.27,0,0,0-.11-.72,1.59,1.59,0,0,0-.34-.56,1.29,1.29,0,0,0-.56-.36,2.13,2.13,0,0,0-.8-.13H66v3.53Z"
|
|
3663
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3664
|
+
fill: colorLogo,
|
|
3665
|
+
d: "M71.05,50.42h4.76v1.52h-3v1h2.47v1.43H72.8v1.13H76V57h-5Z"
|
|
3666
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3667
|
+
fill: colorLogo,
|
|
3668
|
+
d: "M76.75,50.42h2.54a4.85,4.85,0,0,1,1.41.2,3.15,3.15,0,0,1,1.13.6,2.89,2.89,0,0,1,.74,1.05,3.78,3.78,0,0,1,.27,1.49,3.56,3.56,0,0,1-.27,1.44,3,3,0,0,1-.75,1,3.18,3.18,0,0,1-1.13.62,5,5,0,0,1-1.41.2H76.75Zm2.47,5.07A1.66,1.66,0,0,0,81,53.73a2,2,0,0,0-.11-.72,1.44,1.44,0,0,0-.33-.56,1.36,1.36,0,0,0-.56-.36,2.13,2.13,0,0,0-.8-.13H78.5v3.53Z"
|
|
3669
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3670
|
+
fill: colorBackground,
|
|
3671
|
+
d: "M28.47,18.89a2.62,2.62,0,0,0-1.56.63c.16-1.82-.51-3.17-1.76-3.63a3.22,3.22,0,0,0-2.33.1l-1-2.44c.93-2.28,2.56-5.06,2.56-7.34,0-1.77-.89-3.07-2.6-3.07a4.45,4.45,0,0,0-3.05,1.95C17.53,2.45,16.28,1.2,14.94,1.2c-2.13,0-3,2.13-3,4a18.84,18.84,0,0,0,2,7.52,63.85,63.85,0,0,0-2.9,7.57,8.59,8.59,0,0,0-6.12-2.7,6.3,6.3,0,0,0-3.53,1A2.93,2.93,0,0,0,0,20.87a2.64,2.64,0,0,0,2.23,2.54C4.56,24,5.6,25.9,6.48,29.58c1.61,6.64,5.76,10.63,12.14,10.63A12.26,12.26,0,0,0,30.86,28a14.77,14.77,0,0,0-.26-2.64,10.78,10.78,0,0,0,.46-1.56c.57-2.85-.52-4.88-2.59-4.88"
|
|
3672
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3673
|
+
fill: colorLogo,
|
|
3674
|
+
d: "M24.62,17.33c1.08.5,1.17,2.76.08,5.45-.88,2.6-2.15,4.18-3.34,4.19-.93,0-1.71-.66-1.71-2.42,0-3.32,2.73-8.25,5-7.22"
|
|
3675
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3676
|
+
fill: colorLogo,
|
|
3677
|
+
d: "M13.43,5.15c0-1.09.47-2.39,1.51-2.39q1.08,0,2.64,3.42a27.54,27.54,0,0,0-2.75,4.52,17.18,17.18,0,0,1-1.4-5.55"
|
|
3678
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3679
|
+
fill: colorLogo,
|
|
3680
|
+
d: "M18.62,38.66c-5.45,0-9.18-3.79-10.63-9.44-1-3.89-2.23-6.49-5.4-7.32-.36-.1-1-.36-1-1S2.75,19.1,4.93,19.1a7.68,7.68,0,0,1,6.17,3.69l1.11-.41c.16-2.12,1.24-5,3.14-9.09,2.39-5.13,4.81-8.63,6.42-8.59a1.41,1.41,0,0,1,1.12,1.51c0,2.12-1.87,5.31-3.51,8.78-.17.35-.91,2-.91,2l1.07.46c.35-.59,1.08-2,1.18-2.24l.8,1.77a11.34,11.34,0,0,0-3.21,7.58c0,2,.88,3.2,2.17,3.61a2.91,2.91,0,0,0,3.22-1,2.57,2.57,0,0,0,2.65,2.32,3.35,3.35,0,0,0,3.06-2.21A11,11,0,0,1,18.62,38.66"
|
|
3681
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3682
|
+
fill: colorLogo,
|
|
3683
|
+
d: "M29.66,23.56c-.36,2.18-1.68,4.6-3.31,4.6s-1.47-2.06-1.11-3.3c.57-2.23,2.09-4.57,3.23-4.57s1.5,1.41,1.19,3.27"
|
|
3684
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3685
|
+
fill: colorBackground,
|
|
3686
|
+
d: "M24.15,34.49c-4.61,2.62-8.91.95-10.53-3.83L15,30c1.32,3.89,5.13,5,8.65,3.13Z"
|
|
3687
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3688
|
+
fill: colorBackground,
|
|
3689
|
+
d: "M22.9,24.5a1.21,1.21,0,1,1-1.21-1.21A1.21,1.21,0,0,1,22.9,24.5"
|
|
3690
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3691
|
+
fill: colorBackground,
|
|
3692
|
+
d: "M28,26a1.09,1.09,0,1,1-1.09-1.09A1.09,1.09,0,0,1,28,26"
|
|
3693
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
3694
|
+
fill: colorBackground,
|
|
3695
|
+
d: "M25.9,6.58a1.15,1.15,0,0,1-.41-.08,1.23,1.23,0,0,1-.33-.23,1.12,1.12,0,0,1-.22-.33,1.07,1.07,0,0,1-.08-.41,1.06,1.06,0,0,1,.08-.4,1.33,1.33,0,0,1,.22-.34,1.46,1.46,0,0,1,.33-.22,1.16,1.16,0,0,1,.42-.08,1.06,1.06,0,0,1,.4.08,1.12,1.12,0,0,1,.33.22,1.11,1.11,0,0,1,.22.34,1.06,1.06,0,0,1,.08.4,1.07,1.07,0,0,1-.08.41,1,1,0,0,1-.22.33,1,1,0,0,1-.33.23A1.11,1.11,0,0,1,25.9,6.58Zm0-.2a.72.72,0,0,0,.33-.07.76.76,0,0,0,.26-.18.78.78,0,0,0,.17-.26,1,1,0,0,0,.06-.33.88.88,0,0,0-.06-.33.73.73,0,0,0-.17-.27.76.76,0,0,0-.26-.18.71.71,0,0,0-.32-.07.72.72,0,0,0-.33.07.68.68,0,0,0-.26.18.73.73,0,0,0-.17.27.88.88,0,0,0-.06.33,1,1,0,0,0,.06.33.78.78,0,0,0,.17.26.68.68,0,0,0,.26.18A.71.71,0,0,0,25.9,6.38ZM25.54,5H26a.47.47,0,0,1,.17,0,.41.41,0,0,1,.11.07.3.3,0,0,1,.07.1.52.52,0,0,1,0,.11.41.41,0,0,1-.05.19.31.31,0,0,1-.15.12l.25.44h-.22l-.24-.41h-.17v.41h-.2Zm.4.49a.17.17,0,0,0,.13,0,.17.17,0,0,0,.05-.12.13.13,0,0,0-.05-.11.2.2,0,0,0-.14,0h-.19v.32Z"
|
|
3696
|
+
})))));
|
|
3515
3697
|
};
|
|
3516
3698
|
|
|
3517
3699
|
var _templateObject$j, _templateObject2$b;
|
|
@@ -5733,7 +5915,7 @@ var Navigation = function Navigation(_ref) {
|
|
|
5733
5915
|
})))))));
|
|
5734
5916
|
};
|
|
5735
5917
|
|
|
5736
|
-
var _templateObject$D, _templateObject2$t, _templateObject3$i, _templateObject4$e, _templateObject5$b, _templateObject6$8, _templateObject7$4
|
|
5918
|
+
var _templateObject$D, _templateObject2$t, _templateObject3$i, _templateObject4$e, _templateObject5$b, _templateObject6$8, _templateObject7$4;
|
|
5737
5919
|
var FooterSection = /*#__PURE__*/styled__default.footer(_templateObject$D || (_templateObject$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--color-base-black);\n color: var(--color-base-white);\n padding: 44px 50px;\n\n @media ", " {\n padding: 40px 32px;\n }\n\n @media ", " {\n padding: 20px;\n }\n"])), devices.tablet, devices.mobile);
|
|
5738
5920
|
var FooterContainer = /*#__PURE__*/styled__default.div(_templateObject2$t || (_templateObject2$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: repeat(12, 1fr);\n gap: 40px;\n max-width: 1140px;\n margin: 0 auto;\n\n @media ", " {\n gap: 24px;\n }\n\n @media ", " {\n grid-template-columns: 1fr;\n gap: 40px;\n }\n"])), devices.tablet, devices.mobile);
|
|
5739
5921
|
var PolicyLinksSection = /*#__PURE__*/styled__default.div(_templateObject3$i || (_templateObject3$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: span 4;\n display: flex;\n flex-direction: column;\n gap: 16px;\n\n @media ", " {\n gap: 20px;\n }\n\n @media ", " {\n gap: 12px;\n order: 2;\n }\n"])), devices.tablet, devices.mobile);
|
|
@@ -5741,7 +5923,6 @@ var SocialAndNewsletterSection = /*#__PURE__*/styled__default.div(_templateObjec
|
|
|
5741
5923
|
var SectionWrapper = /*#__PURE__*/styled__default.div(_templateObject5$b || (_templateObject5$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 20px;\n\n @media ", " {\n gap: 24px;\n }\n"])), devices.mobile);
|
|
5742
5924
|
var LogoAndDescriptionSection = /*#__PURE__*/styled__default.div(_templateObject6$8 || (_templateObject6$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: span 4;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n\n img {\n width: 120px;\n margin-bottom: 12px;\n }\n\n @media ", " {\n order: 3;\n gap: 24px;\n }\n"])), devices.mobile);
|
|
5743
5925
|
var TextLinkWrapper$2 = /*#__PURE__*/styled__default(TextLink)(_templateObject7$4 || (_templateObject7$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-sans);\n font-size: 17px;\n line-height: 24px;\n letter-spacing: 0.4px;\n color: var(--color-base-white);\n border-bottom: unset;\n text-decoration: underline;\n text-underline-offset: 6px;\n margin-bottom: 0;\n padding-bottom: 0;\n"])));
|
|
5744
|
-
var SponsorWrapper = /*#__PURE__*/styled__default.div(_templateObject8$3 || (_templateObject8$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: block;\n height: auto;\n width: 100%;\n max-width: 100%;\n\n img {\n width: 100%;\n }\n\n @media ", " {\n max-width: 100%;\n }\n\n @media ", " {\n max-width: 50%;\n }\n"])), devices.tablet, devices.mobile);
|
|
5745
5926
|
|
|
5746
5927
|
var _templateObject$E;
|
|
5747
5928
|
var PolicyLinksTextLinkWrapper = /*#__PURE__*/styled__default(TextLink)(_templateObject$E || (_templateObject$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-sans);\n font-size: 17px;\n line-height: 24px;\n letter-spacing: 0.4px;\n color: var(--color-base-white);\n border-bottom: unset;\n text-decoration: underline;\n text-underline-offset: 6px;\n margin-bottom: 0;\n padding-bottom: 0;\n"])));
|
|
@@ -5773,7 +5954,6 @@ var Footer = function Footer(_ref) {
|
|
|
5773
5954
|
additionalInfo = data.additionalInfo;
|
|
5774
5955
|
var _useViewport = useViewport(),
|
|
5775
5956
|
isMobile = _useViewport.isMobile;
|
|
5776
|
-
var sponsorImageSource = 'https://s3.eu-west-1.amazonaws.com/static.roh.org.uk/sponsorlogos/arts-council-england-invert.svg';
|
|
5777
5957
|
return /*#__PURE__*/React__default.createElement(FooterSection, {
|
|
5778
5958
|
className: className
|
|
5779
5959
|
}, /*#__PURE__*/React__default.createElement(FooterContainer, null, /*#__PURE__*/React__default.createElement(PolicyLinksSection, {
|
|
@@ -5802,9 +5982,7 @@ var Footer = function Footer(_ref) {
|
|
|
5802
5982
|
rel: "noopener noreferrer"
|
|
5803
5983
|
}, artsLogo, {
|
|
5804
5984
|
"aria-label": "Sponsor Logo link"
|
|
5805
|
-
}), /*#__PURE__*/React__default.createElement(
|
|
5806
|
-
imageSource: sponsorImageSource
|
|
5807
|
-
})))), /*#__PURE__*/React__default.createElement("div", {
|
|
5985
|
+
}), /*#__PURE__*/React__default.createElement(SponsorLogo, null))), /*#__PURE__*/React__default.createElement("div", {
|
|
5808
5986
|
"data-testid": "additional-info"
|
|
5809
5987
|
}, /*#__PURE__*/React__default.createElement(BodyCopyHarmonic, {
|
|
5810
5988
|
size: isMobile ? 'medium' : 'small',
|
|
@@ -6056,7 +6234,7 @@ var AnchorTabBar = function AnchorTabBar(_ref) {
|
|
|
6056
6234
|
}))) : null)) : null))));
|
|
6057
6235
|
};
|
|
6058
6236
|
|
|
6059
|
-
var _templateObject$G, _templateObject2$v, _templateObject3$k, _templateObject4$g, _templateObject6$a, _templateObject7$5, _templateObject8$
|
|
6237
|
+
var _templateObject$G, _templateObject2$v, _templateObject3$k, _templateObject4$g, _templateObject6$a, _templateObject7$5, _templateObject8$3, _templateObject9$2, _templateObject10$2;
|
|
6060
6238
|
var TitleCTAGridWrapper = /*#__PURE__*/styled__default.div(_templateObject$G || (_templateObject$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: ", ";\n top: -1px;\n background-color: var(--base-color-white);\n z-index: ", ";\n"])), function (_ref) {
|
|
6061
6239
|
var sticky = _ref.sticky;
|
|
6062
6240
|
return sticky ? 'sticky' : 'initial';
|
|
@@ -6069,7 +6247,7 @@ var TitleCTAGridItem = /*#__PURE__*/styled__default.div(_templateObject3$k || (_
|
|
|
6069
6247
|
var AnchorTitle = /*#__PURE__*/styled__default.div(_templateObject4$g || (_templateObject4$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n min-height: var(--button-height);\n\n h5 {\n padding: 0;\n margin: 0;\n }\n\n @media ", " {\n & {\n min-height: 50px;\n }\n }\n"])), devices.mobile);
|
|
6070
6248
|
var ButtonsDesktopWrapper = /*#__PURE__*/styled__default.div(_templateObject6$a || (_templateObject6$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: flex-end;\n\n @media ", " {\n display: none;\n }\n\n a {\n width: max-content;\n }\n"])), devices.mobile);
|
|
6071
6249
|
var ButtonsMobileWrapper = /*#__PURE__*/styled__default.div(_templateObject7$5 || (_templateObject7$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: none;\n\n @media ", " {\n & {\n display: block;\n }\n }\n"])), devices.mobile);
|
|
6072
|
-
var PrimaryButtonReverse = /*#__PURE__*/styled__default(PrimaryButton)(_templateObject8$
|
|
6250
|
+
var PrimaryButtonReverse = /*#__PURE__*/styled__default(PrimaryButton)(_templateObject8$3 || (_templateObject8$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n && {\n background-color: ", ";\n border-color: ", ";\n color: ", ";\n svg path {\n fill: ", ";\n }\n }\n"])), function (_ref3) {
|
|
6073
6251
|
var theme = _ref3.theme;
|
|
6074
6252
|
return theme.colors.primaryButtonReverseBg;
|
|
6075
6253
|
}, function (_ref4) {
|
|
@@ -6752,7 +6930,7 @@ var IInformationTitleVariant;
|
|
|
6752
6930
|
IInformationBackgroundColour["White"] = "white";
|
|
6753
6931
|
})(exports.IInformationBackgroundColour || (exports.IInformationBackgroundColour = {}));
|
|
6754
6932
|
|
|
6755
|
-
var _templateObject$J, _templateObject2$x, _templateObject3$m, _templateObject4$h, _templateObject5$d, _templateObject6$b, _templateObject7$6, _templateObject8$
|
|
6933
|
+
var _templateObject$J, _templateObject2$x, _templateObject3$m, _templateObject4$h, _templateObject5$d, _templateObject6$b, _templateObject7$6, _templateObject8$4;
|
|
6756
6934
|
var Wrapper$2 = /*#__PURE__*/styled__default.div(_templateObject$J || (_templateObject$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--base-color-light-grey);\n padding: 40px;\n\n display: block;\n position: relative;\n\n @media ", " {\n margin-top: 0;\n padding: 40px 20px;\n }\n"])), devices.tablet);
|
|
6757
6935
|
var PromoLabelWrapper = /*#__PURE__*/styled__default.div(_templateObject2$x || (_templateObject2$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-self: flex-end;\n height: 15px;\n"])));
|
|
6758
6936
|
var PromoLabel = /*#__PURE__*/styled__default.div(_templateObject3$m || (_templateObject3$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background: ", ";\n color: ", ";\n padding: 6px 8px;\n width: fit-content;\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n right: 20px;\n top: 0;\n width: auto;\n margin: auto;\n font-family: var(--font-family-header);\n font-feature-settings:\n 'tnum' on,\n 'lnum' on,\n 'liga' off,\n 'calt' off;\n font-size: var(--font-size-overline-2);\n line-height: 12px;\n text-align: center;\n letter-spacing: 1px;\n text-transform: uppercase;\n"])), function (_ref) {
|
|
@@ -6763,7 +6941,7 @@ var ButtonContainer = /*#__PURE__*/styled__default.div(_templateObject4$h || (_t
|
|
|
6763
6941
|
var TitleContainer$2 = /*#__PURE__*/styled__default.div(_templateObject5$d || (_templateObject5$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > * {\n margin-top: 0;\n margin-bottom: 0.5em;\n }\n"])));
|
|
6764
6942
|
var OfferTextWrapper = /*#__PURE__*/styled__default.div(_templateObject6$b || (_templateObject6$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > * {\n margin-bottom: 0.5em;\n }\n margin-bottom: 1em;\n"])));
|
|
6765
6943
|
var PriceRow = /*#__PURE__*/styled__default.div(_templateObject7$6 || (_templateObject7$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n gap: 6px 12px;\n padding: 5px 0 8px 0;\n"])));
|
|
6766
|
-
var LineThrough = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
6944
|
+
var LineThrough = /*#__PURE__*/styled__default.div(_templateObject8$4 || (_templateObject8$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-decoration-line: line-through;\n color: var(--base-color-dark-grey);\n"])));
|
|
6767
6945
|
|
|
6768
6946
|
// Set max. character length
|
|
6769
6947
|
var setMaxCharLength = function setMaxCharLength(value, maxLength) {
|
|
@@ -7289,7 +7467,7 @@ var AuxiliaryButton = function AuxiliaryButton(_ref) {
|
|
|
7289
7467
|
}), children);
|
|
7290
7468
|
};
|
|
7291
7469
|
|
|
7292
|
-
var _templateObject$R, _templateObject2$C, _templateObject3$q, _templateObject4$l, _templateObject5$g, _templateObject6$d, _templateObject7$7, _templateObject8$
|
|
7470
|
+
var _templateObject$R, _templateObject2$C, _templateObject3$q, _templateObject4$l, _templateObject5$g, _templateObject6$d, _templateObject7$7, _templateObject8$5, _templateObject9$3, _templateObject10$3, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1;
|
|
7293
7471
|
var LENGTH_LARGE_TEXT = 28;
|
|
7294
7472
|
var LENGTH_SMALL_TEXT$1 = 19;
|
|
7295
7473
|
var LENGTH_TEXT_TABLET = 10;
|
|
@@ -7317,7 +7495,7 @@ var ContentContainer$2 = /*#__PURE__*/styled__default.div(_templateObject4$l ||
|
|
|
7317
7495
|
var TitleContainer$4 = /*#__PURE__*/styled__default.div(_templateObject5$g || (_templateObject5$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: calc(-1 * var(--editorial-margin-between)) 0 calc(-1 * var(--editorial-margin-between)) 0;\n\n @media ", " {\n display: none;\n }\n"])), devices.mobileAndTablet);
|
|
7318
7496
|
var TitleContainerMobile = /*#__PURE__*/styled__default.div(_templateObject6$d || (_templateObject6$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: calc(-1 * var(--editorial-margin-between)) 0 calc(-1 * var(--editorial-margin-between)) 0;\n display: none;\n\n @media ", " {\n display: block;\n }\n"])), devices.mobileAndTablet);
|
|
7319
7497
|
var TextContainer$2 = /*#__PURE__*/styled__default.div(_templateObject7$7 || (_templateObject7$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-feature-settings: var(--font-feature-settings-body);\n font-size: var(--font-size-body-1);\n font-weight: var(--font-weight-body-1);\n line-height: var(--line-height-body-1);\n letter-spacing: var(--letter-spacing-body-1);\n text-transform: var(--text-transform-body);\n margin-top: var(--editorial-spacing-hover);\n padding: 0;\n white-space: break-spaces;\n overflow-wrap: break-word;\n\n em {\n font-family: var(--font-family-body-italics);\n }\n"])));
|
|
7320
|
-
var HighlightTextContainer = /*#__PURE__*/styled__default(TextContainer$2)(_templateObject8$
|
|
7498
|
+
var HighlightTextContainer = /*#__PURE__*/styled__default(TextContainer$2)(_templateObject8$5 || (_templateObject8$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-primary);\n margin-top: 4px;\n"])));
|
|
7321
7499
|
var SubtitleContainer = /*#__PURE__*/styled__default.span(_templateObject9$3 || (_templateObject9$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-subtitle);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-size: var(--font-size-subtitle-2);\n font-weight: var(--font-weight-subtitle-2);\n line-height: var(--line-height-subtitle-2);\n letter-spacing: var(--letter-spacing-subtitle-2);\n text-transform: var(--text-transform-subtitle);\n display: block;\n overflow-wrap: break-word;\n"])));
|
|
7322
7500
|
var LabelContainer = /*#__PURE__*/styled__default.div(_templateObject10$3 || (_templateObject10$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n width: fit-content;\n height: 30px;\n\n @media ", " {\n margin-left: ", ";\n }\n"])), function (_ref6) {
|
|
7323
7501
|
var isVisible = _ref6.isVisible;
|
|
@@ -7956,7 +8134,7 @@ var Information = function Information(_ref) {
|
|
|
7956
8134
|
})))));
|
|
7957
8135
|
};
|
|
7958
8136
|
|
|
7959
|
-
var _templateObject$X, _templateObject2$I, _templateObject3$v, _templateObject4$q, _templateObject5$l, _templateObject6$f, _templateObject7$9, _templateObject8$
|
|
8137
|
+
var _templateObject$X, _templateObject2$I, _templateObject3$v, _templateObject4$q, _templateObject5$l, _templateObject6$f, _templateObject7$9, _templateObject8$6;
|
|
7960
8138
|
var PageHeadingWrapper = /*#__PURE__*/styled__default.div(_templateObject$X || (_templateObject$X = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding-bottom: 80px;\n background-color: ", ";\n color: var(--base-color-white);\n\n ", ";\n\n // remove spacing above/below for all semantic levels of the title\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin: 0;\n padding: 0;\n }\n\n @media ", " {\n padding-bottom: 0;\n }\n"])), function (_ref) {
|
|
7961
8139
|
var theme = _ref.theme;
|
|
7962
8140
|
return theme.colors.primary;
|
|
@@ -7976,7 +8154,7 @@ var ChildrenWrapper = /*#__PURE__*/styled__default.div(_templateObject4$q || (_t
|
|
|
7976
8154
|
var TextWrapper = /*#__PURE__*/styled__default.div(_templateObject5$l || (_templateObject5$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: text;\n align-self: end;\n margin-top: 12px;\n\n h6 {\n margin: 0;\n padding: 0;\n }\n"])));
|
|
7977
8155
|
var LogoWrapper = /*#__PURE__*/styled__default.div(_templateObject6$f || (_templateObject6$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n justify-self: end;\n margin-top: 20px;\n position: relative;\n\n > div {\n position: absolute;\n top: 0;\n right: 0;\n }\n\n @media ", " {\n & {\n align-self: start;\n margin-top: 0;\n }\n }\n"])), devices.mobile);
|
|
7978
8156
|
var ButtonWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject7$9 || (_templateObject7$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: button;\n justify-self: end;\n align-self: end;\n\n @media ", " {\n & {\n justify-self: center;\n align-self: center;\n width: 100%;\n margin-top: 16px;\n }\n }\n"])), devices.mobile);
|
|
7979
|
-
var PageHeadingText = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
8157
|
+
var PageHeadingText = /*#__PURE__*/styled__default.div(_templateObject8$6 || (_templateObject8$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-family: var(--font-family-altHeader);\n text-transform: var(--text-transform-altHeader);\n word-break: var(--word-break-altHeader);\n"])));
|
|
7980
8158
|
|
|
7981
8159
|
var _excluded$j = ["text"];
|
|
7982
8160
|
var PageHeading = function PageHeading(_ref) {
|
|
@@ -8054,15 +8232,15 @@ var PageHeadingCinema = function PageHeadingCinema(_ref) {
|
|
|
8054
8232
|
})));
|
|
8055
8233
|
};
|
|
8056
8234
|
|
|
8057
|
-
var _templateObject$Y, _templateObject2$J, _templateObject3$w, _templateObject4$r, _templateObject5$m, _templateObject6$g, _templateObject7$a, _templateObject8$
|
|
8235
|
+
var _templateObject$Y, _templateObject2$J, _templateObject3$w, _templateObject4$r, _templateObject5$m, _templateObject6$g, _templateObject7$a, _templateObject8$7;
|
|
8058
8236
|
var ImpactWrapper = /*#__PURE__*/styled__default.div(_templateObject$Y || (_templateObject$Y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n aspect-ratio: 16 / 9;\n @supports not (aspect-ratio: 16 / 9) {\n height: 56.25vw;\n }\n\n position: relative;\n display: flex;\n background: var(--base-color-black);\n\n @media ", " {\n aspect-ratio: 1 / 1;\n @supports not (aspect-ratio: 1 / 1) {\n height: 100vw;\n }\n }\n"])), devices.mobile);
|
|
8059
8237
|
var ImpactHeaderImageWrapper = /*#__PURE__*/styled__default.div(_templateObject2$J || (_templateObject2$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n overflow: hidden;\n aspect-ratio: 16 / 9;\n @supports not (aspect-ratio: 16 / 9) {\n height: 56.25vw;\n }\n\n img {\n width: 100%;\n filter: brightness(0.7);\n opacity: 0.95;\n }\n\n @media ", " {\n height: fit-content;\n aspect-ratio: 1 / 1;\n @supports not (aspect-ratio: 1 / 1) {\n height: 100vw;\n }\n\n img {\n height: 100%;\n object-fit: cover;\n }\n }\n"])), devices.mobile);
|
|
8060
8238
|
var ImpactGrid = /*#__PURE__*/styled__default(Grid)(_templateObject3$w || (_templateObject3$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n align-self: center;\n width: 100%;\n z-index: ", ";\n gap: 0 var(--grid-column-gap);\n grid-template-rows: min-content min-content min-content;\n grid-template-areas:\n '. . . . . logo logo logo logo logo logo . . . . .'\n '. . . text text text text text text text text text text . . .'\n '. . . button button button button button button button button button button . . .';\n\n @media ", " {\n & {\n height: 100%;\n grid-template-rows: 1fr max-content 1fr;\n grid-template-areas:\n '. . . logo logo logo logo logo logo logo logo . . .'\n '. text text text text text text text text text text text text .'\n '. button button button button button button button button button button button button .';\n }\n }\n\n @media ", " {\n align-content: center;\n\n & {\n grid-template-areas:\n '. . . logo logo logo logo logo logo logo logo . . .'\n '. . text text text text text text text text text text . .'\n '. . button button button button button button button button button button . .';\n }\n }\n"])), zIndexes.contentOverlay, devices.mobile, devices.tablet);
|
|
8061
|
-
var SponsorWrapper
|
|
8239
|
+
var SponsorWrapper = /*#__PURE__*/styled__default.div(_templateObject4$r || (_templateObject4$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 20px;\n right: var(--grid-outer-margin);\n width: fit-content;\n z-index: ", ";\n\n @media ", " {\n & {\n right: var(--grid-margin);\n }\n }\n"])), zIndexes.sponsorship, devices.mobileAndTablet);
|
|
8062
8240
|
var LogoWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject5$m || (_templateObject5$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n align-self: end;\n"])));
|
|
8063
8241
|
var TextWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject6$g || (_templateObject6$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: text;\n color: var(--base-color-white);\n text-align: center;\n margin-top: 40px;\n max-height: calc(2 * var(--line-height-header-3));\n overflow: hidden;\n\n h3 {\n margin: 0;\n padding: 0;\n }\n\n @media ", " {\n & {\n max-height: calc(4 * var(--line-height-header-3));\n }\n }\n\n @media ", " {\n & {\n margin-top: 12px;\n max-height: calc(4 * var(--line-height-header-3));\n }\n\n h3 {\n font-size: var(--font-size-header-3);\n letter-spacing: var(--letter-spacing-header-5);\n line-height: var(--line-height-header-5);\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
8064
8242
|
var ButtonWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject7$a || (_templateObject7$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: button;\n align-self: end;\n display: flex;\n justify-content: center;\n margin-top: 40px;\n\n @media ", " {\n & {\n margin-top: 0px;\n margin-bottom: 20px;\n }\n }\n"])), devices.mobile);
|
|
8065
|
-
var ScrollDownWrapper = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
8243
|
+
var ScrollDownWrapper = /*#__PURE__*/styled__default.div(_templateObject8$7 || (_templateObject8$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 20px;\n left: var(--grid-outer-margin);\n width: fit-content;\n z-index: ", ";\n\n @keyframes UpDown {\n 0%,\n 100% {\n transform: translateY(0);\n }\n 50% {\n transform: translateY(8px);\n }\n }\n\n a {\n font-size: var(--font-size-overline-1);\n font-weight: var(--font-weight-overline-1);\n letter-spacing: var(--letter-spacing-overline-1);\n border: none;\n padding: 0;\n :hover {\n border: none;\n\n > span {\n animation: UpDown 1500ms linear infinite;\n }\n }\n }\n\n @media ", " {\n & {\n display: none;\n }\n }\n\n @media ", " {\n & {\n display: none;\n }\n }\n"])), zIndexes.contentOverlay, devices.mobile, devices.tablet);
|
|
8066
8244
|
|
|
8067
8245
|
var _excluded$m = ["text"];
|
|
8068
8246
|
var PageHeadingImpact = function PageHeadingImpact(_ref) {
|
|
@@ -8087,7 +8265,7 @@ var PageHeadingImpact = function PageHeadingImpact(_ref) {
|
|
|
8087
8265
|
bgUrlDesktop: bgUrlDesktop,
|
|
8088
8266
|
bgUrlDevice: bgUrlDevice,
|
|
8089
8267
|
"data-testid": "impact-wrapper"
|
|
8090
|
-
}, sponsor ? (/*#__PURE__*/React__default.createElement(SponsorWrapper
|
|
8268
|
+
}, sponsor ? (/*#__PURE__*/React__default.createElement(SponsorWrapper, {
|
|
8091
8269
|
"data-testid": "impact-sponsor"
|
|
8092
8270
|
}, customSponsorImage ? (/*#__PURE__*/React__default.createElement(Sponsorship, Object.assign({
|
|
8093
8271
|
"data-testid": "impact-custom-sponsor"
|
|
@@ -8191,7 +8369,7 @@ var PageHeadingStream = function PageHeadingStream(_ref) {
|
|
|
8191
8369
|
}))));
|
|
8192
8370
|
};
|
|
8193
8371
|
|
|
8194
|
-
var _templateObject$$, _templateObject2$L, _templateObject3$y, _templateObject5$o, _templateObject6$h, _templateObject7$b, _templateObject8$
|
|
8372
|
+
var _templateObject$$, _templateObject2$L, _templateObject3$y, _templateObject5$o, _templateObject6$h, _templateObject7$b, _templateObject8$8, _templateObject9$4, _templateObject10$4;
|
|
8195
8373
|
var BrandingTextBlock = /*#__PURE__*/styled__default.div(_templateObject$$ || (_templateObject$$ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: var(--font-size-body-2);\n font-family: var(--font-family-header);\n text-transform: uppercase;\n margin: 0;\n white-space: nowrap;\n @media screen and (max-width: 920px) {\n white-space: normal;\n }\n @media ", " {\n white-space: nowrap;\n }\n"])), devices.mobile);
|
|
8196
8374
|
var BrandingTextBody = /*#__PURE__*/styled__default.div(_templateObject2$L || (_templateObject2$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-size: var(--font-size-heading-6);\n line-height: var(--line-height-heading-6);\n"])));
|
|
8197
8375
|
var ComapctHeaderWrapper = /*#__PURE__*/styled__default.div(_templateObject3$y || (_templateObject3$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: block;\n"])));
|
|
@@ -8213,7 +8391,7 @@ var CompactHeaderCopyWrapper = /*#__PURE__*/styled__default(Grid)(_templateObjec
|
|
|
8213
8391
|
return theme.colors.primary === theme.colors.stream && "\n color: " + theme.colors.stream + ";\n background-color: " + theme.colors.white + ";\n ";
|
|
8214
8392
|
}, devices.tablet, devices.mobile);
|
|
8215
8393
|
var CompactHeaderLogoWrapper = /*#__PURE__*/styled__default.div(_templateObject7$b || (_templateObject7$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n grid-area: logo;\n padding-left: 50px;\n justify-content: left;\n align-items: center;\n width: 100%;\n @media ", " {\n padding-left: 0px;\n justify-content: center;\n }\n @media ", " {\n width: fit-content;\n }\n"])), devices.mobile, devices.tablet);
|
|
8216
|
-
var CompactHeaderTitleWrapper = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
8394
|
+
var CompactHeaderTitleWrapper = /*#__PURE__*/styled__default.div(_templateObject8$8 || (_templateObject8$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n grid-area: title;\n align-items: center;\n justify-content: center;\n font-family: var(--font-family-header);\n text-transform: uppercase;\n text-align: center;\n padding: 0 2em;\n @media ", " {\n justify-content: center;\n }\n"])), devices.mobile);
|
|
8217
8395
|
var CompactHeaderCTAWrapper = /*#__PURE__*/styled__default.div(_templateObject9$4 || (_templateObject9$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n grid-area: cta;\n justify-content: right;\n align-items: center;\n padding-right: 50px;\n @media ", " {\n padding-right: 0px;\n justify-content: center;\n }\n"])), devices.mobile);
|
|
8218
8396
|
var PrimaryButtonWithInversion = /*#__PURE__*/styled__default(PrimaryButton)(_templateObject10$4 || (_templateObject10$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: ", ";\n color: ", ";\n svg {\n fill: ", ";\n path {\n fill: ", ";\n }\n }\n min-width: 145px;\n"])), function (_ref5) {
|
|
8219
8397
|
var invert = _ref5.invert,
|
|
@@ -8423,7 +8601,7 @@ var PageHeadingCompact = function PageHeadingCompact(_ref4) {
|
|
|
8423
8601
|
mobile: bgUrlDevice,
|
|
8424
8602
|
alt: bgImageAltText
|
|
8425
8603
|
};
|
|
8426
|
-
return /*#__PURE__*/React__default.createElement(ComapctHeaderWrapper, null, sponsor ? (/*#__PURE__*/React__default.createElement(SponsorWrapper
|
|
8604
|
+
return /*#__PURE__*/React__default.createElement(ComapctHeaderWrapper, null, sponsor ? (/*#__PURE__*/React__default.createElement(SponsorWrapper, {
|
|
8427
8605
|
"data-testid": "compact-sponsor"
|
|
8428
8606
|
}, customSponsorImage ? (/*#__PURE__*/React__default.createElement(Sponsorship, Object.assign({
|
|
8429
8607
|
"data-testid": "compact-custom-sponsor"
|
|
@@ -8603,7 +8781,6 @@ var getConcatenatedPropLength = function getConcatenatedPropLength(array, prop)
|
|
|
8603
8781
|
}, 0);
|
|
8604
8782
|
};
|
|
8605
8783
|
|
|
8606
|
-
/*eslint-disable*/
|
|
8607
8784
|
var DEFAULT_COLUMN_COUNT = 4;
|
|
8608
8785
|
var DEFAULT_LARGE_COLUMN_SPAN = 2;
|
|
8609
8786
|
var DEFAULT_CHARACTER_THRESHOLD = 180;
|
|
@@ -8713,7 +8890,7 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
8713
8890
|
}, creditEntries);
|
|
8714
8891
|
};
|
|
8715
8892
|
|
|
8716
|
-
var _templateObject$13, _templateObject2$P, _templateObject3$C, _templateObject4$w, _templateObject5$q, _templateObject6$j, _templateObject7$d, _templateObject8$
|
|
8893
|
+
var _templateObject$13, _templateObject2$P, _templateObject3$C, _templateObject4$w, _templateObject5$q, _templateObject6$j, _templateObject7$d, _templateObject8$9, _templateObject9$5, _templateObject10$5, _templateObject11$2, _templateObject12$2, _templateObject13$2, _templateObject14$2, _templateObject15$1, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21;
|
|
8717
8894
|
var LENGTH_TEXT = 28;
|
|
8718
8895
|
var LENGTH_TEXT_TABLET$1 = 12;
|
|
8719
8896
|
var GridTemplateImageToLeft = "'left left left left left left left left . right right right right right . .'";
|
|
@@ -8762,7 +8939,7 @@ var PromoWithTagsTagWrapper = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
|
8762
8939
|
});
|
|
8763
8940
|
var PromoWithTagsAdditionalText = /*#__PURE__*/styled__default(PromoWithTagsText)(_templateObject6$j || (_templateObject6$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 24px 0;\n"])));
|
|
8764
8941
|
var TextLinksContainer = /*#__PURE__*/styled__default.div(_templateObject7$d || (_templateObject7$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n margin: 24px 0 4px 0;\n"])));
|
|
8765
|
-
var TextLinkWrapper$3 = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
8942
|
+
var TextLinkWrapper$3 = /*#__PURE__*/styled__default.div(_templateObject8$9 || (_templateObject8$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-right: 24px;\n margin-bottom: 20px;\n\n &:last-child {\n margin-right: 0;\n }\n"])));
|
|
8766
8943
|
var ExtraContentWrapper = /*#__PURE__*/styled__default.div(_templateObject9$5 || (_templateObject9$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n padding-right: 68px;\n\n iframe {\n height: 800px;\n }\n\n @media ", " {\n padding: 30px 0 0;\n }\n\n @media ", " {\n padding: 0;\n position: initial;\n }\n"])), devices.tablet, devices.mobile);
|
|
8767
8944
|
var IconWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject10$5 || (_templateObject10$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: pointer;\n position: absolute;\n top: 25px;\n right: 35px;\n width: 24px;\n height: 24px;\n\n @media ", " {\n top: 30px;\n right: 30px;\n }\n\n @media ", " {\n top: 3px;\n right: 20px;\n }\n"])), devices.tablet, devices.mobile);
|
|
8768
8945
|
var PrimaryButtonWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject11$2 || (_templateObject11$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: var(--button-height);\n\n @media ", " {\n width: 100%;\n }\n"])), devices.mobile);
|
|
@@ -8984,8 +9161,8 @@ var PromoWithTitleContentWrapper = /*#__PURE__*/styled__default.div(_templateObj
|
|
|
8984
9161
|
return imageToLeft ? 'right' : 'left';
|
|
8985
9162
|
}, devices.mobile);
|
|
8986
9163
|
var PromoWithTitleContainer = /*#__PURE__*/styled__default.div(_templateObject4$x || (_templateObject4$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h2,\n h3 {\n margin: 0 0 32px;\n\n @media ", " {\n & {\n margin: 0 0 24px;\n }\n }\n }\n"])), devices.mobile);
|
|
8987
|
-
var PromoWithTitleSubtitle = /*#__PURE__*/styled__default.span(_templateObject5$r || (_templateObject5$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-
|
|
8988
|
-
var PromoWithTitleText = /*#__PURE__*/styled__default.div(_templateObject6$k || (_templateObject6$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-
|
|
9164
|
+
var PromoWithTitleSubtitle = /*#__PURE__*/styled__default.span(_templateObject5$r || (_templateObject5$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-sans);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-size: var(--font-size-subtitle-1);\n font-weight: var(--font-weight-subtitle-1);\n line-height: var(--line-height-subtitle-1);\n letter-spacing: var(--letter-spacing-subtitle-1);\n margin-bottom: var(--editorial-subtitle-margin-bottom);\n display: block;\n overflow-wrap: break-word;\n"])));
|
|
9165
|
+
var PromoWithTitleText = /*#__PURE__*/styled__default.div(_templateObject6$k || (_templateObject6$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-sans);\n font-feature-settings: var(--font-feature-settings-body);\n font-size: var(--font-size-body-1);\n font-weight: var(--font-weight-body-1);\n line-height: var(--line-height-body-1);\n letter-spacing: var(--letter-spacing-body-1);\n margin: 0;\n padding: 0;\n white-space: break-spaces;\n overflow-wrap: break-word;\n\n em {\n font-family: var(--font-family-body-italics);\n }\n\n a {\n text-decoration: underline;\n cursor: pointer;\n\n &[href^='tel:'] {\n text-decoration: none;\n }\n\n &:link {\n color: var(--color-primary-black);\n }\n\n &:visited {\n color: var(--color-base-dark-grey);\n }\n\n &:hover {\n color: var(--color-primary-red);\n }\n }\n"])));
|
|
8989
9166
|
var ButtonsContainer$3 = /*#__PURE__*/styled__default.div(_templateObject7$e || (_templateObject7$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n gap: 16px;\n margin-top: 32px;\n\n ", "\n\n @media ", " {\n gap: 24px;\n margin-top: 24px;\n flex-direction: column;\n align-items: center;\n }\n\n @media ", " {\n gap: 24px;\n margin-top: 24px;\n align-items: flex-start;\n\n ", "\n }\n"])), function (_ref5) {
|
|
8990
9167
|
var _ref5$primaryButtonTe = _ref5.primaryButtonTextLength,
|
|
8991
9168
|
primaryButtonTextLength = _ref5$primaryButtonTe === void 0 ? 0 : _ref5$primaryButtonTe,
|
|
@@ -9144,18 +9321,17 @@ var PromoWithTitle = function PromoWithTitle(_ref) {
|
|
|
9144
9321
|
title = _ref$title === void 0 ? '' : _ref$title,
|
|
9145
9322
|
_ref$titleSize = _ref.titleSize,
|
|
9146
9323
|
titleSize = _ref$titleSize === void 0 ? 'large' : _ref$titleSize,
|
|
9324
|
+
titleHierarchy = _ref.titleHierarchy,
|
|
9147
9325
|
subtitle = _ref.subtitle,
|
|
9148
9326
|
text = _ref.text,
|
|
9149
9327
|
links = _ref.links,
|
|
9150
9328
|
children = _ref.children,
|
|
9151
9329
|
videoSettings = _ref.videoSettings,
|
|
9152
|
-
titleSemanticLevel = _ref.titleSemanticLevel,
|
|
9153
9330
|
className = _ref.className;
|
|
9154
9331
|
var truncate = function truncate(str, n) {
|
|
9155
9332
|
return str.length >= n ? str.substr(0, n) : str;
|
|
9156
9333
|
};
|
|
9157
9334
|
var imageToLeft = imagePosition === 'left';
|
|
9158
|
-
var titleLevel = titleSize === 'large' ? 2 : 3;
|
|
9159
9335
|
var primaryButton = links == null ? void 0 : links[0];
|
|
9160
9336
|
var _ref2 = primaryButton || {},
|
|
9161
9337
|
_ref2$text = _ref2.text,
|
|
@@ -9179,19 +9355,15 @@ var PromoWithTitle = function PromoWithTitle(_ref) {
|
|
|
9179
9355
|
imageToLeft: imageToLeft,
|
|
9180
9356
|
className: className,
|
|
9181
9357
|
"data-testid": "promo-with-title"
|
|
9182
|
-
}, /*#__PURE__*/React__default.createElement(PromoChild
|
|
9183
|
-
// eslint-disable-next-line react/no-children-prop
|
|
9184
|
-
, {
|
|
9185
|
-
// eslint-disable-next-line react/no-children-prop
|
|
9186
|
-
children: children,
|
|
9358
|
+
}, /*#__PURE__*/React__default.createElement(PromoChild, {
|
|
9187
9359
|
videoSettings: _extends({}, defaultVideoSettings, videoSettings),
|
|
9188
9360
|
imageToLeft: imageToLeft
|
|
9189
|
-
}), /*#__PURE__*/React__default.createElement(PromoWithTitleContentWrapper, {
|
|
9361
|
+
}, children), /*#__PURE__*/React__default.createElement(PromoWithTitleContentWrapper, {
|
|
9190
9362
|
"data-testid": "content-wrapper",
|
|
9191
9363
|
imageToLeft: imageToLeft
|
|
9192
|
-
}, /*#__PURE__*/React__default.createElement(PromoWithTitleContainer, null, /*#__PURE__*/React__default.createElement(
|
|
9193
|
-
|
|
9194
|
-
|
|
9364
|
+
}, /*#__PURE__*/React__default.createElement(PromoWithTitleContainer, null, /*#__PURE__*/React__default.createElement(HarmonicHeader, {
|
|
9365
|
+
size: titleSize,
|
|
9366
|
+
hierarchy: titleHierarchy
|
|
9195
9367
|
}, title)), subtitle ? /*#__PURE__*/React__default.createElement(PromoWithTitleSubtitle, null, subtitle) : null, /*#__PURE__*/React__default.createElement(PromoWithTitleText, {
|
|
9196
9368
|
dangerouslySetInnerHTML: {
|
|
9197
9369
|
__html: text
|
|
@@ -9434,7 +9606,7 @@ var SectionTitle = function SectionTitle(_ref) {
|
|
|
9434
9606
|
}, description)))));
|
|
9435
9607
|
};
|
|
9436
9608
|
|
|
9437
|
-
var _templateObject$1a, _templateObject2$T, _templateObject3$G, _templateObject4$y, _templateObject5$s, _templateObject6$l, _templateObject7$f, _templateObject8$
|
|
9609
|
+
var _templateObject$1a, _templateObject2$T, _templateObject3$G, _templateObject4$y, _templateObject5$s, _templateObject6$l, _templateObject7$f, _templateObject8$a, _templateObject9$6, _templateObject10$6, _templateObject11$3;
|
|
9438
9610
|
var stateStyles = /*#__PURE__*/styled.css(_templateObject$1a || (_templateObject$1a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n &:focus,\n &.focus {\n outline: ", ";\n }\n\n &.disabled {\n background-color: ", ";\n color: ", ";\n pointer-events: none;\n cursor: none;\n }\n"])), function (_ref) {
|
|
9439
9611
|
var theme = _ref.theme;
|
|
9440
9612
|
return "3px solid " + theme.colors.lapisLazuli;
|
|
@@ -9461,7 +9633,7 @@ var ArrowIcon = /*#__PURE__*/styled__default(Icon).attrs(function (_ref5) {
|
|
|
9461
9633
|
})(_templateObject5$s || (_templateObject5$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n pointer-events: none;\n\n max-width: 24px;\n max-height: 24px;\n\n svg {\n width: 24px;\n height: 24px;\n }\n"])));
|
|
9462
9634
|
var Wrapper$5 = /*#__PURE__*/styled__default.div(_templateObject6$l || (_templateObject6$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: initial;\n\n display: flex;\n flex-direction: column;\n gap: 20px;\n"])), noMarginAndPaddingStyles);
|
|
9463
9635
|
var SelectWrapper = /*#__PURE__*/styled__default.div(_templateObject7$f || (_templateObject7$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: inherit;\n"])), noMarginAndPaddingStyles);
|
|
9464
|
-
var Options = /*#__PURE__*/styled__default.div(_templateObject8$
|
|
9636
|
+
var Options = /*#__PURE__*/styled__default.div(_templateObject8$a || (_templateObject8$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n z-index: 1;\n\n ", "\n ", "\n"])), noMarginAndPaddingStyles, borderStyles);
|
|
9465
9637
|
var Option = /*#__PURE__*/styled__default.li(_templateObject9$6 || (_templateObject9$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n\n ", "\n"])), noMarginAndPaddingStyles, listItemStyles, function (_ref6) {
|
|
9466
9638
|
var theme = _ref6.theme,
|
|
9467
9639
|
hover = _ref6.hover;
|
|
@@ -10423,7 +10595,7 @@ var PasswordStrength = function PasswordStrength(_ref) {
|
|
|
10423
10595
|
}, strengthLabel))));
|
|
10424
10596
|
};
|
|
10425
10597
|
|
|
10426
|
-
var _templateObject$1i, _templateObject2$$, _templateObject3$N, _templateObject4$E, _templateObject5$x, _templateObject6$o, _templateObject7$g, _templateObject8$
|
|
10598
|
+
var _templateObject$1i, _templateObject2$$, _templateObject3$N, _templateObject4$E, _templateObject5$x, _templateObject6$o, _templateObject7$g, _templateObject8$b, _templateObject9$7, _templateObject10$7;
|
|
10427
10599
|
var TableContainer = /*#__PURE__*/styled__default.table(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-collapse: collapse;\n"])));
|
|
10428
10600
|
var Container$6 = /*#__PURE__*/styled__default.div(_templateObject2$$ || (_templateObject2$$ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow-x: auto;\n"])));
|
|
10429
10601
|
var Wrapper$7 = /*#__PURE__*/styled__default.div(_templateObject3$N || (_templateObject3$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n"])));
|
|
@@ -10442,7 +10614,7 @@ var PageNumber$1 = /*#__PURE__*/styled__default.button(_templateObject7$g || (_t
|
|
|
10442
10614
|
var active = _ref.active;
|
|
10443
10615
|
return active === 'true' && "\n color: var(--base-color-core);\n border-bottom: 1px solid var(--base-color-core);\n ";
|
|
10444
10616
|
});
|
|
10445
|
-
var Next = /*#__PURE__*/styled__default.span(_templateObject8$
|
|
10617
|
+
var Next = /*#__PURE__*/styled__default.span(_templateObject8$b || (_templateObject8$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n width: 25px;\n align-items: center;\n justify-content: center;\n margin-left: 0;\n span {\n height: 1.5em;\n svg > path {\n fill: var(--base-color-dark-grey);\n }\n }\n"])));
|
|
10446
10618
|
var ScrollButtons = /*#__PURE__*/styled__default.div(_templateObject9$7 || (_templateObject9$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: flex-end;\n padding: 0 0 24px 0;\n\n div:hover {\n background-color: var(--base-color-light-grey);\n }\n\n > div > div {\n background-color: var(--base-color-light-grey);\n }\n\n svg path {\n fill: var(--base-color-black) !important;\n }\n"])));
|
|
10447
10619
|
var AriaDescription$2 = /*#__PURE__*/styled__default.span(_templateObject10$7 || (_templateObject10$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n left: -9999px;\n width: 1px;\n height: 1px;\n overflow: hidden;\n"])));
|
|
10448
10620
|
|
|
@@ -10627,7 +10799,7 @@ var Table = function Table(_ref) {
|
|
|
10627
10799
|
}))))))))));
|
|
10628
10800
|
};
|
|
10629
10801
|
|
|
10630
|
-
var _templateObject$1j, _templateObject2$10, _templateObject3$O, _templateObject4$F, _templateObject5$y, _templateObject6$p, _templateObject7$h, _templateObject8$
|
|
10802
|
+
var _templateObject$1j, _templateObject2$10, _templateObject3$O, _templateObject4$F, _templateObject5$y, _templateObject6$p, _templateObject7$h, _templateObject8$c, _templateObject9$8, _templateObject10$8, _templateObject11$4, _templateObject12$3, _templateObject13$3, _templateObject14$3, _templateObject15$2;
|
|
10631
10803
|
var Wrapper$8 = /*#__PURE__*/styled__default('div')(_templateObject$1j || (_templateObject$1j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n border-top: 4px solid ", ";\n border-bottom: 4px solid ", ";\n"])), function (_ref) {
|
|
10632
10804
|
var theme = _ref.theme;
|
|
10633
10805
|
return "var(--base-color-" + theme + ")";
|
|
@@ -10641,7 +10813,7 @@ var Error$1 = /*#__PURE__*/styled__default.div(_templateObject4$F || (_templateO
|
|
|
10641
10813
|
var Form = /*#__PURE__*/styled__default.form(_templateObject5$y || (_templateObject5$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 32px;\n align-items: center;\n ", " {\n margin-top: -20px;\n }\n a[href] {\n color: inherit;\n }\n"])), Error$1);
|
|
10642
10814
|
var FormFooterWrapper = /*#__PURE__*/styled__default.div(_templateObject6$p || (_templateObject6$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 32px;\n display: flex;\n gap: 28px;\n align-items: center;\n\n @media ", " {\n flex-direction: column;\n align-items: flex-start;\n }\n"])), devices.mobile);
|
|
10643
10815
|
var ServerError = /*#__PURE__*/styled__default.div(_templateObject7$h || (_templateObject7$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-align: left;\n color: var(--base-color-errorstate);\n"])));
|
|
10644
|
-
var CTALinkWrapper = /*#__PURE__*/styled__default.a(_templateObject8$
|
|
10816
|
+
var CTALinkWrapper = /*#__PURE__*/styled__default.a(_templateObject8$c || (_templateObject8$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-black);\n div {\n text-decoration: underline;\n }\n"])));
|
|
10645
10817
|
var ButtonWrapper$3 = /*#__PURE__*/styled__default.button(_templateObject9$8 || (_templateObject9$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n all: unset;\n width: fit-content;\n\n @media ", " {\n width: 100%;\n }\n &:focus {\n outline: 3px solid var(--base-color-lapislazuli);\n }\n"])), devices.mobile);
|
|
10646
10818
|
var FieldsWrapper = /*#__PURE__*/styled__default.div(_templateObject10$8 || (_templateObject10$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 36px;\n\n @media ", " {\n grid-template-columns: 1fr;\n gap: 20px;\n }\n"])), devices.mobile);
|
|
10647
10819
|
var MessageWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject11$4 || (_templateObject11$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n div > p {\n margin: 0;\n }\n"])));
|