optimized-react-component-library-xyz123 2.4.1 → 2.5.2

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/index.js CHANGED
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
33
  AddFilesStandard: () => AddFilesStandard_default,
34
+ AlertInTextStandard: () => AlertInTextStandard_default,
34
35
  CheckboxGroupStandard: () => CheckboxGroupStandard_default,
35
36
  Collapse: () => CollapseStandard_default,
36
37
  CookieBanner: () => CookieBanner_default,
@@ -38,6 +39,7 @@ __export(index_exports, {
38
39
  FooterStandard: () => FooterStandard_default,
39
40
  FormStatusMessagesScreenReader: () => FormStatusMessagesScreenReader_default,
40
41
  HeaderStandard: () => HeaderStandard_default,
42
+ InfoOnlyStandard: () => InfoOnlyStandard_default,
41
43
  LinkListStandard: () => LinkListStandard_default,
42
44
  LinkStandard: () => LinkStandard_default,
43
45
  ModalStandard: () => ModalStandard_default,
@@ -48,6 +50,7 @@ __export(index_exports, {
48
50
  QuestionGroup: () => QuestionGroup_default,
49
51
  QuestionRenderer: () => QuestionRenderer_default,
50
52
  RadioMultipleStandard: () => RadioMultipleStandard_default,
53
+ RadioMultipleWithInfoStandard: () => RadioMultipleWithInfoStandard_default,
51
54
  SearchBar: () => SearchBarStandard_default,
52
55
  SingleCheckboxStandard: () => SingleCheckboxStandard_default,
53
56
  SkipLinkStandard: () => SkipLinkStandard_default,
@@ -1251,6 +1254,878 @@ var PreviewSingleCheckbox = ({
1251
1254
  ] });
1252
1255
  };
1253
1256
 
1257
+ // src/components/text-blocks/TextHeadlineAndBodyStandard/TextHeadlineAndBodyStandard.tsx
1258
+ var import_react9 = require("react");
1259
+ var import_dompurify4 = __toESM(require("dompurify"));
1260
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1261
+ var TextHeadlineAndBody = ({ data, headlineType = "h2" }) => {
1262
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1263
+ "section",
1264
+ {
1265
+ className: "pts-textHeadlineAndBody-container",
1266
+ children: [
1267
+ data.headline && (0, import_react9.createElement)(headlineType, { id: "textHeadlineAndBody-headline" }, data.headline),
1268
+ data.body && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { dangerouslySetInnerHTML: { __html: import_dompurify4.default.sanitize(data.body) } }),
1269
+ data.linksForMoreInfo && data.linksForMoreInfo.length > 1 && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1270
+ "a",
1271
+ {
1272
+ href: link.url,
1273
+ target: "_blank",
1274
+ rel: "noopener noreferrer",
1275
+ children: [
1276
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1277
+ "svg",
1278
+ {
1279
+ "aria-hidden": "true",
1280
+ xmlns: "http://www.w3.org/2000/svg",
1281
+ width: "12",
1282
+ height: "10",
1283
+ viewBox: "0 0 12 10",
1284
+ fill: "none",
1285
+ children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1286
+ "path",
1287
+ {
1288
+ d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
1289
+ fill: "#ffffff"
1290
+ }
1291
+ )
1292
+ }
1293
+ ) }),
1294
+ link.title
1295
+ ]
1296
+ }
1297
+ ) }, `more-info-${index}`)) }),
1298
+ data.linksForMoreInfo && data.linksForMoreInfo.length === 1 && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1299
+ "a",
1300
+ {
1301
+ href: data.linksForMoreInfo[0].url,
1302
+ target: "_blank",
1303
+ rel: "noopener noreferrer",
1304
+ "aria-label": data.linksForMoreInfo[0].ariaLabel,
1305
+ children: [
1306
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1307
+ "svg",
1308
+ {
1309
+ "aria-hidden": "true",
1310
+ xmlns: "http://www.w3.org/2000/svg",
1311
+ width: "12",
1312
+ height: "10",
1313
+ viewBox: "0 0 12 10",
1314
+ fill: "none",
1315
+ children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1316
+ "path",
1317
+ {
1318
+ d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
1319
+ fill: "#ffffff"
1320
+ }
1321
+ )
1322
+ }
1323
+ ) }),
1324
+ data.linksForMoreInfo[0].title
1325
+ ]
1326
+ }
1327
+ )
1328
+ ]
1329
+ }
1330
+ );
1331
+ };
1332
+ var TextHeadlineAndBodyStandard_default = TextHeadlineAndBody;
1333
+
1334
+ // src/components/text-blocks/PrincipleOfPublicityStandard/PrincipleOfPublicityStandard.tsx
1335
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1336
+ var CONTENT = {
1337
+ en: {
1338
+ headline: "The principle of public access and the processing of personal data",
1339
+ paragraph1: "The principle of public access to information means that everyone has the right to access public documents heldby authorities. The Data Protection Regulation does not prevent personal data in public documents from being disclosed.",
1340
+ paragraph2: "Since PTS is an authority, messages sent to us are generally public documents that are recorded and registered. Upon request, the messages will be disclosed if the information is not subject to confidentiality.",
1341
+ paragraph3: "More information can be found at pts.se:",
1342
+ links: [
1343
+ {
1344
+ url: "https://pts.se/en/about-us/processing-of-personal-data/",
1345
+ title: "Processing of personal data (opens in new tab)"
1346
+ }
1347
+ ]
1348
+ },
1349
+ sv: {
1350
+ headline: "Offentlighetsprincipen och behandling av personuppgifter",
1351
+ paragraph1: "Offentlighetsprincipen inneb\xE4r att var och en har r\xE4tt att ta del av allm\xE4nna handlingar hos myndigheter. Dataskyddsf\xF6rordningen hindrar inte att personuppgifter i allm\xE4nna handlingar l\xE4mnas ut.",
1352
+ paragraph2: "Eftersom PTS \xE4r en myndighet blir meddelanden som skickas till oss som huvudregel allm\xE4nna handlingar som diarief\xF6rs och registreras. Vid en beg\xE4ran kommer meddelandena att l\xE4mnas ut om uppgifterna inte omfattas av sekretess.",
1353
+ paragraph3: "Mer information finns p\xE5 pts.se:",
1354
+ links: [
1355
+ {
1356
+ url: "https://www.pts.se/gdpr/",
1357
+ title: "Behandling av personuppgifter (\xF6ppnas i ny flik)"
1358
+ }
1359
+ ]
1360
+ }
1361
+ };
1362
+ var PrincipleOfPublicity = ({ activatedLanguage = "" }) => {
1363
+ const currentContent = activatedLanguage === "en" ? CONTENT.en : CONTENT.sv;
1364
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1365
+ TextHeadlineAndBodyStandard_default,
1366
+ {
1367
+ data: {
1368
+ headline: currentContent.headline,
1369
+ body: `<p class="first-paragraph">${currentContent.paragraph1}</p><p>${currentContent.paragraph2}</p><p>${currentContent.paragraph3}</p>`,
1370
+ linksForMoreInfo: currentContent.links.map((link) => ({
1371
+ url: link.url,
1372
+ title: link.title,
1373
+ ariaLabel: link.title
1374
+ }))
1375
+ },
1376
+ headlineType: "h2"
1377
+ }
1378
+ );
1379
+ };
1380
+ var PrincipleOfPublicityStandard_default = PrincipleOfPublicity;
1381
+
1382
+ // src/components/text-blocks/TextBody/TextBody.tsx
1383
+ var import_dompurify5 = __toESM(require("dompurify"));
1384
+
1385
+ // src/components/layout/AlertInTextStandard/AlertInTextStandard.tsx
1386
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1387
+ var AlertInTextStandard = ({ content = "" }) => {
1388
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "pts-alertInText-container", children: [
1389
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "pts-alertInText-left", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1390
+ "svg",
1391
+ {
1392
+ width: "18",
1393
+ height: "16",
1394
+ viewBox: "0 0 18 16",
1395
+ xmlns: "http://www.w3.org/2000/svg",
1396
+ "aria-hidden": "true",
1397
+ children: [
1398
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("circle", { cx: "9", cy: "8", r: "7", fill: "white" }),
1399
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("circle", { cx: "9", cy: "4", r: "1", fill: "blue" }),
1400
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { x: "8.25", y: "6", width: "1.5", height: "6", fill: "blue" })
1401
+ ]
1402
+ }
1403
+ ) }),
1404
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "pts-alertInText-right", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { children: content }) })
1405
+ ] });
1406
+ };
1407
+ var AlertInTextStandard_default = AlertInTextStandard;
1408
+
1409
+ // src/components/text-blocks/TextBody/TextBody.tsx
1410
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1411
+ var TextBody = ({ data }) => {
1412
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "pts-textBody-container", children: [
1413
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: `${!data.body || !data.linksForMoreInfo ? "" : "pts-textbody-createspace"}`, children: [
1414
+ data.body && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { dangerouslySetInnerHTML: { __html: import_dompurify5.default.sanitize(data.body) } }),
1415
+ data.linksForMoreInfo && data.linksForMoreInfo.length > 1 && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1416
+ "a",
1417
+ {
1418
+ href: link.url,
1419
+ target: "_blank",
1420
+ rel: "noopener noreferrer",
1421
+ children: [
1422
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1423
+ "svg",
1424
+ {
1425
+ "aria-hidden": "true",
1426
+ xmlns: "http://www.w3.org/2000/svg",
1427
+ width: "12",
1428
+ height: "10",
1429
+ viewBox: "0 0 12 10",
1430
+ fill: "none",
1431
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1432
+ "path",
1433
+ {
1434
+ d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
1435
+ fill: "#ffffff"
1436
+ }
1437
+ )
1438
+ }
1439
+ ) }),
1440
+ link.title
1441
+ ]
1442
+ }
1443
+ ) }, `more-info-${index}`)) }),
1444
+ data.linksForMoreInfo && data.linksForMoreInfo.length === 1 && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-moreinfo-list", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1445
+ "a",
1446
+ {
1447
+ href: data.linksForMoreInfo[0].url,
1448
+ target: "_blank",
1449
+ rel: "noopener noreferrer",
1450
+ "aria-label": data.linksForMoreInfo[0].ariaLabel,
1451
+ children: [
1452
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1453
+ "svg",
1454
+ {
1455
+ "aria-hidden": "true",
1456
+ xmlns: "http://www.w3.org/2000/svg",
1457
+ width: "12",
1458
+ height: "10",
1459
+ viewBox: "0 0 12 10",
1460
+ fill: "none",
1461
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1462
+ "path",
1463
+ {
1464
+ d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
1465
+ fill: "#ffffff"
1466
+ }
1467
+ )
1468
+ }
1469
+ ) }),
1470
+ data.linksForMoreInfo[0].title
1471
+ ]
1472
+ }
1473
+ ) })
1474
+ ] }),
1475
+ data.alertInText && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-textbody-alerttext", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(AlertInTextStandard_default, { content: data.alertInText }) }),
1476
+ data.textAboveStartButton && data.textAboveStartButton.length > 0 && (/<\/?[a-z][\s\S]*>/i.test(data.textAboveStartButton) ? /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1477
+ "div",
1478
+ {
1479
+ className: "pts-instruction-before-start-text",
1480
+ dangerouslySetInnerHTML: { __html: import_dompurify5.default.sanitize(data.textAboveStartButton) }
1481
+ }
1482
+ ) : /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "pts-instruction-before-start-text", children: data.textAboveStartButton }))
1483
+ ] });
1484
+ };
1485
+ var TextBody_default = TextBody;
1486
+
1487
+ // src/components/input-components/InfoOnlyStandard/InfoOnlyStandard.tsx
1488
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1489
+ var InputInfoOnly = ({
1490
+ question,
1491
+ handleQuestionInputChange,
1492
+ showPreview = false,
1493
+ activatedLanguage = "sv"
1494
+ }) => {
1495
+ var _a, _b, _c;
1496
+ const questionId = `question-${question.id}`;
1497
+ const bodyText = ((_a = question.infoOnly) == null ? void 0 : _a.body) || "";
1498
+ const linksForMoreInfo = ((_b = question.infoOnly) == null ? void 0 : _b.linksForMoreInfo) || [];
1499
+ const alertInText = ((_c = question.infoOnly) == null ? void 0 : _c.alertInText) || "";
1500
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_jsx_runtime18.Fragment, { children: !showPreview && question.visible && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "pts-root-question pts-InfoOnly-container", id: questionId, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1501
+ TextBody_default,
1502
+ {
1503
+ data: {
1504
+ body: bodyText,
1505
+ linksForMoreInfo,
1506
+ alertInText
1507
+ }
1508
+ }
1509
+ ) }) });
1510
+ };
1511
+ var InfoOnlyStandard_default = InputInfoOnly;
1512
+
1513
+ // src/components/input-components/RadioMultipleWithInfoStandard/RadioCollapseItem.tsx
1514
+ var import_react10 = require("react");
1515
+ var import_dompurify6 = __toESM(require("dompurify"));
1516
+
1517
+ // src/css/icons.tsx
1518
+ var icons_exports = {};
1519
+ __export(icons_exports, {
1520
+ AddIcon: () => AddIcon,
1521
+ ChevronRightIcon: () => ChevronRightIcon,
1522
+ CloseIcon: () => CloseIcon,
1523
+ CollapseIcon: () => CollapseIcon,
1524
+ ExpandIcon: () => ExpandIcon,
1525
+ FileIcon: () => FileIcon,
1526
+ LanguageIcon: () => LanguageIcon,
1527
+ LanguageIconSmall: () => LanguageIconSmall,
1528
+ LinkDefaultIcon: () => LinkDefaultIcon,
1529
+ Logo_en: () => Logo_en,
1530
+ Logo_sv: () => Logo_sv,
1531
+ MenuIcon: () => MenuIcon,
1532
+ MinusIcon: () => MinusIcon,
1533
+ ReportIcon: () => ReportIcon,
1534
+ SearchIcon: () => SearchIcon,
1535
+ SearchIconWhite: () => SearchIconWhite
1536
+ });
1537
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1538
+ var LinkDefaultIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1539
+ "svg",
1540
+ {
1541
+ "aria-hidden": "true",
1542
+ xmlns: "http://www.w3.org/2000/svg",
1543
+ width: "12",
1544
+ height: "10",
1545
+ viewBox: "0 0 12 10",
1546
+ fill: "none",
1547
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1548
+ "path",
1549
+ {
1550
+ d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
1551
+ fill: "#ffffff"
1552
+ }
1553
+ )
1554
+ }
1555
+ );
1556
+ var SearchIcon = ({ width = 15, height = 15, color = "#6E3282" }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { width, height, viewBox: "0 0 21 20", fill: color, xmlns: "http://www.w3.org/2000/svg", children: [
1557
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1558
+ "path",
1559
+ {
1560
+ d: "M9.05856 16.1132C4.503 16.1132 0.833252 12.5188 0.833252 8.05662C0.833252 3.59449 4.503 0 9.05856 0C13.6141 0 17.2839 3.59449 17.2839 8.05662C17.2839 12.5188 13.6141 16.1132 9.05856 16.1132ZM9.05856 1.23948C5.19899 1.23948 2.09868 4.27621 2.09868 8.05662C2.09868 11.837 5.19899 14.8738 9.05856 14.8738C12.9181 14.8738 16.0184 11.837 16.0184 8.05662C16.0184 4.27621 12.9181 1.23948 9.05856 1.23948Z",
1561
+ fill: color
1562
+ }
1563
+ ),
1564
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1565
+ "path",
1566
+ {
1567
+ d: "M14.4409 13.3929C14.7047 13.1187 15.1435 13.1187 15.4073 13.3929L20.3859 18.568C20.6357 18.8276 20.6357 19.2381 20.3859 19.4977C20.1221 19.7719 19.6833 19.7719 19.4195 19.4977L14.4409 14.3227C14.1911 14.0631 14.1911 13.6525 14.4409 13.3929Z",
1568
+ fill: color
1569
+ }
1570
+ )
1571
+ ] });
1572
+ var SearchIconWhite = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { width: "21", height: "20", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
1573
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1574
+ "path",
1575
+ {
1576
+ d: "M9.05856 16.1132C4.503 16.1132 0.833252 12.5188 0.833252 8.05662C0.833252 3.59449 4.503 0 9.05856 0C13.6141 0 17.2839 3.59449 17.2839 8.05662C17.2839 12.5188 13.6141 16.1132 9.05856 16.1132ZM9.05856 1.23948C5.19899 1.23948 2.09868 4.27621 2.09868 8.05662C2.09868 11.837 5.19899 14.8738 9.05856 14.8738C12.9181 14.8738 16.0184 11.837 16.0184 8.05662C16.0184 4.27621 12.9181 1.23948 9.05856 1.23948Z",
1577
+ fill: "#6E3282"
1578
+ }
1579
+ ),
1580
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1581
+ "path",
1582
+ {
1583
+ d: "M14.4409 13.3929C14.7047 13.1187 15.1435 13.1187 15.4073 13.3929L20.3859 18.568C20.6357 18.8276 20.6357 19.2381 20.3859 19.4977C20.1221 19.7719 19.6833 19.7719 19.4195 19.4977L14.4409 14.3227C14.1911 14.0631 14.1911 13.6525 14.4409 13.3929Z",
1584
+ fill: "#6E3282"
1585
+ }
1586
+ )
1587
+ ] });
1588
+ var LanguageIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1589
+ "path",
1590
+ {
1591
+ d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
1592
+ fill: "#6E3282"
1593
+ }
1594
+ ) });
1595
+ var LanguageIconSmall = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1596
+ "path",
1597
+ {
1598
+ d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
1599
+ fill: "#6E3282"
1600
+ }
1601
+ ) });
1602
+ var MenuIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
1603
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("line", { x1: "0.666504", y1: "1", x2: "20.6665", y2: "1", stroke: "#6E3282", strokeWidth: "2" }),
1604
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("line", { x1: "0.666504", y1: "7", x2: "20.6665", y2: "7", stroke: "#6E3282", strokeWidth: "2" }),
1605
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("line", { x1: "0.666504", y1: "13", x2: "20.6665", y2: "13", stroke: "#6E3282", strokeWidth: "2" })
1606
+ ] });
1607
+ var ExpandIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7073 15.7069C12.5198 15.8943 12.2655 15.9996 12.0003 15.9996C11.7352 15.9996 11.4809 15.8943 11.2933 15.7069L5.63634 10.0499C5.54083 9.95761 5.46465 9.84726 5.41224 9.72526C5.35983 9.60326 5.33225 9.47204 5.33109 9.33926C5.32994 9.20648 5.35524 9.0748 5.40552 8.9519C5.4558 8.829 5.53006 8.71735 5.62395 8.62346C5.71784 8.52957 5.82949 8.45531 5.95239 8.40503C6.07529 8.35475 6.20696 8.32945 6.33974 8.3306C6.47252 8.33176 6.60374 8.35934 6.72575 8.41175C6.84775 8.46416 6.9581 8.54034 7.05034 8.63585L12.0003 13.5859L16.9503 8.63585C17.1389 8.4537 17.3915 8.3529 17.6537 8.35518C17.9159 8.35746 18.1668 8.46263 18.3522 8.64804C18.5376 8.83344 18.6427 9.08426 18.645 9.34645C18.6473 9.60865 18.5465 9.86125 18.3643 10.0499L12.7073 15.7069Z", fill: "white" }) });
1608
+ var CollapseIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7073 8.29315C12.5198 8.10567 12.2655 8.00036 12.0003 8.00036C11.7352 8.00036 11.4809 8.10567 11.2933 8.29315L5.63634 13.9501C5.54083 14.0424 5.46465 14.1527 5.41224 14.2747C5.35983 14.3967 5.33225 14.528 5.33109 14.6607C5.32994 14.7935 5.35524 14.9252 5.40552 15.0481C5.4558 15.171 5.53006 15.2826 5.62395 15.3765C5.71784 15.4704 5.82949 15.5447 5.95239 15.595C6.07529 15.6452 6.20696 15.6705 6.33974 15.6694C6.47252 15.6682 6.60374 15.6407 6.72575 15.5882C6.84775 15.5358 6.9581 15.4597 7.05034 15.3641L12.0003 10.4141L16.9503 15.3641C17.1389 15.5463 17.3915 15.6471 17.6537 15.6448C17.9159 15.6425 18.1668 15.5374 18.3522 15.352C18.5376 15.1666 18.6427 14.9157 18.645 14.6535C18.6473 14.3913 18.5465 14.1387 18.3643 13.9501L12.7073 8.29315Z", fill: "white" }) });
1609
+ var FileIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "14", viewBox: "0 0 12 14", fill: "none", children: [
1610
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M5.85938 0C6.22763 7.8646e-05 6.58076 0.146427 6.84111 0.406856L10.702 4.09964C10.9624 4.35999 11.1088 4.71312 11.1088 5.08137L11.1087 12.4973C11.1087 12.8656 10.9624 13.2188 10.702 13.4792C10.4416 13.7396 10.0223 13.7536 9.65399 13.7536H1.38859C1.02031 13.7536 0.667118 13.7396 0.406708 13.4792C0.146297 13.2188 0 12.8656 0 12.4973V1.38859C0 1.02031 0.146297 0.667118 0.406708 0.406708C0.667118 0.146297 1.02031 0 1.38859 0H5.85938ZM5.55435 0.925725H1.21665C0.98294 0.925725 0.793478 1.11519 0.793478 1.3489V12.537C0.793478 12.7707 0.98294 12.9601 1.21665 12.9601H9.89205C10.1258 12.9601 10.3152 12.7707 10.3152 12.537V5.55435H6.59579C6.31958 5.55435 6.05469 5.44463 5.85938 5.24932C5.66407 5.05401 5.55435 4.78912 5.55435 4.51291V0.925725ZM6.21558 0.925725V4.46994C6.21558 4.70366 6.40504 4.89312 6.63875 4.89312H10.3152L6.21558 0.925725Z", fill: "white" }),
1611
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2.91016 8.72803H8.20001", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" }),
1612
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2.91016 6.34766H5.29059", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" }),
1613
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2.91016 11.1089H8.20001", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" })
1614
+ ] });
1615
+ var ReportIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", children: [
1616
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("g", { clipPath: "url(#clip0_837_190)", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M0 1.71875C0 1.26291 0.181082 0.825738 0.50341 0.50341C0.825738 0.181082 1.26291 0 1.71875 0L12.0312 0C12.4871 0 12.9243 0.181082 13.2466 0.50341C13.5689 0.825738 13.75 1.26291 13.75 1.71875V12.0312C13.75 12.4871 13.5689 12.9243 13.2466 13.2466C12.9243 13.5689 12.4871 13.75 12.0312 13.75H1.71875C1.26291 13.75 0.825738 13.5689 0.50341 13.2466C0.181082 12.9243 0 12.4871 0 12.0312V1.71875ZM12.8906 3.4375H9.45312V6.01562H12.8906V3.4375ZM12.8906 6.875H9.45312V9.45312H12.8906V6.875ZM12.8906 10.3125H9.45312V12.8906H12.0312C12.2592 12.8906 12.4778 12.8001 12.6389 12.6389C12.8001 12.4778 12.8906 12.2592 12.8906 12.0312V10.3125ZM8.59375 12.8906V10.3125H5.15625V12.8906H8.59375ZM4.29688 12.8906V10.3125H0.859375V12.0312C0.859375 12.2592 0.949916 12.4778 1.11108 12.6389C1.27224 12.8001 1.49083 12.8906 1.71875 12.8906H4.29688ZM0.859375 9.45312H4.29688V6.875H0.859375V9.45312ZM0.859375 6.01562H4.29688V3.4375H0.859375V6.01562ZM5.15625 3.4375V6.01562H8.59375V3.4375H5.15625ZM8.59375 6.875H5.15625V9.45312H8.59375V6.875Z", fill: "white" }) }),
1617
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("clipPath", { id: "clip0_837_190", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("rect", { width: "13.75", height: "13.75", fill: "white" }) }) })
1618
+ ] });
1619
+ var CloseIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1620
+ "svg",
1621
+ {
1622
+ width: "14",
1623
+ height: "14",
1624
+ viewBox: "0 0 14 14",
1625
+ fill: "none",
1626
+ xmlns: "http://www.w3.org/2000/svg",
1627
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1628
+ "path",
1629
+ {
1630
+ d: "M0 14L14 0M0 0L14 14",
1631
+ stroke: "#6E3282",
1632
+ strokeWidth: "1.5",
1633
+ strokeLinecap: "round"
1634
+ }
1635
+ )
1636
+ }
1637
+ );
1638
+ var AddIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1639
+ "svg",
1640
+ {
1641
+ width: "24",
1642
+ height: "24",
1643
+ viewBox: "0 0 24 24",
1644
+ fill: "none",
1645
+ xmlns: "http://www.w3.org/2000/svg",
1646
+ children: [
1647
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#6E3282" }),
1648
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1649
+ "path",
1650
+ {
1651
+ d: "M6 12H18",
1652
+ stroke: "white",
1653
+ strokeWidth: "2",
1654
+ strokeLinecap: "round"
1655
+ }
1656
+ ),
1657
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1658
+ "path",
1659
+ {
1660
+ d: "M12 18L12 6",
1661
+ stroke: "white",
1662
+ strokeWidth: "2",
1663
+ strokeLinecap: "round"
1664
+ }
1665
+ )
1666
+ ]
1667
+ }
1668
+ );
1669
+ var MinusIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1670
+ "svg",
1671
+ {
1672
+ width: "24",
1673
+ height: "24",
1674
+ viewBox: "0 0 24 24",
1675
+ fill: "none",
1676
+ xmlns: "http://www.w3.org/2000/svg",
1677
+ children: [
1678
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#DC7D0A" }),
1679
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1680
+ "path",
1681
+ {
1682
+ d: "M6 12H18",
1683
+ stroke: "white",
1684
+ strokeWidth: "2",
1685
+ strokeLinecap: "round"
1686
+ }
1687
+ )
1688
+ ]
1689
+ }
1690
+ );
1691
+ var ChevronRightIcon = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1692
+ "svg",
1693
+ {
1694
+ width: "8",
1695
+ height: "14",
1696
+ viewBox: "0 0 8 14",
1697
+ fill: "none",
1698
+ xmlns: "http://www.w3.org/2000/svg",
1699
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1700
+ "path",
1701
+ {
1702
+ fillRule: "evenodd",
1703
+ clipRule: "evenodd",
1704
+ d: "M7.70685 6.29302C7.89432 6.48055 7.99964 6.73486 7.99964 7.00002C7.99964 7.26519 7.89432 7.5195 7.70685 7.70702L2.04985 13.364C1.95761 13.4595 1.84726 13.5357 1.72526 13.5881C1.60326 13.6405 1.47204 13.6681 1.33926 13.6693C1.20648 13.6704 1.0748 13.6451 0.951901 13.5948C0.829005 13.5446 0.717352 13.4703 0.623459 13.3764C0.529567 13.2825 0.455314 13.1709 0.405033 13.048C0.354752 12.9251 0.32945 12.7934 0.330604 12.6606C0.331758 12.5278 0.359344 12.3966 0.411753 12.2746C0.464162 12.1526 0.540344 12.0423 0.635854 11.95L5.58585 7.00002L0.635854 2.05002C0.453696 1.86142 0.352901 1.60882 0.35518 1.34662C0.357458 1.08443 0.462627 0.833612 0.648035 0.648205C0.833443 0.462797 1.08426 0.357627 1.34645 0.355349C1.60865 0.35307 1.86125 0.453864 2.04985 0.636022L7.70685 6.29302Z",
1705
+ fill: "white"
1706
+ }
1707
+ )
1708
+ }
1709
+ );
1710
+ var Logo_sv = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "169", height: "47", viewBox: "0 0 169 47", fill: "none", children: [
1711
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M100.8 21.6667C101.267 21.9334 101.667 22.2667 101.867 22.6667C102.067 23.0667 102.267 23.6 102.267 24.2C102.267 24.8 102.133 25.2667 101.867 25.7334C101.6 26.2 101.267 26.5334 100.8 26.7334C100.333 26.9334 99.8 27.0667 99.2 27.0667H96.8V30.6667H95.6666V21.3334H99.2666C99.8666 21.3334 100.4 21.4667 100.867 21.6667H100.8ZM99.0666 26C99.6666 26 100.2 25.8667 100.533 25.5334C100.867 25.2 101.067 24.7334 101.067 24.2C101.067 23.6667 100.867 23.2 100.533 22.8667C100.2 22.5334 99.6666 22.4 99.0666 22.4H96.7333V26H99.0666Z", fill: "#141414" }),
1712
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M103.2 29.0667C102.933 28.5334 102.8 27.9334 102.8 27.2667C102.8 26.6 102.933 26 103.2 25.4667C103.467 24.9334 103.867 24.5334 104.4 24.2667C104.933 24 105.467 23.8 106.133 23.8C106.8 23.8 107.4 23.9334 107.867 24.2667C108.4 24.5334 108.8 25 109.067 25.4667C109.333 26 109.467 26.6 109.467 27.2667C109.467 27.9334 109.333 28.5334 109.067 29.0667C108.8 29.6 108.4 30 107.867 30.2667C107.333 30.5334 106.8 30.7334 106.133 30.7334C105.467 30.7334 104.867 30.6 104.4 30.2667C103.933 29.9334 103.467 29.5334 103.2 29.0667ZM108.067 28.5334C108.267 28.1334 108.333 27.7334 108.333 27.2667C108.333 26.8 108.267 26.3334 108.067 26C107.867 25.6 107.6 25.3334 107.267 25.1334C106.933 24.9334 106.533 24.8 106.067 24.8C105.6 24.8 105.2 24.9334 104.867 25.1334C104.533 25.3334 104.267 25.6667 104.067 26C103.867 26.4 103.8 26.8 103.8 27.2667C103.8 27.7334 103.867 28.2 104.067 28.5334C104.267 28.9334 104.533 29.2 104.867 29.4C105.2 29.6 105.6 29.7334 106.067 29.7334C106.533 29.7334 106.933 29.6 107.267 29.4C107.6 29.2 107.867 28.8667 108.067 28.5334Z", fill: "#141414" }),
1713
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M112.133 29.4C112.467 29.6667 112.933 29.8 113.467 29.8C114 29.8 114.333 29.7334 114.667 29.5334C114.933 29.3334 115.133 29.0667 115.133 28.8C115.133 28.5334 115.067 28.3334 114.933 28.2C114.8 28.0667 114.6 27.9334 114.4 27.9334C114.2 27.9334 113.867 27.8 113.4 27.8C112.8 27.7334 112.333 27.6667 111.933 27.5334C111.533 27.4 111.267 27.2 111 27C110.733 26.8 110.667 26.4 110.667 25.9334C110.667 25.4667 110.8 25.2 111 24.8667C111.2 24.5334 111.533 24.3334 111.933 24.1334C112.333 23.9334 112.733 23.8667 113.267 23.8667C114.067 23.8667 114.733 24.0667 115.2 24.4C115.733 24.8 116 25.3334 116 26H114.933C114.933 25.6667 114.733 25.3334 114.4 25.1334C114.067 24.9334 113.733 24.8 113.267 24.8C112.8 24.8 112.4 24.8667 112.133 25.0667C111.867 25.2667 111.733 25.5334 111.733 25.8C111.733 26.0667 111.733 26.2 111.933 26.3334C112.067 26.4667 112.267 26.5334 112.467 26.6C112.667 26.6667 113 26.6667 113.4 26.7334C114 26.8 114.467 26.9334 114.867 27C115.267 27.0667 115.533 27.3334 115.8 27.6C116.067 27.8667 116.133 28.2667 116.133 28.7334C116.133 29.2 116 29.5334 115.8 29.8C115.533 30.1334 115.267 30.3334 114.8 30.5334C114.4 30.7334 113.933 30.8 113.467 30.8C112.6 30.8 111.867 30.6 111.333 30.2C110.8 29.8 110.533 29.2 110.533 28.4667H111.6C111.6 28.8667 111.8 29.2 112.133 29.4667V29.4Z", fill: "#141414" }),
1714
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M116.6 24.8667V23.8667H117.8V21.9333H118.867V23.8667H120.6V24.8667H118.867V28.8667C118.867 29.1333 118.867 29.3333 119 29.4667C119.133 29.6 119.333 29.6667 119.6 29.6667H120.8V30.6667H119.533C118.867 30.6667 118.467 30.5333 118.133 30.2667C117.867 30 117.733 29.5333 117.733 28.9333V24.9333H116.533L116.6 24.8667Z", fill: "#141414" }),
1715
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M121.2 26.4H125.667V27.3334H121.2V26.4Z", fill: "#141414" }),
1716
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M130.8 29.0667C130.533 28.5334 130.4 27.9334 130.4 27.2667C130.4 26.6 130.533 26 130.8 25.4667C131.067 24.9334 131.467 24.5334 132 24.2667C132.533 24 133.067 23.8 133.733 23.8C134.4 23.8 135 23.9334 135.467 24.2667C136 24.5334 136.4 25 136.667 25.4667C136.933 26 137.067 26.6 137.067 27.2667C137.067 27.9334 136.933 28.5334 136.667 29.0667C136.4 29.6 136 30 135.467 30.2667C134.933 30.5334 134.4 30.7334 133.733 30.7334C133.067 30.7334 132.467 30.6 132 30.2667C131.533 29.9334 131.067 29.5334 130.8 29.0667ZM135.667 28.5334C135.867 28.1334 135.933 27.7334 135.933 27.2667C135.933 26.8 135.867 26.3334 135.667 26C135.467 25.6 135.2 25.3334 134.867 25.1334C134.533 24.9334 134.133 24.8 133.667 24.8C133.2 24.8 132.8 24.9334 132.467 25.1334C132.133 25.3334 131.867 25.6667 131.667 26C131.467 26.4 131.4 26.8 131.4 27.2667C131.4 27.7334 131.467 28.2 131.667 28.5334C131.867 28.9334 132.133 29.2 132.467 29.4C132.8 29.6 133.2 29.7334 133.667 29.7334C134.133 29.7334 134.533 29.6 134.867 29.4C135.2 29.2 135.467 28.8667 135.667 28.5334Z", fill: "#141414" }),
1717
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M141.4 30.7334C140.733 30.7334 140.133 30.6001 139.667 30.2667C139.2 30.0001 138.8 29.5334 138.533 29.0001C138.267 28.4667 138.133 27.8667 138.133 27.2001C138.133 26.5334 138.267 25.9334 138.533 25.4001C138.8 24.8667 139.2 24.4667 139.733 24.2001C140.267 23.9334 140.8 23.7334 141.467 23.7334C142.133 23.7334 142.933 23.9334 143.467 24.4001C144 24.8001 144.333 25.4001 144.467 26.1334H143.333C143.2 25.6667 143 25.3334 142.667 25.0667C142.333 24.8001 141.933 24.6667 141.467 24.6667C141 24.6667 140.267 24.8667 139.867 25.3334C139.467 25.8001 139.267 26.4001 139.267 27.1334C139.267 27.8667 139.467 28.4667 139.867 28.9334C140.267 29.4001 140.8 29.6667 141.467 29.6667C142.133 29.6667 142.4 29.5334 142.733 29.2667C143.067 29.0001 143.267 28.6667 143.4 28.2001H144.467C144.333 28.9334 144 29.5334 143.467 30.0001C142.933 30.4001 142.267 30.6667 141.467 30.6667L141.4 30.7334Z", fill: "#141414" }),
1718
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M151.8 26.8667V30.6667H150.733V26.9334C150.733 26.2 150.6 25.6667 150.267 25.3334C149.933 24.9334 149.467 24.8 148.867 24.8C148.267 24.8 147.733 25 147.4 25.4667C147 25.9334 146.867 26.5334 146.867 27.2667V30.6667H145.8V21.3334H146.867V25C147.067 24.6667 147.4 24.3334 147.733 24.1334C148.133 23.9334 148.533 23.8 149.067 23.8C149.867 23.8 150.533 24.0667 151.067 24.5334C151.6 25 151.8 25.8 151.8 26.8667Z", fill: "#141414" }),
1719
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M94.6666 38.2001V37.2001H95.8666V35.2667H96.9333V37.2001H98.6666V38.2001H96.9333V42.2001C96.9333 42.4667 96.9333 42.6667 97.0667 42.8001C97.2 42.9334 97.4 43.0001 97.6666 43.0001H98.8666V44.0001H97.6C96.9333 44.0001 96.5333 43.8667 96.2 43.6001C95.9333 43.3334 95.8 42.8667 95.8 42.2667V38.2667H94.6L94.6666 38.2001Z", fill: "#141414" }),
1720
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M100.8 37.5333C101.267 37.2667 101.867 37.0667 102.467 37.0667C103.067 37.0667 103.667 37.2 104.133 37.4667C104.6 37.7333 105 38.0667 105.267 38.6C105.533 39.1333 105.667 39.6667 105.733 40.3333C105.733 40.4 105.733 40.6 105.733 40.8H100.467C100.467 41.5333 100.667 42.0666 101.067 42.4666C101.467 42.8666 102 43.0667 102.6 43.0667C103.2 43.0667 103.533 42.9333 103.867 42.6667C104.2 42.4 104.467 42.0667 104.533 41.6667H105.667C105.533 42.3333 105.2 42.9333 104.667 43.4C104.133 43.8667 103.467 44.0667 102.733 44.0667C102 44.0667 101.467 43.9333 100.933 43.6C100.4 43.3333 100 42.9333 99.7334 42.4C99.4667 41.8667 99.3334 41.2667 99.3334 40.6C99.3334 39.9333 99.4667 39.2667 99.7334 38.8C100 38.2667 100.4 37.8667 100.867 37.6L100.8 37.5333ZM103.933 38.5333C103.533 38.2 103.067 38.0667 102.467 38.0667C101.867 38.0667 101.467 38.2667 101.133 38.6C100.8 38.9333 100.533 39.4 100.467 39.9333H104.6C104.6 39.3333 104.333 38.9333 103.933 38.6V38.5333Z", fill: "#141414" }),
1721
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M108.067 34.6667V44.0001H107V34.6667H108.067Z", fill: "#141414" }),
1722
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M110.867 37.5333C111.333 37.2667 111.933 37.0667 112.533 37.0667C113.133 37.0667 113.733 37.2 114.2 37.4667C114.667 37.7333 115.067 38.0667 115.333 38.6C115.6 39.1333 115.733 39.6667 115.8 40.3333C115.8 40.4 115.8 40.6 115.8 40.8H110.533C110.533 41.5333 110.733 42.0666 111.133 42.4666C111.533 42.8666 112.067 43.0667 112.667 43.0667C113.267 43.0667 113.6 42.9333 113.933 42.6667C114.267 42.4 114.533 42.0667 114.6 41.6667H115.733C115.6 42.3333 115.267 42.9333 114.733 43.4C114.2 43.8667 113.533 44.0667 112.8 44.0667C112.067 44.0667 111.533 43.9333 111 43.6C110.467 43.3333 110.067 42.9333 109.8 42.4C109.533 41.8667 109.4 41.2667 109.4 40.6C109.4 39.9333 109.533 39.2667 109.8 38.8C110.067 38.2667 110.467 37.8667 110.933 37.6L110.867 37.5333ZM114 38.5333C113.6 38.2 113.133 38.0667 112.533 38.0667C111.933 38.0667 111.533 38.2667 111.2 38.6C110.867 38.9333 110.6 39.4 110.533 39.9333H114.667C114.667 39.3333 114.4 38.9333 114 38.6V38.5333Z", fill: "#141414" }),
1723
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M118.4 42.7334C118.733 43.0001 119.2 43.1334 119.733 43.1334C120.267 43.1334 120.6 43.0667 120.933 42.8667C121.2 42.6667 121.4 42.4001 121.4 42.1334C121.4 41.8667 121.333 41.6667 121.2 41.5334C121.067 41.4001 120.867 41.2667 120.667 41.2667C120.467 41.2667 120.133 41.1334 119.667 41.1334C119.067 41.0667 118.6 41.0001 118.2 40.8667C117.8 40.7334 117.533 40.5334 117.267 40.3334C117 40.1334 116.933 39.7334 116.933 39.2667C116.933 38.8001 117.067 38.5334 117.267 38.2001C117.467 37.8667 117.8 37.6667 118.2 37.4667C118.6 37.2667 119 37.2001 119.533 37.2001C120.333 37.2001 121 37.4001 121.467 37.7334C122 38.1334 122.267 38.6667 122.267 39.3334H121.2C121.2 39.0001 121 38.6667 120.667 38.4667C120.333 38.2667 120 38.1334 119.533 38.1334C119.067 38.1334 118.667 38.2001 118.4 38.4001C118.133 38.6001 118 38.8667 118 39.1334C118 39.4001 118 39.5334 118.2 39.6667C118.333 39.8001 118.533 39.8667 118.733 39.9334C118.933 40.0001 119.267 40.0001 119.667 40.0667C120.267 40.1334 120.733 40.2667 121.133 40.3334C121.533 40.4001 121.8 40.6667 122.067 40.9334C122.333 41.2001 122.4 41.6001 122.4 42.0667C122.4 42.5334 122.267 42.8667 122.067 43.1334C121.8 43.4667 121.533 43.6667 121.067 43.8667C120.667 44.0667 120.2 44.1334 119.733 44.1334C118.867 44.1334 118.133 43.9334 117.6 43.5334C117.067 43.1334 116.8 42.5334 116.8 41.8001H117.867C117.867 42.2001 118.067 42.5334 118.4 42.8001V42.7334Z", fill: "#141414" }),
1724
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M122.867 38.2001V37.2001H124.067V35.2667H125.133V37.2001H126.867V38.2001H125.133V42.2001C125.133 42.4667 125.133 42.6667 125.267 42.8001C125.4 42.9334 125.6 43.0001 125.867 43.0001H127.067V44.0001H125.8C125.133 44.0001 124.733 43.8667 124.4 43.6001C124.133 43.3334 124 42.8667 124 42.2667V38.2667H122.8L122.867 38.2001Z", fill: "#141414" }),
1725
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M130.467 42.7334L132.467 37.2001H133.6L130.467 45.1334C130.333 45.5334 130.133 45.8667 130.067 46.0667C130 46.2667 129.8 46.4001 129.6 46.5334C129.4 46.6001 129.133 46.6667 128.867 46.6667H127.533V45.6667H128.533C128.733 45.6667 128.933 45.6667 129 45.6001C129.067 45.5334 129.2 45.4667 129.267 45.4001C129.267 45.2667 129.4 45.1334 129.533 44.8667L129.867 44.0667L127.2 37.2001H128.333L130.4 42.7334H130.467Z", fill: "#141414" }),
1726
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M137.933 38.2667H137.4C136.733 38.2667 136.267 38.4667 136 38.9334C135.733 39.4001 135.6 39.9334 135.6 40.5334V44.0001H134.533V37.2001H135.467L135.6 38.2001C135.8 37.8667 136.067 37.6667 136.333 37.4667C136.6 37.2667 137.067 37.2001 137.6 37.2001H137.933V38.2667Z", fill: "#141414" }),
1727
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M139.867 37.5333C140.333 37.2667 140.933 37.0667 141.533 37.0667C142.133 37.0667 142.733 37.2 143.2 37.4667C143.667 37.7333 144.067 38.0667 144.333 38.6C144.6 39.1333 144.733 39.6667 144.8 40.3333C144.8 40.4 144.8 40.6 144.8 40.8H139.533C139.533 41.5333 139.733 42.0666 140.133 42.4666C140.533 42.8666 141.067 43.0667 141.667 43.0667C142.267 43.0667 142.6 42.9333 142.933 42.6667C143.267 42.4 143.533 42.0667 143.6 41.6667H144.733C144.6 42.3333 144.267 42.9333 143.733 43.4C143.2 43.8667 142.533 44.0667 141.8 44.0667C141.067 44.0667 140.533 43.9333 140 43.6C139.467 43.3333 139.067 42.9333 138.8 42.4C138.533 41.8667 138.4 41.2667 138.4 40.6C138.4 39.9333 138.533 39.2667 138.8 38.8C139.067 38.2667 139.467 37.8667 139.933 37.6L139.867 37.5333ZM143 38.5333C142.6 38.2 142.133 38.0667 141.533 38.0667C140.933 38.0667 140.533 38.2667 140.2 38.6C139.867 38.9333 139.6 39.4 139.533 39.9333H143.667C143.667 39.3333 143.4 38.9333 143 38.6V38.5333Z", fill: "#141414" }),
1728
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M147.067 34.6667V44.0001H146V34.6667H147.067Z", fill: "#141414" }),
1729
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M150 42.7334C150.333 43.0001 150.8 43.1334 151.333 43.1334C151.867 43.1334 152.2 43.0667 152.533 42.8667C152.8 42.6667 153 42.4001 153 42.1334C153 41.8667 152.933 41.6667 152.8 41.5334C152.667 41.4001 152.467 41.2667 152.267 41.2667C152.067 41.2667 151.733 41.1334 151.267 41.1334C150.667 41.0667 150.2 41.0001 149.8 40.8667C149.4 40.7334 149.133 40.5334 148.867 40.3334C148.6 40.1334 148.533 39.7334 148.533 39.2667C148.533 38.8001 148.667 38.5334 148.867 38.2001C149.067 37.8667 149.4 37.6667 149.8 37.4667C150.2 37.2667 150.6 37.2001 151.133 37.2001C151.933 37.2001 152.6 37.4001 153.067 37.7334C153.6 38.1334 153.867 38.6667 153.867 39.3334H152.8C152.8 39.0001 152.6 38.6667 152.267 38.4667C151.933 38.2667 151.6 38.1334 151.133 38.1334C150.667 38.1334 150.267 38.2001 150 38.4001C149.733 38.6001 149.6 38.8667 149.6 39.1334C149.6 39.4001 149.6 39.5334 149.8 39.6667C149.933 39.8001 150.133 39.8667 150.333 39.9334C150.533 40.0001 150.867 40.0001 151.267 40.0667C151.867 40.1334 152.333 40.2667 152.733 40.3334C153.133 40.4001 153.4 40.6667 153.667 40.9334C153.933 41.2001 154 41.6001 154 42.0667C154 42.5334 153.867 42.8667 153.667 43.1334C153.4 43.4667 153.133 43.6667 152.667 43.8667C152.267 44.0667 151.8 44.1334 151.333 44.1334C150.467 44.1334 149.733 43.9334 149.2 43.5334C148.667 43.1334 148.4 42.5334 148.4 41.8001H149.467C149.467 42.2001 149.667 42.5334 150 42.8001V42.7334Z", fill: "#141414" }),
1730
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M156.533 37.5333C157 37.2667 157.6 37.0667 158.2 37.0667C158.8 37.0667 159.4 37.2 159.867 37.4667C160.333 37.7333 160.733 38.0667 161 38.6C161.267 39.1333 161.4 39.6667 161.467 40.3333C161.467 40.4 161.467 40.6 161.467 40.8H156.2C156.2 41.5333 156.4 42.0666 156.8 42.4666C157.2 42.8666 157.733 43.0667 158.333 43.0667C158.933 43.0667 159.267 42.9333 159.6 42.6667C159.933 42.4 160.2 42.0667 160.267 41.6667H161.4C161.267 42.3333 160.933 42.9333 160.4 43.4C159.867 43.8667 159.2 44.0667 158.467 44.0667C157.733 44.0667 157.2 43.9333 156.667 43.6C156.133 43.3333 155.733 42.9333 155.467 42.4C155.2 41.8667 155.067 41.2667 155.067 40.6C155.067 39.9333 155.2 39.2667 155.467 38.8C155.733 38.2667 156.133 37.8667 156.6 37.6L156.533 37.5333ZM159.667 38.5333C159.267 38.2 158.8 38.0667 158.2 38.0667C157.6 38.0667 157.2 38.2667 156.867 38.6C156.533 38.9333 156.267 39.4 156.2 39.9333H160.333C160.333 39.3333 160.067 38.9333 159.667 38.6V38.5333Z", fill: "#141414" }),
1731
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M168.8 40.2001V44.0001H167.733V40.2668C167.733 39.5334 167.6 39.0001 167.267 38.6668C166.933 38.2668 166.467 38.1334 165.867 38.1334C165.267 38.1334 164.733 38.3334 164.333 38.8001C164 39.2668 163.8 39.8668 163.8 40.6001V44.0001H162.733V37.2001H163.667L163.8 38.1334C164.333 37.4668 165.067 37.1334 166.067 37.1334C167.067 37.1334 167.533 37.4001 168.067 37.8668C168.6 38.3334 168.8 39.1334 168.8 40.2001Z", fill: "#141414" }),
1732
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M26.6667 28.0001C26.6667 30.8001 25 33.4001 22.4 34.2001C21.2 34.5334 20 34.6667 18 34.6667H7C4.93333 34.6667 4.66667 35.0001 4.66667 37.0001V41.3334C4.66667 42.9334 3.66667 44.0001 2.33333 44.0001C1 44.0001 0 42.9334 0 41.3334V38.3334C0 37.0001 -1.29143e-07 35.8667 0.133333 35.2667C0.533333 33.0001 1.86667 31.2667 4.06667 30.4667C4.93333 30.1334 6.4 29.9334 9.26667 29.9334H18.6667C19.4667 29.9334 20.2667 29.8667 20.6 29.7334C21.6 29.3334 21.9333 28.6667 21.9333 27.9334C21.9333 27.2001 21.6667 26.4667 20.6 26.1334C20.2667 26.0001 19.4667 25.9334 18.6667 25.9334H3.6C3 25.9334 2.46667 25.9334 2.2 25.8001C1.2 25.4667 0.6 24.5334 0.6 23.6001C0.6 22.6667 1.2 21.7334 2.2 21.4001C2.53333 21.2667 2.86667 21.2667 3.53333 21.2667H17.9333C20 21.2667 21.6 21.4001 22.6 21.8001C25.2 22.8001 26.6 24.9334 26.6 27.9334L26.6667 28.0001ZM54.4667 21.5334C54.1333 21.4001 53.6 21.3334 52.8667 21.3334H31.7333C31.2 21.3334 30.7333 21.3334 30.4667 21.4667C29.3333 21.8001 28.6667 22.6667 28.6667 23.6667C28.6667 24.6667 29.2 25.4667 30.2667 25.8001C30.6 25.9334 31.1333 26.0001 31.7333 26.0001H40V41.6001C40 43.2001 41.0667 44.0001 42.3333 44.0001C43.6 44.0001 44.6667 43.2001 44.6667 41.6001V26.0001H52.8667C53.6667 26.0001 54.0667 26.0001 54.3333 25.8667C55.4 25.5334 56 24.6667 56 23.6667C56 22.6667 55.4667 21.8667 54.4667 21.5334ZM79.6667 30.9334C78.5333 30.3334 77.0667 30.0001 73.4 30.0001H66.3333C65.2 30.0001 64.6 29.9334 64.2 29.8001C63.0667 29.4001 62.6667 28.6667 62.6667 28.0001C62.6667 27.3334 62.9333 26.5334 64.1333 26.1334C64.4667 26.0001 65.0667 26.0001 65.6667 26.0001H78.6667C78.9333 26.0001 79.6667 26.0001 79.8667 26.0001C81.0667 25.8001 82 25.0667 82 23.7334C82 22.4001 81.0667 21.7334 79.9333 21.4667C79.7333 21.4667 79.2667 21.4001 78.6667 21.4001H66.3333C64.1333 21.4001 62.5333 21.6667 61.4667 22.1334C59.2667 23.2001 58 25.4667 58 28.0667C58 30.6667 59.2 33.0001 61.6 34.0667C62.6667 34.5334 64.2667 34.7334 66.3333 34.7334H75.3333C76.4667 34.7334 77.0667 34.8667 77.4667 35.0001C78.4 35.3334 78.6667 36.2667 78.6667 37.0667C78.6667 37.8667 78.4 38.8667 77.2667 39.2001C76.8667 39.3334 76.0667 39.4001 74.7333 39.4001H61.6667C61.1333 39.4001 60.6 39.4001 60.3333 39.5334C59.2667 39.8001 58.6667 40.6667 58.6667 41.7334C58.6667 42.8001 59.3333 43.4667 60.2 43.8001C60.5333 43.9334 61.2667 44.0667 61.8 44.0667H73.3333C75.8 44.0667 77.8 43.9334 79 43.5334C81.7333 42.7334 83.2667 40.1334 83.2667 37.0667C83.2667 34.0001 81.8667 32.1334 79.6 31.0001L79.6667 30.9334Z", fill: "#141414" }),
1733
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M52.0667 9.8L52.3334 9.33333C50.6667 7.06667 46.7334 5.46667 42.7334 5.33333H41.9334C37.9334 5.46667 34 7.06667 32.3334 9.33333L32.6 9.8C31.8667 9.8 31.3334 10.2667 31.3334 10.8667L32.8667 17.3333C33 17.7333 33.1334 17.9333 33.6667 17.9333H51C51.4667 17.9333 51.6667 17.6667 51.7334 17.3333L53.2667 10.8667C53.2667 10.2667 52.7334 9.8 52 9.8H52.0667ZM36.8667 11.8667C36.7334 11.8667 36.5334 11.8 36.4 11.8C35.7334 11.8 35.2667 12.2667 35.2667 12.8667C35.2667 13.4667 35.7334 13.8667 36.3334 13.8667C36.9334 13.8667 36.8667 13.8 37 13.6C37 14.1333 36.4 15.3333 35.6 15.3333H33.9334C32.8 15.3333 32.6667 13.8 32.6667 13.6667C32.8 13.8 33.1334 13.8667 33.4 13.8667C33.9334 13.8667 34.4 13.4667 34.4 12.8667C34.4 12.2667 33.9334 11.8 33.2667 11.8C32.6 11.8 33 11.8 32.9334 11.8C33.2 11.6 33.4667 11.2667 33.4667 10.8667C33.4667 10.4667 33.2667 10.2667 33 10.0667L34.5334 9.33333C35.5334 7.66667 37.3334 6.46667 39.5334 6C38.3334 6.86667 37.3334 7.93333 36.5334 9.33333L37.0667 9.8C36.5334 9.86667 36.1334 10.3333 36.1334 10.8667C36.1334 11.4 36.4 11.6667 36.8 11.8667H36.8667ZM41.8667 11.9333C41.7334 11.8667 41.4667 11.8 41.3334 11.8C40.6667 11.8 40.2 12.2667 40.2 12.8667C40.2 13.4667 40.6667 13.8667 41.2667 13.8667C41.8667 13.8667 41.8 13.8 42 13.6667C42 14.2 41.6 15.3333 40.6667 15.3333H39C37.9334 15.3333 37.6667 14 37.6667 13.6C37.8 13.7333 38.0667 13.8667 38.4 13.8667C38.9334 13.8667 39.4667 13.4667 39.4667 12.8667C39.4667 12.2667 39 11.8 38.3334 11.8C37.6667 11.8 37.9334 11.8 37.8667 11.8667C38.2667 11.6667 38.5334 11.3333 38.5334 10.8667C38.5334 10.4 38.2667 10.0667 37.8667 9.93333L39.0667 9.33333C39.4 8.13333 40.4667 6.4 41.6 5.8C41.4667 6.4 41.4 7.66667 41.4 9.33333C41.4 9.33333 41.7334 9.66667 42.0667 9.86667C41.6 10 41.2667 10.4 41.2667 10.8667C41.2667 11.3333 41.5334 11.6667 41.9334 11.8667L41.8667 11.9333ZM45.6667 15.3333H44C43.0667 15.3333 42.6667 14.2 42.6667 13.6667C42.8 13.8 43.0667 13.8667 43.4 13.8667C44 13.8667 44.4667 13.4667 44.4667 12.8667C44.4667 12.2667 44 11.8 43.3334 11.8C42.6667 11.8 42.9334 11.8 42.8 11.9333C43.2 11.8 43.5334 11.4 43.5334 10.9333C43.5334 10.4667 43.2 10.0667 42.7334 9.93333C43.0667 9.73333 43.4 9.4 43.4 9.4C43.4 7.73333 43.3334 6.46667 43.1334 5.86667C44.3334 6.46667 45.4 8.13333 45.7334 9.4L46.9334 10C46.6 10.1333 46.2667 10.5333 46.2667 10.9333C46.2667 11.3333 46.5334 11.7333 46.9334 11.9333C46.8 11.9333 46.6 11.8667 46.4667 11.8667C45.8 11.8667 45.3334 12.3333 45.3334 12.9333C45.3334 13.5333 45.8 13.9333 46.4 13.9333C47 13.9333 46.9334 13.8667 47.1334 13.6667C47.1334 14 46.8667 15.4 45.8 15.4L45.6667 15.3333ZM50.6667 15.3333H49C48.1334 15.3333 47.6 14.2 47.6 13.6C47.7334 13.8 48 13.8667 48.3334 13.8667C48.8667 13.8667 49.3334 13.4667 49.3334 12.8667C49.3334 12.2667 48.8667 11.8 48.2 11.8C47.5334 11.8 47.8 11.8 47.7334 11.8667C48.1334 11.6667 48.4 11.3333 48.4 10.8667C48.4 10.4 48 9.86667 47.4 9.8L48 9.33333C47.2 7.93333 46.2 6.93333 45 6C47.1334 6.46667 49 7.6 50 9.33333L51.6 10.0667C51.3334 10.2667 51.1334 10.5333 51.1334 10.9333C51.1334 11.3333 51.4 11.7333 51.7334 11.9333C51.6667 11.9333 51.4667 11.8667 51.3334 11.8667C50.6667 11.8667 50.2 12.3333 50.2 12.9333C50.2 13.5333 50.6667 13.9333 51.2 13.9333C51.7334 13.9333 51.8 13.8667 51.9334 13.7333C51.9334 13.8667 51.7334 15.4 50.6667 15.4V15.3333ZM42.3334 5.33333C41.4 5.33333 40.6667 4.6 40.6667 3.66667C40.6667 2.73333 41.2667 2.2 42 2.06667V1.33333H41.3334V0.666667H42V0H42.6667V0.666667H43.3334V1.33333H42.6667V2.06667C43.4 2.2 44 2.86667 44 3.73333C44 4.6 43.2667 5.4 42.3334 5.4V5.33333Z", fill: "#F0AA1E" }),
1734
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M89.3334 21.3334V44", stroke: "black", strokeWidth: "0.8", strokeMiterlimit: "10" })
1735
+ ] });
1736
+ var Logo_en = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { width: "189.0", height: "40", viewBox: "0 0 189 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
1737
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1738
+ "path",
1739
+ {
1740
+ d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
1741
+ fill: "#141414"
1742
+ }
1743
+ ),
1744
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1745
+ "path",
1746
+ {
1747
+ d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
1748
+ fill: "#F0AA1E"
1749
+ }
1750
+ ),
1751
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" }),
1752
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1753
+ "path",
1754
+ {
1755
+ d: "M88.9445 24.8335C89.3334 25.1669 89.8334 25.3335 90.3889 25.3335C90.9445 25.3335 91.3334 25.2224 91.6667 25.0002C92 24.778 92.1667 24.4446 92.1667 24.0002C92.1667 23.5557 92.0556 23.4446 91.8889 23.278C91.7222 23.1113 91.5 22.9446 91.1667 22.8891C90.8334 22.8335 90.5 22.7224 90 22.6113C89.2222 22.5002 88.6111 22.278 88.1667 21.9446C87.7222 21.6669 87.5 21.1669 87.5 20.4446C87.5 19.7224 87.6111 19.6113 87.8334 19.278C88.0556 18.9446 88.3889 18.6669 88.7778 18.5002C89.1667 18.3335 89.6667 18.2224 90.1667 18.2224C90.6667 18.2224 91.2222 18.3335 91.6111 18.5002C92.0556 18.7224 92.3889 19.0002 92.6111 19.3335C92.8334 19.6669 93 20.1113 93 20.5557H92.0556C92 20.1113 91.7778 19.7224 91.4445 19.4446C91.1111 19.1669 90.6667 19.0557 90.1667 19.0557C89.6667 19.0557 89.2223 19.1669 88.9445 19.3891C88.6667 19.6113 88.5 19.9446 88.5 20.3335C88.5 20.7224 88.6111 20.8891 88.7778 21.0557C88.9445 21.2224 89.1667 21.3335 89.4445 21.4446C89.7222 21.5557 90.1111 21.6113 90.6111 21.7224C91.3889 21.8335 92 22.0557 92.5 22.3891C92.9445 22.7224 93.2223 23.1669 93.2223 23.8891C93.2223 24.6113 93.1111 24.7224 92.8889 25.0557C92.6667 25.3891 92.3334 25.6669 91.8889 25.8891C91.4445 26.0557 91 26.1669 90.4445 26.1669C89.8889 26.1669 89.3334 26.0557 88.8334 25.8335C88.3889 25.6113 88.0556 25.3335 87.7778 24.8891C87.5556 24.5002 87.3889 24.0557 87.3889 23.5002H88.3334C88.3334 24.0002 88.5556 24.4446 88.9445 24.778V24.8335Z",
1756
+ fill: "#141414"
1757
+ }
1758
+ ),
1759
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1760
+ "path",
1761
+ {
1762
+ d: "M94.5557 20.4446L95.9446 25.0557L97.4446 20.4446H98.2779L99.6668 25.0557L101.167 20.4446H102.111L100.222 26.1112H99.2223L97.8334 21.889L96.389 26.1112H95.389L93.5557 20.4446H94.5001H94.5557Z",
1763
+ fill: "#141414"
1764
+ }
1765
+ ),
1766
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1767
+ "path",
1768
+ {
1769
+ d: "M103.778 20.7224C104.167 20.5002 104.667 20.3335 105.167 20.3335C105.667 20.3335 106.167 20.4446 106.556 20.6668C106.945 20.8891 107.278 21.1668 107.5 21.6113C107.722 22.0002 107.833 22.5002 107.889 23.0557C107.889 23.1113 107.889 23.2779 107.889 23.4446H103.5C103.5 24.0557 103.667 24.5002 104 24.8335C104.333 25.1668 104.778 25.3335 105.278 25.3335C105.778 25.3335 106.056 25.2224 106.333 25.0002C106.611 24.7779 106.833 24.5002 106.889 24.1668H107.833C107.722 24.7224 107.445 25.2224 107 25.6113C106.556 26.0002 106 26.1668 105.389 26.1668C104.778 26.1668 104.333 26.0557 103.889 25.7779C103.445 25.5557 103.111 25.2224 102.889 24.7779C102.667 24.3335 102.556 23.8335 102.556 23.2779C102.556 22.7224 102.667 22.1668 102.889 21.7779C103.111 21.3335 103.445 21.0002 103.833 20.7779L103.778 20.7224ZM106.389 21.5557C106.056 21.2779 105.667 21.1668 105.167 21.1668C104.667 21.1668 104.333 21.3335 104.056 21.6113C103.778 21.8891 103.556 22.2779 103.5 22.7224H106.945C106.945 22.2224 106.722 21.8891 106.389 21.6113V21.5557Z",
1770
+ fill: "#141414"
1771
+ }
1772
+ ),
1773
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1774
+ "path",
1775
+ {
1776
+ d: "M114.278 26.1114H113.5L113.389 25.2225C112.889 25.8892 112.278 26.2225 111.445 26.2225C110.611 26.2225 110.445 26.1114 110.056 25.8892C109.667 25.6669 109.333 25.3336 109.111 24.8892C108.889 24.4447 108.778 23.9447 108.778 23.3336C108.778 22.7225 108.889 22.2781 109.111 21.8336C109.333 21.3892 109.667 21.0558 110.111 20.8336C110.556 20.6114 111 20.4447 111.5 20.4447C112 20.4447 112.333 20.5003 112.667 20.7225C113 20.8892 113.222 21.1114 113.444 21.3892V18.3892H114.333V26.1669L114.278 26.1114ZM113.111 24.3892C113.278 24.0558 113.333 23.7225 113.333 23.3336C113.333 22.9447 113.278 22.5558 113.111 22.2225C112.945 21.8892 112.722 21.6669 112.444 21.4447C112.167 21.278 111.833 21.1669 111.445 21.1669C110.889 21.1669 110.445 21.3892 110.056 21.7781C109.667 22.1669 109.556 22.6669 109.556 23.2781C109.556 23.8892 109.722 24.3892 110.056 24.778C110.389 25.1669 110.833 25.3892 111.445 25.3892C112.056 25.3892 112.111 25.2781 112.444 25.1114C112.722 24.9447 112.945 24.6669 113.111 24.3892Z",
1777
+ fill: "#141414"
1778
+ }
1779
+ ),
1780
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1781
+ "path",
1782
+ {
1783
+ d: "M116.556 18.8335C116.556 19.0002 116.5 19.1669 116.389 19.278C116.278 19.3891 116.111 19.4446 115.944 19.4446C115.778 19.4446 115.611 19.3891 115.5 19.278C115.389 19.1669 115.333 19.0002 115.333 18.8335C115.333 18.6669 115.389 18.5002 115.5 18.3891C115.611 18.278 115.778 18.2224 115.944 18.2224C116.111 18.2224 116.278 18.278 116.389 18.3891C116.5 18.5002 116.556 18.6669 116.556 18.8335ZM116.444 20.4446V26.1113H115.556V20.4446H116.444Z",
1784
+ fill: "#141414"
1785
+ }
1786
+ ),
1787
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1788
+ "path",
1789
+ {
1790
+ d: "M118.833 25.0557C119.111 25.2779 119.5 25.389 119.945 25.389C120.389 25.389 120.667 25.3335 120.945 25.1668C121.167 25.0001 121.333 24.7779 121.333 24.5557C121.333 24.3335 121.278 24.1668 121.167 24.0557C121.056 23.9446 120.889 23.8335 120.722 23.8335C120.556 23.8335 120.278 23.7224 119.889 23.7224C119.389 23.6668 119 23.6112 118.667 23.5001C118.333 23.389 118.111 23.2224 117.889 23.0557C117.722 22.8335 117.611 22.5557 117.611 22.1668C117.611 21.7779 117.722 21.5557 117.889 21.2779C118.056 21.0001 118.333 20.8335 118.667 20.6668C119 20.5001 119.333 20.4446 119.778 20.4446C120.445 20.4446 121 20.6112 121.389 20.889C121.833 21.2224 122.056 21.6668 122.056 22.2224H121.167C121.167 21.9446 121 21.6668 120.722 21.5001C120.445 21.3335 120.167 21.2224 119.778 21.2224C119.389 21.2224 119.056 21.2779 118.833 21.4446C118.611 21.6112 118.5 21.8335 118.5 22.0557C118.5 22.2779 118.5 22.389 118.667 22.5001C118.778 22.6112 118.945 22.6668 119.111 22.7224C119.278 22.7224 119.556 22.7779 119.889 22.8335C120.389 22.889 120.778 23.0001 121.111 23.0557C121.445 23.1668 121.667 23.3335 121.889 23.5557C122.111 23.7779 122.167 24.1112 122.167 24.5001C122.167 24.889 122.056 25.1668 121.889 25.389C121.667 25.6668 121.445 25.8335 121.056 26.0001C120.722 26.1668 120.333 26.2224 119.945 26.2224C119.222 26.2224 118.611 26.0557 118.167 25.7224C117.722 25.389 117.5 24.889 117.5 24.2779H118.389C118.389 24.6112 118.556 24.889 118.833 25.1112V25.0557Z",
1791
+ fill: "#141414"
1792
+ }
1793
+ ),
1794
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1795
+ "path",
1796
+ {
1797
+ d: "M128.278 22.9446V26.1113H127.389V23.0002C127.389 22.3891 127.278 21.9446 127 21.6668C126.722 21.3335 126.333 21.2224 125.833 21.2224C125.333 21.2224 124.889 21.3891 124.611 21.7779C124.278 22.1668 124.167 22.6668 124.167 23.2779V26.1113H123.278V18.3335H124.167V21.3891C124.333 21.1113 124.611 20.8335 124.889 20.6668C125.222 20.5002 125.556 20.3891 126 20.3891C126.667 20.3891 127.222 20.6113 127.667 21.0002C128.111 21.3891 128.278 22.0557 128.278 22.9446Z",
1798
+ fill: "#141414"
1799
+ }
1800
+ ),
1801
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1802
+ "path",
1803
+ {
1804
+ d: "M136.833 18.6113C137.222 18.8335 137.556 19.1113 137.722 19.4446C137.945 19.7779 138.056 20.2224 138.056 20.7224C138.056 21.2224 137.945 21.6113 137.722 22.0002C137.5 22.3891 137.222 22.6668 136.833 22.8335C136.445 23.0002 136 23.1113 135.5 23.1113H133.5V26.1113H132.556V18.3335H135.556C136.056 18.3335 136.5 18.4446 136.889 18.6113H136.833ZM135.389 22.2224C135.889 22.2224 136.333 22.1113 136.611 21.8335C136.889 21.5557 137.056 21.1668 137.056 20.7224C137.056 20.2779 136.889 19.8891 136.611 19.6113C136.333 19.3335 135.889 19.2224 135.389 19.2224H133.445V22.2224H135.389Z",
1805
+ fill: "#141414"
1806
+ }
1807
+ ),
1808
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1809
+ "path",
1810
+ {
1811
+ d: "M138.833 24.778C138.611 24.3336 138.5 23.8336 138.5 23.278C138.5 22.7225 138.611 22.2225 138.833 21.778C139.056 21.3336 139.389 21.0003 139.833 20.778C140.278 20.5558 140.722 20.3892 141.278 20.3892C141.833 20.3892 142.333 20.5003 142.722 20.778C143.167 21.0003 143.5 21.3892 143.722 21.778C143.945 22.2225 144.056 22.7225 144.056 23.278C144.056 23.8336 143.945 24.3336 143.722 24.778C143.5 25.2225 143.167 25.5558 142.722 25.778C142.278 26.0003 141.833 26.1669 141.278 26.1669C140.722 26.1669 140.222 26.0558 139.833 25.778C139.445 25.5003 139.056 25.1669 138.833 24.778ZM142.945 24.3336C143.111 24.0003 143.167 23.6669 143.167 23.278C143.167 22.8892 143.111 22.5003 142.945 22.2225C142.778 21.8892 142.556 21.6669 142.278 21.5003C142 21.3336 141.667 21.2225 141.278 21.2225C140.889 21.2225 140.556 21.3336 140.278 21.5003C140 21.6669 139.778 21.9447 139.611 22.2225C139.445 22.5003 139.389 22.8892 139.389 23.278C139.389 23.6669 139.445 24.0558 139.611 24.3336C139.778 24.6669 140 24.8892 140.278 25.0558C140.556 25.2225 140.889 25.3336 141.278 25.3336C141.667 25.3336 142 25.2225 142.278 25.0558C142.556 24.8892 142.778 24.6114 142.945 24.3336Z",
1812
+ fill: "#141414"
1813
+ }
1814
+ ),
1815
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1816
+ "path",
1817
+ {
1818
+ d: "M146.278 25.0557C146.556 25.2779 146.945 25.389 147.389 25.389C147.833 25.389 148.111 25.3335 148.389 25.1668C148.611 25.0001 148.778 24.7779 148.778 24.5557C148.778 24.3335 148.722 24.1668 148.611 24.0557C148.5 23.9446 148.333 23.8335 148.167 23.8335C148 23.8335 147.722 23.7224 147.333 23.7224C146.833 23.6668 146.445 23.6112 146.111 23.5001C145.778 23.389 145.556 23.2224 145.333 23.0557C145.167 22.8335 145.056 22.5557 145.056 22.1668C145.056 21.7779 145.167 21.5557 145.333 21.2779C145.5 21.0001 145.778 20.8335 146.111 20.6668C146.445 20.5001 146.778 20.4446 147.222 20.4446C147.889 20.4446 148.445 20.6112 148.833 20.889C149.278 21.2224 149.5 21.6668 149.5 22.2224H148.611C148.611 21.9446 148.445 21.6668 148.167 21.5001C147.889 21.3335 147.611 21.2224 147.222 21.2224C146.833 21.2224 146.5 21.2779 146.278 21.4446C146.056 21.6112 145.945 21.8335 145.945 22.0557C145.945 22.2779 145.945 22.389 146.111 22.5001C146.222 22.6112 146.389 22.6668 146.556 22.7224C146.722 22.7224 147 22.7779 147.333 22.8335C147.833 22.889 148.222 23.0001 148.556 23.0557C148.889 23.1668 149.111 23.3335 149.333 23.5557C149.556 23.7779 149.611 24.1112 149.611 24.5001C149.611 24.889 149.5 25.1668 149.333 25.389C149.111 25.6668 148.889 25.8335 148.5 26.0001C148.167 26.1668 147.778 26.2224 147.389 26.2224C146.667 26.2224 146.056 26.0557 145.611 25.7224C145.167 25.389 144.945 24.889 144.945 24.2779H145.833C145.833 24.6112 146 24.889 146.278 25.1112V25.0557Z",
1819
+ fill: "#141414"
1820
+ }
1821
+ ),
1822
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1823
+ "path",
1824
+ {
1825
+ d: "M150 21.2779V20.4446H151V18.8335H151.889V20.4446H153.333V21.2779H151.889V24.6113C151.889 24.8335 151.889 25.0002 152 25.1113C152.111 25.2224 152.278 25.2779 152.5 25.2779H153.5V26.1113H152.445C151.889 26.1113 151.556 26.0002 151.278 25.7779C151.056 25.5557 150.945 25.1668 150.945 24.6668V21.3335H149.945L150 21.2779Z",
1826
+ fill: "#141414"
1827
+ }
1828
+ ),
1829
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1830
+ "path",
1831
+ {
1832
+ d: "M162.445 26.1113H161.945C161.556 26.1113 161.333 26.0557 161.167 25.8891C161 25.7224 160.945 25.5002 160.945 25.2224C160.5 25.8335 159.889 26.1668 159.056 26.1668C158.222 26.1668 157.945 26.0002 157.556 25.7224C157.167 25.4446 157 25.0002 157 24.5002C157 24.0002 157.167 23.5002 157.556 23.1668C157.945 22.8335 158.5 22.7224 159.278 22.7224H160.945V22.3335C160.945 21.9446 160.833 21.6668 160.556 21.4446C160.333 21.2224 159.945 21.1113 159.5 21.1113C159.056 21.1113 158.778 21.2224 158.5 21.3891C158.222 21.5557 158.111 21.7779 158 22.0557H157.111C157.167 21.5002 157.445 21.0557 157.833 20.7779C158.222 20.5002 158.833 20.3335 159.5 20.3335C160.167 20.3335 160.778 20.5002 161.167 20.8891C161.556 21.2224 161.778 21.7224 161.778 22.3891V24.8335C161.778 25.1113 161.889 25.2224 162.167 25.2224H162.445V26.0557V26.1113ZM159.111 23.5002C158.278 23.5002 157.833 23.8335 157.833 24.4446C157.833 25.0557 157.945 24.9446 158.167 25.1113C158.389 25.2779 158.667 25.3891 159.056 25.3891C159.611 25.3891 160.056 25.2224 160.389 24.9446C160.722 24.6668 160.889 24.2779 160.889 23.7779V23.5002H159.111Z",
1833
+ fill: "#141414"
1834
+ }
1835
+ ),
1836
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1837
+ "path",
1838
+ {
1839
+ d: "M168.167 22.9447V26.1114H167.278V23.0003C167.278 22.3892 167.167 21.9447 166.889 21.6669C166.611 21.3892 166.222 21.2225 165.722 21.2225C165.222 21.2225 164.778 21.3892 164.445 21.778C164.167 22.1669 164 22.6669 164 23.278V26.1114H163.111V20.4447H163.889L164 21.2225C164.445 20.6669 165.056 20.3892 165.889 20.3892C166.722 20.3892 167.111 20.6114 167.556 21.0003C168 21.3892 168.167 22.0558 168.167 22.9447Z",
1840
+ fill: "#141414"
1841
+ }
1842
+ ),
1843
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1844
+ "path",
1845
+ {
1846
+ d: "M174.722 26.1114H173.945L173.833 25.2225C173.333 25.8892 172.722 26.2225 171.889 26.2225C171.056 26.2225 170.889 26.1114 170.5 25.8892C170.111 25.6669 169.778 25.3336 169.556 24.8892C169.333 24.4447 169.222 23.9447 169.222 23.3336C169.222 22.7225 169.333 22.2781 169.556 21.8336C169.778 21.3892 170.111 21.0558 170.556 20.8336C171 20.6114 171.445 20.4447 171.945 20.4447C172.445 20.4447 172.778 20.5003 173.111 20.7225C173.445 20.8892 173.667 21.1114 173.889 21.3892V18.3892H174.778V26.1669L174.722 26.1114ZM173.611 24.3892C173.778 24.0558 173.833 23.7225 173.833 23.3336C173.833 22.9447 173.778 22.5558 173.611 22.2225C173.445 21.8892 173.222 21.6669 172.945 21.4447C172.667 21.278 172.333 21.1669 171.945 21.1669C171.389 21.1669 170.945 21.3892 170.556 21.7781C170.167 22.1669 170.056 22.6669 170.056 23.2781C170.056 23.8892 170.222 24.3892 170.556 24.778C170.889 25.1669 171.333 25.3892 171.945 25.3892C172.556 25.3892 172.611 25.2781 172.945 25.1114C173.222 24.9447 173.445 24.6669 173.611 24.3892Z",
1847
+ fill: "#141414"
1848
+ }
1849
+ ),
1850
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1851
+ "path",
1852
+ {
1853
+ d: "M92.6112 29.4446V30.3335H90.1112V37.2224H89.1667V30.3335H86.6667V29.4446H92.6667H92.6112Z",
1854
+ fill: "#141414"
1855
+ }
1856
+ ),
1857
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1858
+ "path",
1859
+ {
1860
+ d: "M93.6111 31.8335C94 31.6112 94.5 31.4446 95 31.4446C95.5 31.4446 96 31.5557 96.3889 31.7779C96.7778 32.0001 97.1111 32.2779 97.3334 32.7224C97.5556 33.1112 97.6667 33.6112 97.7222 34.1668C97.7222 34.2224 97.7222 34.389 97.7222 34.5557H93.3334C93.3334 35.1668 93.5 35.6112 93.8334 35.9446C94.1667 36.2779 94.6111 36.4446 95.1111 36.4446C95.6111 36.4446 95.8889 36.3335 96.1667 36.1112C96.4445 35.889 96.6667 35.6112 96.7223 35.2779H97.6667C97.5556 35.8335 97.2778 36.3335 96.8334 36.7224C96.3889 37.1112 95.8334 37.2779 95.2222 37.2779C94.6111 37.2779 94.1667 37.1668 93.7222 36.889C93.2778 36.6668 92.9445 36.3335 92.7222 35.889C92.5 35.4446 92.3889 34.9446 92.3889 34.389C92.3889 33.8335 92.5 33.2779 92.7222 32.889C92.9445 32.4446 93.2778 32.1112 93.6667 31.889L93.6111 31.8335ZM96.2222 32.6668C95.8889 32.389 95.5 32.2779 95 32.2779C94.5 32.2779 94.1667 32.4446 93.8889 32.7224C93.5556 33.0001 93.3889 33.389 93.3334 33.8335H96.7778C96.7778 33.3335 96.5556 33.0001 96.2222 32.7224V32.6668Z",
1861
+ fill: "#141414"
1862
+ }
1863
+ ),
1864
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
1865
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1866
+ "path",
1867
+ {
1868
+ d: "M102 31.8335C102.389 31.6112 102.889 31.4446 103.389 31.4446C103.889 31.4446 104.389 31.5557 104.778 31.7779C105.167 32.0001 105.5 32.2779 105.722 32.7224C105.945 33.1112 106.056 33.6112 106.111 34.1668C106.111 34.2224 106.111 34.389 106.111 34.5557H101.722C101.722 35.1668 101.889 35.6112 102.222 35.9446C102.556 36.2779 103 36.4446 103.5 36.4446C104 36.4446 104.278 36.3335 104.556 36.1112C104.833 35.889 105.056 35.6112 105.111 35.2779H106.056C105.944 35.8335 105.667 36.3335 105.222 36.7224C104.778 37.1112 104.222 37.2779 103.611 37.2779C103 37.2779 102.556 37.1668 102.111 36.889C101.667 36.6668 101.333 36.3335 101.111 35.889C100.889 35.4446 100.778 34.9446 100.778 34.389C100.778 33.8335 100.889 33.2779 101.111 32.889C101.333 32.4446 101.667 32.1112 102.056 31.889L102 31.8335ZM104.611 32.6668C104.278 32.389 103.889 32.2779 103.389 32.2779C102.889 32.2779 102.556 32.4446 102.278 32.7224C101.945 33.0001 101.778 33.389 101.722 33.8335H105.167C105.167 33.3335 104.945 33.0001 104.611 32.7224V32.6668Z",
1869
+ fill: "#141414"
1870
+ }
1871
+ ),
1872
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1873
+ "path",
1874
+ {
1875
+ d: "M109.667 37.2779C109.111 37.2779 108.611 37.1668 108.222 36.889C107.833 36.6668 107.5 36.2779 107.278 35.8335C107.056 35.389 106.945 34.889 106.945 34.3335C106.945 33.7779 107.056 33.2779 107.278 32.8335C107.5 32.389 107.833 32.0557 108.278 31.8335C108.722 31.6112 109.167 31.4446 109.722 31.4446C110.278 31.4446 110.945 31.6112 111.389 32.0001C111.833 32.389 112.111 32.8335 112.222 33.4446H111.278C111.167 33.0557 111 32.7779 110.722 32.5557C110.445 32.3335 110.111 32.2224 109.722 32.2224C109.333 32.2224 108.722 32.389 108.389 32.7779C108.056 33.1668 107.889 33.6668 107.889 34.2779C107.889 34.889 108.056 35.389 108.389 35.7779C108.722 36.1668 109.167 36.389 109.722 36.389C110.278 36.389 110.5 36.2779 110.778 36.0557C111.056 35.8335 111.222 35.5557 111.333 35.1668H112.222C112.111 35.7779 111.833 36.2779 111.389 36.6668C110.945 37.0001 110.389 37.2224 109.722 37.2224L109.667 37.2779Z",
1876
+ fill: "#141414"
1877
+ }
1878
+ ),
1879
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1880
+ "path",
1881
+ {
1882
+ d: "M113.278 35.8891C113.056 35.4447 112.945 34.9447 112.945 34.3891C112.945 33.8336 113.056 33.3336 113.278 32.8891C113.5 32.4447 113.833 32.1114 114.278 31.8891C114.722 31.6669 115.167 31.5002 115.722 31.5002C116.278 31.5002 116.778 31.6114 117.167 31.8891C117.611 32.1114 117.945 32.5002 118.167 32.8891C118.389 33.3336 118.5 33.8336 118.5 34.3891C118.5 34.9447 118.389 35.4447 118.167 35.8891C117.945 36.3336 117.611 36.6669 117.167 36.8891C116.722 37.1114 116.278 37.278 115.722 37.278C115.167 37.278 114.667 37.1669 114.278 36.8891C113.889 36.6114 113.5 36.278 113.278 35.8891ZM117.333 35.4447C117.5 35.1114 117.556 34.778 117.556 34.3891C117.556 34.0002 117.5 33.6114 117.333 33.3336C117.167 33.0002 116.945 32.778 116.667 32.6114C116.389 32.4447 116.056 32.3336 115.667 32.3336C115.278 32.3336 114.945 32.4447 114.667 32.6114C114.389 32.778 114.167 33.0558 114 33.3336C113.833 33.6669 113.778 34.0002 113.778 34.3891C113.778 34.778 113.833 35.1669 114 35.4447C114.167 35.778 114.389 36.0002 114.667 36.1669C114.945 36.3336 115.278 36.4447 115.667 36.4447C116.056 36.4447 116.389 36.3336 116.667 36.1669C116.945 36.0002 117.167 35.7225 117.333 35.4447Z",
1883
+ fill: "#141414"
1884
+ }
1885
+ ),
1886
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1887
+ "path",
1888
+ {
1889
+ d: "M128.056 33.9446V37.2224H127.167V34.0001C127.167 33.4446 127.056 33.0557 126.833 32.7224C126.611 32.4446 126.278 32.2779 125.833 32.2779C125.389 32.2779 125 32.4446 124.722 32.7779C124.445 33.1112 124.333 33.5557 124.333 34.1668V37.2224H123.445V34.0001C123.445 33.4446 123.333 33.0557 123.111 32.7224C122.889 32.4446 122.556 32.2779 122.111 32.2779C121.667 32.2779 121.278 32.4446 121 32.7779C120.722 33.1112 120.611 33.6112 120.611 34.1668V37.1668H119.722V31.5001H120.5L120.611 32.2779C121 31.7224 121.556 31.4446 122.278 31.4446C123 31.4446 123.056 31.5557 123.389 31.7224C123.722 31.889 123.945 32.1668 124.111 32.5557C124.5 31.8335 125.167 31.5001 126.056 31.5001C126.945 31.5001 127.222 31.7224 127.611 32.1112C128 32.5001 128.222 33.1112 128.222 34.0001L128.056 33.9446Z",
1890
+ fill: "#141414"
1891
+ }
1892
+ ),
1893
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1894
+ "path",
1895
+ {
1896
+ d: "M134.556 29.4446H135.722L138.667 37.2224H137.611L136.778 35.1112H133.389L132.556 37.2224H131.556L134.5 29.4446H134.556ZM136.556 34.2224L135.167 30.5001L133.778 34.2224H136.611H136.556Z",
1897
+ fill: "#141414"
1898
+ }
1899
+ ),
1900
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1901
+ "path",
1902
+ {
1903
+ d: "M144.111 37.2223H143.333L143.222 36.4446C142.778 37.0001 142.167 37.2779 141.389 37.2779C140.611 37.2779 140.167 37.0557 139.778 36.6668C139.389 36.2779 139.167 35.6112 139.167 34.7223V31.5557H140.056V34.6668C140.056 35.2779 140.167 35.7223 140.445 36.0001C140.722 36.3334 141.056 36.4446 141.556 36.4446C142.056 36.4446 142.5 36.2779 142.778 35.889C143.056 35.5001 143.222 35.0001 143.222 34.389V31.5557H144.111V37.2223Z",
1904
+ fill: "#141414"
1905
+ }
1906
+ ),
1907
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1908
+ "path",
1909
+ {
1910
+ d: "M144.722 32.389V31.5557H145.722V29.9446H146.611V31.5557H148.056V32.389H146.611V35.7224C146.611 35.9446 146.611 36.1112 146.722 36.2224C146.833 36.3335 147 36.389 147.222 36.389H148.222V37.2224H147.167C146.611 37.2224 146.278 37.1112 146 36.889C145.778 36.6668 145.667 36.2779 145.667 35.7779V32.4446H144.667L144.722 32.389Z",
1911
+ fill: "#141414"
1912
+ }
1913
+ ),
1914
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1915
+ "path",
1916
+ {
1917
+ d: "M154 34.0557V37.2224H153.111V34.1112C153.111 33.5001 153 33.0557 152.722 32.7779C152.445 32.4446 152.056 32.3335 151.556 32.3335C151.056 32.3335 150.611 32.5001 150.333 32.889C150 33.2779 149.889 33.7779 149.889 34.389V37.2224H149V29.4446H149.889V32.5001C150.056 32.2224 150.333 31.9446 150.611 31.7779C150.945 31.6112 151.278 31.5001 151.722 31.5001C152.389 31.5001 152.945 31.7224 153.389 32.1112C153.833 32.5001 154 33.1668 154 34.0557Z",
1918
+ fill: "#141414"
1919
+ }
1920
+ ),
1921
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1922
+ "path",
1923
+ {
1924
+ d: "M155.333 35.8891C155.111 35.4447 155 34.9447 155 34.3891C155 33.8336 155.111 33.3336 155.333 32.8891C155.556 32.4447 155.889 32.1114 156.333 31.8891C156.778 31.6669 157.222 31.5002 157.778 31.5002C158.333 31.5002 158.833 31.6114 159.222 31.8891C159.667 32.1114 160 32.5002 160.222 32.8891C160.445 33.3336 160.556 33.8336 160.556 34.3891C160.556 34.9447 160.445 35.4447 160.222 35.8891C160 36.3336 159.667 36.6669 159.222 36.8891C158.778 37.1114 158.333 37.278 157.778 37.278C157.222 37.278 156.722 37.1669 156.333 36.8891C155.945 36.6114 155.556 36.278 155.333 35.8891ZM159.445 35.4447C159.611 35.1114 159.667 34.778 159.667 34.3891C159.667 34.0002 159.611 33.6114 159.445 33.3336C159.278 33.0002 159.056 32.778 158.778 32.6114C158.5 32.4447 158.167 32.3336 157.778 32.3336C157.389 32.3336 157.056 32.4447 156.778 32.6114C156.5 32.778 156.278 33.0558 156.111 33.3336C155.945 33.6669 155.889 34.0002 155.889 34.3891C155.889 34.778 155.945 35.1669 156.111 35.4447C156.278 35.778 156.5 36.0002 156.778 36.1669C157.056 36.3336 157.389 36.4447 157.778 36.4447C158.167 36.4447 158.5 36.3336 158.778 36.1669C159.056 36.0002 159.278 35.7225 159.445 35.4447Z",
1925
+ fill: "#141414"
1926
+ }
1927
+ ),
1928
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1929
+ "path",
1930
+ {
1931
+ d: "M164.5 32.4446H164.056C163.5 32.4446 163.111 32.6112 162.889 33.0001C162.667 33.389 162.556 33.8334 162.556 34.3334V37.2223H161.667V31.5557H162.445L162.556 32.389C162.722 32.1112 162.945 31.9446 163.167 31.7779C163.445 31.6112 163.778 31.5557 164.222 31.5557H164.5V32.4446Z",
1932
+ fill: "#141414"
1933
+ }
1934
+ ),
1935
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1936
+ "path",
1937
+ {
1938
+ d: "M166.389 29.9446C166.389 30.1113 166.333 30.2779 166.222 30.3891C166.111 30.5002 165.945 30.5557 165.778 30.5557C165.611 30.5557 165.445 30.5002 165.333 30.3891C165.222 30.2779 165.167 30.1113 165.167 29.9446C165.167 29.7779 165.222 29.6113 165.333 29.5002C165.445 29.3891 165.611 29.3335 165.778 29.3335C165.945 29.3335 166.111 29.3891 166.222 29.5002C166.333 29.6113 166.389 29.7779 166.389 29.9446ZM166.278 31.5557V37.2224H165.389V31.5557H166.278Z",
1939
+ fill: "#141414"
1940
+ }
1941
+ ),
1942
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1943
+ "path",
1944
+ {
1945
+ d: "M166.833 32.389V31.5557H167.833V29.9446H168.722V31.5557H170.167V32.389H168.722V35.7224C168.722 35.9446 168.722 36.1112 168.833 36.2224C168.944 36.3335 169.111 36.389 169.333 36.389H170.333V37.2224H169.278C168.722 37.2224 168.389 37.1112 168.111 36.889C167.889 36.6668 167.778 36.2779 167.778 35.7779V32.4446H166.778L166.833 32.389Z",
1946
+ fill: "#141414"
1947
+ }
1948
+ ),
1949
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1950
+ "path",
1951
+ {
1952
+ d: "M173.167 36.1668L174.833 31.5557H175.778L173.167 38.1668C173.056 38.5001 172.889 38.7779 172.833 38.9446C172.778 39.1112 172.611 39.2223 172.445 39.3334C172.278 39.389 172.056 39.4446 171.833 39.4446H170.722V38.6112H171.556C171.722 38.6112 171.889 38.6112 171.945 38.5557C172 38.5001 172.111 38.4446 172.167 38.389C172.167 38.2779 172.278 38.1668 172.389 37.9446L172.667 37.2779L170.445 31.5557H171.389L173.111 36.1668H173.167Z",
1953
+ fill: "#141414"
1954
+ }
1955
+ )
1956
+ ] });
1957
+
1958
+ // src/components/input-components/RadioMultipleWithInfoStandard/RadioCollapseItem.tsx
1959
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1960
+ var RadioCollapseItem = ({
1961
+ index,
1962
+ questionId,
1963
+ groupId,
1964
+ value,
1965
+ questionAnswer,
1966
+ handleInputChange,
1967
+ label,
1968
+ optionText,
1969
+ questionIsMandatory,
1970
+ activatedLanguage = "sv",
1971
+ setOpen = false
1972
+ }) => {
1973
+ const [isOpen, setIsOpen] = (0, import_react10.useState)(setOpen);
1974
+ const contentId = `${questionId}-content-${index}`;
1975
+ const buttonId = `${questionId}-button-${index}`;
1976
+ const openLabel = activatedLanguage === "sv" ? "Visa mer information om" : "Show more information about";
1977
+ const closeLabel = activatedLanguage === "sv" ? "D\xF6lj mer information om" : "Hide more information about";
1978
+ const buttonLabel = `${isOpen ? closeLabel : openLabel} "${label}"`;
1979
+ (0, import_react10.useEffect)(() => {
1980
+ if (questionAnswer === value)
1981
+ setIsOpen(true);
1982
+ else
1983
+ setIsOpen(setOpen);
1984
+ }, [questionAnswer, setOpen, value]);
1985
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "pts-radio-option", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "pts-radio-collapse", children: [
1986
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: `pts-radio-collapse-button-container ${isOpen ? "open" : ""}`, children: [
1987
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1988
+ "input",
1989
+ {
1990
+ required: questionIsMandatory && index === 0,
1991
+ type: "radio",
1992
+ name: `name-${questionId}`,
1993
+ id: `${groupId}-option-${index}`,
1994
+ value,
1995
+ checked: questionAnswer === value,
1996
+ onChange: (event) => handleInputChange(event)
1997
+ }
1998
+ ),
1999
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("label", { htmlFor: `${groupId}-option-${index}`, children: label }),
2000
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2001
+ "button",
2002
+ {
2003
+ className: `pts-radio-collapse-button ${isOpen ? "open" : ""}`,
2004
+ type: "button",
2005
+ id: buttonId,
2006
+ onClick: () => setIsOpen(!isOpen),
2007
+ "aria-expanded": isOpen,
2008
+ "aria-controls": contentId,
2009
+ "aria-label": buttonLabel,
2010
+ children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "pts-open-close-icon", "aria-hidden": "true", children: isOpen ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(CollapseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ExpandIcon, {}) })
2011
+ }
2012
+ )
2013
+ ] }),
2014
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2015
+ "div",
2016
+ {
2017
+ id: `${questionId}-${value}`,
2018
+ "aria-live": "polite",
2019
+ "aria-atomic": "true",
2020
+ children: [
2021
+ isOpen && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "sr-only", children: activatedLanguage === "sv" ? `Visar informationstext om svarsalternativet ${label}` : `Displays informational text about the answer option ${label}` }),
2022
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2023
+ "div",
2024
+ {
2025
+ className: `pts-radio-collapse-body ${isOpen ? "open" : ""}`,
2026
+ id: contentId,
2027
+ "aria-labelledby": `${groupId}-option-${index}`,
2028
+ "aria-hidden": !isOpen,
2029
+ inert: !isOpen,
2030
+ children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: `pts-radio-collapse-content `, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { dangerouslySetInnerHTML: {
2031
+ __html: import_dompurify6.default.sanitize(optionText != null ? optionText : "")
2032
+ } }) })
2033
+ }
2034
+ )
2035
+ ]
2036
+ }
2037
+ )
2038
+ ] }) }, index);
2039
+ };
2040
+ var RadioCollapseItem_default = RadioCollapseItem;
2041
+
2042
+ // src/components/input-components/RadioMultipleWithInfoStandard/RadioMultipleWithInfoStandard.tsx
2043
+ var import_jsx_runtime21 = require("react/jsx-runtime");
2044
+ var getInfoTextList = (questionLanguageSupport, language) => {
2045
+ return questionLanguageSupport.find((l) => l.language === language).options.map(
2046
+ (option) => ({
2047
+ selectedValue: option.value,
2048
+ infoText: option.Info
2049
+ })
2050
+ );
2051
+ };
2052
+ var RadioWithInfo = ({
2053
+ question,
2054
+ handleQuestionInputChange,
2055
+ showPreview = false,
2056
+ activatedLanguage = "sv"
2057
+ }) => {
2058
+ var _a, _b, _c;
2059
+ const questionId = `question-${question.id}`;
2060
+ const groupId = `radio-group-${question.id}`;
2061
+ const errorId = `error-${question.id}`;
2062
+ const handleInputChange = (event) => {
2063
+ const e = { target: { value: event.target.value } };
2064
+ handleQuestionInputChange(e, question);
2065
+ };
2066
+ const optionsInfoText = getInfoTextList(question.languageSupport, activatedLanguage);
2067
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
2068
+ !showPreview && question.visible && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "pts-root-question pts-radioMultipleWithInfo-container", id: questionId, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
2069
+ "fieldset",
2070
+ {
2071
+ "aria-invalid": question.hasValidationError ? question.hasValidationError : void 0,
2072
+ "aria-describedby": question.hasValidationError ? errorId : void 0,
2073
+ children: [
2074
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("legend", { id: `label-${groupId}`, children: [
2075
+ question.questionLabel,
2076
+ " ",
2077
+ question.isQuestionMandatory && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { "aria-hidden": true, className: "pts-root-mandatoryAsterisk", children: "*" })
2078
+ ] }),
2079
+ (_a = question.options) == null ? void 0 : _a.map((option, index) => {
2080
+ var _a2, _b2, _c2, _d, _e;
2081
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2082
+ RadioCollapseItem_default,
2083
+ {
2084
+ label: option.label,
2085
+ index,
2086
+ questionId,
2087
+ groupId,
2088
+ value: (_a2 = option.value) != null ? _a2 : "",
2089
+ questionAnswer: (_b2 = question.answer) != null ? _b2 : "",
2090
+ handleInputChange,
2091
+ setOpen: question.answer === option.value,
2092
+ questionIsMandatory: (_c2 = question.isQuestionMandatory) != null ? _c2 : false,
2093
+ optionText: (_e = (_d = optionsInfoText.find((optionInfo) => optionInfo.selectedValue === option.value)) == null ? void 0 : _d.infoText) != null ? _e : ""
2094
+ }
2095
+ );
2096
+ }),
2097
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2098
+ ValidationMessage_default,
2099
+ {
2100
+ showValidationMessage: (_b = question.hasValidationError) != null ? _b : false,
2101
+ validationId: errorId,
2102
+ validationMessesege: (_c = question.validationDefaultMessesege) != null ? _c : "",
2103
+ activatedLanguage
2104
+ }
2105
+ )
2106
+ ]
2107
+ }
2108
+ ) }),
2109
+ showPreview && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(PreviewRadio2, { question })
2110
+ ] });
2111
+ };
2112
+ var RadioMultipleWithInfoStandard_default = RadioWithInfo;
2113
+ var PreviewRadio2 = ({ question }) => {
2114
+ var _a, _b;
2115
+ const previewId = `preview-${question.id}`;
2116
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
2117
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("dt", { id: `question-${previewId}`, children: (_a = question.previewLabel) != null ? _a : question.questionLabel }),
2118
+ ((_b = question.answer) == null ? void 0 : _b.trim()) ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("dd", { className: "pts-radioMultipleWithInfo-preview pts-root-answer", id: `answer-${previewId}`, children: question.answer }) : /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2119
+ "dd",
2120
+ {
2121
+ className: "pts-radioMultipleWithInfo-preview pts-root-answer no-answer-preview-page",
2122
+ id: `answer-${previewId}`,
2123
+ children: "Inget svar"
2124
+ }
2125
+ )
2126
+ ] });
2127
+ };
2128
+
1254
2129
  // src/helpers/hasQuestionValidationError/hasQuestionValidationError.tsx
1255
2130
  var import_date_fns = require("date-fns");
1256
2131
  var hasQuestionValidationError = (question, questions) => {
@@ -1740,7 +2615,8 @@ var makeFormSelectors = (selectSlice) => {
1740
2615
  aboutText: languageSupport.aboutText,
1741
2616
  options: languageSupport.options,
1742
2617
  validationDefaultMessesege: languageSupport.validationDefaultMessesege,
1743
- validationSummaryLabel: languageSupport.validationSummaryLabel
2618
+ validationSummaryLabel: languageSupport.validationSummaryLabel,
2619
+ infoOnly: languageSupport.infoOnly
1744
2620
  };
1745
2621
  });
1746
2622
  }
@@ -1851,9 +2727,9 @@ var getGroupCheckIds = (validationType) => {
1851
2727
  var getGroupCheckIds_default = getGroupCheckIds;
1852
2728
 
1853
2729
  // src/hooks/useFormStatusModal/useFormStatusModal.ts
1854
- var React6 = __toESM(require("react"));
2730
+ var React7 = __toESM(require("react"));
1855
2731
  var useFormStatusModal = (formStatus, handleModalOpen, handleModalClose, mainSelector = "#main-content") => {
1856
- React6.useEffect(() => {
2732
+ React7.useEffect(() => {
1857
2733
  if (formStatus === "loading") {
1858
2734
  handleModalOpen();
1859
2735
  }
@@ -1868,7 +2744,7 @@ var useFormStatusModal = (formStatus, handleModalOpen, handleModalClose, mainSel
1868
2744
  };
1869
2745
 
1870
2746
  // src/hooks/usePTSPageTitle/usePTSPageTitle.ts
1871
- var import_react9 = require("react");
2747
+ var import_react11 = require("react");
1872
2748
  var usePTSPageTitle = ({
1873
2749
  formStatus,
1874
2750
  activeStep,
@@ -1877,7 +2753,7 @@ var usePTSPageTitle = ({
1877
2753
  steps,
1878
2754
  fallbackTitle = "PTS e-tj\xE4nst"
1879
2755
  }) => {
1880
- const computedTitle = (0, import_react9.useMemo)(() => {
2756
+ const computedTitle = (0, import_react11.useMemo)(() => {
1881
2757
  var _a, _b, _c, _d;
1882
2758
  const baseTitle = (_a = applicationContent == null ? void 0 : applicationContent.pageTitle) != null ? _a : "";
1883
2759
  const thankYouPageTitle = (_b = thankYouBlock == null ? void 0 : thankYouBlock.pageTitle) != null ? _b : "";
@@ -1886,19 +2762,19 @@ var usePTSPageTitle = ({
1886
2762
  if (activeStep === 0 && baseTitle) return baseTitle;
1887
2763
  return stepTitle || baseTitle || fallbackTitle;
1888
2764
  }, [formStatus, activeStep, applicationContent, thankYouBlock, steps, fallbackTitle]);
1889
- (0, import_react9.useEffect)(() => {
2765
+ (0, import_react11.useEffect)(() => {
1890
2766
  document.title = computedTitle;
1891
2767
  }, [computedTitle]);
1892
2768
  return computedTitle;
1893
2769
  };
1894
2770
 
1895
2771
  // src/hooks/useInputMethodDetection/useInputMethodDetection.ts
1896
- var import_react10 = require("react");
2772
+ var import_react12 = require("react");
1897
2773
  var useInputMethodDetection = ({
1898
2774
  mouseClassName = "using-mouse",
1899
2775
  keyboardToggleKey = "Tab"
1900
2776
  } = {}) => {
1901
- (0, import_react10.useEffect)(() => {
2777
+ (0, import_react12.useEffect)(() => {
1902
2778
  const handleMouseDown = () => {
1903
2779
  document.body.classList.add(mouseClassName);
1904
2780
  };
@@ -1917,7 +2793,7 @@ var useInputMethodDetection = ({
1917
2793
  };
1918
2794
 
1919
2795
  // src/hooks/useCookieConsent/useCookieConsent.ts
1920
- var import_react11 = require("react");
2796
+ var import_react13 = require("react");
1921
2797
  var useCookieConsent = ({
1922
2798
  cookieName,
1923
2799
  choiceKey,
@@ -1930,7 +2806,7 @@ var useCookieConsent = ({
1930
2806
  areCookiesAccepted,
1931
2807
  hasChoiceBeenMade,
1932
2808
  clearChoiceFromSession
1933
- } = (0, import_react11.useMemo)(
2809
+ } = (0, import_react13.useMemo)(
1934
2810
  () => createCookieConsent({
1935
2811
  cookieName,
1936
2812
  choiceKey,
@@ -1938,15 +2814,15 @@ var useCookieConsent = ({
1938
2814
  }),
1939
2815
  [cookieName, choiceKey, expiryYears]
1940
2816
  );
1941
- const [showBanner, setShowBanner] = (0, import_react11.useState)(false);
1942
- const handleCookieStateChange = (0, import_react11.useCallback)(() => {
2817
+ const [showBanner, setShowBanner] = (0, import_react13.useState)(false);
2818
+ const handleCookieStateChange = (0, import_react13.useCallback)(() => {
1943
2819
  const cookiesNowAccepted = areCookiesAccepted();
1944
2820
  if (onConsentChange) {
1945
2821
  onConsentChange(cookiesNowAccepted);
1946
2822
  }
1947
2823
  setShowBanner(false);
1948
2824
  }, [areCookiesAccepted, onConsentChange]);
1949
- (0, import_react11.useEffect)(() => {
2825
+ (0, import_react13.useEffect)(() => {
1950
2826
  const cookiesAccepted = areCookiesAccepted();
1951
2827
  const choiceMade = hasChoiceBeenMade();
1952
2828
  setShowBanner(!cookiesAccepted && !choiceMade);
@@ -1971,15 +2847,15 @@ var useCookieConsent = ({
1971
2847
  };
1972
2848
 
1973
2849
  // src/components/question-rendering/QuestionRenderer/QuestionRenderer.tsx
1974
- var import_jsx_runtime14 = require("react/jsx-runtime");
2850
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1975
2851
  var QuestionRenderer = ({
1976
2852
  question,
1977
2853
  handleQuestionInputChange,
1978
2854
  activatedLanguage = "sv",
1979
2855
  showPreview = false
1980
2856
  }) => {
1981
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_jsx_runtime14.Fragment, { children: [
1982
- question.questionType === "Radio" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2857
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
2858
+ question.questionType === "Radio" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1983
2859
  RadioMultipleStandard_default,
1984
2860
  {
1985
2861
  question,
@@ -1987,7 +2863,15 @@ var QuestionRenderer = ({
1987
2863
  showPreview
1988
2864
  }
1989
2865
  ),
1990
- question.questionType === "TextField" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2866
+ question.questionType === "RadioWithInfo" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2867
+ RadioMultipleWithInfoStandard_default,
2868
+ {
2869
+ question,
2870
+ handleQuestionInputChange,
2871
+ showPreview
2872
+ }
2873
+ ),
2874
+ question.questionType === "TextField" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1991
2875
  TextFieldStandard_default,
1992
2876
  {
1993
2877
  question,
@@ -1996,7 +2880,7 @@ var QuestionRenderer = ({
1996
2880
  activatedLanguage
1997
2881
  }
1998
2882
  ),
1999
- question.questionType === "AddFiles" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2883
+ question.questionType === "AddFiles" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2000
2884
  AddFilesStandard_default,
2001
2885
  {
2002
2886
  questionObject: question,
@@ -2006,7 +2890,7 @@ var QuestionRenderer = ({
2006
2890
  visible: question.visible
2007
2891
  }
2008
2892
  ),
2009
- question.questionType === "SingleCheckbox" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2893
+ question.questionType === "SingleCheckbox" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2010
2894
  SingleCheckboxStandard_default,
2011
2895
  {
2012
2896
  question,
@@ -2015,7 +2899,7 @@ var QuestionRenderer = ({
2015
2899
  activatedLanguage
2016
2900
  }
2017
2901
  ),
2018
- question.questionType === "Checkbox" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2902
+ question.questionType === "Checkbox" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2019
2903
  MultipleCheckboxesStandard_default,
2020
2904
  {
2021
2905
  question,
@@ -2024,7 +2908,7 @@ var QuestionRenderer = ({
2024
2908
  activatedLanguage
2025
2909
  }
2026
2910
  ),
2027
- question.questionType === "CheckboxGroup" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2911
+ question.questionType === "CheckboxGroup" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2028
2912
  CheckboxGroupStandard_default,
2029
2913
  {
2030
2914
  question,
@@ -2033,21 +2917,30 @@ var QuestionRenderer = ({
2033
2917
  activatedLanguage
2034
2918
  }
2035
2919
  ),
2036
- question.questionType === "TextArea" && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2920
+ question.questionType === "TextArea" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2037
2921
  TextAreaStandard_default,
2038
2922
  {
2039
2923
  question,
2040
2924
  handleQuestionInputChange,
2041
2925
  showPreview
2042
2926
  }
2927
+ ),
2928
+ question.questionType === "InfoOnly" && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2929
+ InfoOnlyStandard_default,
2930
+ {
2931
+ question,
2932
+ handleQuestionInputChange,
2933
+ showPreview,
2934
+ activatedLanguage
2935
+ }
2043
2936
  )
2044
2937
  ] });
2045
2938
  };
2046
2939
  var QuestionRenderer_default = QuestionRenderer;
2047
2940
 
2048
2941
  // src/components/question-rendering/QuestionGroup/QuestionGroup.tsx
2049
- var import_react12 = require("react");
2050
- var import_jsx_runtime15 = require("react/jsx-runtime");
2942
+ var import_react14 = require("react");
2943
+ var import_jsx_runtime23 = require("react/jsx-runtime");
2051
2944
  var QuestionGroup = ({
2052
2945
  questions,
2053
2946
  wrapperElement = "none",
@@ -2066,15 +2959,15 @@ var QuestionGroup = ({
2066
2959
  const groupMandatory = (_a = firstQuestion.validationType) == null ? void 0 : _a.find(
2067
2960
  (e) => e.startsWith("groupCheck-")
2068
2961
  );
2069
- (0, import_react12.useEffect)(() => {
2962
+ (0, import_react14.useEffect)(() => {
2070
2963
  questions.forEach((question) => {
2071
2964
  if (question.visible && !question.isDisplayed) {
2072
2965
  markQuestionAsDisplayed(question);
2073
2966
  }
2074
2967
  });
2075
2968
  }, [questions]);
2076
- const groupQuestions = /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_jsx_runtime15.Fragment, { children: questions.map((question, index) => {
2077
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_react12.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2969
+ const groupQuestions = /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_jsx_runtime23.Fragment, { children: questions.map((question, index) => {
2970
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_react14.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2078
2971
  QuestionRenderer_default,
2079
2972
  {
2080
2973
  question,
@@ -2086,7 +2979,7 @@ var QuestionGroup = ({
2086
2979
  }) });
2087
2980
  switch (wrapperElement) {
2088
2981
  case "fieldset":
2089
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
2982
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
2090
2983
  "fieldset",
2091
2984
  {
2092
2985
  className: "pts-root-question-group-fieldset pts-root-question",
@@ -2094,17 +2987,17 @@ var QuestionGroup = ({
2094
2987
  "aria-invalid": firstQuestion.hasValidationError || void 0,
2095
2988
  "aria-describedby": firstQuestion.hasValidationError ? `${firstQuestion.id}-error` : void 0,
2096
2989
  children: [
2097
- legendLabel && /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("legend", { children: [
2098
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { className: "pts-question-information-legend", children: [
2990
+ legendLabel && /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("legend", { children: [
2991
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("span", { className: "pts-question-information-legend", children: [
2099
2992
  legendLabel,
2100
- groupMandatory && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { "aria-hidden": true, className: "pts-root-mandatoryAsterisk", children: "*" })
2993
+ groupMandatory && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { "aria-hidden": true, className: "pts-root-mandatoryAsterisk", children: "*" })
2101
2994
  ] }),
2102
- firstQuestion.hasValidationError && /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { className: "sr-only", children: [
2995
+ firstQuestion.hasValidationError && /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("span", { className: "sr-only", children: [
2103
2996
  "Valideringsfel. ",
2104
2997
  firstQuestion.validationDefaultMessesege
2105
2998
  ] })
2106
2999
  ] }),
2107
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
3000
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2108
3001
  ValidationMessage_default,
2109
3002
  {
2110
3003
  showValidationMessage: (_b = firstQuestion.hasValidationError) != null ? _b : false,
@@ -2118,18 +3011,18 @@ var QuestionGroup = ({
2118
3011
  }
2119
3012
  );
2120
3013
  case "section":
2121
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("section", { className: "pts-root-question-group-section", children: groupQuestions });
3014
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("section", { className: "pts-root-question-group-section", children: groupQuestions });
2122
3015
  case "div":
2123
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "pts-root-question-group-div", children: groupQuestions });
3016
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "pts-root-question-group-div", children: groupQuestions });
2124
3017
  case "none":
2125
3018
  default:
2126
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_react12.Fragment, { children: groupQuestions });
3019
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_react14.Fragment, { children: groupQuestions });
2127
3020
  }
2128
3021
  };
2129
3022
  var QuestionGroup_default = QuestionGroup;
2130
3023
 
2131
3024
  // src/components/layout/CookieBanner/CookieBanner.tsx
2132
- var import_jsx_runtime16 = require("react/jsx-runtime");
3025
+ var import_jsx_runtime24 = require("react/jsx-runtime");
2133
3026
  var CookieBanner = ({
2134
3027
  visible = false,
2135
3028
  onCookieStateChange,
@@ -2152,7 +3045,7 @@ var CookieBanner = ({
2152
3045
  onClose();
2153
3046
  }
2154
3047
  };
2155
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3048
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2156
3049
  "div",
2157
3050
  {
2158
3051
  className: "pts-cookieBanner",
@@ -2162,16 +3055,16 @@ var CookieBanner = ({
2162
3055
  "aria-modal": "true",
2163
3056
  id: "cookie-banner",
2164
3057
  tabIndex: -1,
2165
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "content", children: [
2166
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("h3", { id: "cookie-banner-title", children: [
3058
+ children: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "content", children: [
3059
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("h3", { id: "cookie-banner-title", children: [
2167
3060
  " ",
2168
3061
  activatedLanguage === "en" ? "Cookies" : "Kakor (cookies)"
2169
3062
  ] }),
2170
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { id: "cookie-banner-description", children: activatedLanguage === "en" ? `PTS would like to use a web analytics cookie in order to continuously improve pts.se. Do you consent? You can change your choice at any time. To withdraw your consent, click on \u201CCookies\u201D at the bottom of the website.` : `PTS skulle vilja anv\xE4nda en statistikkaka i syfte att l\xF6pande f\xF6rb\xE4ttra webbplatsen.
3063
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("p", { id: "cookie-banner-description", children: activatedLanguage === "en" ? `PTS would like to use a web analytics cookie in order to continuously improve pts.se. Do you consent? You can change your choice at any time. To withdraw your consent, click on \u201CCookies\u201D at the bottom of the website.` : `PTS skulle vilja anv\xE4nda en statistikkaka i syfte att l\xF6pande f\xF6rb\xE4ttra webbplatsen.
2171
3064
  Samtycker du till det? Du kan n\xE4r som helst \xE4ndra ditt val. F\xF6r att \xE5terkalla ditt
2172
3065
  samtycke klickar du p\xE5 \u201DKakor\u201D i avsnittet l\xE4ngst ned p\xE5 webbplatsen.` }),
2173
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "pts-cookieBanner-Links", children: [
2174
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
3066
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "pts-cookieBanner-Links", children: [
3067
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2175
3068
  "svg",
2176
3069
  {
2177
3070
  width: "27",
@@ -2181,8 +3074,8 @@ var CookieBanner = ({
2181
3074
  xmlns: "http://www.w3.org/2000/svg",
2182
3075
  "aria-hidden": "true",
2183
3076
  children: [
2184
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { width: "27", height: "27", rx: "13.5", fill: "#6E3282" }),
2185
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3077
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("rect", { width: "27", height: "27", rx: "13.5", fill: "#6E3282" }),
3078
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2186
3079
  "path",
2187
3080
  {
2188
3081
  d: "M13.5 18.7116L12.4911 17.7995L16.4559 14.1514H7.83594V12.8485H16.4559L12.4911 9.20036L13.5 8.28833L19.164 13.4999L13.5 18.7116Z",
@@ -2192,7 +3085,7 @@ var CookieBanner = ({
2192
3085
  ]
2193
3086
  }
2194
3087
  ),
2195
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3088
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2196
3089
  "a",
2197
3090
  {
2198
3091
  href: "https://pts.se/om-oss/om-pts.se/kakor-pa-webbplatsen/kakor-pa-pts-e-tjanster/",
@@ -2202,9 +3095,9 @@ var CookieBanner = ({
2202
3095
  }
2203
3096
  )
2204
3097
  ] }),
2205
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "pts-cookieBanner-Buttons", children: [
2206
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { onClick: () => handleCookieChoice(true), children: activatedLanguage === "en" ? "Yes, I consent" : "Ja, jag samtycker" }),
2207
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { onClick: () => handleCookieChoice(false), children: activatedLanguage === "en" ? "No, I do not consent" : "Nej, jag samtycker inte" })
3098
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "pts-cookieBanner-Buttons", children: [
3099
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("button", { onClick: () => handleCookieChoice(true), children: activatedLanguage === "en" ? "Yes, I consent" : "Ja, jag samtycker" }),
3100
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("button", { onClick: () => handleCookieChoice(false), children: activatedLanguage === "en" ? "No, I do not consent" : "Nej, jag samtycker inte" })
2208
3101
  ] })
2209
3102
  ] })
2210
3103
  }
@@ -2213,12 +3106,12 @@ var CookieBanner = ({
2213
3106
  var CookieBanner_default = CookieBanner;
2214
3107
 
2215
3108
  // src/components/layout/FooterStandard/FooterStandard.tsx
2216
- var import_jsx_runtime17 = require("react/jsx-runtime");
3109
+ var import_jsx_runtime25 = require("react/jsx-runtime");
2217
3110
  var Footer = ({ activatedLanguage = "sv" }) => {
2218
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("footer", { className: "pts-footer-container", children: [
2219
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-footer-slogan-text-container", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "pts-footer-slogan-text", children: activatedLanguage === "sv" ? "S\xE4ker och tillg\xE4nglig kommunikation f\xF6r Sverige" : "Secure and accessible communication for Sweden" }) }),
2220
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "pts-footer-content", children: [
2221
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3111
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("footer", { className: "pts-footer-container", children: [
3112
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "pts-footer-slogan-text-container", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("p", { className: "pts-footer-slogan-text", children: activatedLanguage === "sv" ? "S\xE4ker och tillg\xE4nglig kommunikation f\xF6r Sverige" : "Secure and accessible communication for Sweden" }) }),
3113
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: "pts-footer-content", children: [
3114
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2222
3115
  "svg",
2223
3116
  {
2224
3117
  "aria-label": activatedLanguage === "en" ? "PTS logotype" : "PTS logotyp",
@@ -2229,14 +3122,14 @@ var Footer = ({ activatedLanguage = "sv" }) => {
2229
3122
  viewBox: "0 0 278 72",
2230
3123
  fill: "none",
2231
3124
  children: [
2232
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3125
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2233
3126
  "path",
2234
3127
  {
2235
3128
  d: "M54 43C54 47.2 51.5 51.1 47.6 52.3C45.8 52.8 44 53 41 53H24.5C21.4 53 21 53.5 21 56.5V63C21 65.4 19.5 67 17.5 67C15.5 67 14 65.4 14 63V58.5C14 56.5 14 54.8 14.2 53.9C14.8 50.5 16.8 47.9 20.1 46.7C21.4 46.2 23.6 45.9 27.9 45.9H42C43.2 45.9 44.4 45.8 44.9 45.6C46.4 45 46.9 44 46.9 42.9C46.9 41.8 46.5 40.7 44.9 40.2C44.4 40 43.2 39.9 42 39.9H19.4C18.5 39.9 17.7 39.9 17.3 39.7C15.8 39.2 14.9 37.8 14.9 36.4C14.9 35 15.8 33.6 17.3 33.1C17.8 32.9 18.3 32.9 19.3 32.9H40.9C44 32.9 46.4 33.1 47.9 33.7C51.8 35.2 53.9 38.4 53.9 42.9L54 43ZM95.7 33.3C95.2 33.1 94.4 33 93.3 33H61.6C60.8 33 60.1 33 59.7 33.2C58 33.7 57 35 57 36.5C57 38 57.8 39.2 59.4 39.7C59.9 39.9 60.7 40 61.6 40H74V63.4C74 65.8 75.6 67 77.5 67C79.4 67 81 65.8 81 63.4V40H93.3C94.5 40 95.1 40 95.5 39.8C97.1 39.3 98 38 98 36.5C98 35 97.2 33.8 95.7 33.3ZM133.5 47.4C131.8 46.5 129.6 46 124.1 46H113.5C111.8 46 110.9 45.9 110.3 45.7C108.6 45.1 108 44 108 43C108 42 108.4 40.8 110.2 40.2C110.7 40 111.6 40 112.5 40H132C132.4 40 133.5 40 133.8 40C135.6 39.7 137 38.6 137 36.6C137 34.6 135.6 33.6 133.9 33.2C133.6 33.2 132.9 33.1 132 33.1H113.5C110.2 33.1 107.8 33.5 106.2 34.2C102.9 35.8 101 39.2 101 43.1C101 47 102.8 50.5 106.4 52.1C108 52.8 110.4 53.1 113.5 53.1H127C128.7 53.1 129.6 53.3 130.2 53.5C131.6 54 132 55.4 132 56.6C132 57.8 131.6 59.3 129.9 59.8C129.3 60 128.1 60.1 126.1 60.1H106.5C105.7 60.1 104.9 60.1 104.5 60.3C102.9 60.7 102 62 102 63.6C102 65.2 103 66.2 104.3 66.7C104.8 66.9 105.9 67.1 106.7 67.1H124C127.7 67.1 130.7 66.9 132.5 66.3C136.6 65.1 138.9 61.2 138.9 56.6C138.9 52 136.8 49.2 133.4 47.5L133.5 47.4Z",
2236
3129
  fill: "white"
2237
3130
  }
2238
3131
  ),
2239
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3132
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2240
3133
  "path",
2241
3134
  {
2242
3135
  d: "M92.1 15.7L92.5 15C90 11.6 84.1 9.2 78.1 9H76.9C70.9 9.2 65 11.6 62.5 15L62.9 15.7C61.8 15.7 61 16.4 61 17.3L63.3 27C63.5 27.6 63.7 27.9 64.5 27.9H90.5C91.2 27.9 91.5 27.5 91.6 27L93.9 17.3C93.9 16.4 93.1 15.7 92 15.7H92.1ZM69.3 18.8C69.1 18.8 68.8 18.7 68.6 18.7C67.6 18.7 66.9 19.4 66.9 20.3C66.9 21.2 67.6 21.8 68.5 21.8C69.4 21.8 69.3 21.7 69.5 21.4C69.5 22.2 68.6 24 67.4 24H64.9C63.2 24 63 21.7 63 21.5C63.2 21.7 63.7 21.8 64.1 21.8C64.9 21.8 65.6 21.2 65.6 20.3C65.6 19.4 64.9 18.7 63.9 18.7C62.9 18.7 63.5 18.7 63.4 18.7C63.8 18.4 64.2 17.9 64.2 17.3C64.2 16.7 63.9 16.4 63.5 16.1L65.8 15C67.3 12.5 70 10.7 73.3 10C71.5 11.3 70 12.9 68.8 15L69.6 15.7C68.8 15.8 68.2 16.5 68.2 17.3C68.2 18.1 68.6 18.5 69.2 18.8H69.3ZM76.8 18.9C76.6 18.8 76.2 18.7 76 18.7C75 18.7 74.3 19.4 74.3 20.3C74.3 21.2 75 21.8 75.9 21.8C76.8 21.8 76.7 21.7 77 21.5C77 22.3 76.4 24 75 24H72.5C70.9 24 70.5 22 70.5 21.4C70.7 21.6 71.1 21.8 71.6 21.8C72.4 21.8 73.2 21.2 73.2 20.3C73.2 19.4 72.5 18.7 71.5 18.7C70.5 18.7 70.9 18.7 70.8 18.8C71.4 18.5 71.8 18 71.8 17.3C71.8 16.6 71.4 16.1 70.8 15.9L72.6 15C73.1 13.2 74.7 10.6 76.4 9.7C76.2 10.6 76.1 12.5 76.1 15C76.1 15 76.6 15.5 77.1 15.8C76.4 16 75.9 16.6 75.9 17.3C75.9 18 76.3 18.5 76.9 18.8L76.8 18.9ZM82.5 24H80C78.6 24 78 22.3 78 21.5C78.2 21.7 78.6 21.8 79.1 21.8C80 21.8 80.7 21.2 80.7 20.3C80.7 19.4 80 18.7 79 18.7C78 18.7 78.4 18.7 78.2 18.9C78.8 18.7 79.3 18.1 79.3 17.4C79.3 16.7 78.8 16.1 78.1 15.9C78.6 15.6 79.1 15.1 79.1 15.1C79.1 12.6 79 10.7 78.7 9.8C80.5 10.7 82.1 13.2 82.6 15.1L84.4 16C83.9 16.2 83.4 16.8 83.4 17.4C83.4 18 83.8 18.6 84.4 18.9C84.2 18.9 83.9 18.8 83.7 18.8C82.7 18.8 82 19.5 82 20.4C82 21.3 82.7 21.9 83.6 21.9C84.5 21.9 84.4 21.8 84.7 21.5C84.7 22 84.3 24.1 82.7 24.1L82.5 24ZM90 24H87.5C86.2 24 85.4 22.3 85.4 21.4C85.6 21.7 86 21.8 86.5 21.8C87.3 21.8 88 21.2 88 20.3C88 19.4 87.3 18.7 86.3 18.7C85.3 18.7 85.7 18.7 85.6 18.8C86.2 18.5 86.6 18 86.6 17.3C86.6 16.6 86 15.8 85.1 15.7L86 15C84.8 12.9 83.3 11.4 81.5 10C84.7 10.7 87.5 12.4 89 15L91.4 16.1C91 16.4 90.7 16.8 90.7 17.4C90.7 18 91.1 18.6 91.6 18.9C91.5 18.9 91.2 18.8 91 18.8C90 18.8 89.3 19.5 89.3 20.4C89.3 21.3 90 21.9 90.8 21.9C91.6 21.9 91.7 21.8 91.9 21.6C91.9 21.8 91.6 24.1 90 24.1V24ZM77.5 9C76.1 9 75 7.9 75 6.5C75 5.1 75.9 4.3 77 4.1V3H76V2H77V1H78V2H79V3H78V4.1C79.1 4.3 80 5.3 80 6.6C80 7.9 78.9 9.1 77.5 9.1V9Z",
@@ -2246,923 +3139,430 @@ var Footer = ({ activatedLanguage = "sv" }) => {
2246
3139
  ]
2247
3140
  }
2248
3141
  ),
2249
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("nav", { className: "pts-footer-linkList", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("ul", { children: [
2250
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3142
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("nav", { className: "pts-footer-linkList", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("ul", { children: [
3143
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2251
3144
  "a",
2252
3145
  {
2253
3146
  href: activatedLanguage === "en" ? "https://pts.se/en/contact/" : "https://www.pts.se/kontakt/",
2254
3147
  target: "_blank",
2255
3148
  rel: "noopener noreferrer",
2256
3149
  children: [
2257
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Contact (opens in new tab)" : "PTS Kontakt (\xF6ppnas i ny flik)" }),
2258
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Contact" : "Kontakt" })
3150
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Contact (opens in new tab)" : "PTS Kontakt (\xF6ppnas i ny flik)" }),
3151
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Contact" : "Kontakt" })
2259
3152
  ]
2260
3153
  }
2261
3154
  ) }),
2262
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3155
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2263
3156
  "a",
2264
3157
  {
2265
3158
  href: activatedLanguage === "en" ? "https://pts.se/en/gdpr" : "https://www.pts.se/gdpr/",
2266
3159
  target: "_blank",
2267
3160
  rel: "noopener noreferrer",
2268
3161
  children: [
2269
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Processing of personal data (opens in new tab)" : "PTS Behandling av personuppgifter (\xF6ppnas i ny flik)" }),
2270
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Processing of personal data" : "Behandling av personuppgifter" })
3162
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Processing of personal data (opens in new tab)" : "PTS Behandling av personuppgifter (\xF6ppnas i ny flik)" }),
3163
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Processing of personal data" : "Behandling av personuppgifter" })
2271
3164
  ]
2272
3165
  }
2273
3166
  ) }),
2274
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3167
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2275
3168
  "a",
2276
3169
  {
2277
3170
  href: activatedLanguage === "en" ? "https://pts.se/en/accessibility-eservices" : "https://www.pts.se/tillganglighet-etjanster",
2278
3171
  target: "_blank",
2279
3172
  rel: "noopener noreferrer",
2280
3173
  children: [
2281
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Accessibility (opens in new tab)" : "PTS Tillg\xE4nglighetsredog\xF6relse (\xF6ppnas i ny flik)" }),
2282
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Accessibility" : "Tillg\xE4nglighetsredog\xF6relse" })
3174
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Accessibility (opens in new tab)" : "PTS Tillg\xE4nglighetsredog\xF6relse (\xF6ppnas i ny flik)" }),
3175
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Accessibility" : "Tillg\xE4nglighetsredog\xF6relse" })
2283
3176
  ]
2284
3177
  }
2285
3178
  ) }),
2286
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3179
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2287
3180
  "a",
2288
3181
  {
2289
3182
  href: activatedLanguage === "en" ? "https://pts.se/en/cookies-eservices" : "https://www.pts.se/kakor-etjanster",
2290
3183
  target: "_blank",
2291
3184
  rel: "noopener noreferrer",
2292
- children: [
2293
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Cookies (opens in new tab)" : "PTS Kakor (\xF6ppnas i ny flik)" }),
2294
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Cookies" : "Kakor" })
2295
- ]
2296
- }
2297
- ) })
2298
- ] }) })
2299
- ] })
2300
- ] });
2301
- };
2302
- var FooterStandard_default = Footer;
2303
-
2304
- // src/components/layout/HeaderStandard/Icons.tsx
2305
- var import_jsx_runtime18 = require("react/jsx-runtime");
2306
- var LanguageIcon = () => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2307
- "path",
2308
- {
2309
- d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
2310
- fill: "#6E3282"
2311
- }
2312
- ) });
2313
- var Logo_sv = () => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { width: "168.8", height: "40", viewBox: "0 0 168.8 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
2314
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2315
- "path",
2316
- {
2317
- d: "M91.7779 18.6113C92.1668 18.8335 92.5001 19.1113 92.6668 19.4446C92.8335 19.7779 93.0001 20.2224 93.0001 20.7224C93.0001 21.2224 92.889 21.6113 92.6668 22.0002C92.4446 22.3891 92.1668 22.6668 91.7779 22.8335C91.389 23.0002 90.9446 23.1113 90.4446 23.1113H88.4446V26.1113H87.5001V18.3335H90.5001C91.0001 18.3335 91.4446 18.4446 91.8335 18.6113H91.7779ZM90.3335 22.2224C90.8335 22.2224 91.2779 22.1113 91.5557 21.8335C91.8335 21.5557 92.0001 21.1668 92.0001 20.7224C92.0001 20.2779 91.8335 19.8891 91.5557 19.6113C91.2779 19.3335 90.8335 19.2224 90.3335 19.2224H88.389V22.2224H90.3335Z",
2318
- fill: "#141414"
2319
- }
2320
- ),
2321
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2322
- "path",
2323
- {
2324
- d: "M93.7779 24.778C93.5557 24.3336 93.4446 23.8336 93.4446 23.278C93.4446 22.7225 93.5557 22.2225 93.7779 21.778C94.0001 21.3336 94.3335 21.0003 94.7779 20.778C95.2224 20.5558 95.6668 20.3892 96.2224 20.3892C96.7779 20.3892 97.2779 20.5003 97.6668 20.778C98.1113 21.0003 98.4446 21.3892 98.6668 21.778C98.889 22.2225 99.0001 22.7225 99.0001 23.278C99.0001 23.8336 98.889 24.3336 98.6668 24.778C98.4446 25.2225 98.1113 25.5558 97.6668 25.778C97.2224 26.0003 96.7779 26.1669 96.2224 26.1669C95.6668 26.1669 95.1668 26.0558 94.7779 25.778C94.389 25.5003 94.0001 25.1669 93.7779 24.778ZM97.8335 24.3336C98.0001 24.0003 98.0557 23.6669 98.0557 23.278C98.0557 22.8892 98.0001 22.5003 97.8335 22.2225C97.6668 21.8892 97.4446 21.6669 97.1668 21.5003C96.889 21.3336 96.5557 21.2225 96.1668 21.2225C95.7779 21.2225 95.4446 21.3336 95.1668 21.5003C94.889 21.6669 94.6668 21.9447 94.5001 22.2225C94.3335 22.5558 94.2779 22.8892 94.2779 23.278C94.2779 23.6669 94.3335 24.0558 94.5001 24.3336C94.6668 24.6669 94.889 24.8892 95.1668 25.0558C95.4446 25.2225 95.7779 25.3336 96.1668 25.3336C96.5557 25.3336 96.889 25.2225 97.1668 25.0558C97.4446 24.8892 97.6668 24.6114 97.8335 24.3336Z",
2325
- fill: "#141414"
2326
- }
2327
- ),
2328
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2329
- "path",
2330
- {
2331
- d: "M101.222 25.0557C101.5 25.2779 101.889 25.389 102.333 25.389C102.778 25.389 103.056 25.3335 103.333 25.1668C103.556 25.0001 103.722 24.7779 103.722 24.5557C103.722 24.3335 103.667 24.1668 103.556 24.0557C103.445 23.9446 103.278 23.8335 103.111 23.8335C102.945 23.8335 102.667 23.7224 102.278 23.7224C101.778 23.6668 101.389 23.6112 101.056 23.5001C100.722 23.389 100.5 23.2224 100.278 23.0557C100.056 22.889 100 22.5557 100 22.1668C100 21.7779 100.111 21.5557 100.278 21.2779C100.445 21.0001 100.722 20.8335 101.056 20.6668C101.389 20.5001 101.722 20.4446 102.167 20.4446C102.833 20.4446 103.389 20.6112 103.778 20.889C104.222 21.2224 104.445 21.6668 104.445 22.2224H103.556C103.556 21.9446 103.389 21.6668 103.111 21.5001C102.833 21.3335 102.556 21.2224 102.167 21.2224C101.778 21.2224 101.445 21.2779 101.222 21.4446C101 21.6112 100.889 21.8335 100.889 22.0557C100.889 22.2779 100.889 22.389 101.056 22.5001C101.167 22.6112 101.333 22.6668 101.5 22.7224C101.667 22.7779 101.945 22.7779 102.278 22.8335C102.778 22.889 103.167 23.0001 103.5 23.0557C103.833 23.1112 104.056 23.3335 104.278 23.5557C104.5 23.7779 104.556 24.1112 104.556 24.5001C104.556 24.889 104.445 25.1668 104.278 25.389C104.056 25.6668 103.833 25.8335 103.445 26.0001C103.111 26.1668 102.722 26.2224 102.333 26.2224C101.611 26.2224 101 26.0557 100.556 25.7224C100.111 25.389 99.889 24.889 99.889 24.2779H100.778C100.778 24.6112 100.945 24.889 101.222 25.1112V25.0557Z",
2332
- fill: "#141414"
2333
- }
2334
- ),
2335
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2336
- "path",
2337
- {
2338
- d: "M104.945 21.2779V20.4446H105.945V18.8335H106.833V20.4446H108.278V21.2779H106.833V24.6113C106.833 24.8335 106.833 25.0002 106.945 25.1113C107.056 25.2224 107.222 25.2779 107.445 25.2779H108.445V26.1113H107.389C106.833 26.1113 106.5 26.0002 106.222 25.7779C106 25.5557 105.889 25.1668 105.889 24.6668V21.3335H104.889L104.945 21.2779Z",
2339
- fill: "#141414"
2340
- }
2341
- ),
2342
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M108.778 22.5557H112.5V23.3334H108.778V22.5557Z", fill: "#141414" }),
2343
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2344
- "path",
2345
- {
2346
- d: "M116.778 24.778C116.556 24.3336 116.445 23.8336 116.445 23.278C116.445 22.7225 116.556 22.2225 116.778 21.778C117 21.3336 117.333 21.0003 117.778 20.778C118.222 20.5558 118.667 20.3892 119.222 20.3892C119.778 20.3892 120.278 20.5003 120.667 20.778C121.111 21.0003 121.445 21.3892 121.667 21.778C121.889 22.2225 122 22.7225 122 23.278C122 23.8336 121.889 24.3336 121.667 24.778C121.445 25.2225 121.111 25.5558 120.667 25.778C120.222 26.0003 119.778 26.1669 119.222 26.1669C118.667 26.1669 118.167 26.0558 117.778 25.778C117.389 25.5003 117 25.1669 116.778 24.778ZM120.833 24.3336C121 24.0003 121.056 23.6669 121.056 23.278C121.056 22.8892 121 22.5003 120.833 22.2225C120.667 21.8892 120.445 21.6669 120.167 21.5003C119.889 21.3336 119.556 21.2225 119.167 21.2225C118.778 21.2225 118.445 21.3336 118.167 21.5003C117.889 21.6669 117.667 21.9447 117.5 22.2225C117.333 22.5558 117.278 22.8892 117.278 23.278C117.278 23.6669 117.333 24.0558 117.5 24.3336C117.667 24.6669 117.889 24.8892 118.167 25.0558C118.445 25.2225 118.778 25.3336 119.167 25.3336C119.556 25.3336 119.889 25.2225 120.167 25.0558C120.445 24.8892 120.667 24.6114 120.833 24.3336Z",
2347
- fill: "#141414"
2348
- }
2349
- ),
2350
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2351
- "path",
2352
- {
2353
- d: "M125.611 26.1668C125.056 26.1668 124.556 26.0557 124.167 25.7779C123.778 25.5557 123.445 25.1668 123.222 24.7224C123 24.2779 122.889 23.7779 122.889 23.2224C122.889 22.6668 123 22.1668 123.222 21.7224C123.445 21.2779 123.778 20.9446 124.222 20.7224C124.667 20.5002 125.111 20.3335 125.667 20.3335C126.222 20.3335 126.889 20.5002 127.333 20.8891C127.778 21.2224 128.056 21.7224 128.167 22.3335H127.222C127.111 21.9446 126.945 21.6668 126.667 21.4446C126.389 21.2224 126.056 21.1113 125.667 21.1113C125.278 21.1113 124.667 21.2779 124.333 21.6668C124 22.0557 123.833 22.5557 123.833 23.1668C123.833 23.7779 124 24.2779 124.333 24.6668C124.667 25.0557 125.111 25.2779 125.667 25.2779C126.222 25.2779 126.445 25.1668 126.722 24.9446C127 24.7224 127.167 24.4446 127.278 24.0557H128.167C128.056 24.6668 127.778 25.1668 127.333 25.5557C126.889 25.8891 126.333 26.1113 125.667 26.1113L125.611 26.1668Z",
2354
- fill: "#141414"
2355
- }
2356
- ),
2357
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2358
- "path",
2359
- {
2360
- d: "M134.278 22.9446V26.1113H133.389V23.0002C133.389 22.3891 133.278 21.9446 133 21.6668C132.722 21.3335 132.333 21.2224 131.833 21.2224C131.333 21.2224 130.889 21.3891 130.611 21.7779C130.278 22.1668 130.167 22.6668 130.167 23.2779V26.1113H129.278V18.3335H130.167V21.3891C130.333 21.1113 130.611 20.8335 130.889 20.6668C131.222 20.5002 131.556 20.3891 132 20.3891C132.667 20.3891 133.222 20.6113 133.667 21.0002C134.111 21.3891 134.278 22.0557 134.278 22.9446Z",
2361
- fill: "#141414"
2362
- }
2363
- ),
2364
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2365
- "path",
2366
- {
2367
- d: "M86.6668 32.389V31.5557H87.6668V29.9446H88.5556V31.5557H90.0001V32.389H88.5556V35.7224C88.5556 35.9446 88.5557 36.1112 88.6668 36.2224C88.7779 36.3335 88.9445 36.389 89.1668 36.389H90.1668V37.2224H89.1112C88.5556 37.2224 88.2223 37.1112 87.9445 36.889C87.7223 36.6668 87.6112 36.2779 87.6112 35.7779V32.4446H86.6112L86.6668 32.389Z",
2368
- fill: "#141414"
2369
- }
2370
- ),
2371
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2372
- "path",
2373
- {
2374
- d: "M91.7779 31.8335C92.1668 31.6112 92.6668 31.4446 93.1668 31.4446C93.6668 31.4446 94.1668 31.5557 94.5557 31.7779C94.9446 32.0001 95.2779 32.2779 95.5001 32.7224C95.7223 33.1668 95.8334 33.6112 95.889 34.1668C95.889 34.2224 95.889 34.389 95.889 34.5557H91.5001C91.5001 35.1668 91.6668 35.6112 92.0001 35.9446C92.3334 36.2779 92.7779 36.4446 93.2779 36.4446C93.7779 36.4446 94.0557 36.3335 94.3334 36.1112C94.6112 35.889 94.8334 35.6112 94.889 35.2779H95.8334C95.7223 35.8335 95.4446 36.3335 95.0001 36.7224C94.5557 37.1112 94.0001 37.2779 93.389 37.2779C92.7779 37.2779 92.3334 37.1668 91.889 36.889C91.4445 36.6668 91.1112 36.3335 90.889 35.889C90.6668 35.4446 90.5557 34.9446 90.5557 34.389C90.5557 33.8335 90.6668 33.2779 90.889 32.889C91.1112 32.4446 91.4446 32.1112 91.8334 31.889L91.7779 31.8335ZM94.389 32.6668C94.0557 32.389 93.6668 32.2779 93.1668 32.2779C92.6668 32.2779 92.3334 32.4446 92.0557 32.7224C91.7779 33.0001 91.5557 33.389 91.5001 33.8335H94.9445C94.9445 33.3335 94.7223 33.0001 94.389 32.7224V32.6668Z",
2375
- fill: "#141414"
2376
- }
2377
- ),
2378
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M97.8335 29.4446V37.2224H96.9446V29.4446H97.8335Z", fill: "#141414" }),
2379
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2380
- "path",
2381
- {
2382
- d: "M100.167 31.8335C100.556 31.6112 101.056 31.4446 101.556 31.4446C102.056 31.4446 102.556 31.5557 102.945 31.7779C103.333 32.0001 103.667 32.2779 103.889 32.7224C104.111 33.1668 104.222 33.6112 104.278 34.1668C104.278 34.2224 104.278 34.389 104.278 34.5557H99.889C99.889 35.1668 100.056 35.6112 100.389 35.9446C100.722 36.2779 101.167 36.4446 101.667 36.4446C102.167 36.4446 102.445 36.3335 102.722 36.1112C103 35.889 103.222 35.6112 103.278 35.2779H104.222C104.111 35.8335 103.833 36.3335 103.389 36.7224C102.945 37.1112 102.389 37.2779 101.778 37.2779C101.167 37.2779 100.722 37.1668 100.278 36.889C99.8335 36.6668 99.5001 36.3335 99.2779 35.889C99.0557 35.4446 98.9446 34.9446 98.9446 34.389C98.9446 33.8335 99.0557 33.2779 99.2779 32.889C99.5001 32.4446 99.8335 32.1112 100.222 31.889L100.167 31.8335ZM102.778 32.6668C102.445 32.389 102.056 32.2779 101.556 32.2779C101.056 32.2779 100.722 32.4446 100.445 32.7224C100.167 33.0001 99.9446 33.389 99.889 33.8335H103.333C103.333 33.3335 103.111 33.0001 102.778 32.7224V32.6668Z",
2383
- fill: "#141414"
2384
- }
2385
- ),
2386
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2387
- "path",
2388
- {
2389
- d: "M106.445 36.1668C106.722 36.389 107.111 36.5001 107.556 36.5001C108 36.5001 108.278 36.4446 108.556 36.2779C108.778 36.1112 108.945 35.889 108.945 35.6668C108.945 35.4446 108.889 35.2779 108.778 35.1668C108.667 35.0557 108.5 34.9446 108.333 34.9446C108.167 34.9446 107.889 34.8334 107.5 34.8334C107 34.7779 106.611 34.7223 106.278 34.6112C105.945 34.5001 105.722 34.3334 105.5 34.1668C105.278 34.0001 105.222 33.6668 105.222 33.2779C105.222 32.889 105.333 32.6668 105.5 32.389C105.667 32.1112 105.945 31.9446 106.278 31.7779C106.611 31.6112 106.945 31.5557 107.389 31.5557C108.056 31.5557 108.611 31.7223 109 32.0001C109.445 32.3334 109.667 32.7779 109.667 33.3334H108.778C108.778 33.0557 108.611 32.7779 108.333 32.6112C108.056 32.4446 107.778 32.3334 107.389 32.3334C107 32.3334 106.667 32.389 106.445 32.5557C106.222 32.7223 106.111 32.9446 106.111 33.1668C106.111 33.389 106.111 33.5001 106.278 33.6112C106.389 33.7223 106.556 33.7779 106.722 33.8334C106.889 33.889 107.167 33.889 107.5 33.9446C108 34.0001 108.389 34.1112 108.722 34.1668C109.056 34.2223 109.278 34.4446 109.5 34.6668C109.722 34.889 109.778 35.2223 109.778 35.6112C109.778 36.0001 109.667 36.2779 109.5 36.5001C109.278 36.7779 109.056 36.9446 108.667 37.1112C108.333 37.2779 107.945 37.3334 107.556 37.3334C106.833 37.3334 106.222 37.1668 105.778 36.8334C105.333 36.5001 105.111 36.0001 105.111 35.389H106C106 35.7223 106.167 36.0001 106.445 36.2223V36.1668Z",
2390
- fill: "#141414"
2391
- }
2392
- ),
2393
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2394
- "path",
2395
- {
2396
- d: "M110.167 32.389V31.5557H111.167V29.9446H112.056V31.5557H113.5V32.389H112.056V35.7224C112.056 35.9446 112.056 36.1112 112.167 36.2224C112.278 36.3335 112.445 36.389 112.667 36.389H113.667V37.2224H112.611C112.056 37.2224 111.722 37.1112 111.445 36.889C111.222 36.6668 111.111 36.2779 111.111 35.7779V32.4446H110.111L110.167 32.389Z",
2397
- fill: "#141414"
2398
- }
2399
- ),
2400
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2401
- "path",
2402
- {
2403
- d: "M116.5 36.1668L118.167 31.5557H119.111L116.5 38.1668C116.389 38.5001 116.222 38.7779 116.167 38.9446C116.111 39.1112 115.944 39.2223 115.778 39.3334C115.611 39.389 115.389 39.4446 115.167 39.4446H114.056V38.6112H114.889C115.056 38.6112 115.222 38.6112 115.278 38.5557C115.333 38.5001 115.444 38.4446 115.5 38.389C115.5 38.2779 115.611 38.1668 115.722 37.9446L116 37.2779L113.778 31.5557H114.722L116.445 36.1668H116.5Z",
2404
- fill: "#141414"
2405
- }
2406
- ),
2407
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2408
- "path",
2409
- {
2410
- d: "M122.722 32.4446H122.278C121.722 32.4446 121.333 32.6112 121.111 33.0001C120.889 33.389 120.778 33.8334 120.778 34.3334V37.2223H119.889V31.5557H120.667L120.778 32.389C120.945 32.1112 121.167 31.9446 121.389 31.7779C121.611 31.6112 122 31.5557 122.445 31.5557H122.722V32.4446Z",
2411
- fill: "#141414"
2412
- }
2413
- ),
2414
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2415
- "path",
2416
- {
2417
- d: "M124.333 31.8335C124.722 31.6112 125.222 31.4446 125.722 31.4446C126.222 31.4446 126.722 31.5557 127.111 31.7779C127.5 32.0001 127.833 32.2779 128.056 32.7224C128.278 33.1668 128.389 33.6112 128.445 34.1668C128.445 34.2224 128.445 34.389 128.445 34.5557H124.056C124.056 35.1668 124.222 35.6112 124.556 35.9446C124.889 36.2779 125.333 36.4446 125.833 36.4446C126.333 36.4446 126.611 36.3335 126.889 36.1112C127.167 35.889 127.389 35.6112 127.445 35.2779H128.389C128.278 35.8335 128 36.3335 127.556 36.7224C127.111 37.1112 126.556 37.2779 125.945 37.2779C125.333 37.2779 124.889 37.1668 124.445 36.889C124 36.6668 123.667 36.3335 123.445 35.889C123.222 35.4446 123.111 34.9446 123.111 34.389C123.111 33.8335 123.222 33.2779 123.445 32.889C123.667 32.4446 124 32.1112 124.389 31.889L124.333 31.8335ZM126.945 32.6668C126.611 32.389 126.222 32.2779 125.722 32.2779C125.222 32.2779 124.889 32.4446 124.611 32.7224C124.333 33.0001 124.111 33.389 124.056 33.8335H127.5C127.5 33.3335 127.278 33.0001 126.945 32.7224V32.6668Z",
2418
- fill: "#141414"
2419
- }
2420
- ),
2421
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M130.333 29.4446V37.2224H129.445V29.4446H130.333Z", fill: "#141414" }),
2422
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2423
- "path",
2424
- {
2425
- d: "M132.778 36.1668C133.056 36.389 133.445 36.5001 133.889 36.5001C134.333 36.5001 134.611 36.4446 134.889 36.2779C135.111 36.1112 135.278 35.889 135.278 35.6668C135.278 35.4446 135.222 35.2779 135.111 35.1668C135 35.0557 134.833 34.9446 134.667 34.9446C134.5 34.9446 134.222 34.8334 133.833 34.8334C133.333 34.7779 132.945 34.7223 132.611 34.6112C132.278 34.5001 132.056 34.3334 131.833 34.1668C131.611 34.0001 131.556 33.6668 131.556 33.2779C131.556 32.889 131.667 32.6668 131.833 32.389C132 32.1112 132.278 31.9446 132.611 31.7779C132.945 31.6112 133.278 31.5557 133.722 31.5557C134.389 31.5557 134.945 31.7223 135.333 32.0001C135.778 32.3334 136 32.7779 136 33.3334H135.111C135.111 33.0557 134.945 32.7779 134.667 32.6112C134.389 32.4446 134.111 32.3334 133.722 32.3334C133.333 32.3334 133 32.389 132.778 32.5557C132.556 32.7223 132.445 32.9446 132.445 33.1668C132.445 33.389 132.445 33.5001 132.611 33.6112C132.722 33.7223 132.889 33.7779 133.056 33.8334C133.222 33.889 133.5 33.889 133.833 33.9446C134.333 34.0001 134.722 34.1112 135.056 34.1668C135.389 34.2223 135.611 34.4446 135.833 34.6668C136.056 34.889 136.111 35.2223 136.111 35.6112C136.111 36.0001 136 36.2779 135.833 36.5001C135.611 36.7779 135.389 36.9446 135 37.1112C134.667 37.2779 134.278 37.3334 133.889 37.3334C133.167 37.3334 132.556 37.1668 132.111 36.8334C131.667 36.5001 131.445 36.0001 131.445 35.389H132.333C132.333 35.7223 132.5 36.0001 132.778 36.2223V36.1668Z",
2426
- fill: "#141414"
2427
- }
2428
- ),
2429
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2430
- "path",
2431
- {
2432
- d: "M138.222 31.8335C138.611 31.6112 139.111 31.4446 139.611 31.4446C140.111 31.4446 140.611 31.5557 141 31.7779C141.389 32.0001 141.722 32.2779 141.945 32.7224C142.167 33.1668 142.278 33.6112 142.333 34.1668C142.333 34.2224 142.333 34.389 142.333 34.5557H137.945C137.945 35.1668 138.111 35.6112 138.445 35.9446C138.778 36.2779 139.222 36.4446 139.722 36.4446C140.222 36.4446 140.5 36.3335 140.778 36.1112C141.056 35.889 141.278 35.6112 141.333 35.2779H142.278C142.167 35.8335 141.889 36.3335 141.445 36.7224C141 37.1112 140.445 37.2779 139.833 37.2779C139.222 37.2779 138.778 37.1668 138.333 36.889C137.889 36.6668 137.556 36.3335 137.333 35.889C137.111 35.4446 137 34.9446 137 34.389C137 33.8335 137.111 33.2779 137.333 32.889C137.556 32.4446 137.889 32.1112 138.278 31.889L138.222 31.8335ZM140.833 32.6668C140.5 32.389 140.111 32.2779 139.611 32.2779C139.111 32.2779 138.778 32.4446 138.5 32.7224C138.222 33.0001 138 33.389 137.945 33.8335H141.389C141.389 33.3335 141.167 33.0001 140.833 32.7224V32.6668Z",
2433
- fill: "#141414"
2434
- }
2435
- ),
2436
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2437
- "path",
2438
- {
2439
- d: "M148.445 34.0558V37.2225H147.556V34.1114C147.556 33.5002 147.445 33.0558 147.167 32.778C146.889 32.4447 146.5 32.3336 146 32.3336C145.5 32.3336 145.056 32.5002 144.722 32.8891C144.445 33.278 144.278 33.778 144.278 34.3891V37.2225H143.389V31.5558H144.167L144.278 32.3336C144.722 31.778 145.333 31.5002 146.167 31.5002C147 31.5002 147.389 31.7225 147.833 32.1114C148.278 32.5002 148.445 33.1669 148.445 34.0558Z",
2440
- fill: "#141414"
2441
- }
2442
- ),
2443
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2444
- "path",
2445
- {
2446
- d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
2447
- fill: "#141414"
2448
- }
2449
- ),
2450
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2451
- "path",
2452
- {
2453
- d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
2454
- fill: "#F0AA1E"
2455
- }
2456
- ),
2457
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" })
2458
- ] });
2459
- var Logo_en = () => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { width: "189.0", height: "40", viewBox: "0 0 189 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
2460
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2461
- "path",
2462
- {
2463
- d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
2464
- fill: "#141414"
2465
- }
2466
- ),
2467
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2468
- "path",
2469
- {
2470
- d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
2471
- fill: "#F0AA1E"
2472
- }
2473
- ),
2474
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" }),
2475
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2476
- "path",
2477
- {
2478
- d: "M88.9445 24.8335C89.3334 25.1669 89.8334 25.3335 90.3889 25.3335C90.9445 25.3335 91.3334 25.2224 91.6667 25.0002C92 24.778 92.1667 24.4446 92.1667 24.0002C92.1667 23.5557 92.0556 23.4446 91.8889 23.278C91.7222 23.1113 91.5 22.9446 91.1667 22.8891C90.8334 22.8335 90.5 22.7224 90 22.6113C89.2222 22.5002 88.6111 22.278 88.1667 21.9446C87.7222 21.6669 87.5 21.1669 87.5 20.4446C87.5 19.7224 87.6111 19.6113 87.8334 19.278C88.0556 18.9446 88.3889 18.6669 88.7778 18.5002C89.1667 18.3335 89.6667 18.2224 90.1667 18.2224C90.6667 18.2224 91.2222 18.3335 91.6111 18.5002C92.0556 18.7224 92.3889 19.0002 92.6111 19.3335C92.8334 19.6669 93 20.1113 93 20.5557H92.0556C92 20.1113 91.7778 19.7224 91.4445 19.4446C91.1111 19.1669 90.6667 19.0557 90.1667 19.0557C89.6667 19.0557 89.2223 19.1669 88.9445 19.3891C88.6667 19.6113 88.5 19.9446 88.5 20.3335C88.5 20.7224 88.6111 20.8891 88.7778 21.0557C88.9445 21.2224 89.1667 21.3335 89.4445 21.4446C89.7222 21.5557 90.1111 21.6113 90.6111 21.7224C91.3889 21.8335 92 22.0557 92.5 22.3891C92.9445 22.7224 93.2223 23.1669 93.2223 23.8891C93.2223 24.6113 93.1111 24.7224 92.8889 25.0557C92.6667 25.3891 92.3334 25.6669 91.8889 25.8891C91.4445 26.0557 91 26.1669 90.4445 26.1669C89.8889 26.1669 89.3334 26.0557 88.8334 25.8335C88.3889 25.6113 88.0556 25.3335 87.7778 24.8891C87.5556 24.5002 87.3889 24.0557 87.3889 23.5002H88.3334C88.3334 24.0002 88.5556 24.4446 88.9445 24.778V24.8335Z",
2479
- fill: "#141414"
2480
- }
2481
- ),
2482
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2483
- "path",
2484
- {
2485
- d: "M94.5557 20.4446L95.9446 25.0557L97.4446 20.4446H98.2779L99.6668 25.0557L101.167 20.4446H102.111L100.222 26.1112H99.2223L97.8334 21.889L96.389 26.1112H95.389L93.5557 20.4446H94.5001H94.5557Z",
2486
- fill: "#141414"
2487
- }
2488
- ),
2489
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2490
- "path",
2491
- {
2492
- d: "M103.778 20.7224C104.167 20.5002 104.667 20.3335 105.167 20.3335C105.667 20.3335 106.167 20.4446 106.556 20.6668C106.945 20.8891 107.278 21.1668 107.5 21.6113C107.722 22.0002 107.833 22.5002 107.889 23.0557C107.889 23.1113 107.889 23.2779 107.889 23.4446H103.5C103.5 24.0557 103.667 24.5002 104 24.8335C104.333 25.1668 104.778 25.3335 105.278 25.3335C105.778 25.3335 106.056 25.2224 106.333 25.0002C106.611 24.7779 106.833 24.5002 106.889 24.1668H107.833C107.722 24.7224 107.445 25.2224 107 25.6113C106.556 26.0002 106 26.1668 105.389 26.1668C104.778 26.1668 104.333 26.0557 103.889 25.7779C103.445 25.5557 103.111 25.2224 102.889 24.7779C102.667 24.3335 102.556 23.8335 102.556 23.2779C102.556 22.7224 102.667 22.1668 102.889 21.7779C103.111 21.3335 103.445 21.0002 103.833 20.7779L103.778 20.7224ZM106.389 21.5557C106.056 21.2779 105.667 21.1668 105.167 21.1668C104.667 21.1668 104.333 21.3335 104.056 21.6113C103.778 21.8891 103.556 22.2779 103.5 22.7224H106.945C106.945 22.2224 106.722 21.8891 106.389 21.6113V21.5557Z",
2493
- fill: "#141414"
2494
- }
2495
- ),
2496
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2497
- "path",
2498
- {
2499
- d: "M114.278 26.1114H113.5L113.389 25.2225C112.889 25.8892 112.278 26.2225 111.445 26.2225C110.611 26.2225 110.445 26.1114 110.056 25.8892C109.667 25.6669 109.333 25.3336 109.111 24.8892C108.889 24.4447 108.778 23.9447 108.778 23.3336C108.778 22.7225 108.889 22.2781 109.111 21.8336C109.333 21.3892 109.667 21.0558 110.111 20.8336C110.556 20.6114 111 20.4447 111.5 20.4447C112 20.4447 112.333 20.5003 112.667 20.7225C113 20.8892 113.222 21.1114 113.444 21.3892V18.3892H114.333V26.1669L114.278 26.1114ZM113.111 24.3892C113.278 24.0558 113.333 23.7225 113.333 23.3336C113.333 22.9447 113.278 22.5558 113.111 22.2225C112.945 21.8892 112.722 21.6669 112.444 21.4447C112.167 21.278 111.833 21.1669 111.445 21.1669C110.889 21.1669 110.445 21.3892 110.056 21.7781C109.667 22.1669 109.556 22.6669 109.556 23.2781C109.556 23.8892 109.722 24.3892 110.056 24.778C110.389 25.1669 110.833 25.3892 111.445 25.3892C112.056 25.3892 112.111 25.2781 112.444 25.1114C112.722 24.9447 112.945 24.6669 113.111 24.3892Z",
2500
- fill: "#141414"
2501
- }
2502
- ),
2503
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2504
- "path",
2505
- {
2506
- d: "M116.556 18.8335C116.556 19.0002 116.5 19.1669 116.389 19.278C116.278 19.3891 116.111 19.4446 115.944 19.4446C115.778 19.4446 115.611 19.3891 115.5 19.278C115.389 19.1669 115.333 19.0002 115.333 18.8335C115.333 18.6669 115.389 18.5002 115.5 18.3891C115.611 18.278 115.778 18.2224 115.944 18.2224C116.111 18.2224 116.278 18.278 116.389 18.3891C116.5 18.5002 116.556 18.6669 116.556 18.8335ZM116.444 20.4446V26.1113H115.556V20.4446H116.444Z",
2507
- fill: "#141414"
2508
- }
2509
- ),
2510
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2511
- "path",
2512
- {
2513
- d: "M118.833 25.0557C119.111 25.2779 119.5 25.389 119.945 25.389C120.389 25.389 120.667 25.3335 120.945 25.1668C121.167 25.0001 121.333 24.7779 121.333 24.5557C121.333 24.3335 121.278 24.1668 121.167 24.0557C121.056 23.9446 120.889 23.8335 120.722 23.8335C120.556 23.8335 120.278 23.7224 119.889 23.7224C119.389 23.6668 119 23.6112 118.667 23.5001C118.333 23.389 118.111 23.2224 117.889 23.0557C117.722 22.8335 117.611 22.5557 117.611 22.1668C117.611 21.7779 117.722 21.5557 117.889 21.2779C118.056 21.0001 118.333 20.8335 118.667 20.6668C119 20.5001 119.333 20.4446 119.778 20.4446C120.445 20.4446 121 20.6112 121.389 20.889C121.833 21.2224 122.056 21.6668 122.056 22.2224H121.167C121.167 21.9446 121 21.6668 120.722 21.5001C120.445 21.3335 120.167 21.2224 119.778 21.2224C119.389 21.2224 119.056 21.2779 118.833 21.4446C118.611 21.6112 118.5 21.8335 118.5 22.0557C118.5 22.2779 118.5 22.389 118.667 22.5001C118.778 22.6112 118.945 22.6668 119.111 22.7224C119.278 22.7224 119.556 22.7779 119.889 22.8335C120.389 22.889 120.778 23.0001 121.111 23.0557C121.445 23.1668 121.667 23.3335 121.889 23.5557C122.111 23.7779 122.167 24.1112 122.167 24.5001C122.167 24.889 122.056 25.1668 121.889 25.389C121.667 25.6668 121.445 25.8335 121.056 26.0001C120.722 26.1668 120.333 26.2224 119.945 26.2224C119.222 26.2224 118.611 26.0557 118.167 25.7224C117.722 25.389 117.5 24.889 117.5 24.2779H118.389C118.389 24.6112 118.556 24.889 118.833 25.1112V25.0557Z",
2514
- fill: "#141414"
2515
- }
2516
- ),
2517
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2518
- "path",
2519
- {
2520
- d: "M128.278 22.9446V26.1113H127.389V23.0002C127.389 22.3891 127.278 21.9446 127 21.6668C126.722 21.3335 126.333 21.2224 125.833 21.2224C125.333 21.2224 124.889 21.3891 124.611 21.7779C124.278 22.1668 124.167 22.6668 124.167 23.2779V26.1113H123.278V18.3335H124.167V21.3891C124.333 21.1113 124.611 20.8335 124.889 20.6668C125.222 20.5002 125.556 20.3891 126 20.3891C126.667 20.3891 127.222 20.6113 127.667 21.0002C128.111 21.3891 128.278 22.0557 128.278 22.9446Z",
2521
- fill: "#141414"
2522
- }
2523
- ),
2524
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2525
- "path",
2526
- {
2527
- d: "M136.833 18.6113C137.222 18.8335 137.556 19.1113 137.722 19.4446C137.945 19.7779 138.056 20.2224 138.056 20.7224C138.056 21.2224 137.945 21.6113 137.722 22.0002C137.5 22.3891 137.222 22.6668 136.833 22.8335C136.445 23.0002 136 23.1113 135.5 23.1113H133.5V26.1113H132.556V18.3335H135.556C136.056 18.3335 136.5 18.4446 136.889 18.6113H136.833ZM135.389 22.2224C135.889 22.2224 136.333 22.1113 136.611 21.8335C136.889 21.5557 137.056 21.1668 137.056 20.7224C137.056 20.2779 136.889 19.8891 136.611 19.6113C136.333 19.3335 135.889 19.2224 135.389 19.2224H133.445V22.2224H135.389Z",
2528
- fill: "#141414"
2529
- }
2530
- ),
2531
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2532
- "path",
2533
- {
2534
- d: "M138.833 24.778C138.611 24.3336 138.5 23.8336 138.5 23.278C138.5 22.7225 138.611 22.2225 138.833 21.778C139.056 21.3336 139.389 21.0003 139.833 20.778C140.278 20.5558 140.722 20.3892 141.278 20.3892C141.833 20.3892 142.333 20.5003 142.722 20.778C143.167 21.0003 143.5 21.3892 143.722 21.778C143.945 22.2225 144.056 22.7225 144.056 23.278C144.056 23.8336 143.945 24.3336 143.722 24.778C143.5 25.2225 143.167 25.5558 142.722 25.778C142.278 26.0003 141.833 26.1669 141.278 26.1669C140.722 26.1669 140.222 26.0558 139.833 25.778C139.445 25.5003 139.056 25.1669 138.833 24.778ZM142.945 24.3336C143.111 24.0003 143.167 23.6669 143.167 23.278C143.167 22.8892 143.111 22.5003 142.945 22.2225C142.778 21.8892 142.556 21.6669 142.278 21.5003C142 21.3336 141.667 21.2225 141.278 21.2225C140.889 21.2225 140.556 21.3336 140.278 21.5003C140 21.6669 139.778 21.9447 139.611 22.2225C139.445 22.5003 139.389 22.8892 139.389 23.278C139.389 23.6669 139.445 24.0558 139.611 24.3336C139.778 24.6669 140 24.8892 140.278 25.0558C140.556 25.2225 140.889 25.3336 141.278 25.3336C141.667 25.3336 142 25.2225 142.278 25.0558C142.556 24.8892 142.778 24.6114 142.945 24.3336Z",
2535
- fill: "#141414"
2536
- }
2537
- ),
2538
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2539
- "path",
2540
- {
2541
- d: "M146.278 25.0557C146.556 25.2779 146.945 25.389 147.389 25.389C147.833 25.389 148.111 25.3335 148.389 25.1668C148.611 25.0001 148.778 24.7779 148.778 24.5557C148.778 24.3335 148.722 24.1668 148.611 24.0557C148.5 23.9446 148.333 23.8335 148.167 23.8335C148 23.8335 147.722 23.7224 147.333 23.7224C146.833 23.6668 146.445 23.6112 146.111 23.5001C145.778 23.389 145.556 23.2224 145.333 23.0557C145.167 22.8335 145.056 22.5557 145.056 22.1668C145.056 21.7779 145.167 21.5557 145.333 21.2779C145.5 21.0001 145.778 20.8335 146.111 20.6668C146.445 20.5001 146.778 20.4446 147.222 20.4446C147.889 20.4446 148.445 20.6112 148.833 20.889C149.278 21.2224 149.5 21.6668 149.5 22.2224H148.611C148.611 21.9446 148.445 21.6668 148.167 21.5001C147.889 21.3335 147.611 21.2224 147.222 21.2224C146.833 21.2224 146.5 21.2779 146.278 21.4446C146.056 21.6112 145.945 21.8335 145.945 22.0557C145.945 22.2779 145.945 22.389 146.111 22.5001C146.222 22.6112 146.389 22.6668 146.556 22.7224C146.722 22.7224 147 22.7779 147.333 22.8335C147.833 22.889 148.222 23.0001 148.556 23.0557C148.889 23.1668 149.111 23.3335 149.333 23.5557C149.556 23.7779 149.611 24.1112 149.611 24.5001C149.611 24.889 149.5 25.1668 149.333 25.389C149.111 25.6668 148.889 25.8335 148.5 26.0001C148.167 26.1668 147.778 26.2224 147.389 26.2224C146.667 26.2224 146.056 26.0557 145.611 25.7224C145.167 25.389 144.945 24.889 144.945 24.2779H145.833C145.833 24.6112 146 24.889 146.278 25.1112V25.0557Z",
2542
- fill: "#141414"
2543
- }
2544
- ),
2545
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2546
- "path",
2547
- {
2548
- d: "M150 21.2779V20.4446H151V18.8335H151.889V20.4446H153.333V21.2779H151.889V24.6113C151.889 24.8335 151.889 25.0002 152 25.1113C152.111 25.2224 152.278 25.2779 152.5 25.2779H153.5V26.1113H152.445C151.889 26.1113 151.556 26.0002 151.278 25.7779C151.056 25.5557 150.945 25.1668 150.945 24.6668V21.3335H149.945L150 21.2779Z",
2549
- fill: "#141414"
2550
- }
2551
- ),
2552
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3185
+ children: [
3186
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Cookies (opens in new tab)" : "PTS Kakor (\xF6ppnas i ny flik)" }),
3187
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Cookies" : "Kakor" })
3188
+ ]
3189
+ }
3190
+ ) })
3191
+ ] }) })
3192
+ ] })
3193
+ ] });
3194
+ };
3195
+ var FooterStandard_default = Footer;
3196
+
3197
+ // src/components/layout/HeaderStandard/Icons.tsx
3198
+ var import_jsx_runtime26 = require("react/jsx-runtime");
3199
+ var LanguageIcon2 = () => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3200
+ "path",
3201
+ {
3202
+ d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
3203
+ fill: "#6E3282"
3204
+ }
3205
+ ) });
3206
+ var Logo_sv2 = () => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { width: "168.8", height: "40", viewBox: "0 0 168.8 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3207
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2553
3208
  "path",
2554
3209
  {
2555
- d: "M162.445 26.1113H161.945C161.556 26.1113 161.333 26.0557 161.167 25.8891C161 25.7224 160.945 25.5002 160.945 25.2224C160.5 25.8335 159.889 26.1668 159.056 26.1668C158.222 26.1668 157.945 26.0002 157.556 25.7224C157.167 25.4446 157 25.0002 157 24.5002C157 24.0002 157.167 23.5002 157.556 23.1668C157.945 22.8335 158.5 22.7224 159.278 22.7224H160.945V22.3335C160.945 21.9446 160.833 21.6668 160.556 21.4446C160.333 21.2224 159.945 21.1113 159.5 21.1113C159.056 21.1113 158.778 21.2224 158.5 21.3891C158.222 21.5557 158.111 21.7779 158 22.0557H157.111C157.167 21.5002 157.445 21.0557 157.833 20.7779C158.222 20.5002 158.833 20.3335 159.5 20.3335C160.167 20.3335 160.778 20.5002 161.167 20.8891C161.556 21.2224 161.778 21.7224 161.778 22.3891V24.8335C161.778 25.1113 161.889 25.2224 162.167 25.2224H162.445V26.0557V26.1113ZM159.111 23.5002C158.278 23.5002 157.833 23.8335 157.833 24.4446C157.833 25.0557 157.945 24.9446 158.167 25.1113C158.389 25.2779 158.667 25.3891 159.056 25.3891C159.611 25.3891 160.056 25.2224 160.389 24.9446C160.722 24.6668 160.889 24.2779 160.889 23.7779V23.5002H159.111Z",
3210
+ d: "M91.7779 18.6113C92.1668 18.8335 92.5001 19.1113 92.6668 19.4446C92.8335 19.7779 93.0001 20.2224 93.0001 20.7224C93.0001 21.2224 92.889 21.6113 92.6668 22.0002C92.4446 22.3891 92.1668 22.6668 91.7779 22.8335C91.389 23.0002 90.9446 23.1113 90.4446 23.1113H88.4446V26.1113H87.5001V18.3335H90.5001C91.0001 18.3335 91.4446 18.4446 91.8335 18.6113H91.7779ZM90.3335 22.2224C90.8335 22.2224 91.2779 22.1113 91.5557 21.8335C91.8335 21.5557 92.0001 21.1668 92.0001 20.7224C92.0001 20.2779 91.8335 19.8891 91.5557 19.6113C91.2779 19.3335 90.8335 19.2224 90.3335 19.2224H88.389V22.2224H90.3335Z",
2556
3211
  fill: "#141414"
2557
3212
  }
2558
3213
  ),
2559
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3214
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2560
3215
  "path",
2561
3216
  {
2562
- d: "M168.167 22.9447V26.1114H167.278V23.0003C167.278 22.3892 167.167 21.9447 166.889 21.6669C166.611 21.3892 166.222 21.2225 165.722 21.2225C165.222 21.2225 164.778 21.3892 164.445 21.778C164.167 22.1669 164 22.6669 164 23.278V26.1114H163.111V20.4447H163.889L164 21.2225C164.445 20.6669 165.056 20.3892 165.889 20.3892C166.722 20.3892 167.111 20.6114 167.556 21.0003C168 21.3892 168.167 22.0558 168.167 22.9447Z",
3217
+ d: "M93.7779 24.778C93.5557 24.3336 93.4446 23.8336 93.4446 23.278C93.4446 22.7225 93.5557 22.2225 93.7779 21.778C94.0001 21.3336 94.3335 21.0003 94.7779 20.778C95.2224 20.5558 95.6668 20.3892 96.2224 20.3892C96.7779 20.3892 97.2779 20.5003 97.6668 20.778C98.1113 21.0003 98.4446 21.3892 98.6668 21.778C98.889 22.2225 99.0001 22.7225 99.0001 23.278C99.0001 23.8336 98.889 24.3336 98.6668 24.778C98.4446 25.2225 98.1113 25.5558 97.6668 25.778C97.2224 26.0003 96.7779 26.1669 96.2224 26.1669C95.6668 26.1669 95.1668 26.0558 94.7779 25.778C94.389 25.5003 94.0001 25.1669 93.7779 24.778ZM97.8335 24.3336C98.0001 24.0003 98.0557 23.6669 98.0557 23.278C98.0557 22.8892 98.0001 22.5003 97.8335 22.2225C97.6668 21.8892 97.4446 21.6669 97.1668 21.5003C96.889 21.3336 96.5557 21.2225 96.1668 21.2225C95.7779 21.2225 95.4446 21.3336 95.1668 21.5003C94.889 21.6669 94.6668 21.9447 94.5001 22.2225C94.3335 22.5558 94.2779 22.8892 94.2779 23.278C94.2779 23.6669 94.3335 24.0558 94.5001 24.3336C94.6668 24.6669 94.889 24.8892 95.1668 25.0558C95.4446 25.2225 95.7779 25.3336 96.1668 25.3336C96.5557 25.3336 96.889 25.2225 97.1668 25.0558C97.4446 24.8892 97.6668 24.6114 97.8335 24.3336Z",
2563
3218
  fill: "#141414"
2564
3219
  }
2565
3220
  ),
2566
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3221
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2567
3222
  "path",
2568
3223
  {
2569
- d: "M174.722 26.1114H173.945L173.833 25.2225C173.333 25.8892 172.722 26.2225 171.889 26.2225C171.056 26.2225 170.889 26.1114 170.5 25.8892C170.111 25.6669 169.778 25.3336 169.556 24.8892C169.333 24.4447 169.222 23.9447 169.222 23.3336C169.222 22.7225 169.333 22.2781 169.556 21.8336C169.778 21.3892 170.111 21.0558 170.556 20.8336C171 20.6114 171.445 20.4447 171.945 20.4447C172.445 20.4447 172.778 20.5003 173.111 20.7225C173.445 20.8892 173.667 21.1114 173.889 21.3892V18.3892H174.778V26.1669L174.722 26.1114ZM173.611 24.3892C173.778 24.0558 173.833 23.7225 173.833 23.3336C173.833 22.9447 173.778 22.5558 173.611 22.2225C173.445 21.8892 173.222 21.6669 172.945 21.4447C172.667 21.278 172.333 21.1669 171.945 21.1669C171.389 21.1669 170.945 21.3892 170.556 21.7781C170.167 22.1669 170.056 22.6669 170.056 23.2781C170.056 23.8892 170.222 24.3892 170.556 24.778C170.889 25.1669 171.333 25.3892 171.945 25.3892C172.556 25.3892 172.611 25.2781 172.945 25.1114C173.222 24.9447 173.445 24.6669 173.611 24.3892Z",
3224
+ d: "M101.222 25.0557C101.5 25.2779 101.889 25.389 102.333 25.389C102.778 25.389 103.056 25.3335 103.333 25.1668C103.556 25.0001 103.722 24.7779 103.722 24.5557C103.722 24.3335 103.667 24.1668 103.556 24.0557C103.445 23.9446 103.278 23.8335 103.111 23.8335C102.945 23.8335 102.667 23.7224 102.278 23.7224C101.778 23.6668 101.389 23.6112 101.056 23.5001C100.722 23.389 100.5 23.2224 100.278 23.0557C100.056 22.889 100 22.5557 100 22.1668C100 21.7779 100.111 21.5557 100.278 21.2779C100.445 21.0001 100.722 20.8335 101.056 20.6668C101.389 20.5001 101.722 20.4446 102.167 20.4446C102.833 20.4446 103.389 20.6112 103.778 20.889C104.222 21.2224 104.445 21.6668 104.445 22.2224H103.556C103.556 21.9446 103.389 21.6668 103.111 21.5001C102.833 21.3335 102.556 21.2224 102.167 21.2224C101.778 21.2224 101.445 21.2779 101.222 21.4446C101 21.6112 100.889 21.8335 100.889 22.0557C100.889 22.2779 100.889 22.389 101.056 22.5001C101.167 22.6112 101.333 22.6668 101.5 22.7224C101.667 22.7779 101.945 22.7779 102.278 22.8335C102.778 22.889 103.167 23.0001 103.5 23.0557C103.833 23.1112 104.056 23.3335 104.278 23.5557C104.5 23.7779 104.556 24.1112 104.556 24.5001C104.556 24.889 104.445 25.1668 104.278 25.389C104.056 25.6668 103.833 25.8335 103.445 26.0001C103.111 26.1668 102.722 26.2224 102.333 26.2224C101.611 26.2224 101 26.0557 100.556 25.7224C100.111 25.389 99.889 24.889 99.889 24.2779H100.778C100.778 24.6112 100.945 24.889 101.222 25.1112V25.0557Z",
2570
3225
  fill: "#141414"
2571
3226
  }
2572
3227
  ),
2573
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3228
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2574
3229
  "path",
2575
3230
  {
2576
- d: "M92.6112 29.4446V30.3335H90.1112V37.2224H89.1667V30.3335H86.6667V29.4446H92.6667H92.6112Z",
3231
+ d: "M104.945 21.2779V20.4446H105.945V18.8335H106.833V20.4446H108.278V21.2779H106.833V24.6113C106.833 24.8335 106.833 25.0002 106.945 25.1113C107.056 25.2224 107.222 25.2779 107.445 25.2779H108.445V26.1113H107.389C106.833 26.1113 106.5 26.0002 106.222 25.7779C106 25.5557 105.889 25.1668 105.889 24.6668V21.3335H104.889L104.945 21.2779Z",
2577
3232
  fill: "#141414"
2578
3233
  }
2579
3234
  ),
2580
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3235
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M108.778 22.5557H112.5V23.3334H108.778V22.5557Z", fill: "#141414" }),
3236
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2581
3237
  "path",
2582
3238
  {
2583
- d: "M93.6111 31.8335C94 31.6112 94.5 31.4446 95 31.4446C95.5 31.4446 96 31.5557 96.3889 31.7779C96.7778 32.0001 97.1111 32.2779 97.3334 32.7224C97.5556 33.1112 97.6667 33.6112 97.7222 34.1668C97.7222 34.2224 97.7222 34.389 97.7222 34.5557H93.3334C93.3334 35.1668 93.5 35.6112 93.8334 35.9446C94.1667 36.2779 94.6111 36.4446 95.1111 36.4446C95.6111 36.4446 95.8889 36.3335 96.1667 36.1112C96.4445 35.889 96.6667 35.6112 96.7223 35.2779H97.6667C97.5556 35.8335 97.2778 36.3335 96.8334 36.7224C96.3889 37.1112 95.8334 37.2779 95.2222 37.2779C94.6111 37.2779 94.1667 37.1668 93.7222 36.889C93.2778 36.6668 92.9445 36.3335 92.7222 35.889C92.5 35.4446 92.3889 34.9446 92.3889 34.389C92.3889 33.8335 92.5 33.2779 92.7222 32.889C92.9445 32.4446 93.2778 32.1112 93.6667 31.889L93.6111 31.8335ZM96.2222 32.6668C95.8889 32.389 95.5 32.2779 95 32.2779C94.5 32.2779 94.1667 32.4446 93.8889 32.7224C93.5556 33.0001 93.3889 33.389 93.3334 33.8335H96.7778C96.7778 33.3335 96.5556 33.0001 96.2222 32.7224V32.6668Z",
3239
+ d: "M116.778 24.778C116.556 24.3336 116.445 23.8336 116.445 23.278C116.445 22.7225 116.556 22.2225 116.778 21.778C117 21.3336 117.333 21.0003 117.778 20.778C118.222 20.5558 118.667 20.3892 119.222 20.3892C119.778 20.3892 120.278 20.5003 120.667 20.778C121.111 21.0003 121.445 21.3892 121.667 21.778C121.889 22.2225 122 22.7225 122 23.278C122 23.8336 121.889 24.3336 121.667 24.778C121.445 25.2225 121.111 25.5558 120.667 25.778C120.222 26.0003 119.778 26.1669 119.222 26.1669C118.667 26.1669 118.167 26.0558 117.778 25.778C117.389 25.5003 117 25.1669 116.778 24.778ZM120.833 24.3336C121 24.0003 121.056 23.6669 121.056 23.278C121.056 22.8892 121 22.5003 120.833 22.2225C120.667 21.8892 120.445 21.6669 120.167 21.5003C119.889 21.3336 119.556 21.2225 119.167 21.2225C118.778 21.2225 118.445 21.3336 118.167 21.5003C117.889 21.6669 117.667 21.9447 117.5 22.2225C117.333 22.5558 117.278 22.8892 117.278 23.278C117.278 23.6669 117.333 24.0558 117.5 24.3336C117.667 24.6669 117.889 24.8892 118.167 25.0558C118.445 25.2225 118.778 25.3336 119.167 25.3336C119.556 25.3336 119.889 25.2225 120.167 25.0558C120.445 24.8892 120.667 24.6114 120.833 24.3336Z",
2584
3240
  fill: "#141414"
2585
3241
  }
2586
3242
  ),
2587
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
2588
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3243
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2589
3244
  "path",
2590
3245
  {
2591
- d: "M102 31.8335C102.389 31.6112 102.889 31.4446 103.389 31.4446C103.889 31.4446 104.389 31.5557 104.778 31.7779C105.167 32.0001 105.5 32.2779 105.722 32.7224C105.945 33.1112 106.056 33.6112 106.111 34.1668C106.111 34.2224 106.111 34.389 106.111 34.5557H101.722C101.722 35.1668 101.889 35.6112 102.222 35.9446C102.556 36.2779 103 36.4446 103.5 36.4446C104 36.4446 104.278 36.3335 104.556 36.1112C104.833 35.889 105.056 35.6112 105.111 35.2779H106.056C105.944 35.8335 105.667 36.3335 105.222 36.7224C104.778 37.1112 104.222 37.2779 103.611 37.2779C103 37.2779 102.556 37.1668 102.111 36.889C101.667 36.6668 101.333 36.3335 101.111 35.889C100.889 35.4446 100.778 34.9446 100.778 34.389C100.778 33.8335 100.889 33.2779 101.111 32.889C101.333 32.4446 101.667 32.1112 102.056 31.889L102 31.8335ZM104.611 32.6668C104.278 32.389 103.889 32.2779 103.389 32.2779C102.889 32.2779 102.556 32.4446 102.278 32.7224C101.945 33.0001 101.778 33.389 101.722 33.8335H105.167C105.167 33.3335 104.945 33.0001 104.611 32.7224V32.6668Z",
3246
+ d: "M125.611 26.1668C125.056 26.1668 124.556 26.0557 124.167 25.7779C123.778 25.5557 123.445 25.1668 123.222 24.7224C123 24.2779 122.889 23.7779 122.889 23.2224C122.889 22.6668 123 22.1668 123.222 21.7224C123.445 21.2779 123.778 20.9446 124.222 20.7224C124.667 20.5002 125.111 20.3335 125.667 20.3335C126.222 20.3335 126.889 20.5002 127.333 20.8891C127.778 21.2224 128.056 21.7224 128.167 22.3335H127.222C127.111 21.9446 126.945 21.6668 126.667 21.4446C126.389 21.2224 126.056 21.1113 125.667 21.1113C125.278 21.1113 124.667 21.2779 124.333 21.6668C124 22.0557 123.833 22.5557 123.833 23.1668C123.833 23.7779 124 24.2779 124.333 24.6668C124.667 25.0557 125.111 25.2779 125.667 25.2779C126.222 25.2779 126.445 25.1668 126.722 24.9446C127 24.7224 127.167 24.4446 127.278 24.0557H128.167C128.056 24.6668 127.778 25.1668 127.333 25.5557C126.889 25.8891 126.333 26.1113 125.667 26.1113L125.611 26.1668Z",
2592
3247
  fill: "#141414"
2593
3248
  }
2594
3249
  ),
2595
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3250
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2596
3251
  "path",
2597
3252
  {
2598
- d: "M109.667 37.2779C109.111 37.2779 108.611 37.1668 108.222 36.889C107.833 36.6668 107.5 36.2779 107.278 35.8335C107.056 35.389 106.945 34.889 106.945 34.3335C106.945 33.7779 107.056 33.2779 107.278 32.8335C107.5 32.389 107.833 32.0557 108.278 31.8335C108.722 31.6112 109.167 31.4446 109.722 31.4446C110.278 31.4446 110.945 31.6112 111.389 32.0001C111.833 32.389 112.111 32.8335 112.222 33.4446H111.278C111.167 33.0557 111 32.7779 110.722 32.5557C110.445 32.3335 110.111 32.2224 109.722 32.2224C109.333 32.2224 108.722 32.389 108.389 32.7779C108.056 33.1668 107.889 33.6668 107.889 34.2779C107.889 34.889 108.056 35.389 108.389 35.7779C108.722 36.1668 109.167 36.389 109.722 36.389C110.278 36.389 110.5 36.2779 110.778 36.0557C111.056 35.8335 111.222 35.5557 111.333 35.1668H112.222C112.111 35.7779 111.833 36.2779 111.389 36.6668C110.945 37.0001 110.389 37.2224 109.722 37.2224L109.667 37.2779Z",
3253
+ d: "M134.278 22.9446V26.1113H133.389V23.0002C133.389 22.3891 133.278 21.9446 133 21.6668C132.722 21.3335 132.333 21.2224 131.833 21.2224C131.333 21.2224 130.889 21.3891 130.611 21.7779C130.278 22.1668 130.167 22.6668 130.167 23.2779V26.1113H129.278V18.3335H130.167V21.3891C130.333 21.1113 130.611 20.8335 130.889 20.6668C131.222 20.5002 131.556 20.3891 132 20.3891C132.667 20.3891 133.222 20.6113 133.667 21.0002C134.111 21.3891 134.278 22.0557 134.278 22.9446Z",
2599
3254
  fill: "#141414"
2600
3255
  }
2601
3256
  ),
2602
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3257
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2603
3258
  "path",
2604
3259
  {
2605
- d: "M113.278 35.8891C113.056 35.4447 112.945 34.9447 112.945 34.3891C112.945 33.8336 113.056 33.3336 113.278 32.8891C113.5 32.4447 113.833 32.1114 114.278 31.8891C114.722 31.6669 115.167 31.5002 115.722 31.5002C116.278 31.5002 116.778 31.6114 117.167 31.8891C117.611 32.1114 117.945 32.5002 118.167 32.8891C118.389 33.3336 118.5 33.8336 118.5 34.3891C118.5 34.9447 118.389 35.4447 118.167 35.8891C117.945 36.3336 117.611 36.6669 117.167 36.8891C116.722 37.1114 116.278 37.278 115.722 37.278C115.167 37.278 114.667 37.1669 114.278 36.8891C113.889 36.6114 113.5 36.278 113.278 35.8891ZM117.333 35.4447C117.5 35.1114 117.556 34.778 117.556 34.3891C117.556 34.0002 117.5 33.6114 117.333 33.3336C117.167 33.0002 116.945 32.778 116.667 32.6114C116.389 32.4447 116.056 32.3336 115.667 32.3336C115.278 32.3336 114.945 32.4447 114.667 32.6114C114.389 32.778 114.167 33.0558 114 33.3336C113.833 33.6669 113.778 34.0002 113.778 34.3891C113.778 34.778 113.833 35.1669 114 35.4447C114.167 35.778 114.389 36.0002 114.667 36.1669C114.945 36.3336 115.278 36.4447 115.667 36.4447C116.056 36.4447 116.389 36.3336 116.667 36.1669C116.945 36.0002 117.167 35.7225 117.333 35.4447Z",
3260
+ d: "M86.6668 32.389V31.5557H87.6668V29.9446H88.5556V31.5557H90.0001V32.389H88.5556V35.7224C88.5556 35.9446 88.5557 36.1112 88.6668 36.2224C88.7779 36.3335 88.9445 36.389 89.1668 36.389H90.1668V37.2224H89.1112C88.5556 37.2224 88.2223 37.1112 87.9445 36.889C87.7223 36.6668 87.6112 36.2779 87.6112 35.7779V32.4446H86.6112L86.6668 32.389Z",
2606
3261
  fill: "#141414"
2607
3262
  }
2608
3263
  ),
2609
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3264
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2610
3265
  "path",
2611
3266
  {
2612
- d: "M128.056 33.9446V37.2224H127.167V34.0001C127.167 33.4446 127.056 33.0557 126.833 32.7224C126.611 32.4446 126.278 32.2779 125.833 32.2779C125.389 32.2779 125 32.4446 124.722 32.7779C124.445 33.1112 124.333 33.5557 124.333 34.1668V37.2224H123.445V34.0001C123.445 33.4446 123.333 33.0557 123.111 32.7224C122.889 32.4446 122.556 32.2779 122.111 32.2779C121.667 32.2779 121.278 32.4446 121 32.7779C120.722 33.1112 120.611 33.6112 120.611 34.1668V37.1668H119.722V31.5001H120.5L120.611 32.2779C121 31.7224 121.556 31.4446 122.278 31.4446C123 31.4446 123.056 31.5557 123.389 31.7224C123.722 31.889 123.945 32.1668 124.111 32.5557C124.5 31.8335 125.167 31.5001 126.056 31.5001C126.945 31.5001 127.222 31.7224 127.611 32.1112C128 32.5001 128.222 33.1112 128.222 34.0001L128.056 33.9446Z",
3267
+ d: "M91.7779 31.8335C92.1668 31.6112 92.6668 31.4446 93.1668 31.4446C93.6668 31.4446 94.1668 31.5557 94.5557 31.7779C94.9446 32.0001 95.2779 32.2779 95.5001 32.7224C95.7223 33.1668 95.8334 33.6112 95.889 34.1668C95.889 34.2224 95.889 34.389 95.889 34.5557H91.5001C91.5001 35.1668 91.6668 35.6112 92.0001 35.9446C92.3334 36.2779 92.7779 36.4446 93.2779 36.4446C93.7779 36.4446 94.0557 36.3335 94.3334 36.1112C94.6112 35.889 94.8334 35.6112 94.889 35.2779H95.8334C95.7223 35.8335 95.4446 36.3335 95.0001 36.7224C94.5557 37.1112 94.0001 37.2779 93.389 37.2779C92.7779 37.2779 92.3334 37.1668 91.889 36.889C91.4445 36.6668 91.1112 36.3335 90.889 35.889C90.6668 35.4446 90.5557 34.9446 90.5557 34.389C90.5557 33.8335 90.6668 33.2779 90.889 32.889C91.1112 32.4446 91.4446 32.1112 91.8334 31.889L91.7779 31.8335ZM94.389 32.6668C94.0557 32.389 93.6668 32.2779 93.1668 32.2779C92.6668 32.2779 92.3334 32.4446 92.0557 32.7224C91.7779 33.0001 91.5557 33.389 91.5001 33.8335H94.9445C94.9445 33.3335 94.7223 33.0001 94.389 32.7224V32.6668Z",
2613
3268
  fill: "#141414"
2614
3269
  }
2615
3270
  ),
2616
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3271
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M97.8335 29.4446V37.2224H96.9446V29.4446H97.8335Z", fill: "#141414" }),
3272
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2617
3273
  "path",
2618
3274
  {
2619
- d: "M134.556 29.4446H135.722L138.667 37.2224H137.611L136.778 35.1112H133.389L132.556 37.2224H131.556L134.5 29.4446H134.556ZM136.556 34.2224L135.167 30.5001L133.778 34.2224H136.611H136.556Z",
3275
+ d: "M100.167 31.8335C100.556 31.6112 101.056 31.4446 101.556 31.4446C102.056 31.4446 102.556 31.5557 102.945 31.7779C103.333 32.0001 103.667 32.2779 103.889 32.7224C104.111 33.1668 104.222 33.6112 104.278 34.1668C104.278 34.2224 104.278 34.389 104.278 34.5557H99.889C99.889 35.1668 100.056 35.6112 100.389 35.9446C100.722 36.2779 101.167 36.4446 101.667 36.4446C102.167 36.4446 102.445 36.3335 102.722 36.1112C103 35.889 103.222 35.6112 103.278 35.2779H104.222C104.111 35.8335 103.833 36.3335 103.389 36.7224C102.945 37.1112 102.389 37.2779 101.778 37.2779C101.167 37.2779 100.722 37.1668 100.278 36.889C99.8335 36.6668 99.5001 36.3335 99.2779 35.889C99.0557 35.4446 98.9446 34.9446 98.9446 34.389C98.9446 33.8335 99.0557 33.2779 99.2779 32.889C99.5001 32.4446 99.8335 32.1112 100.222 31.889L100.167 31.8335ZM102.778 32.6668C102.445 32.389 102.056 32.2779 101.556 32.2779C101.056 32.2779 100.722 32.4446 100.445 32.7224C100.167 33.0001 99.9446 33.389 99.889 33.8335H103.333C103.333 33.3335 103.111 33.0001 102.778 32.7224V32.6668Z",
2620
3276
  fill: "#141414"
2621
3277
  }
2622
3278
  ),
2623
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3279
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2624
3280
  "path",
2625
3281
  {
2626
- d: "M144.111 37.2223H143.333L143.222 36.4446C142.778 37.0001 142.167 37.2779 141.389 37.2779C140.611 37.2779 140.167 37.0557 139.778 36.6668C139.389 36.2779 139.167 35.6112 139.167 34.7223V31.5557H140.056V34.6668C140.056 35.2779 140.167 35.7223 140.445 36.0001C140.722 36.3334 141.056 36.4446 141.556 36.4446C142.056 36.4446 142.5 36.2779 142.778 35.889C143.056 35.5001 143.222 35.0001 143.222 34.389V31.5557H144.111V37.2223Z",
3282
+ d: "M106.445 36.1668C106.722 36.389 107.111 36.5001 107.556 36.5001C108 36.5001 108.278 36.4446 108.556 36.2779C108.778 36.1112 108.945 35.889 108.945 35.6668C108.945 35.4446 108.889 35.2779 108.778 35.1668C108.667 35.0557 108.5 34.9446 108.333 34.9446C108.167 34.9446 107.889 34.8334 107.5 34.8334C107 34.7779 106.611 34.7223 106.278 34.6112C105.945 34.5001 105.722 34.3334 105.5 34.1668C105.278 34.0001 105.222 33.6668 105.222 33.2779C105.222 32.889 105.333 32.6668 105.5 32.389C105.667 32.1112 105.945 31.9446 106.278 31.7779C106.611 31.6112 106.945 31.5557 107.389 31.5557C108.056 31.5557 108.611 31.7223 109 32.0001C109.445 32.3334 109.667 32.7779 109.667 33.3334H108.778C108.778 33.0557 108.611 32.7779 108.333 32.6112C108.056 32.4446 107.778 32.3334 107.389 32.3334C107 32.3334 106.667 32.389 106.445 32.5557C106.222 32.7223 106.111 32.9446 106.111 33.1668C106.111 33.389 106.111 33.5001 106.278 33.6112C106.389 33.7223 106.556 33.7779 106.722 33.8334C106.889 33.889 107.167 33.889 107.5 33.9446C108 34.0001 108.389 34.1112 108.722 34.1668C109.056 34.2223 109.278 34.4446 109.5 34.6668C109.722 34.889 109.778 35.2223 109.778 35.6112C109.778 36.0001 109.667 36.2779 109.5 36.5001C109.278 36.7779 109.056 36.9446 108.667 37.1112C108.333 37.2779 107.945 37.3334 107.556 37.3334C106.833 37.3334 106.222 37.1668 105.778 36.8334C105.333 36.5001 105.111 36.0001 105.111 35.389H106C106 35.7223 106.167 36.0001 106.445 36.2223V36.1668Z",
2627
3283
  fill: "#141414"
2628
3284
  }
2629
3285
  ),
2630
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3286
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2631
3287
  "path",
2632
3288
  {
2633
- d: "M144.722 32.389V31.5557H145.722V29.9446H146.611V31.5557H148.056V32.389H146.611V35.7224C146.611 35.9446 146.611 36.1112 146.722 36.2224C146.833 36.3335 147 36.389 147.222 36.389H148.222V37.2224H147.167C146.611 37.2224 146.278 37.1112 146 36.889C145.778 36.6668 145.667 36.2779 145.667 35.7779V32.4446H144.667L144.722 32.389Z",
3289
+ d: "M110.167 32.389V31.5557H111.167V29.9446H112.056V31.5557H113.5V32.389H112.056V35.7224C112.056 35.9446 112.056 36.1112 112.167 36.2224C112.278 36.3335 112.445 36.389 112.667 36.389H113.667V37.2224H112.611C112.056 37.2224 111.722 37.1112 111.445 36.889C111.222 36.6668 111.111 36.2779 111.111 35.7779V32.4446H110.111L110.167 32.389Z",
2634
3290
  fill: "#141414"
2635
3291
  }
2636
3292
  ),
2637
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3293
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2638
3294
  "path",
2639
3295
  {
2640
- d: "M154 34.0557V37.2224H153.111V34.1112C153.111 33.5001 153 33.0557 152.722 32.7779C152.445 32.4446 152.056 32.3335 151.556 32.3335C151.056 32.3335 150.611 32.5001 150.333 32.889C150 33.2779 149.889 33.7779 149.889 34.389V37.2224H149V29.4446H149.889V32.5001C150.056 32.2224 150.333 31.9446 150.611 31.7779C150.945 31.6112 151.278 31.5001 151.722 31.5001C152.389 31.5001 152.945 31.7224 153.389 32.1112C153.833 32.5001 154 33.1668 154 34.0557Z",
3296
+ d: "M116.5 36.1668L118.167 31.5557H119.111L116.5 38.1668C116.389 38.5001 116.222 38.7779 116.167 38.9446C116.111 39.1112 115.944 39.2223 115.778 39.3334C115.611 39.389 115.389 39.4446 115.167 39.4446H114.056V38.6112H114.889C115.056 38.6112 115.222 38.6112 115.278 38.5557C115.333 38.5001 115.444 38.4446 115.5 38.389C115.5 38.2779 115.611 38.1668 115.722 37.9446L116 37.2779L113.778 31.5557H114.722L116.445 36.1668H116.5Z",
2641
3297
  fill: "#141414"
2642
3298
  }
2643
3299
  ),
2644
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3300
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2645
3301
  "path",
2646
3302
  {
2647
- d: "M155.333 35.8891C155.111 35.4447 155 34.9447 155 34.3891C155 33.8336 155.111 33.3336 155.333 32.8891C155.556 32.4447 155.889 32.1114 156.333 31.8891C156.778 31.6669 157.222 31.5002 157.778 31.5002C158.333 31.5002 158.833 31.6114 159.222 31.8891C159.667 32.1114 160 32.5002 160.222 32.8891C160.445 33.3336 160.556 33.8336 160.556 34.3891C160.556 34.9447 160.445 35.4447 160.222 35.8891C160 36.3336 159.667 36.6669 159.222 36.8891C158.778 37.1114 158.333 37.278 157.778 37.278C157.222 37.278 156.722 37.1669 156.333 36.8891C155.945 36.6114 155.556 36.278 155.333 35.8891ZM159.445 35.4447C159.611 35.1114 159.667 34.778 159.667 34.3891C159.667 34.0002 159.611 33.6114 159.445 33.3336C159.278 33.0002 159.056 32.778 158.778 32.6114C158.5 32.4447 158.167 32.3336 157.778 32.3336C157.389 32.3336 157.056 32.4447 156.778 32.6114C156.5 32.778 156.278 33.0558 156.111 33.3336C155.945 33.6669 155.889 34.0002 155.889 34.3891C155.889 34.778 155.945 35.1669 156.111 35.4447C156.278 35.778 156.5 36.0002 156.778 36.1669C157.056 36.3336 157.389 36.4447 157.778 36.4447C158.167 36.4447 158.5 36.3336 158.778 36.1669C159.056 36.0002 159.278 35.7225 159.445 35.4447Z",
3303
+ d: "M122.722 32.4446H122.278C121.722 32.4446 121.333 32.6112 121.111 33.0001C120.889 33.389 120.778 33.8334 120.778 34.3334V37.2223H119.889V31.5557H120.667L120.778 32.389C120.945 32.1112 121.167 31.9446 121.389 31.7779C121.611 31.6112 122 31.5557 122.445 31.5557H122.722V32.4446Z",
2648
3304
  fill: "#141414"
2649
3305
  }
2650
3306
  ),
2651
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3307
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2652
3308
  "path",
2653
3309
  {
2654
- d: "M164.5 32.4446H164.056C163.5 32.4446 163.111 32.6112 162.889 33.0001C162.667 33.389 162.556 33.8334 162.556 34.3334V37.2223H161.667V31.5557H162.445L162.556 32.389C162.722 32.1112 162.945 31.9446 163.167 31.7779C163.445 31.6112 163.778 31.5557 164.222 31.5557H164.5V32.4446Z",
3310
+ d: "M124.333 31.8335C124.722 31.6112 125.222 31.4446 125.722 31.4446C126.222 31.4446 126.722 31.5557 127.111 31.7779C127.5 32.0001 127.833 32.2779 128.056 32.7224C128.278 33.1668 128.389 33.6112 128.445 34.1668C128.445 34.2224 128.445 34.389 128.445 34.5557H124.056C124.056 35.1668 124.222 35.6112 124.556 35.9446C124.889 36.2779 125.333 36.4446 125.833 36.4446C126.333 36.4446 126.611 36.3335 126.889 36.1112C127.167 35.889 127.389 35.6112 127.445 35.2779H128.389C128.278 35.8335 128 36.3335 127.556 36.7224C127.111 37.1112 126.556 37.2779 125.945 37.2779C125.333 37.2779 124.889 37.1668 124.445 36.889C124 36.6668 123.667 36.3335 123.445 35.889C123.222 35.4446 123.111 34.9446 123.111 34.389C123.111 33.8335 123.222 33.2779 123.445 32.889C123.667 32.4446 124 32.1112 124.389 31.889L124.333 31.8335ZM126.945 32.6668C126.611 32.389 126.222 32.2779 125.722 32.2779C125.222 32.2779 124.889 32.4446 124.611 32.7224C124.333 33.0001 124.111 33.389 124.056 33.8335H127.5C127.5 33.3335 127.278 33.0001 126.945 32.7224V32.6668Z",
2655
3311
  fill: "#141414"
2656
3312
  }
2657
3313
  ),
2658
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3314
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M130.333 29.4446V37.2224H129.445V29.4446H130.333Z", fill: "#141414" }),
3315
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2659
3316
  "path",
2660
3317
  {
2661
- d: "M166.389 29.9446C166.389 30.1113 166.333 30.2779 166.222 30.3891C166.111 30.5002 165.945 30.5557 165.778 30.5557C165.611 30.5557 165.445 30.5002 165.333 30.3891C165.222 30.2779 165.167 30.1113 165.167 29.9446C165.167 29.7779 165.222 29.6113 165.333 29.5002C165.445 29.3891 165.611 29.3335 165.778 29.3335C165.945 29.3335 166.111 29.3891 166.222 29.5002C166.333 29.6113 166.389 29.7779 166.389 29.9446ZM166.278 31.5557V37.2224H165.389V31.5557H166.278Z",
3318
+ d: "M132.778 36.1668C133.056 36.389 133.445 36.5001 133.889 36.5001C134.333 36.5001 134.611 36.4446 134.889 36.2779C135.111 36.1112 135.278 35.889 135.278 35.6668C135.278 35.4446 135.222 35.2779 135.111 35.1668C135 35.0557 134.833 34.9446 134.667 34.9446C134.5 34.9446 134.222 34.8334 133.833 34.8334C133.333 34.7779 132.945 34.7223 132.611 34.6112C132.278 34.5001 132.056 34.3334 131.833 34.1668C131.611 34.0001 131.556 33.6668 131.556 33.2779C131.556 32.889 131.667 32.6668 131.833 32.389C132 32.1112 132.278 31.9446 132.611 31.7779C132.945 31.6112 133.278 31.5557 133.722 31.5557C134.389 31.5557 134.945 31.7223 135.333 32.0001C135.778 32.3334 136 32.7779 136 33.3334H135.111C135.111 33.0557 134.945 32.7779 134.667 32.6112C134.389 32.4446 134.111 32.3334 133.722 32.3334C133.333 32.3334 133 32.389 132.778 32.5557C132.556 32.7223 132.445 32.9446 132.445 33.1668C132.445 33.389 132.445 33.5001 132.611 33.6112C132.722 33.7223 132.889 33.7779 133.056 33.8334C133.222 33.889 133.5 33.889 133.833 33.9446C134.333 34.0001 134.722 34.1112 135.056 34.1668C135.389 34.2223 135.611 34.4446 135.833 34.6668C136.056 34.889 136.111 35.2223 136.111 35.6112C136.111 36.0001 136 36.2779 135.833 36.5001C135.611 36.7779 135.389 36.9446 135 37.1112C134.667 37.2779 134.278 37.3334 133.889 37.3334C133.167 37.3334 132.556 37.1668 132.111 36.8334C131.667 36.5001 131.445 36.0001 131.445 35.389H132.333C132.333 35.7223 132.5 36.0001 132.778 36.2223V36.1668Z",
2662
3319
  fill: "#141414"
2663
3320
  }
2664
3321
  ),
2665
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3322
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2666
3323
  "path",
2667
3324
  {
2668
- d: "M166.833 32.389V31.5557H167.833V29.9446H168.722V31.5557H170.167V32.389H168.722V35.7224C168.722 35.9446 168.722 36.1112 168.833 36.2224C168.944 36.3335 169.111 36.389 169.333 36.389H170.333V37.2224H169.278C168.722 37.2224 168.389 37.1112 168.111 36.889C167.889 36.6668 167.778 36.2779 167.778 35.7779V32.4446H166.778L166.833 32.389Z",
3325
+ d: "M138.222 31.8335C138.611 31.6112 139.111 31.4446 139.611 31.4446C140.111 31.4446 140.611 31.5557 141 31.7779C141.389 32.0001 141.722 32.2779 141.945 32.7224C142.167 33.1668 142.278 33.6112 142.333 34.1668C142.333 34.2224 142.333 34.389 142.333 34.5557H137.945C137.945 35.1668 138.111 35.6112 138.445 35.9446C138.778 36.2779 139.222 36.4446 139.722 36.4446C140.222 36.4446 140.5 36.3335 140.778 36.1112C141.056 35.889 141.278 35.6112 141.333 35.2779H142.278C142.167 35.8335 141.889 36.3335 141.445 36.7224C141 37.1112 140.445 37.2779 139.833 37.2779C139.222 37.2779 138.778 37.1668 138.333 36.889C137.889 36.6668 137.556 36.3335 137.333 35.889C137.111 35.4446 137 34.9446 137 34.389C137 33.8335 137.111 33.2779 137.333 32.889C137.556 32.4446 137.889 32.1112 138.278 31.889L138.222 31.8335ZM140.833 32.6668C140.5 32.389 140.111 32.2779 139.611 32.2779C139.111 32.2779 138.778 32.4446 138.5 32.7224C138.222 33.0001 138 33.389 137.945 33.8335H141.389C141.389 33.3335 141.167 33.0001 140.833 32.7224V32.6668Z",
2669
3326
  fill: "#141414"
2670
3327
  }
2671
3328
  ),
2672
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3329
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2673
3330
  "path",
2674
3331
  {
2675
- d: "M173.167 36.1668L174.833 31.5557H175.778L173.167 38.1668C173.056 38.5001 172.889 38.7779 172.833 38.9446C172.778 39.1112 172.611 39.2223 172.445 39.3334C172.278 39.389 172.056 39.4446 171.833 39.4446H170.722V38.6112H171.556C171.722 38.6112 171.889 38.6112 171.945 38.5557C172 38.5001 172.111 38.4446 172.167 38.389C172.167 38.2779 172.278 38.1668 172.389 37.9446L172.667 37.2779L170.445 31.5557H171.389L173.111 36.1668H173.167Z",
3332
+ d: "M148.445 34.0558V37.2225H147.556V34.1114C147.556 33.5002 147.445 33.0558 147.167 32.778C146.889 32.4447 146.5 32.3336 146 32.3336C145.5 32.3336 145.056 32.5002 144.722 32.8891C144.445 33.278 144.278 33.778 144.278 34.3891V37.2225H143.389V31.5558H144.167L144.278 32.3336C144.722 31.778 145.333 31.5002 146.167 31.5002C147 31.5002 147.389 31.7225 147.833 32.1114C148.278 32.5002 148.445 33.1669 148.445 34.0558Z",
2676
3333
  fill: "#141414"
2677
3334
  }
2678
- )
2679
- ] });
2680
-
2681
- // src/components/layout/HeaderStandard/HeaderStandard.tsx
2682
- var import_jsx_runtime19 = require("react/jsx-runtime");
2683
- var Header = ({
2684
- activatedLanguage = "sv",
2685
- useLanguage = true,
2686
- SetActivatedLanguage = () => {
2687
- }
2688
- }) => {
2689
- const logoLink = activatedLanguage === "en" ? "https://pts.se/en" : "https://pts.se/";
2690
- const handleLanguageClick = () => {
2691
- if (activatedLanguage === "sv") {
2692
- SetActivatedLanguage("en");
2693
- } else if (activatedLanguage === "en") {
2694
- SetActivatedLanguage("sv");
2695
- }
2696
- };
2697
- const getLanguageLabel = () => {
2698
- if (activatedLanguage === "sv") return "English";
2699
- else return "Svenska";
2700
- };
2701
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("header", { className: "pts-header-container", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "pts-header-content", children: [
2702
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "pts-header-logo-container", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2703
- "a",
2704
- {
2705
- className: "pts-header-logo",
2706
- href: logoLink,
2707
- target: "_blank",
2708
- "aria-label": activatedLanguage === "en" ? "PTS logotype (to the homepage on pts.se, opens in new tab)" : "PTS logotyp (till startsidan p\xE5 pts.se, \xF6ppnas i ny flik)",
2709
- children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Logo_en, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Logo_sv, {}) })
2710
- }
2711
- ) }),
2712
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "pts-header-navigation-container", children: useLanguage && /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2713
- "button",
2714
- {
2715
- lang: activatedLanguage === "en" ? "en" : "sv",
2716
- className: "pts-languageButton",
2717
- onClick: handleLanguageClick,
2718
- children: [
2719
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "languageIcon", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(LanguageIcon, {}) }) }),
2720
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { "aria-hidden": "true", className: "pts-languageButton-text", children: getLanguageLabel() }),
2721
- activatedLanguage === "en" && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "sr-only", children: "\xC4ndra spr\xE5k till svenska" }),
2722
- activatedLanguage === "sv" && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "sr-only", children: "Change language to English" })
2723
- ]
2724
- }
2725
- ) })
2726
- ] }) });
2727
- };
2728
- var HeaderStandard_default = Header;
2729
-
2730
- // src/components/layout/NavigationHeaderStandard/NavigationHeaderStandard.tsx
2731
- var import_react15 = require("react");
2732
-
2733
- // src/css/icons.tsx
2734
- var icons_exports = {};
2735
- __export(icons_exports, {
2736
- AddIcon: () => AddIcon,
2737
- ChevronRightIcon: () => ChevronRightIcon,
2738
- CloseIcon: () => CloseIcon,
2739
- CollapseIcon: () => CollapseIcon,
2740
- ExpandIcon: () => ExpandIcon,
2741
- FileIcon: () => FileIcon,
2742
- LanguageIcon: () => LanguageIcon2,
2743
- LanguageIconSmall: () => LanguageIconSmall,
2744
- LinkDefaultIcon: () => LinkDefaultIcon,
2745
- Logo_en: () => Logo_en2,
2746
- Logo_sv: () => Logo_sv2,
2747
- MenuIcon: () => MenuIcon,
2748
- MinusIcon: () => MinusIcon,
2749
- ReportIcon: () => ReportIcon,
2750
- SearchIcon: () => SearchIcon,
2751
- SearchIconWhite: () => SearchIconWhite
2752
- });
2753
- var import_jsx_runtime20 = require("react/jsx-runtime");
2754
- var LinkDefaultIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2755
- "svg",
2756
- {
2757
- "aria-hidden": "true",
2758
- xmlns: "http://www.w3.org/2000/svg",
2759
- width: "12",
2760
- height: "10",
2761
- viewBox: "0 0 12 10",
2762
- fill: "none",
2763
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2764
- "path",
2765
- {
2766
- d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
2767
- fill: "#ffffff"
2768
- }
2769
- )
2770
- }
2771
- );
2772
- var SearchIcon = ({ width = 15, height = 15, color = "#6E3282" }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { width, height, viewBox: "0 0 21 20", fill: color, xmlns: "http://www.w3.org/2000/svg", children: [
2773
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2774
- "path",
2775
- {
2776
- d: "M9.05856 16.1132C4.503 16.1132 0.833252 12.5188 0.833252 8.05662C0.833252 3.59449 4.503 0 9.05856 0C13.6141 0 17.2839 3.59449 17.2839 8.05662C17.2839 12.5188 13.6141 16.1132 9.05856 16.1132ZM9.05856 1.23948C5.19899 1.23948 2.09868 4.27621 2.09868 8.05662C2.09868 11.837 5.19899 14.8738 9.05856 14.8738C12.9181 14.8738 16.0184 11.837 16.0184 8.05662C16.0184 4.27621 12.9181 1.23948 9.05856 1.23948Z",
2777
- fill: color
2778
- }
2779
- ),
2780
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2781
- "path",
2782
- {
2783
- d: "M14.4409 13.3929C14.7047 13.1187 15.1435 13.1187 15.4073 13.3929L20.3859 18.568C20.6357 18.8276 20.6357 19.2381 20.3859 19.4977C20.1221 19.7719 19.6833 19.7719 19.4195 19.4977L14.4409 14.3227C14.1911 14.0631 14.1911 13.6525 14.4409 13.3929Z",
2784
- fill: color
2785
- }
2786
- )
2787
- ] });
2788
- var SearchIconWhite = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { width: "21", height: "20", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
2789
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2790
- "path",
2791
- {
2792
- d: "M9.05856 16.1132C4.503 16.1132 0.833252 12.5188 0.833252 8.05662C0.833252 3.59449 4.503 0 9.05856 0C13.6141 0 17.2839 3.59449 17.2839 8.05662C17.2839 12.5188 13.6141 16.1132 9.05856 16.1132ZM9.05856 1.23948C5.19899 1.23948 2.09868 4.27621 2.09868 8.05662C2.09868 11.837 5.19899 14.8738 9.05856 14.8738C12.9181 14.8738 16.0184 11.837 16.0184 8.05662C16.0184 4.27621 12.9181 1.23948 9.05856 1.23948Z",
2793
- fill: "#6E3282"
2794
- }
2795
3335
  ),
2796
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3336
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2797
3337
  "path",
2798
3338
  {
2799
- d: "M14.4409 13.3929C14.7047 13.1187 15.1435 13.1187 15.4073 13.3929L20.3859 18.568C20.6357 18.8276 20.6357 19.2381 20.3859 19.4977C20.1221 19.7719 19.6833 19.7719 19.4195 19.4977L14.4409 14.3227C14.1911 14.0631 14.1911 13.6525 14.4409 13.3929Z",
2800
- fill: "#6E3282"
2801
- }
2802
- )
2803
- ] });
2804
- var LanguageIcon2 = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2805
- "path",
2806
- {
2807
- d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
2808
- fill: "#6E3282"
2809
- }
2810
- ) });
2811
- var LanguageIconSmall = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2812
- "path",
2813
- {
2814
- d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
2815
- fill: "#6E3282"
2816
- }
2817
- ) });
2818
- var MenuIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
2819
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("line", { x1: "0.666504", y1: "1", x2: "20.6665", y2: "1", stroke: "#6E3282", strokeWidth: "2" }),
2820
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("line", { x1: "0.666504", y1: "7", x2: "20.6665", y2: "7", stroke: "#6E3282", strokeWidth: "2" }),
2821
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("line", { x1: "0.666504", y1: "13", x2: "20.6665", y2: "13", stroke: "#6E3282", strokeWidth: "2" })
2822
- ] });
2823
- var ExpandIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7073 15.7069C12.5198 15.8943 12.2655 15.9996 12.0003 15.9996C11.7352 15.9996 11.4809 15.8943 11.2933 15.7069L5.63634 10.0499C5.54083 9.95761 5.46465 9.84726 5.41224 9.72526C5.35983 9.60326 5.33225 9.47204 5.33109 9.33926C5.32994 9.20648 5.35524 9.0748 5.40552 8.9519C5.4558 8.829 5.53006 8.71735 5.62395 8.62346C5.71784 8.52957 5.82949 8.45531 5.95239 8.40503C6.07529 8.35475 6.20696 8.32945 6.33974 8.3306C6.47252 8.33176 6.60374 8.35934 6.72575 8.41175C6.84775 8.46416 6.9581 8.54034 7.05034 8.63585L12.0003 13.5859L16.9503 8.63585C17.1389 8.4537 17.3915 8.3529 17.6537 8.35518C17.9159 8.35746 18.1668 8.46263 18.3522 8.64804C18.5376 8.83344 18.6427 9.08426 18.645 9.34645C18.6473 9.60865 18.5465 9.86125 18.3643 10.0499L12.7073 15.7069Z", fill: "white" }) });
2824
- var CollapseIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7073 8.29315C12.5198 8.10567 12.2655 8.00036 12.0003 8.00036C11.7352 8.00036 11.4809 8.10567 11.2933 8.29315L5.63634 13.9501C5.54083 14.0424 5.46465 14.1527 5.41224 14.2747C5.35983 14.3967 5.33225 14.528 5.33109 14.6607C5.32994 14.7935 5.35524 14.9252 5.40552 15.0481C5.4558 15.171 5.53006 15.2826 5.62395 15.3765C5.71784 15.4704 5.82949 15.5447 5.95239 15.595C6.07529 15.6452 6.20696 15.6705 6.33974 15.6694C6.47252 15.6682 6.60374 15.6407 6.72575 15.5882C6.84775 15.5358 6.9581 15.4597 7.05034 15.3641L12.0003 10.4141L16.9503 15.3641C17.1389 15.5463 17.3915 15.6471 17.6537 15.6448C17.9159 15.6425 18.1668 15.5374 18.3522 15.352C18.5376 15.1666 18.6427 14.9157 18.645 14.6535C18.6473 14.3913 18.5465 14.1387 18.3643 13.9501L12.7073 8.29315Z", fill: "white" }) });
2825
- var FileIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "14", viewBox: "0 0 12 14", fill: "none", children: [
2826
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M5.85938 0C6.22763 7.8646e-05 6.58076 0.146427 6.84111 0.406856L10.702 4.09964C10.9624 4.35999 11.1088 4.71312 11.1088 5.08137L11.1087 12.4973C11.1087 12.8656 10.9624 13.2188 10.702 13.4792C10.4416 13.7396 10.0223 13.7536 9.65399 13.7536H1.38859C1.02031 13.7536 0.667118 13.7396 0.406708 13.4792C0.146297 13.2188 0 12.8656 0 12.4973V1.38859C0 1.02031 0.146297 0.667118 0.406708 0.406708C0.667118 0.146297 1.02031 0 1.38859 0H5.85938ZM5.55435 0.925725H1.21665C0.98294 0.925725 0.793478 1.11519 0.793478 1.3489V12.537C0.793478 12.7707 0.98294 12.9601 1.21665 12.9601H9.89205C10.1258 12.9601 10.3152 12.7707 10.3152 12.537V5.55435H6.59579C6.31958 5.55435 6.05469 5.44463 5.85938 5.24932C5.66407 5.05401 5.55435 4.78912 5.55435 4.51291V0.925725ZM6.21558 0.925725V4.46994C6.21558 4.70366 6.40504 4.89312 6.63875 4.89312H10.3152L6.21558 0.925725Z", fill: "white" }),
2827
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2.91016 8.72803H8.20001", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" }),
2828
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2.91016 6.34766H5.29059", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" }),
2829
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2.91016 11.1089H8.20001", stroke: "currentColor", strokeWidth: "0.63476", strokeLinecap: "round" })
2830
- ] });
2831
- var ReportIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", children: [
2832
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { clipPath: "url(#clip0_837_190)", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M0 1.71875C0 1.26291 0.181082 0.825738 0.50341 0.50341C0.825738 0.181082 1.26291 0 1.71875 0L12.0312 0C12.4871 0 12.9243 0.181082 13.2466 0.50341C13.5689 0.825738 13.75 1.26291 13.75 1.71875V12.0312C13.75 12.4871 13.5689 12.9243 13.2466 13.2466C12.9243 13.5689 12.4871 13.75 12.0312 13.75H1.71875C1.26291 13.75 0.825738 13.5689 0.50341 13.2466C0.181082 12.9243 0 12.4871 0 12.0312V1.71875ZM12.8906 3.4375H9.45312V6.01562H12.8906V3.4375ZM12.8906 6.875H9.45312V9.45312H12.8906V6.875ZM12.8906 10.3125H9.45312V12.8906H12.0312C12.2592 12.8906 12.4778 12.8001 12.6389 12.6389C12.8001 12.4778 12.8906 12.2592 12.8906 12.0312V10.3125ZM8.59375 12.8906V10.3125H5.15625V12.8906H8.59375ZM4.29688 12.8906V10.3125H0.859375V12.0312C0.859375 12.2592 0.949916 12.4778 1.11108 12.6389C1.27224 12.8001 1.49083 12.8906 1.71875 12.8906H4.29688ZM0.859375 9.45312H4.29688V6.875H0.859375V9.45312ZM0.859375 6.01562H4.29688V3.4375H0.859375V6.01562ZM5.15625 3.4375V6.01562H8.59375V3.4375H5.15625ZM8.59375 6.875H5.15625V9.45312H8.59375V6.875Z", fill: "white" }) }),
2833
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("clipPath", { id: "clip0_837_190", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("rect", { width: "13.75", height: "13.75", fill: "white" }) }) })
2834
- ] });
2835
- var CloseIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2836
- "svg",
2837
- {
2838
- width: "14",
2839
- height: "14",
2840
- viewBox: "0 0 14 14",
2841
- fill: "none",
2842
- xmlns: "http://www.w3.org/2000/svg",
2843
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2844
- "path",
2845
- {
2846
- d: "M0 14L14 0M0 0L14 14",
2847
- stroke: "#6E3282",
2848
- strokeWidth: "1.5",
2849
- strokeLinecap: "round"
2850
- }
2851
- )
2852
- }
2853
- );
2854
- var AddIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2855
- "svg",
2856
- {
2857
- width: "24",
2858
- height: "24",
2859
- viewBox: "0 0 24 24",
2860
- fill: "none",
2861
- xmlns: "http://www.w3.org/2000/svg",
2862
- children: [
2863
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#6E3282" }),
2864
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2865
- "path",
2866
- {
2867
- d: "M6 12H18",
2868
- stroke: "white",
2869
- strokeWidth: "2",
2870
- strokeLinecap: "round"
2871
- }
2872
- ),
2873
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2874
- "path",
2875
- {
2876
- d: "M12 18L12 6",
2877
- stroke: "white",
2878
- strokeWidth: "2",
2879
- strokeLinecap: "round"
2880
- }
2881
- )
2882
- ]
2883
- }
2884
- );
2885
- var MinusIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2886
- "svg",
2887
- {
2888
- width: "24",
2889
- height: "24",
2890
- viewBox: "0 0 24 24",
2891
- fill: "none",
2892
- xmlns: "http://www.w3.org/2000/svg",
2893
- children: [
2894
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#DC7D0A" }),
2895
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2896
- "path",
2897
- {
2898
- d: "M6 12H18",
2899
- stroke: "white",
2900
- strokeWidth: "2",
2901
- strokeLinecap: "round"
2902
- }
2903
- )
2904
- ]
2905
- }
2906
- );
2907
- var ChevronRightIcon = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2908
- "svg",
2909
- {
2910
- width: "8",
2911
- height: "14",
2912
- viewBox: "0 0 8 14",
2913
- fill: "none",
2914
- xmlns: "http://www.w3.org/2000/svg",
2915
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2916
- "path",
2917
- {
2918
- fillRule: "evenodd",
2919
- clipRule: "evenodd",
2920
- d: "M7.70685 6.29302C7.89432 6.48055 7.99964 6.73486 7.99964 7.00002C7.99964 7.26519 7.89432 7.5195 7.70685 7.70702L2.04985 13.364C1.95761 13.4595 1.84726 13.5357 1.72526 13.5881C1.60326 13.6405 1.47204 13.6681 1.33926 13.6693C1.20648 13.6704 1.0748 13.6451 0.951901 13.5948C0.829005 13.5446 0.717352 13.4703 0.623459 13.3764C0.529567 13.2825 0.455314 13.1709 0.405033 13.048C0.354752 12.9251 0.32945 12.7934 0.330604 12.6606C0.331758 12.5278 0.359344 12.3966 0.411753 12.2746C0.464162 12.1526 0.540344 12.0423 0.635854 11.95L5.58585 7.00002L0.635854 2.05002C0.453696 1.86142 0.352901 1.60882 0.35518 1.34662C0.357458 1.08443 0.462627 0.833612 0.648035 0.648205C0.833443 0.462797 1.08426 0.357627 1.34645 0.355349C1.60865 0.35307 1.86125 0.453864 2.04985 0.636022L7.70685 6.29302Z",
2921
- fill: "white"
2922
- }
2923
- )
2924
- }
2925
- );
2926
- var Logo_sv2 = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "169", height: "47", viewBox: "0 0 169 47", fill: "none", children: [
2927
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M100.8 21.6667C101.267 21.9334 101.667 22.2667 101.867 22.6667C102.067 23.0667 102.267 23.6 102.267 24.2C102.267 24.8 102.133 25.2667 101.867 25.7334C101.6 26.2 101.267 26.5334 100.8 26.7334C100.333 26.9334 99.8 27.0667 99.2 27.0667H96.8V30.6667H95.6666V21.3334H99.2666C99.8666 21.3334 100.4 21.4667 100.867 21.6667H100.8ZM99.0666 26C99.6666 26 100.2 25.8667 100.533 25.5334C100.867 25.2 101.067 24.7334 101.067 24.2C101.067 23.6667 100.867 23.2 100.533 22.8667C100.2 22.5334 99.6666 22.4 99.0666 22.4H96.7333V26H99.0666Z", fill: "#141414" }),
2928
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M103.2 29.0667C102.933 28.5334 102.8 27.9334 102.8 27.2667C102.8 26.6 102.933 26 103.2 25.4667C103.467 24.9334 103.867 24.5334 104.4 24.2667C104.933 24 105.467 23.8 106.133 23.8C106.8 23.8 107.4 23.9334 107.867 24.2667C108.4 24.5334 108.8 25 109.067 25.4667C109.333 26 109.467 26.6 109.467 27.2667C109.467 27.9334 109.333 28.5334 109.067 29.0667C108.8 29.6 108.4 30 107.867 30.2667C107.333 30.5334 106.8 30.7334 106.133 30.7334C105.467 30.7334 104.867 30.6 104.4 30.2667C103.933 29.9334 103.467 29.5334 103.2 29.0667ZM108.067 28.5334C108.267 28.1334 108.333 27.7334 108.333 27.2667C108.333 26.8 108.267 26.3334 108.067 26C107.867 25.6 107.6 25.3334 107.267 25.1334C106.933 24.9334 106.533 24.8 106.067 24.8C105.6 24.8 105.2 24.9334 104.867 25.1334C104.533 25.3334 104.267 25.6667 104.067 26C103.867 26.4 103.8 26.8 103.8 27.2667C103.8 27.7334 103.867 28.2 104.067 28.5334C104.267 28.9334 104.533 29.2 104.867 29.4C105.2 29.6 105.6 29.7334 106.067 29.7334C106.533 29.7334 106.933 29.6 107.267 29.4C107.6 29.2 107.867 28.8667 108.067 28.5334Z", fill: "#141414" }),
2929
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M112.133 29.4C112.467 29.6667 112.933 29.8 113.467 29.8C114 29.8 114.333 29.7334 114.667 29.5334C114.933 29.3334 115.133 29.0667 115.133 28.8C115.133 28.5334 115.067 28.3334 114.933 28.2C114.8 28.0667 114.6 27.9334 114.4 27.9334C114.2 27.9334 113.867 27.8 113.4 27.8C112.8 27.7334 112.333 27.6667 111.933 27.5334C111.533 27.4 111.267 27.2 111 27C110.733 26.8 110.667 26.4 110.667 25.9334C110.667 25.4667 110.8 25.2 111 24.8667C111.2 24.5334 111.533 24.3334 111.933 24.1334C112.333 23.9334 112.733 23.8667 113.267 23.8667C114.067 23.8667 114.733 24.0667 115.2 24.4C115.733 24.8 116 25.3334 116 26H114.933C114.933 25.6667 114.733 25.3334 114.4 25.1334C114.067 24.9334 113.733 24.8 113.267 24.8C112.8 24.8 112.4 24.8667 112.133 25.0667C111.867 25.2667 111.733 25.5334 111.733 25.8C111.733 26.0667 111.733 26.2 111.933 26.3334C112.067 26.4667 112.267 26.5334 112.467 26.6C112.667 26.6667 113 26.6667 113.4 26.7334C114 26.8 114.467 26.9334 114.867 27C115.267 27.0667 115.533 27.3334 115.8 27.6C116.067 27.8667 116.133 28.2667 116.133 28.7334C116.133 29.2 116 29.5334 115.8 29.8C115.533 30.1334 115.267 30.3334 114.8 30.5334C114.4 30.7334 113.933 30.8 113.467 30.8C112.6 30.8 111.867 30.6 111.333 30.2C110.8 29.8 110.533 29.2 110.533 28.4667H111.6C111.6 28.8667 111.8 29.2 112.133 29.4667V29.4Z", fill: "#141414" }),
2930
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M116.6 24.8667V23.8667H117.8V21.9333H118.867V23.8667H120.6V24.8667H118.867V28.8667C118.867 29.1333 118.867 29.3333 119 29.4667C119.133 29.6 119.333 29.6667 119.6 29.6667H120.8V30.6667H119.533C118.867 30.6667 118.467 30.5333 118.133 30.2667C117.867 30 117.733 29.5333 117.733 28.9333V24.9333H116.533L116.6 24.8667Z", fill: "#141414" }),
2931
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M121.2 26.4H125.667V27.3334H121.2V26.4Z", fill: "#141414" }),
2932
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M130.8 29.0667C130.533 28.5334 130.4 27.9334 130.4 27.2667C130.4 26.6 130.533 26 130.8 25.4667C131.067 24.9334 131.467 24.5334 132 24.2667C132.533 24 133.067 23.8 133.733 23.8C134.4 23.8 135 23.9334 135.467 24.2667C136 24.5334 136.4 25 136.667 25.4667C136.933 26 137.067 26.6 137.067 27.2667C137.067 27.9334 136.933 28.5334 136.667 29.0667C136.4 29.6 136 30 135.467 30.2667C134.933 30.5334 134.4 30.7334 133.733 30.7334C133.067 30.7334 132.467 30.6 132 30.2667C131.533 29.9334 131.067 29.5334 130.8 29.0667ZM135.667 28.5334C135.867 28.1334 135.933 27.7334 135.933 27.2667C135.933 26.8 135.867 26.3334 135.667 26C135.467 25.6 135.2 25.3334 134.867 25.1334C134.533 24.9334 134.133 24.8 133.667 24.8C133.2 24.8 132.8 24.9334 132.467 25.1334C132.133 25.3334 131.867 25.6667 131.667 26C131.467 26.4 131.4 26.8 131.4 27.2667C131.4 27.7334 131.467 28.2 131.667 28.5334C131.867 28.9334 132.133 29.2 132.467 29.4C132.8 29.6 133.2 29.7334 133.667 29.7334C134.133 29.7334 134.533 29.6 134.867 29.4C135.2 29.2 135.467 28.8667 135.667 28.5334Z", fill: "#141414" }),
2933
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M141.4 30.7334C140.733 30.7334 140.133 30.6001 139.667 30.2667C139.2 30.0001 138.8 29.5334 138.533 29.0001C138.267 28.4667 138.133 27.8667 138.133 27.2001C138.133 26.5334 138.267 25.9334 138.533 25.4001C138.8 24.8667 139.2 24.4667 139.733 24.2001C140.267 23.9334 140.8 23.7334 141.467 23.7334C142.133 23.7334 142.933 23.9334 143.467 24.4001C144 24.8001 144.333 25.4001 144.467 26.1334H143.333C143.2 25.6667 143 25.3334 142.667 25.0667C142.333 24.8001 141.933 24.6667 141.467 24.6667C141 24.6667 140.267 24.8667 139.867 25.3334C139.467 25.8001 139.267 26.4001 139.267 27.1334C139.267 27.8667 139.467 28.4667 139.867 28.9334C140.267 29.4001 140.8 29.6667 141.467 29.6667C142.133 29.6667 142.4 29.5334 142.733 29.2667C143.067 29.0001 143.267 28.6667 143.4 28.2001H144.467C144.333 28.9334 144 29.5334 143.467 30.0001C142.933 30.4001 142.267 30.6667 141.467 30.6667L141.4 30.7334Z", fill: "#141414" }),
2934
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M151.8 26.8667V30.6667H150.733V26.9334C150.733 26.2 150.6 25.6667 150.267 25.3334C149.933 24.9334 149.467 24.8 148.867 24.8C148.267 24.8 147.733 25 147.4 25.4667C147 25.9334 146.867 26.5334 146.867 27.2667V30.6667H145.8V21.3334H146.867V25C147.067 24.6667 147.4 24.3334 147.733 24.1334C148.133 23.9334 148.533 23.8 149.067 23.8C149.867 23.8 150.533 24.0667 151.067 24.5334C151.6 25 151.8 25.8 151.8 26.8667Z", fill: "#141414" }),
2935
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M94.6666 38.2001V37.2001H95.8666V35.2667H96.9333V37.2001H98.6666V38.2001H96.9333V42.2001C96.9333 42.4667 96.9333 42.6667 97.0667 42.8001C97.2 42.9334 97.4 43.0001 97.6666 43.0001H98.8666V44.0001H97.6C96.9333 44.0001 96.5333 43.8667 96.2 43.6001C95.9333 43.3334 95.8 42.8667 95.8 42.2667V38.2667H94.6L94.6666 38.2001Z", fill: "#141414" }),
2936
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M100.8 37.5333C101.267 37.2667 101.867 37.0667 102.467 37.0667C103.067 37.0667 103.667 37.2 104.133 37.4667C104.6 37.7333 105 38.0667 105.267 38.6C105.533 39.1333 105.667 39.6667 105.733 40.3333C105.733 40.4 105.733 40.6 105.733 40.8H100.467C100.467 41.5333 100.667 42.0666 101.067 42.4666C101.467 42.8666 102 43.0667 102.6 43.0667C103.2 43.0667 103.533 42.9333 103.867 42.6667C104.2 42.4 104.467 42.0667 104.533 41.6667H105.667C105.533 42.3333 105.2 42.9333 104.667 43.4C104.133 43.8667 103.467 44.0667 102.733 44.0667C102 44.0667 101.467 43.9333 100.933 43.6C100.4 43.3333 100 42.9333 99.7334 42.4C99.4667 41.8667 99.3334 41.2667 99.3334 40.6C99.3334 39.9333 99.4667 39.2667 99.7334 38.8C100 38.2667 100.4 37.8667 100.867 37.6L100.8 37.5333ZM103.933 38.5333C103.533 38.2 103.067 38.0667 102.467 38.0667C101.867 38.0667 101.467 38.2667 101.133 38.6C100.8 38.9333 100.533 39.4 100.467 39.9333H104.6C104.6 39.3333 104.333 38.9333 103.933 38.6V38.5333Z", fill: "#141414" }),
2937
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M108.067 34.6667V44.0001H107V34.6667H108.067Z", fill: "#141414" }),
2938
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M110.867 37.5333C111.333 37.2667 111.933 37.0667 112.533 37.0667C113.133 37.0667 113.733 37.2 114.2 37.4667C114.667 37.7333 115.067 38.0667 115.333 38.6C115.6 39.1333 115.733 39.6667 115.8 40.3333C115.8 40.4 115.8 40.6 115.8 40.8H110.533C110.533 41.5333 110.733 42.0666 111.133 42.4666C111.533 42.8666 112.067 43.0667 112.667 43.0667C113.267 43.0667 113.6 42.9333 113.933 42.6667C114.267 42.4 114.533 42.0667 114.6 41.6667H115.733C115.6 42.3333 115.267 42.9333 114.733 43.4C114.2 43.8667 113.533 44.0667 112.8 44.0667C112.067 44.0667 111.533 43.9333 111 43.6C110.467 43.3333 110.067 42.9333 109.8 42.4C109.533 41.8667 109.4 41.2667 109.4 40.6C109.4 39.9333 109.533 39.2667 109.8 38.8C110.067 38.2667 110.467 37.8667 110.933 37.6L110.867 37.5333ZM114 38.5333C113.6 38.2 113.133 38.0667 112.533 38.0667C111.933 38.0667 111.533 38.2667 111.2 38.6C110.867 38.9333 110.6 39.4 110.533 39.9333H114.667C114.667 39.3333 114.4 38.9333 114 38.6V38.5333Z", fill: "#141414" }),
2939
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M118.4 42.7334C118.733 43.0001 119.2 43.1334 119.733 43.1334C120.267 43.1334 120.6 43.0667 120.933 42.8667C121.2 42.6667 121.4 42.4001 121.4 42.1334C121.4 41.8667 121.333 41.6667 121.2 41.5334C121.067 41.4001 120.867 41.2667 120.667 41.2667C120.467 41.2667 120.133 41.1334 119.667 41.1334C119.067 41.0667 118.6 41.0001 118.2 40.8667C117.8 40.7334 117.533 40.5334 117.267 40.3334C117 40.1334 116.933 39.7334 116.933 39.2667C116.933 38.8001 117.067 38.5334 117.267 38.2001C117.467 37.8667 117.8 37.6667 118.2 37.4667C118.6 37.2667 119 37.2001 119.533 37.2001C120.333 37.2001 121 37.4001 121.467 37.7334C122 38.1334 122.267 38.6667 122.267 39.3334H121.2C121.2 39.0001 121 38.6667 120.667 38.4667C120.333 38.2667 120 38.1334 119.533 38.1334C119.067 38.1334 118.667 38.2001 118.4 38.4001C118.133 38.6001 118 38.8667 118 39.1334C118 39.4001 118 39.5334 118.2 39.6667C118.333 39.8001 118.533 39.8667 118.733 39.9334C118.933 40.0001 119.267 40.0001 119.667 40.0667C120.267 40.1334 120.733 40.2667 121.133 40.3334C121.533 40.4001 121.8 40.6667 122.067 40.9334C122.333 41.2001 122.4 41.6001 122.4 42.0667C122.4 42.5334 122.267 42.8667 122.067 43.1334C121.8 43.4667 121.533 43.6667 121.067 43.8667C120.667 44.0667 120.2 44.1334 119.733 44.1334C118.867 44.1334 118.133 43.9334 117.6 43.5334C117.067 43.1334 116.8 42.5334 116.8 41.8001H117.867C117.867 42.2001 118.067 42.5334 118.4 42.8001V42.7334Z", fill: "#141414" }),
2940
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M122.867 38.2001V37.2001H124.067V35.2667H125.133V37.2001H126.867V38.2001H125.133V42.2001C125.133 42.4667 125.133 42.6667 125.267 42.8001C125.4 42.9334 125.6 43.0001 125.867 43.0001H127.067V44.0001H125.8C125.133 44.0001 124.733 43.8667 124.4 43.6001C124.133 43.3334 124 42.8667 124 42.2667V38.2667H122.8L122.867 38.2001Z", fill: "#141414" }),
2941
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M130.467 42.7334L132.467 37.2001H133.6L130.467 45.1334C130.333 45.5334 130.133 45.8667 130.067 46.0667C130 46.2667 129.8 46.4001 129.6 46.5334C129.4 46.6001 129.133 46.6667 128.867 46.6667H127.533V45.6667H128.533C128.733 45.6667 128.933 45.6667 129 45.6001C129.067 45.5334 129.2 45.4667 129.267 45.4001C129.267 45.2667 129.4 45.1334 129.533 44.8667L129.867 44.0667L127.2 37.2001H128.333L130.4 42.7334H130.467Z", fill: "#141414" }),
2942
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M137.933 38.2667H137.4C136.733 38.2667 136.267 38.4667 136 38.9334C135.733 39.4001 135.6 39.9334 135.6 40.5334V44.0001H134.533V37.2001H135.467L135.6 38.2001C135.8 37.8667 136.067 37.6667 136.333 37.4667C136.6 37.2667 137.067 37.2001 137.6 37.2001H137.933V38.2667Z", fill: "#141414" }),
2943
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M139.867 37.5333C140.333 37.2667 140.933 37.0667 141.533 37.0667C142.133 37.0667 142.733 37.2 143.2 37.4667C143.667 37.7333 144.067 38.0667 144.333 38.6C144.6 39.1333 144.733 39.6667 144.8 40.3333C144.8 40.4 144.8 40.6 144.8 40.8H139.533C139.533 41.5333 139.733 42.0666 140.133 42.4666C140.533 42.8666 141.067 43.0667 141.667 43.0667C142.267 43.0667 142.6 42.9333 142.933 42.6667C143.267 42.4 143.533 42.0667 143.6 41.6667H144.733C144.6 42.3333 144.267 42.9333 143.733 43.4C143.2 43.8667 142.533 44.0667 141.8 44.0667C141.067 44.0667 140.533 43.9333 140 43.6C139.467 43.3333 139.067 42.9333 138.8 42.4C138.533 41.8667 138.4 41.2667 138.4 40.6C138.4 39.9333 138.533 39.2667 138.8 38.8C139.067 38.2667 139.467 37.8667 139.933 37.6L139.867 37.5333ZM143 38.5333C142.6 38.2 142.133 38.0667 141.533 38.0667C140.933 38.0667 140.533 38.2667 140.2 38.6C139.867 38.9333 139.6 39.4 139.533 39.9333H143.667C143.667 39.3333 143.4 38.9333 143 38.6V38.5333Z", fill: "#141414" }),
2944
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M147.067 34.6667V44.0001H146V34.6667H147.067Z", fill: "#141414" }),
2945
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M150 42.7334C150.333 43.0001 150.8 43.1334 151.333 43.1334C151.867 43.1334 152.2 43.0667 152.533 42.8667C152.8 42.6667 153 42.4001 153 42.1334C153 41.8667 152.933 41.6667 152.8 41.5334C152.667 41.4001 152.467 41.2667 152.267 41.2667C152.067 41.2667 151.733 41.1334 151.267 41.1334C150.667 41.0667 150.2 41.0001 149.8 40.8667C149.4 40.7334 149.133 40.5334 148.867 40.3334C148.6 40.1334 148.533 39.7334 148.533 39.2667C148.533 38.8001 148.667 38.5334 148.867 38.2001C149.067 37.8667 149.4 37.6667 149.8 37.4667C150.2 37.2667 150.6 37.2001 151.133 37.2001C151.933 37.2001 152.6 37.4001 153.067 37.7334C153.6 38.1334 153.867 38.6667 153.867 39.3334H152.8C152.8 39.0001 152.6 38.6667 152.267 38.4667C151.933 38.2667 151.6 38.1334 151.133 38.1334C150.667 38.1334 150.267 38.2001 150 38.4001C149.733 38.6001 149.6 38.8667 149.6 39.1334C149.6 39.4001 149.6 39.5334 149.8 39.6667C149.933 39.8001 150.133 39.8667 150.333 39.9334C150.533 40.0001 150.867 40.0001 151.267 40.0667C151.867 40.1334 152.333 40.2667 152.733 40.3334C153.133 40.4001 153.4 40.6667 153.667 40.9334C153.933 41.2001 154 41.6001 154 42.0667C154 42.5334 153.867 42.8667 153.667 43.1334C153.4 43.4667 153.133 43.6667 152.667 43.8667C152.267 44.0667 151.8 44.1334 151.333 44.1334C150.467 44.1334 149.733 43.9334 149.2 43.5334C148.667 43.1334 148.4 42.5334 148.4 41.8001H149.467C149.467 42.2001 149.667 42.5334 150 42.8001V42.7334Z", fill: "#141414" }),
2946
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M156.533 37.5333C157 37.2667 157.6 37.0667 158.2 37.0667C158.8 37.0667 159.4 37.2 159.867 37.4667C160.333 37.7333 160.733 38.0667 161 38.6C161.267 39.1333 161.4 39.6667 161.467 40.3333C161.467 40.4 161.467 40.6 161.467 40.8H156.2C156.2 41.5333 156.4 42.0666 156.8 42.4666C157.2 42.8666 157.733 43.0667 158.333 43.0667C158.933 43.0667 159.267 42.9333 159.6 42.6667C159.933 42.4 160.2 42.0667 160.267 41.6667H161.4C161.267 42.3333 160.933 42.9333 160.4 43.4C159.867 43.8667 159.2 44.0667 158.467 44.0667C157.733 44.0667 157.2 43.9333 156.667 43.6C156.133 43.3333 155.733 42.9333 155.467 42.4C155.2 41.8667 155.067 41.2667 155.067 40.6C155.067 39.9333 155.2 39.2667 155.467 38.8C155.733 38.2667 156.133 37.8667 156.6 37.6L156.533 37.5333ZM159.667 38.5333C159.267 38.2 158.8 38.0667 158.2 38.0667C157.6 38.0667 157.2 38.2667 156.867 38.6C156.533 38.9333 156.267 39.4 156.2 39.9333H160.333C160.333 39.3333 160.067 38.9333 159.667 38.6V38.5333Z", fill: "#141414" }),
2947
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M168.8 40.2001V44.0001H167.733V40.2668C167.733 39.5334 167.6 39.0001 167.267 38.6668C166.933 38.2668 166.467 38.1334 165.867 38.1334C165.267 38.1334 164.733 38.3334 164.333 38.8001C164 39.2668 163.8 39.8668 163.8 40.6001V44.0001H162.733V37.2001H163.667L163.8 38.1334C164.333 37.4668 165.067 37.1334 166.067 37.1334C167.067 37.1334 167.533 37.4001 168.067 37.8668C168.6 38.3334 168.8 39.1334 168.8 40.2001Z", fill: "#141414" }),
2948
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M26.6667 28.0001C26.6667 30.8001 25 33.4001 22.4 34.2001C21.2 34.5334 20 34.6667 18 34.6667H7C4.93333 34.6667 4.66667 35.0001 4.66667 37.0001V41.3334C4.66667 42.9334 3.66667 44.0001 2.33333 44.0001C1 44.0001 0 42.9334 0 41.3334V38.3334C0 37.0001 -1.29143e-07 35.8667 0.133333 35.2667C0.533333 33.0001 1.86667 31.2667 4.06667 30.4667C4.93333 30.1334 6.4 29.9334 9.26667 29.9334H18.6667C19.4667 29.9334 20.2667 29.8667 20.6 29.7334C21.6 29.3334 21.9333 28.6667 21.9333 27.9334C21.9333 27.2001 21.6667 26.4667 20.6 26.1334C20.2667 26.0001 19.4667 25.9334 18.6667 25.9334H3.6C3 25.9334 2.46667 25.9334 2.2 25.8001C1.2 25.4667 0.6 24.5334 0.6 23.6001C0.6 22.6667 1.2 21.7334 2.2 21.4001C2.53333 21.2667 2.86667 21.2667 3.53333 21.2667H17.9333C20 21.2667 21.6 21.4001 22.6 21.8001C25.2 22.8001 26.6 24.9334 26.6 27.9334L26.6667 28.0001ZM54.4667 21.5334C54.1333 21.4001 53.6 21.3334 52.8667 21.3334H31.7333C31.2 21.3334 30.7333 21.3334 30.4667 21.4667C29.3333 21.8001 28.6667 22.6667 28.6667 23.6667C28.6667 24.6667 29.2 25.4667 30.2667 25.8001C30.6 25.9334 31.1333 26.0001 31.7333 26.0001H40V41.6001C40 43.2001 41.0667 44.0001 42.3333 44.0001C43.6 44.0001 44.6667 43.2001 44.6667 41.6001V26.0001H52.8667C53.6667 26.0001 54.0667 26.0001 54.3333 25.8667C55.4 25.5334 56 24.6667 56 23.6667C56 22.6667 55.4667 21.8667 54.4667 21.5334ZM79.6667 30.9334C78.5333 30.3334 77.0667 30.0001 73.4 30.0001H66.3333C65.2 30.0001 64.6 29.9334 64.2 29.8001C63.0667 29.4001 62.6667 28.6667 62.6667 28.0001C62.6667 27.3334 62.9333 26.5334 64.1333 26.1334C64.4667 26.0001 65.0667 26.0001 65.6667 26.0001H78.6667C78.9333 26.0001 79.6667 26.0001 79.8667 26.0001C81.0667 25.8001 82 25.0667 82 23.7334C82 22.4001 81.0667 21.7334 79.9333 21.4667C79.7333 21.4667 79.2667 21.4001 78.6667 21.4001H66.3333C64.1333 21.4001 62.5333 21.6667 61.4667 22.1334C59.2667 23.2001 58 25.4667 58 28.0667C58 30.6667 59.2 33.0001 61.6 34.0667C62.6667 34.5334 64.2667 34.7334 66.3333 34.7334H75.3333C76.4667 34.7334 77.0667 34.8667 77.4667 35.0001C78.4 35.3334 78.6667 36.2667 78.6667 37.0667C78.6667 37.8667 78.4 38.8667 77.2667 39.2001C76.8667 39.3334 76.0667 39.4001 74.7333 39.4001H61.6667C61.1333 39.4001 60.6 39.4001 60.3333 39.5334C59.2667 39.8001 58.6667 40.6667 58.6667 41.7334C58.6667 42.8001 59.3333 43.4667 60.2 43.8001C60.5333 43.9334 61.2667 44.0667 61.8 44.0667H73.3333C75.8 44.0667 77.8 43.9334 79 43.5334C81.7333 42.7334 83.2667 40.1334 83.2667 37.0667C83.2667 34.0001 81.8667 32.1334 79.6 31.0001L79.6667 30.9334Z", fill: "#141414" }),
2949
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M52.0667 9.8L52.3334 9.33333C50.6667 7.06667 46.7334 5.46667 42.7334 5.33333H41.9334C37.9334 5.46667 34 7.06667 32.3334 9.33333L32.6 9.8C31.8667 9.8 31.3334 10.2667 31.3334 10.8667L32.8667 17.3333C33 17.7333 33.1334 17.9333 33.6667 17.9333H51C51.4667 17.9333 51.6667 17.6667 51.7334 17.3333L53.2667 10.8667C53.2667 10.2667 52.7334 9.8 52 9.8H52.0667ZM36.8667 11.8667C36.7334 11.8667 36.5334 11.8 36.4 11.8C35.7334 11.8 35.2667 12.2667 35.2667 12.8667C35.2667 13.4667 35.7334 13.8667 36.3334 13.8667C36.9334 13.8667 36.8667 13.8 37 13.6C37 14.1333 36.4 15.3333 35.6 15.3333H33.9334C32.8 15.3333 32.6667 13.8 32.6667 13.6667C32.8 13.8 33.1334 13.8667 33.4 13.8667C33.9334 13.8667 34.4 13.4667 34.4 12.8667C34.4 12.2667 33.9334 11.8 33.2667 11.8C32.6 11.8 33 11.8 32.9334 11.8C33.2 11.6 33.4667 11.2667 33.4667 10.8667C33.4667 10.4667 33.2667 10.2667 33 10.0667L34.5334 9.33333C35.5334 7.66667 37.3334 6.46667 39.5334 6C38.3334 6.86667 37.3334 7.93333 36.5334 9.33333L37.0667 9.8C36.5334 9.86667 36.1334 10.3333 36.1334 10.8667C36.1334 11.4 36.4 11.6667 36.8 11.8667H36.8667ZM41.8667 11.9333C41.7334 11.8667 41.4667 11.8 41.3334 11.8C40.6667 11.8 40.2 12.2667 40.2 12.8667C40.2 13.4667 40.6667 13.8667 41.2667 13.8667C41.8667 13.8667 41.8 13.8 42 13.6667C42 14.2 41.6 15.3333 40.6667 15.3333H39C37.9334 15.3333 37.6667 14 37.6667 13.6C37.8 13.7333 38.0667 13.8667 38.4 13.8667C38.9334 13.8667 39.4667 13.4667 39.4667 12.8667C39.4667 12.2667 39 11.8 38.3334 11.8C37.6667 11.8 37.9334 11.8 37.8667 11.8667C38.2667 11.6667 38.5334 11.3333 38.5334 10.8667C38.5334 10.4 38.2667 10.0667 37.8667 9.93333L39.0667 9.33333C39.4 8.13333 40.4667 6.4 41.6 5.8C41.4667 6.4 41.4 7.66667 41.4 9.33333C41.4 9.33333 41.7334 9.66667 42.0667 9.86667C41.6 10 41.2667 10.4 41.2667 10.8667C41.2667 11.3333 41.5334 11.6667 41.9334 11.8667L41.8667 11.9333ZM45.6667 15.3333H44C43.0667 15.3333 42.6667 14.2 42.6667 13.6667C42.8 13.8 43.0667 13.8667 43.4 13.8667C44 13.8667 44.4667 13.4667 44.4667 12.8667C44.4667 12.2667 44 11.8 43.3334 11.8C42.6667 11.8 42.9334 11.8 42.8 11.9333C43.2 11.8 43.5334 11.4 43.5334 10.9333C43.5334 10.4667 43.2 10.0667 42.7334 9.93333C43.0667 9.73333 43.4 9.4 43.4 9.4C43.4 7.73333 43.3334 6.46667 43.1334 5.86667C44.3334 6.46667 45.4 8.13333 45.7334 9.4L46.9334 10C46.6 10.1333 46.2667 10.5333 46.2667 10.9333C46.2667 11.3333 46.5334 11.7333 46.9334 11.9333C46.8 11.9333 46.6 11.8667 46.4667 11.8667C45.8 11.8667 45.3334 12.3333 45.3334 12.9333C45.3334 13.5333 45.8 13.9333 46.4 13.9333C47 13.9333 46.9334 13.8667 47.1334 13.6667C47.1334 14 46.8667 15.4 45.8 15.4L45.6667 15.3333ZM50.6667 15.3333H49C48.1334 15.3333 47.6 14.2 47.6 13.6C47.7334 13.8 48 13.8667 48.3334 13.8667C48.8667 13.8667 49.3334 13.4667 49.3334 12.8667C49.3334 12.2667 48.8667 11.8 48.2 11.8C47.5334 11.8 47.8 11.8 47.7334 11.8667C48.1334 11.6667 48.4 11.3333 48.4 10.8667C48.4 10.4 48 9.86667 47.4 9.8L48 9.33333C47.2 7.93333 46.2 6.93333 45 6C47.1334 6.46667 49 7.6 50 9.33333L51.6 10.0667C51.3334 10.2667 51.1334 10.5333 51.1334 10.9333C51.1334 11.3333 51.4 11.7333 51.7334 11.9333C51.6667 11.9333 51.4667 11.8667 51.3334 11.8667C50.6667 11.8667 50.2 12.3333 50.2 12.9333C50.2 13.5333 50.6667 13.9333 51.2 13.9333C51.7334 13.9333 51.8 13.8667 51.9334 13.7333C51.9334 13.8667 51.7334 15.4 50.6667 15.4V15.3333ZM42.3334 5.33333C41.4 5.33333 40.6667 4.6 40.6667 3.66667C40.6667 2.73333 41.2667 2.2 42 2.06667V1.33333H41.3334V0.666667H42V0H42.6667V0.666667H43.3334V1.33333H42.6667V2.06667C43.4 2.2 44 2.86667 44 3.73333C44 4.6 43.2667 5.4 42.3334 5.4V5.33333Z", fill: "#F0AA1E" }),
2950
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M89.3334 21.3334V44", stroke: "black", strokeWidth: "0.8", strokeMiterlimit: "10" })
3339
+ d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
3340
+ fill: "#141414"
3341
+ }
3342
+ ),
3343
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3344
+ "path",
3345
+ {
3346
+ d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
3347
+ fill: "#F0AA1E"
3348
+ }
3349
+ ),
3350
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" })
2951
3351
  ] });
2952
- var Logo_en2 = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { width: "189.0", height: "40", viewBox: "0 0 189 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
2953
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3352
+ var Logo_en2 = () => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { width: "189.0", height: "40", viewBox: "0 0 189 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
3353
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2954
3354
  "path",
2955
3355
  {
2956
3356
  d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
2957
3357
  fill: "#141414"
2958
3358
  }
2959
3359
  ),
2960
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3360
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2961
3361
  "path",
2962
3362
  {
2963
3363
  d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
2964
3364
  fill: "#F0AA1E"
2965
3365
  }
2966
3366
  ),
2967
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" }),
2968
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3367
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M82.2223 18.3335V37.2224", stroke: "currentColor", strokeWidth: "0.8", strokeMiterlimit: "10" }),
3368
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2969
3369
  "path",
2970
3370
  {
2971
3371
  d: "M88.9445 24.8335C89.3334 25.1669 89.8334 25.3335 90.3889 25.3335C90.9445 25.3335 91.3334 25.2224 91.6667 25.0002C92 24.778 92.1667 24.4446 92.1667 24.0002C92.1667 23.5557 92.0556 23.4446 91.8889 23.278C91.7222 23.1113 91.5 22.9446 91.1667 22.8891C90.8334 22.8335 90.5 22.7224 90 22.6113C89.2222 22.5002 88.6111 22.278 88.1667 21.9446C87.7222 21.6669 87.5 21.1669 87.5 20.4446C87.5 19.7224 87.6111 19.6113 87.8334 19.278C88.0556 18.9446 88.3889 18.6669 88.7778 18.5002C89.1667 18.3335 89.6667 18.2224 90.1667 18.2224C90.6667 18.2224 91.2222 18.3335 91.6111 18.5002C92.0556 18.7224 92.3889 19.0002 92.6111 19.3335C92.8334 19.6669 93 20.1113 93 20.5557H92.0556C92 20.1113 91.7778 19.7224 91.4445 19.4446C91.1111 19.1669 90.6667 19.0557 90.1667 19.0557C89.6667 19.0557 89.2223 19.1669 88.9445 19.3891C88.6667 19.6113 88.5 19.9446 88.5 20.3335C88.5 20.7224 88.6111 20.8891 88.7778 21.0557C88.9445 21.2224 89.1667 21.3335 89.4445 21.4446C89.7222 21.5557 90.1111 21.6113 90.6111 21.7224C91.3889 21.8335 92 22.0557 92.5 22.3891C92.9445 22.7224 93.2223 23.1669 93.2223 23.8891C93.2223 24.6113 93.1111 24.7224 92.8889 25.0557C92.6667 25.3891 92.3334 25.6669 91.8889 25.8891C91.4445 26.0557 91 26.1669 90.4445 26.1669C89.8889 26.1669 89.3334 26.0557 88.8334 25.8335C88.3889 25.6113 88.0556 25.3335 87.7778 24.8891C87.5556 24.5002 87.3889 24.0557 87.3889 23.5002H88.3334C88.3334 24.0002 88.5556 24.4446 88.9445 24.778V24.8335Z",
2972
3372
  fill: "#141414"
2973
3373
  }
2974
3374
  ),
2975
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3375
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2976
3376
  "path",
2977
3377
  {
2978
3378
  d: "M94.5557 20.4446L95.9446 25.0557L97.4446 20.4446H98.2779L99.6668 25.0557L101.167 20.4446H102.111L100.222 26.1112H99.2223L97.8334 21.889L96.389 26.1112H95.389L93.5557 20.4446H94.5001H94.5557Z",
2979
3379
  fill: "#141414"
2980
3380
  }
2981
3381
  ),
2982
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3382
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2983
3383
  "path",
2984
3384
  {
2985
3385
  d: "M103.778 20.7224C104.167 20.5002 104.667 20.3335 105.167 20.3335C105.667 20.3335 106.167 20.4446 106.556 20.6668C106.945 20.8891 107.278 21.1668 107.5 21.6113C107.722 22.0002 107.833 22.5002 107.889 23.0557C107.889 23.1113 107.889 23.2779 107.889 23.4446H103.5C103.5 24.0557 103.667 24.5002 104 24.8335C104.333 25.1668 104.778 25.3335 105.278 25.3335C105.778 25.3335 106.056 25.2224 106.333 25.0002C106.611 24.7779 106.833 24.5002 106.889 24.1668H107.833C107.722 24.7224 107.445 25.2224 107 25.6113C106.556 26.0002 106 26.1668 105.389 26.1668C104.778 26.1668 104.333 26.0557 103.889 25.7779C103.445 25.5557 103.111 25.2224 102.889 24.7779C102.667 24.3335 102.556 23.8335 102.556 23.2779C102.556 22.7224 102.667 22.1668 102.889 21.7779C103.111 21.3335 103.445 21.0002 103.833 20.7779L103.778 20.7224ZM106.389 21.5557C106.056 21.2779 105.667 21.1668 105.167 21.1668C104.667 21.1668 104.333 21.3335 104.056 21.6113C103.778 21.8891 103.556 22.2779 103.5 22.7224H106.945C106.945 22.2224 106.722 21.8891 106.389 21.6113V21.5557Z",
2986
3386
  fill: "#141414"
2987
3387
  }
2988
3388
  ),
2989
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3389
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2990
3390
  "path",
2991
3391
  {
2992
3392
  d: "M114.278 26.1114H113.5L113.389 25.2225C112.889 25.8892 112.278 26.2225 111.445 26.2225C110.611 26.2225 110.445 26.1114 110.056 25.8892C109.667 25.6669 109.333 25.3336 109.111 24.8892C108.889 24.4447 108.778 23.9447 108.778 23.3336C108.778 22.7225 108.889 22.2781 109.111 21.8336C109.333 21.3892 109.667 21.0558 110.111 20.8336C110.556 20.6114 111 20.4447 111.5 20.4447C112 20.4447 112.333 20.5003 112.667 20.7225C113 20.8892 113.222 21.1114 113.444 21.3892V18.3892H114.333V26.1669L114.278 26.1114ZM113.111 24.3892C113.278 24.0558 113.333 23.7225 113.333 23.3336C113.333 22.9447 113.278 22.5558 113.111 22.2225C112.945 21.8892 112.722 21.6669 112.444 21.4447C112.167 21.278 111.833 21.1669 111.445 21.1669C110.889 21.1669 110.445 21.3892 110.056 21.7781C109.667 22.1669 109.556 22.6669 109.556 23.2781C109.556 23.8892 109.722 24.3892 110.056 24.778C110.389 25.1669 110.833 25.3892 111.445 25.3892C112.056 25.3892 112.111 25.2781 112.444 25.1114C112.722 24.9447 112.945 24.6669 113.111 24.3892Z",
2993
3393
  fill: "#141414"
2994
3394
  }
2995
3395
  ),
2996
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3396
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2997
3397
  "path",
2998
3398
  {
2999
3399
  d: "M116.556 18.8335C116.556 19.0002 116.5 19.1669 116.389 19.278C116.278 19.3891 116.111 19.4446 115.944 19.4446C115.778 19.4446 115.611 19.3891 115.5 19.278C115.389 19.1669 115.333 19.0002 115.333 18.8335C115.333 18.6669 115.389 18.5002 115.5 18.3891C115.611 18.278 115.778 18.2224 115.944 18.2224C116.111 18.2224 116.278 18.278 116.389 18.3891C116.5 18.5002 116.556 18.6669 116.556 18.8335ZM116.444 20.4446V26.1113H115.556V20.4446H116.444Z",
3000
3400
  fill: "#141414"
3001
3401
  }
3002
3402
  ),
3003
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3403
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3004
3404
  "path",
3005
3405
  {
3006
3406
  d: "M118.833 25.0557C119.111 25.2779 119.5 25.389 119.945 25.389C120.389 25.389 120.667 25.3335 120.945 25.1668C121.167 25.0001 121.333 24.7779 121.333 24.5557C121.333 24.3335 121.278 24.1668 121.167 24.0557C121.056 23.9446 120.889 23.8335 120.722 23.8335C120.556 23.8335 120.278 23.7224 119.889 23.7224C119.389 23.6668 119 23.6112 118.667 23.5001C118.333 23.389 118.111 23.2224 117.889 23.0557C117.722 22.8335 117.611 22.5557 117.611 22.1668C117.611 21.7779 117.722 21.5557 117.889 21.2779C118.056 21.0001 118.333 20.8335 118.667 20.6668C119 20.5001 119.333 20.4446 119.778 20.4446C120.445 20.4446 121 20.6112 121.389 20.889C121.833 21.2224 122.056 21.6668 122.056 22.2224H121.167C121.167 21.9446 121 21.6668 120.722 21.5001C120.445 21.3335 120.167 21.2224 119.778 21.2224C119.389 21.2224 119.056 21.2779 118.833 21.4446C118.611 21.6112 118.5 21.8335 118.5 22.0557C118.5 22.2779 118.5 22.389 118.667 22.5001C118.778 22.6112 118.945 22.6668 119.111 22.7224C119.278 22.7224 119.556 22.7779 119.889 22.8335C120.389 22.889 120.778 23.0001 121.111 23.0557C121.445 23.1668 121.667 23.3335 121.889 23.5557C122.111 23.7779 122.167 24.1112 122.167 24.5001C122.167 24.889 122.056 25.1668 121.889 25.389C121.667 25.6668 121.445 25.8335 121.056 26.0001C120.722 26.1668 120.333 26.2224 119.945 26.2224C119.222 26.2224 118.611 26.0557 118.167 25.7224C117.722 25.389 117.5 24.889 117.5 24.2779H118.389C118.389 24.6112 118.556 24.889 118.833 25.1112V25.0557Z",
3007
3407
  fill: "#141414"
3008
3408
  }
3009
3409
  ),
3010
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3410
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3011
3411
  "path",
3012
3412
  {
3013
3413
  d: "M128.278 22.9446V26.1113H127.389V23.0002C127.389 22.3891 127.278 21.9446 127 21.6668C126.722 21.3335 126.333 21.2224 125.833 21.2224C125.333 21.2224 124.889 21.3891 124.611 21.7779C124.278 22.1668 124.167 22.6668 124.167 23.2779V26.1113H123.278V18.3335H124.167V21.3891C124.333 21.1113 124.611 20.8335 124.889 20.6668C125.222 20.5002 125.556 20.3891 126 20.3891C126.667 20.3891 127.222 20.6113 127.667 21.0002C128.111 21.3891 128.278 22.0557 128.278 22.9446Z",
3014
3414
  fill: "#141414"
3015
3415
  }
3016
3416
  ),
3017
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3417
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3018
3418
  "path",
3019
3419
  {
3020
3420
  d: "M136.833 18.6113C137.222 18.8335 137.556 19.1113 137.722 19.4446C137.945 19.7779 138.056 20.2224 138.056 20.7224C138.056 21.2224 137.945 21.6113 137.722 22.0002C137.5 22.3891 137.222 22.6668 136.833 22.8335C136.445 23.0002 136 23.1113 135.5 23.1113H133.5V26.1113H132.556V18.3335H135.556C136.056 18.3335 136.5 18.4446 136.889 18.6113H136.833ZM135.389 22.2224C135.889 22.2224 136.333 22.1113 136.611 21.8335C136.889 21.5557 137.056 21.1668 137.056 20.7224C137.056 20.2779 136.889 19.8891 136.611 19.6113C136.333 19.3335 135.889 19.2224 135.389 19.2224H133.445V22.2224H135.389Z",
3021
3421
  fill: "#141414"
3022
3422
  }
3023
3423
  ),
3024
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3424
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3025
3425
  "path",
3026
3426
  {
3027
3427
  d: "M138.833 24.778C138.611 24.3336 138.5 23.8336 138.5 23.278C138.5 22.7225 138.611 22.2225 138.833 21.778C139.056 21.3336 139.389 21.0003 139.833 20.778C140.278 20.5558 140.722 20.3892 141.278 20.3892C141.833 20.3892 142.333 20.5003 142.722 20.778C143.167 21.0003 143.5 21.3892 143.722 21.778C143.945 22.2225 144.056 22.7225 144.056 23.278C144.056 23.8336 143.945 24.3336 143.722 24.778C143.5 25.2225 143.167 25.5558 142.722 25.778C142.278 26.0003 141.833 26.1669 141.278 26.1669C140.722 26.1669 140.222 26.0558 139.833 25.778C139.445 25.5003 139.056 25.1669 138.833 24.778ZM142.945 24.3336C143.111 24.0003 143.167 23.6669 143.167 23.278C143.167 22.8892 143.111 22.5003 142.945 22.2225C142.778 21.8892 142.556 21.6669 142.278 21.5003C142 21.3336 141.667 21.2225 141.278 21.2225C140.889 21.2225 140.556 21.3336 140.278 21.5003C140 21.6669 139.778 21.9447 139.611 22.2225C139.445 22.5003 139.389 22.8892 139.389 23.278C139.389 23.6669 139.445 24.0558 139.611 24.3336C139.778 24.6669 140 24.8892 140.278 25.0558C140.556 25.2225 140.889 25.3336 141.278 25.3336C141.667 25.3336 142 25.2225 142.278 25.0558C142.556 24.8892 142.778 24.6114 142.945 24.3336Z",
3028
3428
  fill: "#141414"
3029
3429
  }
3030
3430
  ),
3031
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3431
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3032
3432
  "path",
3033
3433
  {
3034
3434
  d: "M146.278 25.0557C146.556 25.2779 146.945 25.389 147.389 25.389C147.833 25.389 148.111 25.3335 148.389 25.1668C148.611 25.0001 148.778 24.7779 148.778 24.5557C148.778 24.3335 148.722 24.1668 148.611 24.0557C148.5 23.9446 148.333 23.8335 148.167 23.8335C148 23.8335 147.722 23.7224 147.333 23.7224C146.833 23.6668 146.445 23.6112 146.111 23.5001C145.778 23.389 145.556 23.2224 145.333 23.0557C145.167 22.8335 145.056 22.5557 145.056 22.1668C145.056 21.7779 145.167 21.5557 145.333 21.2779C145.5 21.0001 145.778 20.8335 146.111 20.6668C146.445 20.5001 146.778 20.4446 147.222 20.4446C147.889 20.4446 148.445 20.6112 148.833 20.889C149.278 21.2224 149.5 21.6668 149.5 22.2224H148.611C148.611 21.9446 148.445 21.6668 148.167 21.5001C147.889 21.3335 147.611 21.2224 147.222 21.2224C146.833 21.2224 146.5 21.2779 146.278 21.4446C146.056 21.6112 145.945 21.8335 145.945 22.0557C145.945 22.2779 145.945 22.389 146.111 22.5001C146.222 22.6112 146.389 22.6668 146.556 22.7224C146.722 22.7224 147 22.7779 147.333 22.8335C147.833 22.889 148.222 23.0001 148.556 23.0557C148.889 23.1668 149.111 23.3335 149.333 23.5557C149.556 23.7779 149.611 24.1112 149.611 24.5001C149.611 24.889 149.5 25.1668 149.333 25.389C149.111 25.6668 148.889 25.8335 148.5 26.0001C148.167 26.1668 147.778 26.2224 147.389 26.2224C146.667 26.2224 146.056 26.0557 145.611 25.7224C145.167 25.389 144.945 24.889 144.945 24.2779H145.833C145.833 24.6112 146 24.889 146.278 25.1112V25.0557Z",
3035
3435
  fill: "#141414"
3036
3436
  }
3037
3437
  ),
3038
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3438
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3039
3439
  "path",
3040
3440
  {
3041
3441
  d: "M150 21.2779V20.4446H151V18.8335H151.889V20.4446H153.333V21.2779H151.889V24.6113C151.889 24.8335 151.889 25.0002 152 25.1113C152.111 25.2224 152.278 25.2779 152.5 25.2779H153.5V26.1113H152.445C151.889 26.1113 151.556 26.0002 151.278 25.7779C151.056 25.5557 150.945 25.1668 150.945 24.6668V21.3335H149.945L150 21.2779Z",
3042
3442
  fill: "#141414"
3043
3443
  }
3044
3444
  ),
3045
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3445
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3046
3446
  "path",
3047
3447
  {
3048
3448
  d: "M162.445 26.1113H161.945C161.556 26.1113 161.333 26.0557 161.167 25.8891C161 25.7224 160.945 25.5002 160.945 25.2224C160.5 25.8335 159.889 26.1668 159.056 26.1668C158.222 26.1668 157.945 26.0002 157.556 25.7224C157.167 25.4446 157 25.0002 157 24.5002C157 24.0002 157.167 23.5002 157.556 23.1668C157.945 22.8335 158.5 22.7224 159.278 22.7224H160.945V22.3335C160.945 21.9446 160.833 21.6668 160.556 21.4446C160.333 21.2224 159.945 21.1113 159.5 21.1113C159.056 21.1113 158.778 21.2224 158.5 21.3891C158.222 21.5557 158.111 21.7779 158 22.0557H157.111C157.167 21.5002 157.445 21.0557 157.833 20.7779C158.222 20.5002 158.833 20.3335 159.5 20.3335C160.167 20.3335 160.778 20.5002 161.167 20.8891C161.556 21.2224 161.778 21.7224 161.778 22.3891V24.8335C161.778 25.1113 161.889 25.2224 162.167 25.2224H162.445V26.0557V26.1113ZM159.111 23.5002C158.278 23.5002 157.833 23.8335 157.833 24.4446C157.833 25.0557 157.945 24.9446 158.167 25.1113C158.389 25.2779 158.667 25.3891 159.056 25.3891C159.611 25.3891 160.056 25.2224 160.389 24.9446C160.722 24.6668 160.889 24.2779 160.889 23.7779V23.5002H159.111Z",
3049
3449
  fill: "#141414"
3050
3450
  }
3051
3451
  ),
3052
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3452
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3053
3453
  "path",
3054
3454
  {
3055
3455
  d: "M168.167 22.9447V26.1114H167.278V23.0003C167.278 22.3892 167.167 21.9447 166.889 21.6669C166.611 21.3892 166.222 21.2225 165.722 21.2225C165.222 21.2225 164.778 21.3892 164.445 21.778C164.167 22.1669 164 22.6669 164 23.278V26.1114H163.111V20.4447H163.889L164 21.2225C164.445 20.6669 165.056 20.3892 165.889 20.3892C166.722 20.3892 167.111 20.6114 167.556 21.0003C168 21.3892 168.167 22.0558 168.167 22.9447Z",
3056
3456
  fill: "#141414"
3057
3457
  }
3058
3458
  ),
3059
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3459
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3060
3460
  "path",
3061
3461
  {
3062
3462
  d: "M174.722 26.1114H173.945L173.833 25.2225C173.333 25.8892 172.722 26.2225 171.889 26.2225C171.056 26.2225 170.889 26.1114 170.5 25.8892C170.111 25.6669 169.778 25.3336 169.556 24.8892C169.333 24.4447 169.222 23.9447 169.222 23.3336C169.222 22.7225 169.333 22.2781 169.556 21.8336C169.778 21.3892 170.111 21.0558 170.556 20.8336C171 20.6114 171.445 20.4447 171.945 20.4447C172.445 20.4447 172.778 20.5003 173.111 20.7225C173.445 20.8892 173.667 21.1114 173.889 21.3892V18.3892H174.778V26.1669L174.722 26.1114ZM173.611 24.3892C173.778 24.0558 173.833 23.7225 173.833 23.3336C173.833 22.9447 173.778 22.5558 173.611 22.2225C173.445 21.8892 173.222 21.6669 172.945 21.4447C172.667 21.278 172.333 21.1669 171.945 21.1669C171.389 21.1669 170.945 21.3892 170.556 21.7781C170.167 22.1669 170.056 22.6669 170.056 23.2781C170.056 23.8892 170.222 24.3892 170.556 24.778C170.889 25.1669 171.333 25.3892 171.945 25.3892C172.556 25.3892 172.611 25.2781 172.945 25.1114C173.222 24.9447 173.445 24.6669 173.611 24.3892Z",
3063
3463
  fill: "#141414"
3064
3464
  }
3065
3465
  ),
3066
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3466
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3067
3467
  "path",
3068
3468
  {
3069
3469
  d: "M92.6112 29.4446V30.3335H90.1112V37.2224H89.1667V30.3335H86.6667V29.4446H92.6667H92.6112Z",
3070
3470
  fill: "#141414"
3071
3471
  }
3072
3472
  ),
3073
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3473
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3074
3474
  "path",
3075
3475
  {
3076
3476
  d: "M93.6111 31.8335C94 31.6112 94.5 31.4446 95 31.4446C95.5 31.4446 96 31.5557 96.3889 31.7779C96.7778 32.0001 97.1111 32.2779 97.3334 32.7224C97.5556 33.1112 97.6667 33.6112 97.7222 34.1668C97.7222 34.2224 97.7222 34.389 97.7222 34.5557H93.3334C93.3334 35.1668 93.5 35.6112 93.8334 35.9446C94.1667 36.2779 94.6111 36.4446 95.1111 36.4446C95.6111 36.4446 95.8889 36.3335 96.1667 36.1112C96.4445 35.889 96.6667 35.6112 96.7223 35.2779H97.6667C97.5556 35.8335 97.2778 36.3335 96.8334 36.7224C96.3889 37.1112 95.8334 37.2779 95.2222 37.2779C94.6111 37.2779 94.1667 37.1668 93.7222 36.889C93.2778 36.6668 92.9445 36.3335 92.7222 35.889C92.5 35.4446 92.3889 34.9446 92.3889 34.389C92.3889 33.8335 92.5 33.2779 92.7222 32.889C92.9445 32.4446 93.2778 32.1112 93.6667 31.889L93.6111 31.8335ZM96.2222 32.6668C95.8889 32.389 95.5 32.2779 95 32.2779C94.5 32.2779 94.1667 32.4446 93.8889 32.7224C93.5556 33.0001 93.3889 33.389 93.3334 33.8335H96.7778C96.7778 33.3335 96.5556 33.0001 96.2222 32.7224V32.6668Z",
3077
3477
  fill: "#141414"
3078
3478
  }
3079
3479
  ),
3080
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
3081
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3480
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
3481
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3082
3482
  "path",
3083
3483
  {
3084
3484
  d: "M102 31.8335C102.389 31.6112 102.889 31.4446 103.389 31.4446C103.889 31.4446 104.389 31.5557 104.778 31.7779C105.167 32.0001 105.5 32.2779 105.722 32.7224C105.945 33.1112 106.056 33.6112 106.111 34.1668C106.111 34.2224 106.111 34.389 106.111 34.5557H101.722C101.722 35.1668 101.889 35.6112 102.222 35.9446C102.556 36.2779 103 36.4446 103.5 36.4446C104 36.4446 104.278 36.3335 104.556 36.1112C104.833 35.889 105.056 35.6112 105.111 35.2779H106.056C105.944 35.8335 105.667 36.3335 105.222 36.7224C104.778 37.1112 104.222 37.2779 103.611 37.2779C103 37.2779 102.556 37.1668 102.111 36.889C101.667 36.6668 101.333 36.3335 101.111 35.889C100.889 35.4446 100.778 34.9446 100.778 34.389C100.778 33.8335 100.889 33.2779 101.111 32.889C101.333 32.4446 101.667 32.1112 102.056 31.889L102 31.8335ZM104.611 32.6668C104.278 32.389 103.889 32.2779 103.389 32.2779C102.889 32.2779 102.556 32.4446 102.278 32.7224C101.945 33.0001 101.778 33.389 101.722 33.8335H105.167C105.167 33.3335 104.945 33.0001 104.611 32.7224V32.6668Z",
3085
3485
  fill: "#141414"
3086
3486
  }
3087
3487
  ),
3088
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3488
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3089
3489
  "path",
3090
3490
  {
3091
3491
  d: "M109.667 37.2779C109.111 37.2779 108.611 37.1668 108.222 36.889C107.833 36.6668 107.5 36.2779 107.278 35.8335C107.056 35.389 106.945 34.889 106.945 34.3335C106.945 33.7779 107.056 33.2779 107.278 32.8335C107.5 32.389 107.833 32.0557 108.278 31.8335C108.722 31.6112 109.167 31.4446 109.722 31.4446C110.278 31.4446 110.945 31.6112 111.389 32.0001C111.833 32.389 112.111 32.8335 112.222 33.4446H111.278C111.167 33.0557 111 32.7779 110.722 32.5557C110.445 32.3335 110.111 32.2224 109.722 32.2224C109.333 32.2224 108.722 32.389 108.389 32.7779C108.056 33.1668 107.889 33.6668 107.889 34.2779C107.889 34.889 108.056 35.389 108.389 35.7779C108.722 36.1668 109.167 36.389 109.722 36.389C110.278 36.389 110.5 36.2779 110.778 36.0557C111.056 35.8335 111.222 35.5557 111.333 35.1668H112.222C112.111 35.7779 111.833 36.2779 111.389 36.6668C110.945 37.0001 110.389 37.2224 109.722 37.2224L109.667 37.2779Z",
3092
3492
  fill: "#141414"
3093
3493
  }
3094
3494
  ),
3095
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3495
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3096
3496
  "path",
3097
3497
  {
3098
3498
  d: "M113.278 35.8891C113.056 35.4447 112.945 34.9447 112.945 34.3891C112.945 33.8336 113.056 33.3336 113.278 32.8891C113.5 32.4447 113.833 32.1114 114.278 31.8891C114.722 31.6669 115.167 31.5002 115.722 31.5002C116.278 31.5002 116.778 31.6114 117.167 31.8891C117.611 32.1114 117.945 32.5002 118.167 32.8891C118.389 33.3336 118.5 33.8336 118.5 34.3891C118.5 34.9447 118.389 35.4447 118.167 35.8891C117.945 36.3336 117.611 36.6669 117.167 36.8891C116.722 37.1114 116.278 37.278 115.722 37.278C115.167 37.278 114.667 37.1669 114.278 36.8891C113.889 36.6114 113.5 36.278 113.278 35.8891ZM117.333 35.4447C117.5 35.1114 117.556 34.778 117.556 34.3891C117.556 34.0002 117.5 33.6114 117.333 33.3336C117.167 33.0002 116.945 32.778 116.667 32.6114C116.389 32.4447 116.056 32.3336 115.667 32.3336C115.278 32.3336 114.945 32.4447 114.667 32.6114C114.389 32.778 114.167 33.0558 114 33.3336C113.833 33.6669 113.778 34.0002 113.778 34.3891C113.778 34.778 113.833 35.1669 114 35.4447C114.167 35.778 114.389 36.0002 114.667 36.1669C114.945 36.3336 115.278 36.4447 115.667 36.4447C116.056 36.4447 116.389 36.3336 116.667 36.1669C116.945 36.0002 117.167 35.7225 117.333 35.4447Z",
3099
3499
  fill: "#141414"
3100
3500
  }
3101
3501
  ),
3102
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3502
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3103
3503
  "path",
3104
3504
  {
3105
3505
  d: "M128.056 33.9446V37.2224H127.167V34.0001C127.167 33.4446 127.056 33.0557 126.833 32.7224C126.611 32.4446 126.278 32.2779 125.833 32.2779C125.389 32.2779 125 32.4446 124.722 32.7779C124.445 33.1112 124.333 33.5557 124.333 34.1668V37.2224H123.445V34.0001C123.445 33.4446 123.333 33.0557 123.111 32.7224C122.889 32.4446 122.556 32.2779 122.111 32.2779C121.667 32.2779 121.278 32.4446 121 32.7779C120.722 33.1112 120.611 33.6112 120.611 34.1668V37.1668H119.722V31.5001H120.5L120.611 32.2779C121 31.7224 121.556 31.4446 122.278 31.4446C123 31.4446 123.056 31.5557 123.389 31.7224C123.722 31.889 123.945 32.1668 124.111 32.5557C124.5 31.8335 125.167 31.5001 126.056 31.5001C126.945 31.5001 127.222 31.7224 127.611 32.1112C128 32.5001 128.222 33.1112 128.222 34.0001L128.056 33.9446Z",
3106
3506
  fill: "#141414"
3107
3507
  }
3108
3508
  ),
3109
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3509
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3110
3510
  "path",
3111
3511
  {
3112
3512
  d: "M134.556 29.4446H135.722L138.667 37.2224H137.611L136.778 35.1112H133.389L132.556 37.2224H131.556L134.5 29.4446H134.556ZM136.556 34.2224L135.167 30.5001L133.778 34.2224H136.611H136.556Z",
3113
3513
  fill: "#141414"
3114
3514
  }
3115
3515
  ),
3116
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3516
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3117
3517
  "path",
3118
3518
  {
3119
3519
  d: "M144.111 37.2223H143.333L143.222 36.4446C142.778 37.0001 142.167 37.2779 141.389 37.2779C140.611 37.2779 140.167 37.0557 139.778 36.6668C139.389 36.2779 139.167 35.6112 139.167 34.7223V31.5557H140.056V34.6668C140.056 35.2779 140.167 35.7223 140.445 36.0001C140.722 36.3334 141.056 36.4446 141.556 36.4446C142.056 36.4446 142.5 36.2779 142.778 35.889C143.056 35.5001 143.222 35.0001 143.222 34.389V31.5557H144.111V37.2223Z",
3120
3520
  fill: "#141414"
3121
3521
  }
3122
3522
  ),
3123
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3523
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3124
3524
  "path",
3125
3525
  {
3126
3526
  d: "M144.722 32.389V31.5557H145.722V29.9446H146.611V31.5557H148.056V32.389H146.611V35.7224C146.611 35.9446 146.611 36.1112 146.722 36.2224C146.833 36.3335 147 36.389 147.222 36.389H148.222V37.2224H147.167C146.611 37.2224 146.278 37.1112 146 36.889C145.778 36.6668 145.667 36.2779 145.667 35.7779V32.4446H144.667L144.722 32.389Z",
3127
3527
  fill: "#141414"
3128
3528
  }
3129
3529
  ),
3130
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3530
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3131
3531
  "path",
3132
3532
  {
3133
3533
  d: "M154 34.0557V37.2224H153.111V34.1112C153.111 33.5001 153 33.0557 152.722 32.7779C152.445 32.4446 152.056 32.3335 151.556 32.3335C151.056 32.3335 150.611 32.5001 150.333 32.889C150 33.2779 149.889 33.7779 149.889 34.389V37.2224H149V29.4446H149.889V32.5001C150.056 32.2224 150.333 31.9446 150.611 31.7779C150.945 31.6112 151.278 31.5001 151.722 31.5001C152.389 31.5001 152.945 31.7224 153.389 32.1112C153.833 32.5001 154 33.1668 154 34.0557Z",
3134
3534
  fill: "#141414"
3135
3535
  }
3136
3536
  ),
3137
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3537
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3138
3538
  "path",
3139
3539
  {
3140
3540
  d: "M155.333 35.8891C155.111 35.4447 155 34.9447 155 34.3891C155 33.8336 155.111 33.3336 155.333 32.8891C155.556 32.4447 155.889 32.1114 156.333 31.8891C156.778 31.6669 157.222 31.5002 157.778 31.5002C158.333 31.5002 158.833 31.6114 159.222 31.8891C159.667 32.1114 160 32.5002 160.222 32.8891C160.445 33.3336 160.556 33.8336 160.556 34.3891C160.556 34.9447 160.445 35.4447 160.222 35.8891C160 36.3336 159.667 36.6669 159.222 36.8891C158.778 37.1114 158.333 37.278 157.778 37.278C157.222 37.278 156.722 37.1669 156.333 36.8891C155.945 36.6114 155.556 36.278 155.333 35.8891ZM159.445 35.4447C159.611 35.1114 159.667 34.778 159.667 34.3891C159.667 34.0002 159.611 33.6114 159.445 33.3336C159.278 33.0002 159.056 32.778 158.778 32.6114C158.5 32.4447 158.167 32.3336 157.778 32.3336C157.389 32.3336 157.056 32.4447 156.778 32.6114C156.5 32.778 156.278 33.0558 156.111 33.3336C155.945 33.6669 155.889 34.0002 155.889 34.3891C155.889 34.778 155.945 35.1669 156.111 35.4447C156.278 35.778 156.5 36.0002 156.778 36.1669C157.056 36.3336 157.389 36.4447 157.778 36.4447C158.167 36.4447 158.5 36.3336 158.778 36.1669C159.056 36.0002 159.278 35.7225 159.445 35.4447Z",
3141
3541
  fill: "#141414"
3142
3542
  }
3143
3543
  ),
3144
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3544
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3145
3545
  "path",
3146
3546
  {
3147
3547
  d: "M164.5 32.4446H164.056C163.5 32.4446 163.111 32.6112 162.889 33.0001C162.667 33.389 162.556 33.8334 162.556 34.3334V37.2223H161.667V31.5557H162.445L162.556 32.389C162.722 32.1112 162.945 31.9446 163.167 31.7779C163.445 31.6112 163.778 31.5557 164.222 31.5557H164.5V32.4446Z",
3148
3548
  fill: "#141414"
3149
3549
  }
3150
3550
  ),
3151
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3551
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3152
3552
  "path",
3153
3553
  {
3154
3554
  d: "M166.389 29.9446C166.389 30.1113 166.333 30.2779 166.222 30.3891C166.111 30.5002 165.945 30.5557 165.778 30.5557C165.611 30.5557 165.445 30.5002 165.333 30.3891C165.222 30.2779 165.167 30.1113 165.167 29.9446C165.167 29.7779 165.222 29.6113 165.333 29.5002C165.445 29.3891 165.611 29.3335 165.778 29.3335C165.945 29.3335 166.111 29.3891 166.222 29.5002C166.333 29.6113 166.389 29.7779 166.389 29.9446ZM166.278 31.5557V37.2224H165.389V31.5557H166.278Z",
3155
3555
  fill: "#141414"
3156
3556
  }
3157
3557
  ),
3158
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3558
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3159
3559
  "path",
3160
3560
  {
3161
3561
  d: "M166.833 32.389V31.5557H167.833V29.9446H168.722V31.5557H170.167V32.389H168.722V35.7224C168.722 35.9446 168.722 36.1112 168.833 36.2224C168.944 36.3335 169.111 36.389 169.333 36.389H170.333V37.2224H169.278C168.722 37.2224 168.389 37.1112 168.111 36.889C167.889 36.6668 167.778 36.2779 167.778 35.7779V32.4446H166.778L166.833 32.389Z",
3162
3562
  fill: "#141414"
3163
3563
  }
3164
3564
  ),
3165
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3565
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3166
3566
  "path",
3167
3567
  {
3168
3568
  d: "M173.167 36.1668L174.833 31.5557H175.778L173.167 38.1668C173.056 38.5001 172.889 38.7779 172.833 38.9446C172.778 39.1112 172.611 39.2223 172.445 39.3334C172.278 39.389 172.056 39.4446 171.833 39.4446H170.722V38.6112H171.556C171.722 38.6112 171.889 38.6112 171.945 38.5557C172 38.5001 172.111 38.4446 172.167 38.389C172.167 38.2779 172.278 38.1668 172.389 37.9446L172.667 37.2779L170.445 31.5557H171.389L173.111 36.1668H173.167Z",
@@ -3171,27 +3571,79 @@ var Logo_en2 = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { wid
3171
3571
  )
3172
3572
  ] });
3173
3573
 
3574
+ // src/components/layout/HeaderStandard/HeaderStandard.tsx
3575
+ var import_jsx_runtime27 = require("react/jsx-runtime");
3576
+ var Header = ({
3577
+ activatedLanguage = "sv",
3578
+ useLanguage = true,
3579
+ SetActivatedLanguage = () => {
3580
+ }
3581
+ }) => {
3582
+ const logoLink = activatedLanguage === "en" ? "https://pts.se/en" : "https://pts.se/";
3583
+ const handleLanguageClick = () => {
3584
+ if (activatedLanguage === "sv") {
3585
+ SetActivatedLanguage("en");
3586
+ } else if (activatedLanguage === "en") {
3587
+ SetActivatedLanguage("sv");
3588
+ }
3589
+ };
3590
+ const getLanguageLabel = () => {
3591
+ if (activatedLanguage === "sv") return "English";
3592
+ else return "Svenska";
3593
+ };
3594
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("header", { className: "pts-header-container", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "pts-header-content", children: [
3595
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "pts-header-logo-container", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
3596
+ "a",
3597
+ {
3598
+ className: "pts-header-logo",
3599
+ href: logoLink,
3600
+ target: "_blank",
3601
+ "aria-label": activatedLanguage === "en" ? "PTS logotype (to the homepage on pts.se, opens in new tab)" : "PTS logotyp (till startsidan p\xE5 pts.se, \xF6ppnas i ny flik)",
3602
+ children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Logo_en2, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Logo_sv2, {}) })
3603
+ }
3604
+ ) }),
3605
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "pts-header-navigation-container", children: useLanguage && /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
3606
+ "button",
3607
+ {
3608
+ lang: activatedLanguage === "en" ? "en" : "sv",
3609
+ className: "pts-languageButton",
3610
+ onClick: handleLanguageClick,
3611
+ children: [
3612
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "languageIcon", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(LanguageIcon2, {}) }) }),
3613
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { "aria-hidden": "true", className: "pts-languageButton-text", children: getLanguageLabel() }),
3614
+ activatedLanguage === "en" && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "sr-only", children: "\xC4ndra spr\xE5k till svenska" }),
3615
+ activatedLanguage === "sv" && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "sr-only", children: "Change language to English" })
3616
+ ]
3617
+ }
3618
+ ) })
3619
+ ] }) });
3620
+ };
3621
+ var HeaderStandard_default = Header;
3622
+
3623
+ // src/components/layout/NavigationHeaderStandard/NavigationHeaderStandard.tsx
3624
+ var import_react17 = require("react");
3625
+
3174
3626
  // src/components/layout/NavigationStandard/NavigationStandard.tsx
3175
- var import_react13 = require("react");
3176
- var import_jsx_runtime21 = require("react/jsx-runtime");
3627
+ var import_react15 = require("react");
3628
+ var import_jsx_runtime28 = require("react/jsx-runtime");
3177
3629
  var Navigation = ({
3178
3630
  setIsMenyOpen,
3179
3631
  isOpen = false,
3180
3632
  activatedLanguage = "sv",
3181
3633
  menuLinks = [],
3182
3634
  openButtonRef = null,
3183
- linkComponent: LinkComponent = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("a", { ...props })
3635
+ linkComponent: LinkComponent = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("a", { ...props })
3184
3636
  }) => {
3185
3637
  const closeMenuText = activatedLanguage === "sv" ? "St\xE4ng meny" : "Close menu";
3186
- const navRef = (0, import_react13.useRef)(null);
3187
- const [openSubMenu, setOpenSubMenu] = (0, import_react13.useState)(null);
3638
+ const navRef = (0, import_react15.useRef)(null);
3639
+ const [openSubMenu, setOpenSubMenu] = (0, import_react15.useState)(null);
3188
3640
  const handleSubMenu = (label) => {
3189
3641
  setOpenSubMenu(openSubMenu === label ? null : label);
3190
3642
  };
3191
3643
  const handleCloseButton = () => {
3192
3644
  setIsMenyOpen && setIsMenyOpen(false);
3193
3645
  };
3194
- (0, import_react13.useEffect)(() => {
3646
+ (0, import_react15.useEffect)(() => {
3195
3647
  if (!isOpen || !navRef.current) return;
3196
3648
  const nav = navRef.current;
3197
3649
  const focusableSelectors = 'a, button, input, textarea, select, [tabindex]:not([tabindex="-1"])';
@@ -3237,9 +3689,9 @@ var Navigation = ({
3237
3689
  }
3238
3690
  return "\xD6ppna undermeny f\xF6r " + label["sv"];
3239
3691
  };
3240
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
3241
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { "aria-live": "polite", className: "sr-only", children: isOpen ? activatedLanguage === "sv" ? "Navigationsmenyn \xF6ppnades" : "Navigation menu opened" : activatedLanguage === "sv" ? "Navigationsmenyn st\xE4ngdes" : "Navigation menu closed" }),
3242
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
3692
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
3693
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { "aria-live": "polite", className: "sr-only", children: isOpen ? activatedLanguage === "sv" ? "Navigationsmenyn \xF6ppnades" : "Navigation menu opened" : activatedLanguage === "sv" ? "Navigationsmenyn st\xE4ngdes" : "Navigation menu closed" }),
3694
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3243
3695
  "nav",
3244
3696
  {
3245
3697
  id: "main-navigation",
@@ -3248,27 +3700,27 @@ var Navigation = ({
3248
3700
  className: `pts-navigation-menu-container ${isOpen ? "open" : ""}`,
3249
3701
  inert: !isOpen,
3250
3702
  children: [
3251
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "pts-navigation-close-container ", id: "menu-close", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
3703
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "pts-navigation-close-container ", id: "menu-close", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3252
3704
  "button",
3253
3705
  {
3254
3706
  className: "pts-navigation-close-button",
3255
3707
  onClick: handleCloseButton,
3256
3708
  type: "button",
3257
3709
  children: [
3258
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(CloseIcon, {}) }),
3259
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { className: "pts-navigation-close-text", children: closeMenuText })
3710
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(CloseIcon, {}) }),
3711
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "pts-navigation-close-text", children: closeMenuText })
3260
3712
  ]
3261
3713
  }
3262
3714
  ) }),
3263
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("ul", { className: "pts-navigation-link-list", lang: activatedLanguage, children: menuLinks && menuLinks.map(({ label, href, children }, index) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
3715
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("ul", { className: "pts-navigation-link-list", lang: activatedLanguage, children: menuLinks && menuLinks.map(({ label, href, children }, index) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3264
3716
  "li",
3265
3717
  {
3266
3718
  className: `pts-navigation-link ${openSubMenu === label[activatedLanguage] ? "open" : ""}`,
3267
3719
  lang: activatedLanguage,
3268
3720
  children: [
3269
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "pts-navigation-button", children: [
3270
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { children: href && href.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { children: label[activatedLanguage] }) : /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(LinkComponent, { onClick: handleCloseButton, href, children: label[activatedLanguage] }) }),
3271
- children && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
3721
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "pts-navigation-button", children: [
3722
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { children: href && href.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { children: label[activatedLanguage] }) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(LinkComponent, { onClick: handleCloseButton, href, children: label[activatedLanguage] }) }),
3723
+ children && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3272
3724
  "button",
3273
3725
  {
3274
3726
  className: `pts-navigation-link-expand-button`,
@@ -3278,11 +3730,11 @@ var Navigation = ({
3278
3730
  "aria-controls": "sub-menu-" + index,
3279
3731
  type: "button",
3280
3732
  id: "menu-button-" + index,
3281
- children: openSubMenu === label[activatedLanguage] ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { "aria-hidden": true, className: "pts-contract-icon", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(MinusIcon, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { "aria-hidden": true, className: "pts-expand-icon", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(AddIcon, {}) })
3733
+ children: openSubMenu === label[activatedLanguage] ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { "aria-hidden": true, className: "pts-contract-icon", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MinusIcon, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { "aria-hidden": true, className: "pts-expand-icon", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(AddIcon, {}) })
3282
3734
  }
3283
3735
  )
3284
3736
  ] }) }),
3285
- children && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
3737
+ children && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3286
3738
  "div",
3287
3739
  {
3288
3740
  hidden: openSubMenu !== label[activatedLanguage],
@@ -3290,7 +3742,7 @@ var Navigation = ({
3290
3742
  className: "pts-sub-navigation-container",
3291
3743
  id: "sub-menu-" + index,
3292
3744
  role: "region",
3293
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("ul", { className: "pts-sub-navigation-list", lang: activatedLanguage, children: children.map(({ label: label2, href: href2 }, index2) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("li", { className: "pts-sub-navigation-item", lang: activatedLanguage, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(LinkComponent, { onClick: handleCloseButton, href: href2, children: label2[activatedLanguage] }) }, "nav-child-" + index2)) })
3745
+ children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("ul", { className: "pts-sub-navigation-list", lang: activatedLanguage, children: children.map(({ label: label2, href: href2 }, index2) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("li", { className: "pts-sub-navigation-item", lang: activatedLanguage, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(LinkComponent, { onClick: handleCloseButton, href: href2, children: label2[activatedLanguage] }) }, "nav-child-" + index2)) })
3294
3746
  }
3295
3747
  )
3296
3748
  ]
@@ -3305,19 +3757,19 @@ var Navigation = ({
3305
3757
  var NavigationStandard_default = Navigation;
3306
3758
 
3307
3759
  // src/components/layout/SearchBarStandard/SearchBarStandard.tsx
3308
- var import_react14 = require("react");
3760
+ var import_react16 = require("react");
3309
3761
 
3310
3762
  // src/components/layout/SearchBarStandard/Icons.tsx
3311
- var import_jsx_runtime22 = require("react/jsx-runtime");
3312
- var SearchIcon2 = ({ width = 15, height = 15, color = "#6E3282" }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("svg", { width, height, viewBox: "0 0 21 20", fill: color, xmlns: "http://www.w3.org/2000/svg", children: [
3313
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
3763
+ var import_jsx_runtime29 = require("react/jsx-runtime");
3764
+ var SearchIcon2 = ({ width = 15, height = 15, color = "#6E3282" }) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { width, height, viewBox: "0 0 21 20", fill: color, xmlns: "http://www.w3.org/2000/svg", children: [
3765
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3314
3766
  "path",
3315
3767
  {
3316
3768
  d: "M9.05856 16.1132C4.503 16.1132 0.833252 12.5188 0.833252 8.05662C0.833252 3.59449 4.503 0 9.05856 0C13.6141 0 17.2839 3.59449 17.2839 8.05662C17.2839 12.5188 13.6141 16.1132 9.05856 16.1132ZM9.05856 1.23948C5.19899 1.23948 2.09868 4.27621 2.09868 8.05662C2.09868 11.837 5.19899 14.8738 9.05856 14.8738C12.9181 14.8738 16.0184 11.837 16.0184 8.05662C16.0184 4.27621 12.9181 1.23948 9.05856 1.23948Z",
3317
3769
  fill: color
3318
3770
  }
3319
3771
  ),
3320
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
3772
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3321
3773
  "path",
3322
3774
  {
3323
3775
  d: "M14.4409 13.3929C14.7047 13.1187 15.1435 13.1187 15.4073 13.3929L20.3859 18.568C20.6357 18.8276 20.6357 19.2381 20.3859 19.4977C20.1221 19.7719 19.6833 19.7719 19.4195 19.4977L14.4409 14.3227C14.1911 14.0631 14.1911 13.6525 14.4409 13.3929Z",
@@ -3327,14 +3779,14 @@ var SearchIcon2 = ({ width = 15, height = 15, color = "#6E3282" }) => /* @__PURE
3327
3779
  ] });
3328
3780
 
3329
3781
  // src/components/layout/SearchBarStandard/SearchBarStandard.tsx
3330
- var import_jsx_runtime23 = require("react/jsx-runtime");
3782
+ var import_jsx_runtime30 = require("react/jsx-runtime");
3331
3783
  var SearchBar = ({ activatedLanguage = "sv" }) => {
3332
- const [searchTerm, setSearchTerm] = (0, import_react14.useState)("");
3784
+ const [searchTerm, setSearchTerm] = (0, import_react16.useState)("");
3333
3785
  const handleSearch = () => {
3334
3786
  console.log("S\xF6kt efter:", searchTerm);
3335
3787
  };
3336
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "pts-searchBar-container", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { children: [
3337
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
3788
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "pts-searchBar-container", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { children: [
3789
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3338
3790
  "input",
3339
3791
  {
3340
3792
  placeholder: activatedLanguage === "en" ? "Search the site" : "S\xF6k p\xE5 webbplatsen",
@@ -3344,16 +3796,16 @@ var SearchBar = ({ activatedLanguage = "sv" }) => {
3344
3796
  onChange: (e) => setSearchTerm(e.target.value)
3345
3797
  }
3346
3798
  ),
3347
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("button", { className: "pts-searchBar-button", onClick: handleSearch, style: { fontSize: "16px" }, children: [
3348
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(SearchIcon2, { color: "white" }) }),
3349
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { children: activatedLanguage === "en" ? "Search" : "S\xF6k" })
3799
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("button", { className: "pts-searchBar-button", onClick: handleSearch, style: { fontSize: "16px" }, children: [
3800
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(SearchIcon2, { color: "white" }) }),
3801
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { children: activatedLanguage === "en" ? "Search" : "S\xF6k" })
3350
3802
  ] })
3351
3803
  ] }) });
3352
3804
  };
3353
3805
  var SearchBarStandard_default = SearchBar;
3354
3806
 
3355
3807
  // src/components/layout/NavigationHeaderStandard/NavigationHeaderStandard.tsx
3356
- var import_jsx_runtime24 = require("react/jsx-runtime");
3808
+ var import_jsx_runtime31 = require("react/jsx-runtime");
3357
3809
  var NavigationHeader = ({
3358
3810
  headline = void 0,
3359
3811
  homelink = "",
@@ -3365,12 +3817,12 @@ var NavigationHeader = ({
3365
3817
  menuLinks = void 0,
3366
3818
  SetActivatedLanguage = () => {
3367
3819
  },
3368
- linkComponent: LinkComponent = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("a", { ...props }),
3820
+ linkComponent: LinkComponent = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("a", { ...props }),
3369
3821
  noLogoLink = false
3370
3822
  }) => {
3371
3823
  const logoLink = activatedLanguage === "en" ? "https://pts.se/en" : "https://pts.se/";
3372
3824
  const hasHeadline = headline && headline.length > 0;
3373
- const menuButtonFocusRef = (0, import_react15.useRef)(null);
3825
+ const menuButtonFocusRef = (0, import_react17.useRef)(null);
3374
3826
  const handleLanguageClick = () => {
3375
3827
  if (activatedLanguage === "sv") {
3376
3828
  SetActivatedLanguage("en");
@@ -3382,7 +3834,7 @@ var NavigationHeader = ({
3382
3834
  if (activatedLanguage === "sv") return "English";
3383
3835
  else return "Svenska";
3384
3836
  };
3385
- const [isMenuOpen, setIsMenuOpen] = (0, import_react15.useState)(false);
3837
+ const [isMenuOpen, setIsMenuOpen] = (0, import_react17.useState)(false);
3386
3838
  const handleMenuClick = () => {
3387
3839
  setIsMenuOpen((prev) => !prev);
3388
3840
  };
@@ -3394,9 +3846,9 @@ var NavigationHeader = ({
3394
3846
  return labels[activatedLanguage];
3395
3847
  };
3396
3848
  const getMenuIcon = () => {
3397
- return isMenuOpen ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(CloseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MenuIcon, {});
3849
+ return isMenuOpen ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(CloseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(MenuIcon, {});
3398
3850
  };
3399
- const [isSearchOpen, setIsSearchOpen] = (0, import_react15.useState)(false);
3851
+ const [isSearchOpen, setIsSearchOpen] = (0, import_react17.useState)(false);
3400
3852
  const handleSearchClick = () => {
3401
3853
  if (!isSearchOpen) {
3402
3854
  setIsSearchOpen(true);
@@ -3412,11 +3864,11 @@ var NavigationHeader = ({
3412
3864
  return labels[activatedLanguage];
3413
3865
  };
3414
3866
  const getSearchIcon = () => {
3415
- return isSearchOpen ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(CloseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(SearchIcon, {});
3867
+ return isSearchOpen ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(CloseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(SearchIcon, {});
3416
3868
  };
3417
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { children: [
3418
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("header", { className: "pts-navigation-header-container", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "pts-navigation-header-content", children: [
3419
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "pts-navigation-header-logo-container", children: noLogoLink ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logo_en2, {}) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logo_sv2, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3869
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { children: [
3870
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("header", { className: "pts-navigation-header-container", children: /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "pts-navigation-header-content", children: [
3871
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "pts-navigation-header-logo-container", children: noLogoLink ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Logo_en, {}) : /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Logo_sv, {}) }) : /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3420
3872
  LinkComponent,
3421
3873
  {
3422
3874
  className: "pts-navigation-header-logo",
@@ -3424,16 +3876,16 @@ var NavigationHeader = ({
3424
3876
  target: "_blank",
3425
3877
  rel: "noopener",
3426
3878
  "aria-label": activatedLanguage === "en" ? "PTS logotype (to the homepage on pts.se, opens in new tab)" : "PTS logotyp (till startsidan p\xE5 pts.se, \xF6ppnas i ny flik)",
3427
- children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logo_en2, {}) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logo_sv2, {}) })
3879
+ children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Logo_en, {}) : /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Logo_sv, {}) })
3428
3880
  }
3429
3881
  ) }),
3430
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: `${hasHeadline ? "pts-navigation-header-headline-container" : ""}`, children: hasHeadline && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("p", { className: "pts-site-headline", children: headline }) }),
3431
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "pts-navigation-header-nav-container", children: (useLanguage || useNavigationMenu || useSearch) && /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
3432
- useSearch && !isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_jsx_runtime24.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("button", { type: "button", onClick: handleSearchClick, children: [
3433
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-icons", children: getSearchIcon() }),
3434
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "pts-navigation-header-button-label", children: getSearchLabel() })
3882
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: `${hasHeadline ? "pts-navigation-header-headline-container" : ""}`, children: hasHeadline && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("p", { className: "pts-site-headline", children: headline }) }),
3883
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "pts-navigation-header-nav-container", children: (useLanguage || useNavigationMenu || useSearch) && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(import_jsx_runtime31.Fragment, { children: [
3884
+ useSearch && !isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(import_jsx_runtime31.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("button", { type: "button", onClick: handleSearchClick, children: [
3885
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-icons", children: getSearchIcon() }),
3886
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "pts-navigation-header-button-label", children: getSearchLabel() })
3435
3887
  ] }) }),
3436
- useLanguage && !isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
3888
+ useLanguage && !isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
3437
3889
  "button",
3438
3890
  {
3439
3891
  type: "button",
@@ -3441,12 +3893,12 @@ var NavigationHeader = ({
3441
3893
  onClick: handleLanguageClick,
3442
3894
  "aria-label": activatedLanguage === "sv" ? "Change language to English" : "\xC4ndra spr\xE5k till svenska",
3443
3895
  children: [
3444
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-icons", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(LanguageIcon2, {}) }),
3445
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-button-label", children: getLanguageLabel() })
3896
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-icons", children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(LanguageIcon, {}) }),
3897
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", className: "pts-navigation-header-button-label", children: getLanguageLabel() })
3446
3898
  ]
3447
3899
  }
3448
3900
  ),
3449
- useNavigationMenu && /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
3901
+ useNavigationMenu && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
3450
3902
  "button",
3451
3903
  {
3452
3904
  type: "button",
@@ -3455,14 +3907,14 @@ var NavigationHeader = ({
3455
3907
  "aria-controls": "main-navigation",
3456
3908
  ref: menuButtonFocusRef,
3457
3909
  children: [
3458
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { "aria-hidden": "true", className: isMenuOpen ? "pts-close-icon" : "pts-open-icon", children: getMenuIcon() }),
3459
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "pts-navigation-header-button-label", children: getMenuLabel() })
3910
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { "aria-hidden": "true", className: isMenuOpen ? "pts-close-icon" : "pts-open-icon", children: getMenuIcon() }),
3911
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "pts-navigation-header-button-label", children: getMenuLabel() })
3460
3912
  ]
3461
3913
  }
3462
3914
  )
3463
3915
  ] }) })
3464
3916
  ] }) }),
3465
- useNavigationMenu && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3917
+ useNavigationMenu && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3466
3918
  NavigationStandard_default,
3467
3919
  {
3468
3920
  activatedLanguage,
@@ -3473,7 +3925,7 @@ var NavigationHeader = ({
3473
3925
  linkComponent: LinkComponent
3474
3926
  }
3475
3927
  ),
3476
- isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3928
+ isMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3477
3929
  "div",
3478
3930
  {
3479
3931
  className: "pts-navigation-overlay",
@@ -3481,14 +3933,14 @@ var NavigationHeader = ({
3481
3933
  "aria-hidden": "true"
3482
3934
  }
3483
3935
  ),
3484
- !isMenuOpen && isSearchOpen && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(SearchBarStandard_default, { activatedLanguage })
3936
+ !isMenuOpen && isSearchOpen && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(SearchBarStandard_default, { activatedLanguage })
3485
3937
  ] });
3486
3938
  };
3487
3939
  var NavigationHeaderStandard_default = NavigationHeader;
3488
3940
 
3489
3941
  // src/components/layout/ModalStandard/ModalStandard.tsx
3490
- var import_jsx_runtime25 = require("react/jsx-runtime");
3491
- var CONTENT = {
3942
+ var import_jsx_runtime32 = require("react/jsx-runtime");
3943
+ var CONTENT2 = {
3492
3944
  en: {
3493
3945
  heading: "Please wait",
3494
3946
  message: "Your case is being registered. Do not refresh or close the page."
@@ -3499,18 +3951,18 @@ var CONTENT = {
3499
3951
  }
3500
3952
  };
3501
3953
  var Modal = ({ showModal: isOpen, activatedLanguage = "" }) => {
3502
- const currentContent = activatedLanguage === "en" ? CONTENT.en : CONTENT.sv;
3954
+ const currentContent = activatedLanguage === "en" ? CONTENT2.en : CONTENT2.sv;
3503
3955
  if (!isOpen) return null;
3504
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { "aria-hidden": true, className: "pts-modal-content", children: [
3505
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("h1", { children: currentContent.heading }),
3506
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("p", { children: currentContent.message }),
3507
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "pts-spinner-border" })
3956
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { "aria-hidden": true, className: "pts-modal-content", children: [
3957
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("h1", { children: currentContent.heading }),
3958
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("p", { children: currentContent.message }),
3959
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "pts-spinner-border" })
3508
3960
  ] }) });
3509
3961
  };
3510
3962
  var ModalStandard_default = Modal;
3511
3963
 
3512
3964
  // src/components/layout/SkipLinkStandard/SkipLinkStandard.tsx
3513
- var import_jsx_runtime26 = require("react/jsx-runtime");
3965
+ var import_jsx_runtime33 = require("react/jsx-runtime");
3514
3966
  var SkipLink = ({ activatedLanguage = "sv" }) => {
3515
3967
  function scrollToMainContent() {
3516
3968
  const container = document.getElementById(`pts-main-service-headline`);
@@ -3519,7 +3971,7 @@ var SkipLink = ({ activatedLanguage = "sv" }) => {
3519
3971
  container.focus();
3520
3972
  }
3521
3973
  }
3522
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "pts-skipLink-container", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3974
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "pts-skipLink-container", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
3523
3975
  "a",
3524
3976
  {
3525
3977
  href: "#",
@@ -3534,7 +3986,7 @@ var SkipLink = ({ activatedLanguage = "sv" }) => {
3534
3986
  var SkipLinkStandard_default = SkipLink;
3535
3987
 
3536
3988
  // src/components/layout/LinkStandard/LinkStandard.tsx
3537
- var import_jsx_runtime27 = require("react/jsx-runtime");
3989
+ var import_jsx_runtime34 = require("react/jsx-runtime");
3538
3990
  var LinkStandard = ({
3539
3991
  title,
3540
3992
  url,
@@ -3572,7 +4024,7 @@ var LinkStandard = ({
3572
4024
  }
3573
4025
  }
3574
4026
  linkTitle = fileExtension !== null ? `${title} (${fileExtension})` : title;
3575
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "pts-standard-link", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
4027
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "pts-standard-link", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
3576
4028
  LinkComponent,
3577
4029
  {
3578
4030
  download: useDownLoad ? true : void 0,
@@ -3582,8 +4034,8 @@ var LinkStandard = ({
3582
4034
  rel: openTarget === "_blank" ? "noopener noreferrer" : void 0,
3583
4035
  "aria-label": ariaLabel || void 0,
3584
4036
  children: [
3585
- IconComponent && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: `pts-link-icon-circle ${iconClass} ${customClass}`, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IconComponent, {}) }),
3586
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "pts-standard-link-text", children: linkTitle })
4037
+ IconComponent && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: `pts-link-icon-circle ${iconClass} ${customClass}`, "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(IconComponent, {}) }),
4038
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "pts-standard-link-text", children: linkTitle })
3587
4039
  ]
3588
4040
  }
3589
4041
  ) });
@@ -3591,17 +4043,17 @@ var LinkStandard = ({
3591
4043
  var LinkStandard_default = LinkStandard;
3592
4044
 
3593
4045
  // src/components/layout/LinkListStandard/LinkListStandard.tsx
3594
- var import_react16 = require("react");
3595
- var import_jsx_runtime28 = require("react/jsx-runtime");
4046
+ var import_react18 = require("react");
4047
+ var import_jsx_runtime35 = require("react/jsx-runtime");
3596
4048
  var LinkList = ({
3597
4049
  linkArray,
3598
4050
  activatedLanguage,
3599
4051
  linkComponent: LinkComponent = "a"
3600
4052
  }) => {
3601
- const uniqueId = (0, import_react16.useId)();
3602
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "pts-linkList-container", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("ul", { children: linkArray && linkArray.map((link, index) => {
4053
+ const uniqueId = (0, import_react18.useId)();
4054
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "pts-linkList-container", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("ul", { children: linkArray && linkArray.map((link, index) => {
3603
4055
  var _a, _b;
3604
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
4056
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3605
4057
  LinkStandard_default,
3606
4058
  {
3607
4059
  url: link.url,
@@ -3617,8 +4069,8 @@ var LinkList = ({
3617
4069
  var LinkListStandard_default = LinkList;
3618
4070
 
3619
4071
  // src/components/layout/CollapseStandard/CollapseStandard.tsx
3620
- var import_react17 = require("react");
3621
- var import_jsx_runtime29 = require("react/jsx-runtime");
4072
+ var import_react19 = require("react");
4073
+ var import_jsx_runtime36 = require("react/jsx-runtime");
3622
4074
  var Collapse = ({
3623
4075
  title,
3624
4076
  children,
@@ -3627,13 +4079,13 @@ var Collapse = ({
3627
4079
  activatedLanguage = "sv",
3628
4080
  customClass = ""
3629
4081
  }) => {
3630
- const [isOpen, setIsOpen] = (0, import_react17.useState)(defaultOpen);
3631
- const uniqueId = id != null ? id : (0, import_react17.useId)();
4082
+ const [isOpen, setIsOpen] = (0, import_react19.useState)(defaultOpen);
4083
+ const uniqueId = id != null ? id : (0, import_react19.useId)();
3632
4084
  const contentId = `${uniqueId}-content`;
3633
4085
  const openLabel = activatedLanguage === "sv" ? "Visa" : "Show";
3634
4086
  const closeLabel = activatedLanguage === "sv" ? "D\xF6lj" : "Hide";
3635
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "pts-collapse", children: [
3636
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
4087
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "pts-collapse", children: [
4088
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
3637
4089
  "button",
3638
4090
  {
3639
4091
  className: `pts-collapse-button ${isOpen ? "open" : ""}`,
@@ -3643,233 +4095,32 @@ var Collapse = ({
3643
4095
  "aria-controls": contentId,
3644
4096
  children: [
3645
4097
  `${isOpen ? closeLabel : openLabel} ${title}`,
3646
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: "pts-open-close-icon", "aria-hidden": "true", children: isOpen ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(CollapseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(ExpandIcon, {}) })
4098
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: "pts-open-close-icon", "aria-hidden": "true", children: isOpen ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(CollapseIcon, {}) : /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(ExpandIcon, {}) })
3647
4099
  ]
3648
4100
  }
3649
4101
  ),
3650
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
4102
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3651
4103
  "div",
3652
4104
  {
3653
4105
  className: `pts-collapse-body ${isOpen ? "open" : ""}`,
3654
4106
  id: contentId,
3655
4107
  role: "region",
3656
4108
  inert: !isOpen,
3657
- children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: `pts-collapse-content ${customClass}`, children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "pts-collapse-inner", children }) })
4109
+ children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: `pts-collapse-content ${customClass}`, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "pts-collapse-inner", children }) })
3658
4110
  }
3659
4111
  )
3660
4112
  ] });
3661
4113
  };
3662
4114
  var CollapseStandard_default = Collapse;
3663
4115
 
3664
- // src/components/text-blocks/TextHeadlineAndBodyStandard/TextHeadlineAndBodyStandard.tsx
3665
- var import_react18 = require("react");
3666
- var import_dompurify4 = __toESM(require("dompurify"));
3667
- var import_jsx_runtime30 = require("react/jsx-runtime");
3668
- var TextHeadlineAndBody = ({ data, headlineType = "h2" }) => {
3669
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3670
- "section",
3671
- {
3672
- className: "pts-textHeadlineAndBody-container",
3673
- children: [
3674
- data.headline && (0, import_react18.createElement)(headlineType, { id: "textHeadlineAndBody-headline" }, data.headline),
3675
- data.body && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { dangerouslySetInnerHTML: { __html: import_dompurify4.default.sanitize(data.body) } }),
3676
- data.linksForMoreInfo && data.linksForMoreInfo.length > 1 && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3677
- "a",
3678
- {
3679
- href: link.url,
3680
- target: "_blank",
3681
- rel: "noopener noreferrer",
3682
- children: [
3683
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3684
- "svg",
3685
- {
3686
- "aria-hidden": "true",
3687
- xmlns: "http://www.w3.org/2000/svg",
3688
- width: "12",
3689
- height: "10",
3690
- viewBox: "0 0 12 10",
3691
- fill: "none",
3692
- children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3693
- "path",
3694
- {
3695
- d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
3696
- fill: "#ffffff"
3697
- }
3698
- )
3699
- }
3700
- ) }),
3701
- link.title
3702
- ]
3703
- }
3704
- ) }, `more-info-${index}`)) }),
3705
- data.linksForMoreInfo && data.linksForMoreInfo.length === 1 && /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3706
- "a",
3707
- {
3708
- href: data.linksForMoreInfo[0].url,
3709
- target: "_blank",
3710
- rel: "noopener noreferrer",
3711
- "aria-label": data.linksForMoreInfo[0].ariaLabel,
3712
- children: [
3713
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3714
- "svg",
3715
- {
3716
- "aria-hidden": "true",
3717
- xmlns: "http://www.w3.org/2000/svg",
3718
- width: "12",
3719
- height: "10",
3720
- viewBox: "0 0 12 10",
3721
- fill: "none",
3722
- children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3723
- "path",
3724
- {
3725
- d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
3726
- fill: "#ffffff"
3727
- }
3728
- )
3729
- }
3730
- ) }),
3731
- data.linksForMoreInfo[0].title
3732
- ]
3733
- }
3734
- )
3735
- ]
3736
- }
3737
- );
3738
- };
3739
- var TextHeadlineAndBodyStandard_default = TextHeadlineAndBody;
3740
-
3741
- // src/components/text-blocks/PrincipleOfPublicityStandard/PrincipleOfPublicityStandard.tsx
3742
- var import_jsx_runtime31 = require("react/jsx-runtime");
3743
- var CONTENT2 = {
3744
- en: {
3745
- headline: "The principle of public access and the processing of personal data",
3746
- paragraph1: "The principle of public access to information means that everyone has the right to access public documents heldby authorities. The Data Protection Regulation does not prevent personal data in public documents from being disclosed.",
3747
- paragraph2: "Since PTS is an authority, messages sent to us are generally public documents that are recorded and registered. Upon request, the messages will be disclosed if the information is not subject to confidentiality.",
3748
- paragraph3: "More information can be found at pts.se:",
3749
- links: [
3750
- {
3751
- url: "https://pts.se/en/about-us/processing-of-personal-data/",
3752
- title: "Processing of personal data (opens in new tab)"
3753
- }
3754
- ]
3755
- },
3756
- sv: {
3757
- headline: "Offentlighetsprincipen och behandling av personuppgifter",
3758
- paragraph1: "Offentlighetsprincipen inneb\xE4r att var och en har r\xE4tt att ta del av allm\xE4nna handlingar hos myndigheter. Dataskyddsf\xF6rordningen hindrar inte att personuppgifter i allm\xE4nna handlingar l\xE4mnas ut.",
3759
- paragraph2: "Eftersom PTS \xE4r en myndighet blir meddelanden som skickas till oss som huvudregel allm\xE4nna handlingar som diarief\xF6rs och registreras. Vid en beg\xE4ran kommer meddelandena att l\xE4mnas ut om uppgifterna inte omfattas av sekretess.",
3760
- paragraph3: "Mer information finns p\xE5 pts.se:",
3761
- links: [
3762
- {
3763
- url: "https://www.pts.se/gdpr/",
3764
- title: "Behandling av personuppgifter (\xF6ppnas i ny flik)"
3765
- }
3766
- ]
3767
- }
3768
- };
3769
- var PrincipleOfPublicity = ({ activatedLanguage = "" }) => {
3770
- const currentContent = activatedLanguage === "en" ? CONTENT2.en : CONTENT2.sv;
3771
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3772
- TextHeadlineAndBodyStandard_default,
3773
- {
3774
- data: {
3775
- headline: currentContent.headline,
3776
- body: `<p class="first-paragraph">${currentContent.paragraph1}</p><p>${currentContent.paragraph2}</p><p>${currentContent.paragraph3}</p>`,
3777
- linksForMoreInfo: currentContent.links.map((link) => ({
3778
- url: link.url,
3779
- title: link.title,
3780
- ariaLabel: link.title
3781
- }))
3782
- },
3783
- headlineType: "h2"
3784
- }
3785
- );
3786
- };
3787
- var PrincipleOfPublicityStandard_default = PrincipleOfPublicity;
3788
-
3789
- // src/components/text-blocks/TextBody/TextBody.tsx
3790
- var import_dompurify5 = __toESM(require("dompurify"));
3791
- var import_jsx_runtime32 = require("react/jsx-runtime");
3792
- var TextBody = ({ data }) => {
3793
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "pts-textBody-container", children: [
3794
- data.body && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { dangerouslySetInnerHTML: { __html: import_dompurify5.default.sanitize(data.body) } }),
3795
- data.linksForMoreInfo && data.linksForMoreInfo.length > 1 && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
3796
- "a",
3797
- {
3798
- href: link.url,
3799
- target: "_blank",
3800
- rel: "noopener noreferrer",
3801
- children: [
3802
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3803
- "svg",
3804
- {
3805
- "aria-hidden": "true",
3806
- xmlns: "http://www.w3.org/2000/svg",
3807
- width: "12",
3808
- height: "10",
3809
- viewBox: "0 0 12 10",
3810
- fill: "none",
3811
- children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3812
- "path",
3813
- {
3814
- d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
3815
- fill: "#ffffff"
3816
- }
3817
- )
3818
- }
3819
- ) }),
3820
- link.title
3821
- ]
3822
- }
3823
- ) }, `more-info-${index}`)) }),
3824
- data.linksForMoreInfo && data.linksForMoreInfo.length === 1 && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
3825
- "a",
3826
- {
3827
- href: data.linksForMoreInfo[0].url,
3828
- target: "_blank",
3829
- rel: "noopener noreferrer",
3830
- "aria-label": data.linksForMoreInfo[0].ariaLabel,
3831
- children: [
3832
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3833
- "svg",
3834
- {
3835
- "aria-hidden": "true",
3836
- xmlns: "http://www.w3.org/2000/svg",
3837
- width: "12",
3838
- height: "10",
3839
- viewBox: "0 0 12 10",
3840
- fill: "none",
3841
- children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3842
- "path",
3843
- {
3844
- d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
3845
- fill: "#ffffff"
3846
- }
3847
- )
3848
- }
3849
- ) }),
3850
- data.linksForMoreInfo[0].title
3851
- ]
3852
- }
3853
- ),
3854
- data.textAboveStartButton && data.textAboveStartButton.length > 0 && (/<\/?[a-z][\s\S]*>/i.test(data.textAboveStartButton) ? /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3855
- "div",
3856
- {
3857
- className: "pts-instruction-before-start-text",
3858
- dangerouslySetInnerHTML: { __html: import_dompurify5.default.sanitize(data.textAboveStartButton) }
3859
- }
3860
- ) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("p", { className: "pts-instruction-before-start-text", children: data.textAboveStartButton }))
3861
- ] });
3862
- };
3863
- var TextBody_default = TextBody;
3864
-
3865
4116
  // src/components/stepper/EditPreviewLinkStandard/EditPreviewLinkStandard.tsx
3866
- var import_jsx_runtime33 = require("react/jsx-runtime");
4117
+ var import_jsx_runtime37 = require("react/jsx-runtime");
3867
4118
  var EditPreviewLink = ({
3868
4119
  step,
3869
4120
  changeStepHandler,
3870
4121
  activatedLanguage = "sv"
3871
4122
  }) => {
3872
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "pts-editPreviewLink-container", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
4123
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "pts-editPreviewLink-container", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3873
4124
  "a",
3874
4125
  {
3875
4126
  href: "#",
@@ -3878,14 +4129,14 @@ var EditPreviewLink = ({
3878
4129
  e.preventDefault();
3879
4130
  changeStepHandler(step.step);
3880
4131
  },
3881
- children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "pts-edit-step-text", children: activatedLanguage === "en" ? `Edit step ${step.step}` : `Redigera steg ${step.step}` })
4132
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: "pts-edit-step-text", children: activatedLanguage === "en" ? `Edit step ${step.step}` : `Redigera steg ${step.step}` })
3882
4133
  }
3883
4134
  ) });
3884
4135
  };
3885
4136
  var EditPreviewLinkStandard_default = EditPreviewLink;
3886
4137
 
3887
4138
  // src/components/stepper/StartApplicationButton/StartApplicationButton.tsx
3888
- var import_jsx_runtime34 = require("react/jsx-runtime");
4139
+ var import_jsx_runtime38 = require("react/jsx-runtime");
3889
4140
  var StartApplicationButton = ({
3890
4141
  onClick,
3891
4142
  label,
@@ -3893,7 +4144,7 @@ var StartApplicationButton = ({
3893
4144
  activatedLanguage = "sv"
3894
4145
  }) => {
3895
4146
  const defaultLabel = activatedLanguage === "en" ? "Start e-service" : "Starta e-tj\xE4nsten";
3896
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
4147
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3897
4148
  "button",
3898
4149
  {
3899
4150
  type: "button",
@@ -3906,7 +4157,7 @@ var StartApplicationButton = ({
3906
4157
  var StartApplicationButton_default = StartApplicationButton;
3907
4158
 
3908
4159
  // src/components/stepper/StepperButtonsStandard/StepperButtonsStandard.tsx
3909
- var import_jsx_runtime35 = require("react/jsx-runtime");
4160
+ var import_jsx_runtime39 = require("react/jsx-runtime");
3910
4161
  var StepperButtons = ({
3911
4162
  globalLanguageState,
3912
4163
  changeStepHandler,
@@ -3916,8 +4167,8 @@ var StepperButtons = ({
3916
4167
  activeStep
3917
4168
  }) => {
3918
4169
  const totalSteps = steps ? steps.length : "";
3919
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "pts-stepperButtons-container", children: [
3920
- activeStep !== 0 && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
4170
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "pts-stepperButtons-container", children: [
4171
+ activeStep !== 0 && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
3921
4172
  "button",
3922
4173
  {
3923
4174
  onClick: () => changeStepHandler(activeStep - 1),
@@ -3926,7 +4177,7 @@ var StepperButtons = ({
3926
4177
  children: globalLanguageState ? globalLanguageState.backButton : "<<"
3927
4178
  }
3928
4179
  ),
3929
- /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
4180
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
3930
4181
  "button",
3931
4182
  {
3932
4183
  type: activeStep === totalSteps ? "submit" : "button",
@@ -3943,20 +4194,20 @@ var StepperButtons = ({
3943
4194
  var StepperButtonsStandard_default = StepperButtons;
3944
4195
 
3945
4196
  // src/components/stepper/StepperStandard/StepperStandard.tsx
3946
- var import_react19 = __toESM(require("react"));
3947
- var import_jsx_runtime36 = require("react/jsx-runtime");
4197
+ var import_react20 = __toESM(require("react"));
4198
+ var import_jsx_runtime40 = require("react/jsx-runtime");
3948
4199
  var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
3949
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "pts-stepper-container", "aria-hidden": "true", children: arraySteps.map((step, index) => {
4200
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "pts-stepper-container", "aria-hidden": "true", children: arraySteps.map((step, index) => {
3950
4201
  const isActive = step.step === activeStep;
3951
4202
  const lastElement = arraySteps.length;
3952
4203
  const isDone = step.step < activeStep;
3953
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_react19.default.Fragment, { children: [
3954
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "pts-stepper-step", children: [
3955
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
4204
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_react20.default.Fragment, { children: [
4205
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "pts-stepper-step", children: [
4206
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3956
4207
  "div",
3957
4208
  {
3958
4209
  className: "pts-stepperDot" + (isActive ? " pts-stepperDotActive" : "") + (isDone ? " pts-stepperDotDone" : ""),
3959
- children: isDone ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
4210
+ children: isDone ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3960
4211
  "svg",
3961
4212
  {
3962
4213
  xmlns: "http://www.w3.org/2000/svg",
@@ -3964,7 +4215,7 @@ var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
3964
4215
  height: "12",
3965
4216
  viewBox: "0 0 15 12",
3966
4217
  fill: "none",
3967
- children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
4218
+ children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3968
4219
  "path",
3969
4220
  {
3970
4221
  d: "M1.5 5.4375L4.875 10.3125L13.5 1.6875",
@@ -3977,16 +4228,16 @@ var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
3977
4228
  ) : step.step
3978
4229
  }
3979
4230
  ),
3980
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "pts-shortNameInStepper", children: step.shortNameInStepper })
4231
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "pts-shortNameInStepper", children: step.shortNameInStepper })
3981
4232
  ] }, index),
3982
- step.step !== lastElement && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "pts-stepperLine" })
4233
+ step.step !== lastElement && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "pts-stepperLine" })
3983
4234
  ] }, `step-${step.step}`);
3984
4235
  }) });
3985
4236
  };
3986
4237
  var StepperStandard_default = Stepper;
3987
4238
 
3988
4239
  // src/components/validation-and-status/ValidationErrorSummaryList/ValidationErrorSummaryList.tsx
3989
- var import_jsx_runtime37 = require("react/jsx-runtime");
4240
+ var import_jsx_runtime41 = require("react/jsx-runtime");
3990
4241
  var ValidationErrorSummaryList = ({
3991
4242
  validationErrorsList,
3992
4243
  questions,
@@ -4023,7 +4274,7 @@ var ValidationErrorSummaryList = ({
4023
4274
  }, 300);
4024
4275
  }
4025
4276
  }
4026
- if (!validationErrorsList.length) return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_jsx_runtime37.Fragment, {});
4277
+ if (!validationErrorsList.length) return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_jsx_runtime41.Fragment, {});
4027
4278
  const filteredIds = filterIdsByGroupCheck(validationErrorsList, questions);
4028
4279
  const count = filteredIds.length;
4029
4280
  const title = summaryText.replace("{count}", count.toString()).replace(
@@ -4035,11 +4286,11 @@ var ValidationErrorSummaryList = ({
4035
4286
  const found = questions.find((item) => item.id === id);
4036
4287
  return (_a = found == null ? void 0 : found.validationSummaryLabel) != null ? _a : found == null ? void 0 : found.questionLabel;
4037
4288
  }
4038
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: `pts-errorSummary-container pts-root-error ${validationErrorsList.length === 0 ? "cleanPadding" : ""}`, children: [
4039
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { "aria-hidden": "true", className: "errorDot", children: "!" }),
4040
- /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "errorSummary-content", id: "pts-errorSummary-content", children: [
4041
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("h2", { id: "errorSummary-headline", children: title }),
4042
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("ul", { id: "errorSummary-ul", children: filteredIds.map((questionId, i) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
4289
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: `pts-errorSummary-container pts-root-error ${validationErrorsList.length === 0 ? "cleanPadding" : ""}`, children: [
4290
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { "aria-hidden": "true", className: "errorDot", children: "!" }),
4291
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "errorSummary-content", id: "pts-errorSummary-content", children: [
4292
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("h2", { id: "errorSummary-headline", children: title }),
4293
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("ul", { id: "errorSummary-ul", children: filteredIds.map((questionId, i) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4043
4294
  "a",
4044
4295
  {
4045
4296
  href: "#",
@@ -4057,17 +4308,18 @@ var ValidationErrorSummaryList = ({
4057
4308
  var ValidationErrorSummaryList_default = ValidationErrorSummaryList;
4058
4309
 
4059
4310
  // src/components/validation-and-status/FormStatusMessagesScreenReader/FormStatusMessagesScreenReader.tsx
4060
- var import_jsx_runtime38 = require("react/jsx-runtime");
4311
+ var import_jsx_runtime42 = require("react/jsx-runtime");
4061
4312
  var FormStatusMessagesScreenReader = ({ formStatus, activatedLanguage = "sv" }) => {
4062
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(import_jsx_runtime38.Fragment, { children: [
4063
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("p", { "aria-live": "assertive", children: formStatus === "failed" && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("span", { className: "pts-root-mandatoryAsterisk", children: activatedLanguage === "en" ? "Something went wrong, please try again later or contact us!" : "N\xE5got gick fel, f\xF6rs\xF6k igen senare eller kontakta oss!" }) }),
4064
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { "aria-live": "polite", className: "visually-hidden", children: formStatus === "loading" ? activatedLanguage === "en" ? "Your case is being registered. Please do not refresh or close the page." : "Ditt \xE4rende registreras. Uppdatera eller st\xE4ng inte sidan." : "" })
4313
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(import_jsx_runtime42.Fragment, { children: [
4314
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("p", { "aria-live": "assertive", children: formStatus === "failed" && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: "pts-root-mandatoryAsterisk", children: activatedLanguage === "en" ? "Something went wrong, please try again later or contact us!" : "N\xE5got gick fel, f\xF6rs\xF6k igen senare eller kontakta oss!" }) }),
4315
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { "aria-live": "polite", className: "visually-hidden", children: formStatus === "loading" ? activatedLanguage === "en" ? "Your case is being registered. Please do not refresh or close the page." : "Ditt \xE4rende registreras. Uppdatera eller st\xE4ng inte sidan." : "" })
4065
4316
  ] });
4066
4317
  };
4067
4318
  var FormStatusMessagesScreenReader_default = FormStatusMessagesScreenReader;
4068
4319
  // Annotate the CommonJS export names for ESM import in node:
4069
4320
  0 && (module.exports = {
4070
4321
  AddFilesStandard,
4322
+ AlertInTextStandard,
4071
4323
  CheckboxGroupStandard,
4072
4324
  Collapse,
4073
4325
  CookieBanner,
@@ -4075,6 +4327,7 @@ var FormStatusMessagesScreenReader_default = FormStatusMessagesScreenReader;
4075
4327
  FooterStandard,
4076
4328
  FormStatusMessagesScreenReader,
4077
4329
  HeaderStandard,
4330
+ InfoOnlyStandard,
4078
4331
  LinkListStandard,
4079
4332
  LinkStandard,
4080
4333
  ModalStandard,
@@ -4085,6 +4338,7 @@ var FormStatusMessagesScreenReader_default = FormStatusMessagesScreenReader;
4085
4338
  QuestionGroup,
4086
4339
  QuestionRenderer,
4087
4340
  RadioMultipleStandard,
4341
+ RadioMultipleWithInfoStandard,
4088
4342
  SearchBar,
4089
4343
  SingleCheckboxStandard,
4090
4344
  SkipLinkStandard,