aesirx-analytics 2.0.1 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,7 @@
1
1
  import {
2
- AnalyticsContext
3
- } from "./chunk-JQ6CXYV4.js";
2
+ AnalyticsContext,
3
+ useTranslation
4
+ } from "./chunk-RN267RCX.js";
4
5
 
5
6
  // src/utils/consent.ts
6
7
  import { stringMessage } from "@concordium/react-components";
@@ -97,7 +98,7 @@ var revokeConsents = async (endpoint, level, uuid, wallet, signature, web3id, jw
97
98
  };
98
99
 
99
100
  // src/Components/Consent.tsx
100
- import React3, { useState as useState3 } from "react";
101
+ import React4, { useContext as useContext2, useEffect as useEffect2, useState as useState4 } from "react";
101
102
  import { Button as Button2, Form } from "react-bootstrap";
102
103
 
103
104
  // src/Hooks/useConsentStatus.ts
@@ -184,7 +185,13 @@ var getWeb3ID = async (provider, account) => {
184
185
 
185
186
  // src/Hooks/useConsentStatus.ts
186
187
  import { toast } from "react-toastify";
187
- import { isMobile, isDesktop, osName, OsTypes } from "react-device-detect";
188
+ import { isDesktop } from "react-device-detect";
189
+ import {
190
+ MAINNET,
191
+ useConnection,
192
+ useConnect,
193
+ withJsonRpcClient
194
+ } from "@concordium/react-components";
188
195
 
189
196
  // src/Hooks/config.ts
190
197
  import {
@@ -208,15 +215,10 @@ var WALLET_CONNECT = ephemeralConnectorType(
208
215
  );
209
216
 
210
217
  // src/Hooks/useConsentStatus.ts
211
- import {
212
- MAINNET,
213
- useConnection,
214
- useConnect,
215
- withJsonRpcClient
216
- } from "@concordium/react-components";
217
218
  var useConsentStatus = (endpoint, props) => {
218
219
  const [show, setShow] = useState(false);
219
220
  const [showRevoke, setShowRevoke] = useState(false);
221
+ const [showConnectModal, setShowConnectModal] = useState(false);
220
222
  const [level, setLevel] = useState();
221
223
  const [web3ID, setWeb3ID] = useState();
222
224
  const analyticsContext = useContext(AnalyticsContext);
@@ -245,8 +247,8 @@ var useConsentStatus = (endpoint, props) => {
245
247
  sessionStorage.setItem("aesirx-analytics-uuid", analyticsContext.visitor_uuid);
246
248
  sessionStorage.setItem("aesirx-analytics-allow", "1");
247
249
  if (consent) {
248
- const revokeTier = !consent?.consent_uuid ? "1" : consent?.web3id && consent?.address ? "4" : consent?.address && !consent?.web3id ? "3" : "2";
249
- handleRevoke(true, revokeTier);
250
+ const revokeTier = !consent?.consent_uuid ? "" : consent?.web3id && consent?.address ? "4" : consent?.address && !consent?.web3id ? "3" : "2";
251
+ revokeTier ? handleRevoke(true, revokeTier) : setShow(true);
250
252
  }
251
253
  }
252
254
  });
@@ -332,43 +334,27 @@ var useConsentStatus = (endpoint, props) => {
332
334
  setLevel(_level);
333
335
  } else if (_level === 3) {
334
336
  try {
335
- if (isDesktop) {
336
- setActiveConnectorType(BROWSER_WALLET);
337
- setLevel(null);
338
- if (!activeConnector) {
339
- setLevel(1);
340
- toast("Browser Wallet extension not detected");
341
- } else {
342
- setLevel(_level);
343
- }
344
- } else {
345
- if (osName === OsTypes?.IOS && isMobile) {
346
- setLevel(1);
347
- toast("Wallet Connect not support on IOS");
348
- } else if (isMobile) {
349
- setActiveConnectorType(WALLET_CONNECT);
350
- setLevel(_level);
351
- } else {
352
- setLevel(_level);
353
- }
354
- }
337
+ setLevel(3);
355
338
  } catch (error) {
356
339
  setLevel(1);
357
- toast("Browser Wallet extension not detected");
358
340
  }
359
341
  } else if (_level === 4) {
360
342
  setLevel(null);
361
343
  try {
362
- const web3ID2 = await getWeb3ID(connection, account);
363
- if (web3ID2) {
364
- setLevel(_level);
365
- setWeb3ID(web3ID2);
344
+ if (connection) {
345
+ const web3ID2 = await getWeb3ID(connection, account);
346
+ if (web3ID2) {
347
+ setLevel(_level);
348
+ setWeb3ID(web3ID2);
349
+ } else {
350
+ throw new Error("no web3id");
351
+ }
366
352
  } else {
367
- throw new Error("no web3id");
353
+ setShowConnectModal(true);
368
354
  }
369
355
  } catch (error) {
370
356
  setLevel(3);
371
- toast("You haven't minted any WEB3 ID yet. Try to mint at https://dapp.web3id.aesirx.io");
357
+ toast("You haven't minted any WEB3 ID yet. Try to mint at https://dapp.shield.aesirx.io");
372
358
  }
373
359
  }
374
360
  },
@@ -388,12 +374,13 @@ var useConsentStatus = (endpoint, props) => {
388
374
  web3ID,
389
375
  handleLevel,
390
376
  showRevoke,
391
- handleRevoke
377
+ handleRevoke,
378
+ showConnectModal
392
379
  ];
393
380
  };
394
381
  var useConsentStatus_default = useConsentStatus;
395
382
 
396
- // src/style.scss
383
+ // src/styles/style.scss
397
384
  var css = `:root {
398
385
  --toastify-color-light: #fff;
399
386
  --toastify-color-dark: #121212;
@@ -1028,7 +1015,7 @@ var css = `:root {
1028
1015
  --aesirxconsent-gray-700: #495057;
1029
1016
  --aesirxconsent-gray-800: #343a40;
1030
1017
  --aesirxconsent-gray-900: #212529;
1031
- --aesirxconsent-primary: #0d6efd;
1018
+ --aesirxconsent-primary: #132342;
1032
1019
  --aesirxconsent-secondary: #6c757d;
1033
1020
  --aesirxconsent-success: #1ab394;
1034
1021
  --aesirxconsent-info: #0dcaf0;
@@ -1036,7 +1023,7 @@ var css = `:root {
1036
1023
  --aesirxconsent-danger: #dc3545;
1037
1024
  --aesirxconsent-light: #f8f9fa;
1038
1025
  --aesirxconsent-dark: #212529;
1039
- --aesirxconsent-primary-rgb: 13, 110, 253;
1026
+ --aesirxconsent-primary-rgb: 19, 35, 66;
1040
1027
  --aesirxconsent-secondary-rgb: 108, 117, 125;
1041
1028
  --aesirxconsent-success-rgb: 26, 179, 148;
1042
1029
  --aesirxconsent-info-rgb: 13, 202, 240;
@@ -1044,7 +1031,7 @@ var css = `:root {
1044
1031
  --aesirxconsent-danger-rgb: 220, 53, 69;
1045
1032
  --aesirxconsent-light-rgb: 248, 249, 250;
1046
1033
  --aesirxconsent-dark-rgb: 33, 37, 41;
1047
- --aesirxconsent-primary-text-emphasis: #052c65;
1034
+ --aesirxconsent-primary-text-emphasis: #080e1a;
1048
1035
  --aesirxconsent-secondary-text-emphasis: #2b2f32;
1049
1036
  --aesirxconsent-success-text-emphasis: #0a483b;
1050
1037
  --aesirxconsent-info-text-emphasis: #055160;
@@ -1052,7 +1039,7 @@ var css = `:root {
1052
1039
  --aesirxconsent-danger-text-emphasis: #58151c;
1053
1040
  --aesirxconsent-light-text-emphasis: #495057;
1054
1041
  --aesirxconsent-dark-text-emphasis: #495057;
1055
- --aesirxconsent-primary-bg-subtle: #cfe2ff;
1042
+ --aesirxconsent-primary-bg-subtle: #d0d3d9;
1056
1043
  --aesirxconsent-secondary-bg-subtle: #e2e3e5;
1057
1044
  --aesirxconsent-success-bg-subtle: #d1f0ea;
1058
1045
  --aesirxconsent-info-bg-subtle: #cff4fc;
@@ -1060,7 +1047,7 @@ var css = `:root {
1060
1047
  --aesirxconsent-danger-bg-subtle: #f8d7da;
1061
1048
  --aesirxconsent-light-bg-subtle: #fcfcfd;
1062
1049
  --aesirxconsent-dark-bg-subtle: #ced4da;
1063
- --aesirxconsent-primary-border-subtle: #9ec5fe;
1050
+ --aesirxconsent-primary-border-subtle: #a1a7b3;
1064
1051
  --aesirxconsent-secondary-border-subtle: #c4c8cb;
1065
1052
  --aesirxconsent-success-border-subtle: #a3e1d4;
1066
1053
  --aesirxconsent-info-border-subtle: #9eeaf9;
@@ -1092,11 +1079,11 @@ var css = `:root {
1092
1079
  --aesirxconsent-tertiary-bg: #f8f9fa;
1093
1080
  --aesirxconsent-tertiary-bg-rgb: 248, 249, 250;
1094
1081
  --aesirxconsent-heading-color: inherit;
1095
- --aesirxconsent-link-color: #0d6efd;
1096
- --aesirxconsent-link-color-rgb: 13, 110, 253;
1082
+ --aesirxconsent-link-color: #132342;
1083
+ --aesirxconsent-link-color-rgb: 19, 35, 66;
1097
1084
  --aesirxconsent-link-decoration: underline;
1098
- --aesirxconsent-link-hover-color: #0a58ca;
1099
- --aesirxconsent-link-hover-color-rgb: 10, 88, 202;
1085
+ --aesirxconsent-link-hover-color: #0f1c35;
1086
+ --aesirxconsent-link-hover-color-rgb: 15, 28, 53;
1100
1087
  --aesirxconsent-code-color: #d63384;
1101
1088
  --aesirxconsent-highlight-bg: #fff3cd;
1102
1089
  --aesirxconsent-border-width: 1px;
@@ -1116,24 +1103,371 @@ var css = `:root {
1116
1103
  --aesirxconsent-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
1117
1104
  --aesirxconsent-focus-ring-width: 0.25rem;
1118
1105
  --aesirxconsent-focus-ring-opacity: 0.25;
1119
- --aesirxconsent-focus-ring-color: rgba(13, 110, 253, 0.25);
1106
+ --aesirxconsent-focus-ring-color: rgba(19, 35, 66, 0.25);
1120
1107
  --aesirxconsent-form-valid-color: #1ab394;
1121
1108
  --aesirxconsent-form-valid-border-color: #1ab394;
1122
1109
  --aesirxconsent-form-invalid-color: #dc3545;
1123
1110
  --aesirxconsent-form-invalid-border-color: #dc3545;
1124
1111
  }
1125
1112
 
1113
+ [data-bs-theme=dark] {
1114
+ color-scheme: dark;
1115
+ --aesirxconsent-body-color: #dee2e6;
1116
+ --aesirxconsent-body-color-rgb: 222, 226, 230;
1117
+ --aesirxconsent-body-bg: #101529;
1118
+ --aesirxconsent-body-bg-rgb: 16, 21, 41;
1119
+ --aesirxconsent-emphasis-color: #fff;
1120
+ --aesirxconsent-emphasis-color-rgb: 255, 255, 255;
1121
+ --aesirxconsent-secondary-color: rgba(222, 226, 230, 0.75);
1122
+ --aesirxconsent-secondary-color-rgb: 222, 226, 230;
1123
+ --aesirxconsent-secondary-bg: #343a40;
1124
+ --aesirxconsent-secondary-bg-rgb: 52, 58, 64;
1125
+ --aesirxconsent-tertiary-color: rgba(222, 226, 230, 0.5);
1126
+ --aesirxconsent-tertiary-color-rgb: 222, 226, 230;
1127
+ --aesirxconsent-tertiary-bg: #2b3035;
1128
+ --aesirxconsent-tertiary-bg-rgb: 43, 48, 53;
1129
+ --aesirxconsent-primary-text-emphasis: #717b8e;
1130
+ --aesirxconsent-secondary-text-emphasis: #a7acb1;
1131
+ --aesirxconsent-success-text-emphasis: #76d1bf;
1132
+ --aesirxconsent-info-text-emphasis: #6edff6;
1133
+ --aesirxconsent-warning-text-emphasis: #ffda6a;
1134
+ --aesirxconsent-danger-text-emphasis: #ea868f;
1135
+ --aesirxconsent-light-text-emphasis: #f8f9fa;
1136
+ --aesirxconsent-dark-text-emphasis: #dee2e6;
1137
+ --aesirxconsent-primary-bg-subtle: #04070d;
1138
+ --aesirxconsent-secondary-bg-subtle: #161719;
1139
+ --aesirxconsent-success-bg-subtle: #05241e;
1140
+ --aesirxconsent-info-bg-subtle: #032830;
1141
+ --aesirxconsent-warning-bg-subtle: #332701;
1142
+ --aesirxconsent-danger-bg-subtle: #2c0b0e;
1143
+ --aesirxconsent-light-bg-subtle: #0c1124;
1144
+ --aesirxconsent-dark-bg-subtle: #132342;
1145
+ --aesirxconsent-primary-border-subtle: #0b1528;
1146
+ --aesirxconsent-secondary-border-subtle: #41464b;
1147
+ --aesirxconsent-success-border-subtle: #106b59;
1148
+ --aesirxconsent-info-border-subtle: #087990;
1149
+ --aesirxconsent-warning-border-subtle: #997404;
1150
+ --aesirxconsent-danger-border-subtle: #842029;
1151
+ --aesirxconsent-light-border-subtle: #495057;
1152
+ --aesirxconsent-dark-border-subtle: #132342;
1153
+ --aesirxconsent-heading-color: inherit;
1154
+ --aesirxconsent-link-color: #fff;
1155
+ --aesirxconsent-link-hover-color: white;
1156
+ --aesirxconsent-link-color-rgb: 255, 255, 255;
1157
+ --aesirxconsent-link-hover-color-rgb: 255, 255, 255;
1158
+ --aesirxconsent-code-color: #e685b5;
1159
+ --aesirxconsent-border-color: #1e4284;
1160
+ --aesirxconsent-border-color-translucent: rgba(255, 255, 255, 0.15);
1161
+ --aesirxconsent-form-valid-color: #75b798;
1162
+ --aesirxconsent-form-valid-border-color: #75b798;
1163
+ --aesirxconsent-form-invalid-color: #ea868f;
1164
+ --aesirxconsent-form-invalid-border-color: #ea868f;
1165
+ }
1166
+
1167
+ .modal {
1168
+ --aesirxconsent-modal-zindex: 1055;
1169
+ --aesirxconsent-modal-width: 500px;
1170
+ --aesirxconsent-modal-padding: 16px;
1171
+ --aesirxconsent-modal-margin: 0.5rem;
1172
+ --aesirxconsent-modal-color: ;
1173
+ --aesirxconsent-modal-bg: var(--aesirxconsent-body-bg);
1174
+ --aesirxconsent-modal-border-color: var(--aesirxconsent-border-color-translucent);
1175
+ --aesirxconsent-modal-border-width: var(--aesirxconsent-border-width);
1176
+ --aesirxconsent-modal-border-radius: var(--aesirxconsent-border-radius-lg);
1177
+ --aesirxconsent-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
1178
+ --aesirxconsent-modal-inner-border-radius: calc(var(--aesirxconsent-border-radius-lg) - (var(--aesirxconsent-border-width)));
1179
+ --aesirxconsent-modal-header-padding-x: 16px;
1180
+ --aesirxconsent-modal-header-padding-y: 16px;
1181
+ --aesirxconsent-modal-header-padding: 16px 16px;
1182
+ --aesirxconsent-modal-header-border-color: var(--aesirxconsent-border-color);
1183
+ --aesirxconsent-modal-header-border-width: var(--aesirxconsent-border-width);
1184
+ --aesirxconsent-modal-title-line-height: 1.5;
1185
+ --aesirxconsent-modal-footer-gap: 0.5rem;
1186
+ --aesirxconsent-modal-footer-bg: ;
1187
+ --aesirxconsent-modal-footer-border-color: var(--aesirxconsent-border-color);
1188
+ --aesirxconsent-modal-footer-border-width: var(--aesirxconsent-border-width);
1189
+ position: fixed;
1190
+ top: 0;
1191
+ left: 0;
1192
+ z-index: var(--aesirxconsent-modal-zindex);
1193
+ display: none;
1194
+ width: 100%;
1195
+ height: 100%;
1196
+ overflow-x: hidden;
1197
+ overflow-y: auto;
1198
+ outline: 0;
1199
+ }
1200
+
1201
+ .modal-dialog {
1202
+ position: relative;
1203
+ width: auto;
1204
+ margin: var(--aesirxconsent-modal-margin);
1205
+ pointer-events: none;
1206
+ }
1207
+ .modal.fade .modal-dialog {
1208
+ transition: transform 0.3s ease-out;
1209
+ transform: translate(0, -50px);
1210
+ }
1211
+ @media (prefers-reduced-motion: reduce) {
1212
+ .modal.fade .modal-dialog {
1213
+ transition: none;
1214
+ }
1215
+ }
1216
+ .modal.show .modal-dialog {
1217
+ transform: none;
1218
+ }
1219
+ .modal.modal-static .modal-dialog {
1220
+ transform: scale(1.02);
1221
+ }
1222
+
1223
+ .modal-dialog-scrollable {
1224
+ height: calc(100% - var(--aesirxconsent-modal-margin) * 2);
1225
+ }
1226
+ .modal-dialog-scrollable .modal-content {
1227
+ max-height: 100%;
1228
+ overflow: hidden;
1229
+ }
1230
+ .modal-dialog-scrollable .modal-body {
1231
+ overflow-y: auto;
1232
+ }
1233
+
1234
+ .modal-dialog-centered {
1235
+ display: flex;
1236
+ align-items: center;
1237
+ min-height: calc(100% - var(--aesirxconsent-modal-margin) * 2);
1238
+ }
1239
+
1240
+ .modal-content {
1241
+ position: relative;
1242
+ display: flex;
1243
+ flex-direction: column;
1244
+ width: 100%;
1245
+ color: var(--aesirxconsent-modal-color);
1246
+ pointer-events: auto;
1247
+ background-color: var(--aesirxconsent-modal-bg);
1248
+ background-clip: padding-box;
1249
+ border: var(--aesirxconsent-modal-border-width) solid var(--aesirxconsent-modal-border-color);
1250
+ border-radius: var(--aesirxconsent-modal-border-radius);
1251
+ outline: 0;
1252
+ }
1253
+
1254
+ .modal-backdrop {
1255
+ --aesirxconsent-backdrop-zindex: 1050;
1256
+ --aesirxconsent-backdrop-bg: #000;
1257
+ --aesirxconsent-backdrop-opacity: 0.5;
1258
+ position: fixed;
1259
+ top: 0;
1260
+ left: 0;
1261
+ z-index: var(--aesirxconsent-backdrop-zindex);
1262
+ width: 100vw;
1263
+ height: 100vh;
1264
+ background-color: var(--aesirxconsent-backdrop-bg);
1265
+ }
1266
+ .modal-backdrop.fade {
1267
+ opacity: 0;
1268
+ }
1269
+ .modal-backdrop.show {
1270
+ opacity: var(--aesirxconsent-backdrop-opacity);
1271
+ }
1272
+
1273
+ .modal-header {
1274
+ display: flex;
1275
+ flex-shrink: 0;
1276
+ align-items: center;
1277
+ justify-content: space-between;
1278
+ padding: var(--aesirxconsent-modal-header-padding);
1279
+ border-bottom: var(--aesirxconsent-modal-header-border-width) solid var(--aesirxconsent-modal-header-border-color);
1280
+ border-top-left-radius: var(--aesirxconsent-modal-inner-border-radius);
1281
+ border-top-right-radius: var(--aesirxconsent-modal-inner-border-radius);
1282
+ }
1283
+ .modal-header .btn-close {
1284
+ padding: calc(var(--aesirxconsent-modal-header-padding-y) * 0.5) calc(var(--aesirxconsent-modal-header-padding-x) * 0.5);
1285
+ margin: calc(-0.5 * var(--aesirxconsent-modal-header-padding-y)) calc(-0.5 * var(--aesirxconsent-modal-header-padding-x)) calc(-0.5 * var(--aesirxconsent-modal-header-padding-y)) auto;
1286
+ }
1287
+
1288
+ .modal-title {
1289
+ margin-bottom: 0;
1290
+ line-height: var(--aesirxconsent-modal-title-line-height);
1291
+ }
1292
+
1293
+ .modal-body {
1294
+ position: relative;
1295
+ flex: 1 1 auto;
1296
+ padding: var(--aesirxconsent-modal-padding);
1297
+ }
1298
+
1299
+ .modal-footer {
1300
+ display: flex;
1301
+ flex-shrink: 0;
1302
+ flex-wrap: wrap;
1303
+ align-items: center;
1304
+ justify-content: flex-end;
1305
+ padding: calc(var(--aesirxconsent-modal-padding) - var(--aesirxconsent-modal-footer-gap) * 0.5);
1306
+ background-color: var(--aesirxconsent-modal-footer-bg);
1307
+ border-top: var(--aesirxconsent-modal-footer-border-width) solid var(--aesirxconsent-modal-footer-border-color);
1308
+ border-bottom-right-radius: var(--aesirxconsent-modal-inner-border-radius);
1309
+ border-bottom-left-radius: var(--aesirxconsent-modal-inner-border-radius);
1310
+ }
1311
+ .modal-footer > * {
1312
+ margin: calc(var(--aesirxconsent-modal-footer-gap) * 0.5);
1313
+ }
1314
+
1315
+ @media (min-width: 576px) {
1316
+ .modal {
1317
+ --aesirxconsent-modal-margin: 1.75rem;
1318
+ --aesirxconsent-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
1319
+ }
1320
+ .modal-dialog {
1321
+ max-width: var(--aesirxconsent-modal-width);
1322
+ margin-right: auto;
1323
+ margin-left: auto;
1324
+ }
1325
+ .modal-sm {
1326
+ --aesirxconsent-modal-width: 300px;
1327
+ }
1328
+ }
1329
+ @media (min-width: 992px) {
1330
+ .modal-lg,
1331
+ .modal-xl {
1332
+ --aesirxconsent-modal-width: 800px;
1333
+ }
1334
+ }
1335
+ @media (min-width: 1200px) {
1336
+ .modal-xl {
1337
+ --aesirxconsent-modal-width: 1140px;
1338
+ }
1339
+ }
1340
+ .modal-fullscreen {
1341
+ width: 100vw;
1342
+ max-width: none;
1343
+ height: 100%;
1344
+ margin: 0;
1345
+ }
1346
+ .modal-fullscreen .modal-content {
1347
+ height: 100%;
1348
+ border: 0;
1349
+ border-radius: 0;
1350
+ }
1351
+ .modal-fullscreen .modal-header,
1352
+ .modal-fullscreen .modal-footer {
1353
+ border-radius: 0;
1354
+ }
1355
+ .modal-fullscreen .modal-body {
1356
+ overflow-y: auto;
1357
+ }
1358
+
1359
+ @media (max-width: 575.98px) {
1360
+ .modal-fullscreen-sm-down {
1361
+ width: 100vw;
1362
+ max-width: none;
1363
+ height: 100%;
1364
+ margin: 0;
1365
+ }
1366
+ .modal-fullscreen-sm-down .modal-content {
1367
+ height: 100%;
1368
+ border: 0;
1369
+ border-radius: 0;
1370
+ }
1371
+ .modal-fullscreen-sm-down .modal-header,
1372
+ .modal-fullscreen-sm-down .modal-footer {
1373
+ border-radius: 0;
1374
+ }
1375
+ .modal-fullscreen-sm-down .modal-body {
1376
+ overflow-y: auto;
1377
+ }
1378
+ }
1379
+ @media (max-width: 767.98px) {
1380
+ .modal-fullscreen-md-down {
1381
+ width: 100vw;
1382
+ max-width: none;
1383
+ height: 100%;
1384
+ margin: 0;
1385
+ }
1386
+ .modal-fullscreen-md-down .modal-content {
1387
+ height: 100%;
1388
+ border: 0;
1389
+ border-radius: 0;
1390
+ }
1391
+ .modal-fullscreen-md-down .modal-header,
1392
+ .modal-fullscreen-md-down .modal-footer {
1393
+ border-radius: 0;
1394
+ }
1395
+ .modal-fullscreen-md-down .modal-body {
1396
+ overflow-y: auto;
1397
+ }
1398
+ }
1399
+ @media (max-width: 991.98px) {
1400
+ .modal-fullscreen-lg-down {
1401
+ width: 100vw;
1402
+ max-width: none;
1403
+ height: 100%;
1404
+ margin: 0;
1405
+ }
1406
+ .modal-fullscreen-lg-down .modal-content {
1407
+ height: 100%;
1408
+ border: 0;
1409
+ border-radius: 0;
1410
+ }
1411
+ .modal-fullscreen-lg-down .modal-header,
1412
+ .modal-fullscreen-lg-down .modal-footer {
1413
+ border-radius: 0;
1414
+ }
1415
+ .modal-fullscreen-lg-down .modal-body {
1416
+ overflow-y: auto;
1417
+ }
1418
+ }
1419
+ @media (max-width: 1199.98px) {
1420
+ .modal-fullscreen-xl-down {
1421
+ width: 100vw;
1422
+ max-width: none;
1423
+ height: 100%;
1424
+ margin: 0;
1425
+ }
1426
+ .modal-fullscreen-xl-down .modal-content {
1427
+ height: 100%;
1428
+ border: 0;
1429
+ border-radius: 0;
1430
+ }
1431
+ .modal-fullscreen-xl-down .modal-header,
1432
+ .modal-fullscreen-xl-down .modal-footer {
1433
+ border-radius: 0;
1434
+ }
1435
+ .modal-fullscreen-xl-down .modal-body {
1436
+ overflow-y: auto;
1437
+ }
1438
+ }
1439
+ @media (max-width: 1399.98px) {
1440
+ .modal-fullscreen-xxl-down {
1441
+ width: 100vw;
1442
+ max-width: none;
1443
+ height: 100%;
1444
+ margin: 0;
1445
+ }
1446
+ .modal-fullscreen-xxl-down .modal-content {
1447
+ height: 100%;
1448
+ border: 0;
1449
+ border-radius: 0;
1450
+ }
1451
+ .modal-fullscreen-xxl-down .modal-header,
1452
+ .modal-fullscreen-xxl-down .modal-footer {
1453
+ border-radius: 0;
1454
+ }
1455
+ .modal-fullscreen-xxl-down .modal-body {
1456
+ overflow-y: auto;
1457
+ }
1458
+ }
1126
1459
  .aesirxconsent {
1127
1460
  /* rtl:begin:remove */
1128
1461
  /* rtl:end:remove */
1129
1462
  color: #5f5e70;
1463
+ font-size: 16px;
1130
1464
  }
1131
1465
  .aesirxconsent .offcanvas, .aesirxconsent .offcanvas-xxl, .aesirxconsent .offcanvas-xl, .aesirxconsent .offcanvas-lg, .aesirxconsent .offcanvas-md, .aesirxconsent .offcanvas-sm {
1132
1466
  --aesirxconsent-offcanvas-zindex: 1045;
1133
1467
  --aesirxconsent-offcanvas-width: 400px;
1134
1468
  --aesirxconsent-offcanvas-height: 30vh;
1135
- --aesirxconsent-offcanvas-padding-x: 1rem;
1136
- --aesirxconsent-offcanvas-padding-y: 1rem;
1469
+ --aesirxconsent-offcanvas-padding-x: 16px;
1470
+ --aesirxconsent-offcanvas-padding-y: 16px;
1137
1471
  --aesirxconsent-offcanvas-color: var(--aesirxconsent-body-color);
1138
1472
  --aesirxconsent-offcanvas-bg: var(--aesirxconsent-body-bg);
1139
1473
  --aesirxconsent-offcanvas-border-width: var(--aesirxconsent-border-width);
@@ -1696,19 +2030,19 @@ var css = `:root {
1696
2030
  }
1697
2031
  .aesirxconsent .btn-primary {
1698
2032
  --aesirxconsent-btn-color: #fff;
1699
- --aesirxconsent-btn-bg: #0d6efd;
1700
- --aesirxconsent-btn-border-color: #0d6efd;
2033
+ --aesirxconsent-btn-bg: #132342;
2034
+ --aesirxconsent-btn-border-color: #132342;
1701
2035
  --aesirxconsent-btn-hover-color: #fff;
1702
- --aesirxconsent-btn-hover-bg: #0b5ed7;
1703
- --aesirxconsent-btn-hover-border-color: #0a58ca;
1704
- --aesirxconsent-btn-focus-shadow-rgb: 49, 132, 253;
2036
+ --aesirxconsent-btn-hover-bg: #101e38;
2037
+ --aesirxconsent-btn-hover-border-color: #0f1c35;
2038
+ --aesirxconsent-btn-focus-shadow-rgb: 54, 68, 94;
1705
2039
  --aesirxconsent-btn-active-color: #fff;
1706
- --aesirxconsent-btn-active-bg: #0a58ca;
1707
- --aesirxconsent-btn-active-border-color: #0a53be;
2040
+ --aesirxconsent-btn-active-bg: #0f1c35;
2041
+ --aesirxconsent-btn-active-border-color: #0e1a32;
1708
2042
  --aesirxconsent-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1709
2043
  --aesirxconsent-btn-disabled-color: #fff;
1710
- --aesirxconsent-btn-disabled-bg: #0d6efd;
1711
- --aesirxconsent-btn-disabled-border-color: #0d6efd;
2044
+ --aesirxconsent-btn-disabled-bg: #132342;
2045
+ --aesirxconsent-btn-disabled-border-color: #132342;
1712
2046
  }
1713
2047
  .aesirxconsent .btn-secondary {
1714
2048
  --aesirxconsent-btn-color: #fff;
@@ -1823,19 +2157,19 @@ var css = `:root {
1823
2157
  --aesirxconsent-btn-disabled-border-color: #212529;
1824
2158
  }
1825
2159
  .aesirxconsent .btn-outline-primary {
1826
- --aesirxconsent-btn-color: #0d6efd;
1827
- --aesirxconsent-btn-border-color: #0d6efd;
2160
+ --aesirxconsent-btn-color: #132342;
2161
+ --aesirxconsent-btn-border-color: #132342;
1828
2162
  --aesirxconsent-btn-hover-color: #fff;
1829
- --aesirxconsent-btn-hover-bg: #0d6efd;
1830
- --aesirxconsent-btn-hover-border-color: #0d6efd;
1831
- --aesirxconsent-btn-focus-shadow-rgb: 13, 110, 253;
2163
+ --aesirxconsent-btn-hover-bg: #132342;
2164
+ --aesirxconsent-btn-hover-border-color: #132342;
2165
+ --aesirxconsent-btn-focus-shadow-rgb: 19, 35, 66;
1832
2166
  --aesirxconsent-btn-active-color: #fff;
1833
- --aesirxconsent-btn-active-bg: #0d6efd;
1834
- --aesirxconsent-btn-active-border-color: #0d6efd;
2167
+ --aesirxconsent-btn-active-bg: #132342;
2168
+ --aesirxconsent-btn-active-border-color: #132342;
1835
2169
  --aesirxconsent-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1836
- --aesirxconsent-btn-disabled-color: #0d6efd;
2170
+ --aesirxconsent-btn-disabled-color: #132342;
1837
2171
  --aesirxconsent-btn-disabled-bg: transparent;
1838
- --aesirxconsent-btn-disabled-border-color: #0d6efd;
2172
+ --aesirxconsent-btn-disabled-border-color: #132342;
1839
2173
  --aesirxconsent-gradient: none;
1840
2174
  }
1841
2175
  .aesirxconsent .btn-outline-secondary {
@@ -1962,7 +2296,7 @@ var css = `:root {
1962
2296
  --aesirxconsent-btn-disabled-color: #6c757d;
1963
2297
  --aesirxconsent-btn-disabled-border-color: transparent;
1964
2298
  --aesirxconsent-btn-box-shadow: 0 0 0 #000;
1965
- --aesirxconsent-btn-focus-shadow-rgb: 49, 132, 253;
2299
+ --aesirxconsent-btn-focus-shadow-rgb: 54, 68, 94;
1966
2300
  text-decoration: underline;
1967
2301
  }
1968
2302
  .aesirxconsent .btn-link:focus-visible {
@@ -1988,7 +2322,7 @@ var css = `:root {
1988
2322
  --aesirxconsent-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
1989
2323
  --aesirxconsent-btn-close-opacity: 0.5;
1990
2324
  --aesirxconsent-btn-close-hover-opacity: 0.75;
1991
- --aesirxconsent-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2325
+ --aesirxconsent-btn-close-focus-shadow: 0 0 0 0.25rem rgba(19, 35, 66, 0.25);
1992
2326
  --aesirxconsent-btn-close-focus-opacity: 1;
1993
2327
  --aesirxconsent-btn-close-disabled-opacity: 0.25;
1994
2328
  --aesirxconsent-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
@@ -2020,6 +2354,9 @@ var css = `:root {
2020
2354
  .aesirxconsent .btn-close-white {
2021
2355
  filter: var(--aesirxconsent-btn-close-white-filter);
2022
2356
  }
2357
+ .aesirxconsent [data-bs-theme=dark] .btn-close {
2358
+ filter: var(--aesirxconsent-btn-close-white-filter);
2359
+ }
2023
2360
  .aesirxconsent .clearfix::after {
2024
2361
  display: block;
2025
2362
  clear: both;
@@ -2062,8 +2399,8 @@ var css = `:root {
2062
2399
  text-decoration-color: RGBA(var(--aesirxconsent-primary-rgb), var(--aesirxconsent-link-underline-opacity, 1));
2063
2400
  }
2064
2401
  .aesirxconsent .link-primary:hover, .aesirxconsent .link-primary:focus {
2065
- color: RGBA(10, 88, 202, var(--aesirxconsent-link-opacity, 1));
2066
- text-decoration-color: RGBA(10, 88, 202, var(--aesirxconsent-link-underline-opacity, 1));
2402
+ color: RGBA(15, 28, 53, var(--aesirxconsent-link-opacity, 1));
2403
+ text-decoration-color: RGBA(15, 28, 53, var(--aesirxconsent-link-underline-opacity, 1));
2067
2404
  }
2068
2405
  .aesirxconsent .link-secondary {
2069
2406
  color: RGBA(var(--aesirxconsent-secondary-rgb), var(--aesirxconsent-link-opacity, 1));
@@ -2414,7 +2751,7 @@ var css = `:root {
2414
2751
  --aesirxconsent-toast-padding-y: 0.5rem;
2415
2752
  --aesirxconsent-toast-spacing: 1.5rem;
2416
2753
  --aesirxconsent-toast-max-width: 617px;
2417
- --aesirxconsent-toast-font-size: 1rem;
2754
+ --aesirxconsent-toast-font-size: 0.875rem;
2418
2755
  --aesirxconsent-toast-color: ;
2419
2756
  --aesirxconsent-toast-bg: ;
2420
2757
  --aesirxconsent-toast-border-width: var(--aesirxconsent-border-width);
@@ -2472,9 +2809,9 @@ var css = `:root {
2472
2809
  word-wrap: break-word;
2473
2810
  }
2474
2811
  .aesirxconsent .card {
2475
- --aesirxconsent-card-spacer-y: 1rem;
2476
- --aesirxconsent-card-spacer-x: 1rem;
2477
- --aesirxconsent-card-title-spacer-y: 0.5rem;
2812
+ --aesirxconsent-card-spacer-y: 16px;
2813
+ --aesirxconsent-card-spacer-x: 16px;
2814
+ --aesirxconsent-card-title-spacer-y: 8px;
2478
2815
  --aesirxconsent-card-title-color: ;
2479
2816
  --aesirxconsent-card-subtitle-color: ;
2480
2817
  --aesirxconsent-card-border-width: var(--aesirxconsent-border-width);
@@ -2482,14 +2819,14 @@ var css = `:root {
2482
2819
  --aesirxconsent-card-border-radius: var(--aesirxconsent-border-radius);
2483
2820
  --aesirxconsent-card-box-shadow: ;
2484
2821
  --aesirxconsent-card-inner-border-radius: calc(var(--aesirxconsent-border-radius) - (var(--aesirxconsent-border-width)));
2485
- --aesirxconsent-card-cap-padding-y: 0.5rem;
2486
- --aesirxconsent-card-cap-padding-x: 1rem;
2822
+ --aesirxconsent-card-cap-padding-y: 8px;
2823
+ --aesirxconsent-card-cap-padding-x: 16px;
2487
2824
  --aesirxconsent-card-cap-bg: rgba(var(--aesirxconsent-body-color-rgb), 0.03);
2488
2825
  --aesirxconsent-card-cap-color: ;
2489
2826
  --aesirxconsent-card-height: ;
2490
2827
  --aesirxconsent-card-color: ;
2491
2828
  --aesirxconsent-card-bg: var(--aesirxconsent-body-bg);
2492
- --aesirxconsent-card-img-overlay-padding: 1rem;
2829
+ --aesirxconsent-card-img-overlay-padding: 16px;
2493
2830
  --aesirxconsent-card-group-margin: 0.75rem;
2494
2831
  position: relative;
2495
2832
  display: flex;
@@ -3170,19 +3507,19 @@ var css = `:root {
3170
3507
  margin: 0;
3171
3508
  }
3172
3509
  .aesirxconsent .m-1 {
3173
- margin: 0.25rem;
3510
+ margin: 4px;
3174
3511
  }
3175
3512
  .aesirxconsent .m-2 {
3176
- margin: 0.5rem;
3513
+ margin: 8px;
3177
3514
  }
3178
3515
  .aesirxconsent .m-3 {
3179
- margin: 1rem;
3516
+ margin: 16px;
3180
3517
  }
3181
3518
  .aesirxconsent .m-4 {
3182
- margin: 1.5rem;
3519
+ margin: 24px;
3183
3520
  }
3184
3521
  .aesirxconsent .m-5 {
3185
- margin: 3rem;
3522
+ margin: 48px;
3186
3523
  }
3187
3524
  .aesirxconsent .m-auto {
3188
3525
  margin: auto;
@@ -3192,24 +3529,24 @@ var css = `:root {
3192
3529
  margin-left: 0;
3193
3530
  }
3194
3531
  .aesirxconsent .mx-1 {
3195
- margin-right: 0.25rem;
3196
- margin-left: 0.25rem;
3532
+ margin-right: 4px;
3533
+ margin-left: 4px;
3197
3534
  }
3198
3535
  .aesirxconsent .mx-2 {
3199
- margin-right: 0.5rem;
3200
- margin-left: 0.5rem;
3536
+ margin-right: 8px;
3537
+ margin-left: 8px;
3201
3538
  }
3202
3539
  .aesirxconsent .mx-3 {
3203
- margin-right: 1rem;
3204
- margin-left: 1rem;
3540
+ margin-right: 16px;
3541
+ margin-left: 16px;
3205
3542
  }
3206
3543
  .aesirxconsent .mx-4 {
3207
- margin-right: 1.5rem;
3208
- margin-left: 1.5rem;
3544
+ margin-right: 24px;
3545
+ margin-left: 24px;
3209
3546
  }
3210
3547
  .aesirxconsent .mx-5 {
3211
- margin-right: 3rem;
3212
- margin-left: 3rem;
3548
+ margin-right: 48px;
3549
+ margin-left: 48px;
3213
3550
  }
3214
3551
  .aesirxconsent .mx-auto {
3215
3552
  margin-right: auto;
@@ -3220,24 +3557,24 @@ var css = `:root {
3220
3557
  margin-bottom: 0;
3221
3558
  }
3222
3559
  .aesirxconsent .my-1 {
3223
- margin-top: 0.25rem;
3224
- margin-bottom: 0.25rem;
3560
+ margin-top: 4px;
3561
+ margin-bottom: 4px;
3225
3562
  }
3226
3563
  .aesirxconsent .my-2 {
3227
- margin-top: 0.5rem;
3228
- margin-bottom: 0.5rem;
3564
+ margin-top: 8px;
3565
+ margin-bottom: 8px;
3229
3566
  }
3230
3567
  .aesirxconsent .my-3 {
3231
- margin-top: 1rem;
3232
- margin-bottom: 1rem;
3568
+ margin-top: 16px;
3569
+ margin-bottom: 16px;
3233
3570
  }
3234
3571
  .aesirxconsent .my-4 {
3235
- margin-top: 1.5rem;
3236
- margin-bottom: 1.5rem;
3572
+ margin-top: 24px;
3573
+ margin-bottom: 24px;
3237
3574
  }
3238
3575
  .aesirxconsent .my-5 {
3239
- margin-top: 3rem;
3240
- margin-bottom: 3rem;
3576
+ margin-top: 48px;
3577
+ margin-bottom: 48px;
3241
3578
  }
3242
3579
  .aesirxconsent .my-auto {
3243
3580
  margin-top: auto;
@@ -3247,19 +3584,19 @@ var css = `:root {
3247
3584
  margin-top: 0;
3248
3585
  }
3249
3586
  .aesirxconsent .mt-1 {
3250
- margin-top: 0.25rem;
3587
+ margin-top: 4px;
3251
3588
  }
3252
3589
  .aesirxconsent .mt-2 {
3253
- margin-top: 0.5rem;
3590
+ margin-top: 8px;
3254
3591
  }
3255
3592
  .aesirxconsent .mt-3 {
3256
- margin-top: 1rem;
3593
+ margin-top: 16px;
3257
3594
  }
3258
3595
  .aesirxconsent .mt-4 {
3259
- margin-top: 1.5rem;
3596
+ margin-top: 24px;
3260
3597
  }
3261
3598
  .aesirxconsent .mt-5 {
3262
- margin-top: 3rem;
3599
+ margin-top: 48px;
3263
3600
  }
3264
3601
  .aesirxconsent .mt-auto {
3265
3602
  margin-top: auto;
@@ -3268,19 +3605,19 @@ var css = `:root {
3268
3605
  margin-right: 0;
3269
3606
  }
3270
3607
  .aesirxconsent .me-1 {
3271
- margin-right: 0.25rem;
3608
+ margin-right: 4px;
3272
3609
  }
3273
3610
  .aesirxconsent .me-2 {
3274
- margin-right: 0.5rem;
3611
+ margin-right: 8px;
3275
3612
  }
3276
3613
  .aesirxconsent .me-3 {
3277
- margin-right: 1rem;
3614
+ margin-right: 16px;
3278
3615
  }
3279
3616
  .aesirxconsent .me-4 {
3280
- margin-right: 1.5rem;
3617
+ margin-right: 24px;
3281
3618
  }
3282
3619
  .aesirxconsent .me-5 {
3283
- margin-right: 3rem;
3620
+ margin-right: 48px;
3284
3621
  }
3285
3622
  .aesirxconsent .me-auto {
3286
3623
  margin-right: auto;
@@ -3289,19 +3626,19 @@ var css = `:root {
3289
3626
  margin-bottom: 0;
3290
3627
  }
3291
3628
  .aesirxconsent .mb-1 {
3292
- margin-bottom: 0.25rem;
3629
+ margin-bottom: 4px;
3293
3630
  }
3294
3631
  .aesirxconsent .mb-2 {
3295
- margin-bottom: 0.5rem;
3632
+ margin-bottom: 8px;
3296
3633
  }
3297
3634
  .aesirxconsent .mb-3 {
3298
- margin-bottom: 1rem;
3635
+ margin-bottom: 16px;
3299
3636
  }
3300
3637
  .aesirxconsent .mb-4 {
3301
- margin-bottom: 1.5rem;
3638
+ margin-bottom: 24px;
3302
3639
  }
3303
3640
  .aesirxconsent .mb-5 {
3304
- margin-bottom: 3rem;
3641
+ margin-bottom: 48px;
3305
3642
  }
3306
3643
  .aesirxconsent .mb-auto {
3307
3644
  margin-bottom: auto;
@@ -3310,329 +3647,329 @@ var css = `:root {
3310
3647
  margin-left: 0;
3311
3648
  }
3312
3649
  .aesirxconsent .ms-1 {
3313
- margin-left: 0.25rem;
3650
+ margin-left: 4px;
3314
3651
  }
3315
3652
  .aesirxconsent .ms-2 {
3316
- margin-left: 0.5rem;
3653
+ margin-left: 8px;
3317
3654
  }
3318
3655
  .aesirxconsent .ms-3 {
3319
- margin-left: 1rem;
3656
+ margin-left: 16px;
3320
3657
  }
3321
3658
  .aesirxconsent .ms-4 {
3322
- margin-left: 1.5rem;
3659
+ margin-left: 24px;
3323
3660
  }
3324
3661
  .aesirxconsent .ms-5 {
3325
- margin-left: 3rem;
3662
+ margin-left: 48px;
3326
3663
  }
3327
3664
  .aesirxconsent .ms-auto {
3328
3665
  margin-left: auto;
3329
3666
  }
3330
3667
  .aesirxconsent .m-n1 {
3331
- margin: -0.25rem;
3668
+ margin: -4px;
3332
3669
  }
3333
3670
  .aesirxconsent .m-n2 {
3334
- margin: -0.5rem;
3671
+ margin: -8px;
3335
3672
  }
3336
3673
  .aesirxconsent .m-n3 {
3337
- margin: -1rem;
3674
+ margin: -16px;
3338
3675
  }
3339
3676
  .aesirxconsent .m-n4 {
3340
- margin: -1.5rem;
3677
+ margin: -24px;
3341
3678
  }
3342
3679
  .aesirxconsent .m-n5 {
3343
- margin: -3rem;
3680
+ margin: -48px;
3344
3681
  }
3345
3682
  .aesirxconsent .mx-n1 {
3346
- margin-right: -0.25rem;
3347
- margin-left: -0.25rem;
3683
+ margin-right: -4px;
3684
+ margin-left: -4px;
3348
3685
  }
3349
3686
  .aesirxconsent .mx-n2 {
3350
- margin-right: -0.5rem;
3351
- margin-left: -0.5rem;
3687
+ margin-right: -8px;
3688
+ margin-left: -8px;
3352
3689
  }
3353
3690
  .aesirxconsent .mx-n3 {
3354
- margin-right: -1rem;
3355
- margin-left: -1rem;
3691
+ margin-right: -16px;
3692
+ margin-left: -16px;
3356
3693
  }
3357
3694
  .aesirxconsent .mx-n4 {
3358
- margin-right: -1.5rem;
3359
- margin-left: -1.5rem;
3695
+ margin-right: -24px;
3696
+ margin-left: -24px;
3360
3697
  }
3361
3698
  .aesirxconsent .mx-n5 {
3362
- margin-right: -3rem;
3363
- margin-left: -3rem;
3699
+ margin-right: -48px;
3700
+ margin-left: -48px;
3364
3701
  }
3365
3702
  .aesirxconsent .my-n1 {
3366
- margin-top: -0.25rem;
3367
- margin-bottom: -0.25rem;
3703
+ margin-top: -4px;
3704
+ margin-bottom: -4px;
3368
3705
  }
3369
3706
  .aesirxconsent .my-n2 {
3370
- margin-top: -0.5rem;
3371
- margin-bottom: -0.5rem;
3707
+ margin-top: -8px;
3708
+ margin-bottom: -8px;
3372
3709
  }
3373
3710
  .aesirxconsent .my-n3 {
3374
- margin-top: -1rem;
3375
- margin-bottom: -1rem;
3711
+ margin-top: -16px;
3712
+ margin-bottom: -16px;
3376
3713
  }
3377
3714
  .aesirxconsent .my-n4 {
3378
- margin-top: -1.5rem;
3379
- margin-bottom: -1.5rem;
3715
+ margin-top: -24px;
3716
+ margin-bottom: -24px;
3380
3717
  }
3381
3718
  .aesirxconsent .my-n5 {
3382
- margin-top: -3rem;
3383
- margin-bottom: -3rem;
3719
+ margin-top: -48px;
3720
+ margin-bottom: -48px;
3384
3721
  }
3385
3722
  .aesirxconsent .mt-n1 {
3386
- margin-top: -0.25rem;
3723
+ margin-top: -4px;
3387
3724
  }
3388
3725
  .aesirxconsent .mt-n2 {
3389
- margin-top: -0.5rem;
3726
+ margin-top: -8px;
3390
3727
  }
3391
3728
  .aesirxconsent .mt-n3 {
3392
- margin-top: -1rem;
3729
+ margin-top: -16px;
3393
3730
  }
3394
3731
  .aesirxconsent .mt-n4 {
3395
- margin-top: -1.5rem;
3732
+ margin-top: -24px;
3396
3733
  }
3397
3734
  .aesirxconsent .mt-n5 {
3398
- margin-top: -3rem;
3735
+ margin-top: -48px;
3399
3736
  }
3400
3737
  .aesirxconsent .me-n1 {
3401
- margin-right: -0.25rem;
3738
+ margin-right: -4px;
3402
3739
  }
3403
3740
  .aesirxconsent .me-n2 {
3404
- margin-right: -0.5rem;
3741
+ margin-right: -8px;
3405
3742
  }
3406
3743
  .aesirxconsent .me-n3 {
3407
- margin-right: -1rem;
3744
+ margin-right: -16px;
3408
3745
  }
3409
3746
  .aesirxconsent .me-n4 {
3410
- margin-right: -1.5rem;
3747
+ margin-right: -24px;
3411
3748
  }
3412
3749
  .aesirxconsent .me-n5 {
3413
- margin-right: -3rem;
3750
+ margin-right: -48px;
3414
3751
  }
3415
3752
  .aesirxconsent .mb-n1 {
3416
- margin-bottom: -0.25rem;
3753
+ margin-bottom: -4px;
3417
3754
  }
3418
3755
  .aesirxconsent .mb-n2 {
3419
- margin-bottom: -0.5rem;
3756
+ margin-bottom: -8px;
3420
3757
  }
3421
3758
  .aesirxconsent .mb-n3 {
3422
- margin-bottom: -1rem;
3759
+ margin-bottom: -16px;
3423
3760
  }
3424
3761
  .aesirxconsent .mb-n4 {
3425
- margin-bottom: -1.5rem;
3762
+ margin-bottom: -24px;
3426
3763
  }
3427
3764
  .aesirxconsent .mb-n5 {
3428
- margin-bottom: -3rem;
3765
+ margin-bottom: -48px;
3429
3766
  }
3430
3767
  .aesirxconsent .ms-n1 {
3431
- margin-left: -0.25rem;
3768
+ margin-left: -4px;
3432
3769
  }
3433
3770
  .aesirxconsent .ms-n2 {
3434
- margin-left: -0.5rem;
3771
+ margin-left: -8px;
3435
3772
  }
3436
3773
  .aesirxconsent .ms-n3 {
3437
- margin-left: -1rem;
3774
+ margin-left: -16px;
3438
3775
  }
3439
3776
  .aesirxconsent .ms-n4 {
3440
- margin-left: -1.5rem;
3777
+ margin-left: -24px;
3441
3778
  }
3442
3779
  .aesirxconsent .ms-n5 {
3443
- margin-left: -3rem;
3780
+ margin-left: -48px;
3444
3781
  }
3445
3782
  .aesirxconsent .p-0 {
3446
3783
  padding: 0;
3447
3784
  }
3448
3785
  .aesirxconsent .p-1 {
3449
- padding: 0.25rem;
3786
+ padding: 4px;
3450
3787
  }
3451
3788
  .aesirxconsent .p-2 {
3452
- padding: 0.5rem;
3789
+ padding: 8px;
3453
3790
  }
3454
3791
  .aesirxconsent .p-3 {
3455
- padding: 1rem;
3792
+ padding: 16px;
3456
3793
  }
3457
3794
  .aesirxconsent .p-4 {
3458
- padding: 1.5rem;
3795
+ padding: 24px;
3459
3796
  }
3460
3797
  .aesirxconsent .p-5 {
3461
- padding: 3rem;
3798
+ padding: 48px;
3462
3799
  }
3463
3800
  .aesirxconsent .px-0 {
3464
3801
  padding-right: 0;
3465
3802
  padding-left: 0;
3466
3803
  }
3467
3804
  .aesirxconsent .px-1 {
3468
- padding-right: 0.25rem;
3469
- padding-left: 0.25rem;
3805
+ padding-right: 4px;
3806
+ padding-left: 4px;
3470
3807
  }
3471
3808
  .aesirxconsent .px-2 {
3472
- padding-right: 0.5rem;
3473
- padding-left: 0.5rem;
3809
+ padding-right: 8px;
3810
+ padding-left: 8px;
3474
3811
  }
3475
3812
  .aesirxconsent .px-3 {
3476
- padding-right: 1rem;
3477
- padding-left: 1rem;
3813
+ padding-right: 16px;
3814
+ padding-left: 16px;
3478
3815
  }
3479
3816
  .aesirxconsent .px-4 {
3480
- padding-right: 1.5rem;
3481
- padding-left: 1.5rem;
3817
+ padding-right: 24px;
3818
+ padding-left: 24px;
3482
3819
  }
3483
3820
  .aesirxconsent .px-5 {
3484
- padding-right: 3rem;
3485
- padding-left: 3rem;
3821
+ padding-right: 48px;
3822
+ padding-left: 48px;
3486
3823
  }
3487
3824
  .aesirxconsent .py-0 {
3488
3825
  padding-top: 0;
3489
3826
  padding-bottom: 0;
3490
3827
  }
3491
3828
  .aesirxconsent .py-1 {
3492
- padding-top: 0.25rem;
3493
- padding-bottom: 0.25rem;
3829
+ padding-top: 4px;
3830
+ padding-bottom: 4px;
3494
3831
  }
3495
3832
  .aesirxconsent .py-2 {
3496
- padding-top: 0.5rem;
3497
- padding-bottom: 0.5rem;
3833
+ padding-top: 8px;
3834
+ padding-bottom: 8px;
3498
3835
  }
3499
3836
  .aesirxconsent .py-3 {
3500
- padding-top: 1rem;
3501
- padding-bottom: 1rem;
3837
+ padding-top: 16px;
3838
+ padding-bottom: 16px;
3502
3839
  }
3503
3840
  .aesirxconsent .py-4 {
3504
- padding-top: 1.5rem;
3505
- padding-bottom: 1.5rem;
3841
+ padding-top: 24px;
3842
+ padding-bottom: 24px;
3506
3843
  }
3507
3844
  .aesirxconsent .py-5 {
3508
- padding-top: 3rem;
3509
- padding-bottom: 3rem;
3845
+ padding-top: 48px;
3846
+ padding-bottom: 48px;
3510
3847
  }
3511
3848
  .aesirxconsent .pt-0 {
3512
3849
  padding-top: 0;
3513
3850
  }
3514
3851
  .aesirxconsent .pt-1 {
3515
- padding-top: 0.25rem;
3852
+ padding-top: 4px;
3516
3853
  }
3517
3854
  .aesirxconsent .pt-2 {
3518
- padding-top: 0.5rem;
3855
+ padding-top: 8px;
3519
3856
  }
3520
3857
  .aesirxconsent .pt-3 {
3521
- padding-top: 1rem;
3858
+ padding-top: 16px;
3522
3859
  }
3523
3860
  .aesirxconsent .pt-4 {
3524
- padding-top: 1.5rem;
3861
+ padding-top: 24px;
3525
3862
  }
3526
3863
  .aesirxconsent .pt-5 {
3527
- padding-top: 3rem;
3864
+ padding-top: 48px;
3528
3865
  }
3529
3866
  .aesirxconsent .pe-0 {
3530
3867
  padding-right: 0;
3531
3868
  }
3532
3869
  .aesirxconsent .pe-1 {
3533
- padding-right: 0.25rem;
3870
+ padding-right: 4px;
3534
3871
  }
3535
3872
  .aesirxconsent .pe-2 {
3536
- padding-right: 0.5rem;
3873
+ padding-right: 8px;
3537
3874
  }
3538
3875
  .aesirxconsent .pe-3 {
3539
- padding-right: 1rem;
3876
+ padding-right: 16px;
3540
3877
  }
3541
3878
  .aesirxconsent .pe-4 {
3542
- padding-right: 1.5rem;
3879
+ padding-right: 24px;
3543
3880
  }
3544
3881
  .aesirxconsent .pe-5 {
3545
- padding-right: 3rem;
3882
+ padding-right: 48px;
3546
3883
  }
3547
3884
  .aesirxconsent .pb-0 {
3548
3885
  padding-bottom: 0;
3549
3886
  }
3550
3887
  .aesirxconsent .pb-1 {
3551
- padding-bottom: 0.25rem;
3888
+ padding-bottom: 4px;
3552
3889
  }
3553
3890
  .aesirxconsent .pb-2 {
3554
- padding-bottom: 0.5rem;
3891
+ padding-bottom: 8px;
3555
3892
  }
3556
3893
  .aesirxconsent .pb-3 {
3557
- padding-bottom: 1rem;
3894
+ padding-bottom: 16px;
3558
3895
  }
3559
3896
  .aesirxconsent .pb-4 {
3560
- padding-bottom: 1.5rem;
3897
+ padding-bottom: 24px;
3561
3898
  }
3562
3899
  .aesirxconsent .pb-5 {
3563
- padding-bottom: 3rem;
3900
+ padding-bottom: 48px;
3564
3901
  }
3565
3902
  .aesirxconsent .ps-0 {
3566
3903
  padding-left: 0;
3567
3904
  }
3568
3905
  .aesirxconsent .ps-1 {
3569
- padding-left: 0.25rem;
3906
+ padding-left: 4px;
3570
3907
  }
3571
3908
  .aesirxconsent .ps-2 {
3572
- padding-left: 0.5rem;
3909
+ padding-left: 8px;
3573
3910
  }
3574
3911
  .aesirxconsent .ps-3 {
3575
- padding-left: 1rem;
3912
+ padding-left: 16px;
3576
3913
  }
3577
3914
  .aesirxconsent .ps-4 {
3578
- padding-left: 1.5rem;
3915
+ padding-left: 24px;
3579
3916
  }
3580
3917
  .aesirxconsent .ps-5 {
3581
- padding-left: 3rem;
3918
+ padding-left: 48px;
3582
3919
  }
3583
3920
  .aesirxconsent .gap-0 {
3584
3921
  gap: 0;
3585
3922
  }
3586
3923
  .aesirxconsent .gap-1 {
3587
- gap: 0.25rem;
3924
+ gap: 4px;
3588
3925
  }
3589
3926
  .aesirxconsent .gap-2 {
3590
- gap: 0.5rem;
3927
+ gap: 8px;
3591
3928
  }
3592
3929
  .aesirxconsent .gap-3 {
3593
- gap: 1rem;
3930
+ gap: 16px;
3594
3931
  }
3595
3932
  .aesirxconsent .gap-4 {
3596
- gap: 1.5rem;
3933
+ gap: 24px;
3597
3934
  }
3598
3935
  .aesirxconsent .gap-5 {
3599
- gap: 3rem;
3936
+ gap: 48px;
3600
3937
  }
3601
3938
  .aesirxconsent .row-gap-0 {
3602
3939
  row-gap: 0;
3603
3940
  }
3604
3941
  .aesirxconsent .row-gap-1 {
3605
- row-gap: 0.25rem;
3942
+ row-gap: 4px;
3606
3943
  }
3607
3944
  .aesirxconsent .row-gap-2 {
3608
- row-gap: 0.5rem;
3945
+ row-gap: 8px;
3609
3946
  }
3610
3947
  .aesirxconsent .row-gap-3 {
3611
- row-gap: 1rem;
3948
+ row-gap: 16px;
3612
3949
  }
3613
3950
  .aesirxconsent .row-gap-4 {
3614
- row-gap: 1.5rem;
3951
+ row-gap: 24px;
3615
3952
  }
3616
3953
  .aesirxconsent .row-gap-5 {
3617
- row-gap: 3rem;
3954
+ row-gap: 48px;
3618
3955
  }
3619
3956
  .aesirxconsent .column-gap-0 {
3620
3957
  column-gap: 0;
3621
3958
  }
3622
3959
  .aesirxconsent .column-gap-1 {
3623
- column-gap: 0.25rem;
3960
+ column-gap: 4px;
3624
3961
  }
3625
3962
  .aesirxconsent .column-gap-2 {
3626
- column-gap: 0.5rem;
3963
+ column-gap: 8px;
3627
3964
  }
3628
3965
  .aesirxconsent .column-gap-3 {
3629
- column-gap: 1rem;
3966
+ column-gap: 16px;
3630
3967
  }
3631
3968
  .aesirxconsent .column-gap-4 {
3632
- column-gap: 1.5rem;
3969
+ column-gap: 24px;
3633
3970
  }
3634
3971
  .aesirxconsent .column-gap-5 {
3635
- column-gap: 3rem;
3972
+ column-gap: 48px;
3636
3973
  }
3637
3974
  .aesirxconsent .font-monospace {
3638
3975
  font-family: var(--aesirxconsent-font-monospace);
@@ -4455,19 +4792,19 @@ var css = `:root {
4455
4792
  margin: 0;
4456
4793
  }
4457
4794
  .aesirxconsent .m-sm-1 {
4458
- margin: 0.25rem;
4795
+ margin: 4px;
4459
4796
  }
4460
4797
  .aesirxconsent .m-sm-2 {
4461
- margin: 0.5rem;
4798
+ margin: 8px;
4462
4799
  }
4463
4800
  .aesirxconsent .m-sm-3 {
4464
- margin: 1rem;
4801
+ margin: 16px;
4465
4802
  }
4466
4803
  .aesirxconsent .m-sm-4 {
4467
- margin: 1.5rem;
4804
+ margin: 24px;
4468
4805
  }
4469
4806
  .aesirxconsent .m-sm-5 {
4470
- margin: 3rem;
4807
+ margin: 48px;
4471
4808
  }
4472
4809
  .aesirxconsent .m-sm-auto {
4473
4810
  margin: auto;
@@ -4477,24 +4814,24 @@ var css = `:root {
4477
4814
  margin-left: 0;
4478
4815
  }
4479
4816
  .aesirxconsent .mx-sm-1 {
4480
- margin-right: 0.25rem;
4481
- margin-left: 0.25rem;
4817
+ margin-right: 4px;
4818
+ margin-left: 4px;
4482
4819
  }
4483
4820
  .aesirxconsent .mx-sm-2 {
4484
- margin-right: 0.5rem;
4485
- margin-left: 0.5rem;
4821
+ margin-right: 8px;
4822
+ margin-left: 8px;
4486
4823
  }
4487
4824
  .aesirxconsent .mx-sm-3 {
4488
- margin-right: 1rem;
4489
- margin-left: 1rem;
4825
+ margin-right: 16px;
4826
+ margin-left: 16px;
4490
4827
  }
4491
4828
  .aesirxconsent .mx-sm-4 {
4492
- margin-right: 1.5rem;
4493
- margin-left: 1.5rem;
4829
+ margin-right: 24px;
4830
+ margin-left: 24px;
4494
4831
  }
4495
4832
  .aesirxconsent .mx-sm-5 {
4496
- margin-right: 3rem;
4497
- margin-left: 3rem;
4833
+ margin-right: 48px;
4834
+ margin-left: 48px;
4498
4835
  }
4499
4836
  .aesirxconsent .mx-sm-auto {
4500
4837
  margin-right: auto;
@@ -4505,24 +4842,24 @@ var css = `:root {
4505
4842
  margin-bottom: 0;
4506
4843
  }
4507
4844
  .aesirxconsent .my-sm-1 {
4508
- margin-top: 0.25rem;
4509
- margin-bottom: 0.25rem;
4845
+ margin-top: 4px;
4846
+ margin-bottom: 4px;
4510
4847
  }
4511
4848
  .aesirxconsent .my-sm-2 {
4512
- margin-top: 0.5rem;
4513
- margin-bottom: 0.5rem;
4849
+ margin-top: 8px;
4850
+ margin-bottom: 8px;
4514
4851
  }
4515
4852
  .aesirxconsent .my-sm-3 {
4516
- margin-top: 1rem;
4517
- margin-bottom: 1rem;
4853
+ margin-top: 16px;
4854
+ margin-bottom: 16px;
4518
4855
  }
4519
4856
  .aesirxconsent .my-sm-4 {
4520
- margin-top: 1.5rem;
4521
- margin-bottom: 1.5rem;
4857
+ margin-top: 24px;
4858
+ margin-bottom: 24px;
4522
4859
  }
4523
4860
  .aesirxconsent .my-sm-5 {
4524
- margin-top: 3rem;
4525
- margin-bottom: 3rem;
4861
+ margin-top: 48px;
4862
+ margin-bottom: 48px;
4526
4863
  }
4527
4864
  .aesirxconsent .my-sm-auto {
4528
4865
  margin-top: auto;
@@ -4532,19 +4869,19 @@ var css = `:root {
4532
4869
  margin-top: 0;
4533
4870
  }
4534
4871
  .aesirxconsent .mt-sm-1 {
4535
- margin-top: 0.25rem;
4872
+ margin-top: 4px;
4536
4873
  }
4537
4874
  .aesirxconsent .mt-sm-2 {
4538
- margin-top: 0.5rem;
4875
+ margin-top: 8px;
4539
4876
  }
4540
4877
  .aesirxconsent .mt-sm-3 {
4541
- margin-top: 1rem;
4878
+ margin-top: 16px;
4542
4879
  }
4543
4880
  .aesirxconsent .mt-sm-4 {
4544
- margin-top: 1.5rem;
4881
+ margin-top: 24px;
4545
4882
  }
4546
4883
  .aesirxconsent .mt-sm-5 {
4547
- margin-top: 3rem;
4884
+ margin-top: 48px;
4548
4885
  }
4549
4886
  .aesirxconsent .mt-sm-auto {
4550
4887
  margin-top: auto;
@@ -4553,19 +4890,19 @@ var css = `:root {
4553
4890
  margin-right: 0;
4554
4891
  }
4555
4892
  .aesirxconsent .me-sm-1 {
4556
- margin-right: 0.25rem;
4893
+ margin-right: 4px;
4557
4894
  }
4558
4895
  .aesirxconsent .me-sm-2 {
4559
- margin-right: 0.5rem;
4896
+ margin-right: 8px;
4560
4897
  }
4561
4898
  .aesirxconsent .me-sm-3 {
4562
- margin-right: 1rem;
4899
+ margin-right: 16px;
4563
4900
  }
4564
4901
  .aesirxconsent .me-sm-4 {
4565
- margin-right: 1.5rem;
4902
+ margin-right: 24px;
4566
4903
  }
4567
4904
  .aesirxconsent .me-sm-5 {
4568
- margin-right: 3rem;
4905
+ margin-right: 48px;
4569
4906
  }
4570
4907
  .aesirxconsent .me-sm-auto {
4571
4908
  margin-right: auto;
@@ -4574,19 +4911,19 @@ var css = `:root {
4574
4911
  margin-bottom: 0;
4575
4912
  }
4576
4913
  .aesirxconsent .mb-sm-1 {
4577
- margin-bottom: 0.25rem;
4914
+ margin-bottom: 4px;
4578
4915
  }
4579
4916
  .aesirxconsent .mb-sm-2 {
4580
- margin-bottom: 0.5rem;
4917
+ margin-bottom: 8px;
4581
4918
  }
4582
4919
  .aesirxconsent .mb-sm-3 {
4583
- margin-bottom: 1rem;
4920
+ margin-bottom: 16px;
4584
4921
  }
4585
4922
  .aesirxconsent .mb-sm-4 {
4586
- margin-bottom: 1.5rem;
4923
+ margin-bottom: 24px;
4587
4924
  }
4588
4925
  .aesirxconsent .mb-sm-5 {
4589
- margin-bottom: 3rem;
4926
+ margin-bottom: 48px;
4590
4927
  }
4591
4928
  .aesirxconsent .mb-sm-auto {
4592
4929
  margin-bottom: auto;
@@ -4595,329 +4932,329 @@ var css = `:root {
4595
4932
  margin-left: 0;
4596
4933
  }
4597
4934
  .aesirxconsent .ms-sm-1 {
4598
- margin-left: 0.25rem;
4935
+ margin-left: 4px;
4599
4936
  }
4600
4937
  .aesirxconsent .ms-sm-2 {
4601
- margin-left: 0.5rem;
4938
+ margin-left: 8px;
4602
4939
  }
4603
4940
  .aesirxconsent .ms-sm-3 {
4604
- margin-left: 1rem;
4941
+ margin-left: 16px;
4605
4942
  }
4606
4943
  .aesirxconsent .ms-sm-4 {
4607
- margin-left: 1.5rem;
4944
+ margin-left: 24px;
4608
4945
  }
4609
4946
  .aesirxconsent .ms-sm-5 {
4610
- margin-left: 3rem;
4947
+ margin-left: 48px;
4611
4948
  }
4612
4949
  .aesirxconsent .ms-sm-auto {
4613
4950
  margin-left: auto;
4614
4951
  }
4615
4952
  .aesirxconsent .m-sm-n1 {
4616
- margin: -0.25rem;
4953
+ margin: -4px;
4617
4954
  }
4618
4955
  .aesirxconsent .m-sm-n2 {
4619
- margin: -0.5rem;
4956
+ margin: -8px;
4620
4957
  }
4621
4958
  .aesirxconsent .m-sm-n3 {
4622
- margin: -1rem;
4959
+ margin: -16px;
4623
4960
  }
4624
4961
  .aesirxconsent .m-sm-n4 {
4625
- margin: -1.5rem;
4962
+ margin: -24px;
4626
4963
  }
4627
4964
  .aesirxconsent .m-sm-n5 {
4628
- margin: -3rem;
4965
+ margin: -48px;
4629
4966
  }
4630
4967
  .aesirxconsent .mx-sm-n1 {
4631
- margin-right: -0.25rem;
4632
- margin-left: -0.25rem;
4968
+ margin-right: -4px;
4969
+ margin-left: -4px;
4633
4970
  }
4634
4971
  .aesirxconsent .mx-sm-n2 {
4635
- margin-right: -0.5rem;
4636
- margin-left: -0.5rem;
4972
+ margin-right: -8px;
4973
+ margin-left: -8px;
4637
4974
  }
4638
4975
  .aesirxconsent .mx-sm-n3 {
4639
- margin-right: -1rem;
4640
- margin-left: -1rem;
4976
+ margin-right: -16px;
4977
+ margin-left: -16px;
4641
4978
  }
4642
4979
  .aesirxconsent .mx-sm-n4 {
4643
- margin-right: -1.5rem;
4644
- margin-left: -1.5rem;
4980
+ margin-right: -24px;
4981
+ margin-left: -24px;
4645
4982
  }
4646
4983
  .aesirxconsent .mx-sm-n5 {
4647
- margin-right: -3rem;
4648
- margin-left: -3rem;
4984
+ margin-right: -48px;
4985
+ margin-left: -48px;
4649
4986
  }
4650
4987
  .aesirxconsent .my-sm-n1 {
4651
- margin-top: -0.25rem;
4652
- margin-bottom: -0.25rem;
4988
+ margin-top: -4px;
4989
+ margin-bottom: -4px;
4653
4990
  }
4654
4991
  .aesirxconsent .my-sm-n2 {
4655
- margin-top: -0.5rem;
4656
- margin-bottom: -0.5rem;
4992
+ margin-top: -8px;
4993
+ margin-bottom: -8px;
4657
4994
  }
4658
4995
  .aesirxconsent .my-sm-n3 {
4659
- margin-top: -1rem;
4660
- margin-bottom: -1rem;
4996
+ margin-top: -16px;
4997
+ margin-bottom: -16px;
4661
4998
  }
4662
4999
  .aesirxconsent .my-sm-n4 {
4663
- margin-top: -1.5rem;
4664
- margin-bottom: -1.5rem;
5000
+ margin-top: -24px;
5001
+ margin-bottom: -24px;
4665
5002
  }
4666
5003
  .aesirxconsent .my-sm-n5 {
4667
- margin-top: -3rem;
4668
- margin-bottom: -3rem;
5004
+ margin-top: -48px;
5005
+ margin-bottom: -48px;
4669
5006
  }
4670
5007
  .aesirxconsent .mt-sm-n1 {
4671
- margin-top: -0.25rem;
5008
+ margin-top: -4px;
4672
5009
  }
4673
5010
  .aesirxconsent .mt-sm-n2 {
4674
- margin-top: -0.5rem;
5011
+ margin-top: -8px;
4675
5012
  }
4676
5013
  .aesirxconsent .mt-sm-n3 {
4677
- margin-top: -1rem;
5014
+ margin-top: -16px;
4678
5015
  }
4679
5016
  .aesirxconsent .mt-sm-n4 {
4680
- margin-top: -1.5rem;
5017
+ margin-top: -24px;
4681
5018
  }
4682
5019
  .aesirxconsent .mt-sm-n5 {
4683
- margin-top: -3rem;
5020
+ margin-top: -48px;
4684
5021
  }
4685
5022
  .aesirxconsent .me-sm-n1 {
4686
- margin-right: -0.25rem;
5023
+ margin-right: -4px;
4687
5024
  }
4688
5025
  .aesirxconsent .me-sm-n2 {
4689
- margin-right: -0.5rem;
5026
+ margin-right: -8px;
4690
5027
  }
4691
5028
  .aesirxconsent .me-sm-n3 {
4692
- margin-right: -1rem;
5029
+ margin-right: -16px;
4693
5030
  }
4694
5031
  .aesirxconsent .me-sm-n4 {
4695
- margin-right: -1.5rem;
5032
+ margin-right: -24px;
4696
5033
  }
4697
5034
  .aesirxconsent .me-sm-n5 {
4698
- margin-right: -3rem;
5035
+ margin-right: -48px;
4699
5036
  }
4700
5037
  .aesirxconsent .mb-sm-n1 {
4701
- margin-bottom: -0.25rem;
5038
+ margin-bottom: -4px;
4702
5039
  }
4703
5040
  .aesirxconsent .mb-sm-n2 {
4704
- margin-bottom: -0.5rem;
5041
+ margin-bottom: -8px;
4705
5042
  }
4706
5043
  .aesirxconsent .mb-sm-n3 {
4707
- margin-bottom: -1rem;
5044
+ margin-bottom: -16px;
4708
5045
  }
4709
5046
  .aesirxconsent .mb-sm-n4 {
4710
- margin-bottom: -1.5rem;
5047
+ margin-bottom: -24px;
4711
5048
  }
4712
5049
  .aesirxconsent .mb-sm-n5 {
4713
- margin-bottom: -3rem;
5050
+ margin-bottom: -48px;
4714
5051
  }
4715
5052
  .aesirxconsent .ms-sm-n1 {
4716
- margin-left: -0.25rem;
5053
+ margin-left: -4px;
4717
5054
  }
4718
5055
  .aesirxconsent .ms-sm-n2 {
4719
- margin-left: -0.5rem;
5056
+ margin-left: -8px;
4720
5057
  }
4721
5058
  .aesirxconsent .ms-sm-n3 {
4722
- margin-left: -1rem;
5059
+ margin-left: -16px;
4723
5060
  }
4724
5061
  .aesirxconsent .ms-sm-n4 {
4725
- margin-left: -1.5rem;
5062
+ margin-left: -24px;
4726
5063
  }
4727
5064
  .aesirxconsent .ms-sm-n5 {
4728
- margin-left: -3rem;
5065
+ margin-left: -48px;
4729
5066
  }
4730
5067
  .aesirxconsent .p-sm-0 {
4731
5068
  padding: 0;
4732
5069
  }
4733
5070
  .aesirxconsent .p-sm-1 {
4734
- padding: 0.25rem;
5071
+ padding: 4px;
4735
5072
  }
4736
5073
  .aesirxconsent .p-sm-2 {
4737
- padding: 0.5rem;
5074
+ padding: 8px;
4738
5075
  }
4739
5076
  .aesirxconsent .p-sm-3 {
4740
- padding: 1rem;
5077
+ padding: 16px;
4741
5078
  }
4742
5079
  .aesirxconsent .p-sm-4 {
4743
- padding: 1.5rem;
5080
+ padding: 24px;
4744
5081
  }
4745
5082
  .aesirxconsent .p-sm-5 {
4746
- padding: 3rem;
5083
+ padding: 48px;
4747
5084
  }
4748
5085
  .aesirxconsent .px-sm-0 {
4749
5086
  padding-right: 0;
4750
5087
  padding-left: 0;
4751
5088
  }
4752
5089
  .aesirxconsent .px-sm-1 {
4753
- padding-right: 0.25rem;
4754
- padding-left: 0.25rem;
5090
+ padding-right: 4px;
5091
+ padding-left: 4px;
4755
5092
  }
4756
5093
  .aesirxconsent .px-sm-2 {
4757
- padding-right: 0.5rem;
4758
- padding-left: 0.5rem;
5094
+ padding-right: 8px;
5095
+ padding-left: 8px;
4759
5096
  }
4760
5097
  .aesirxconsent .px-sm-3 {
4761
- padding-right: 1rem;
4762
- padding-left: 1rem;
5098
+ padding-right: 16px;
5099
+ padding-left: 16px;
4763
5100
  }
4764
5101
  .aesirxconsent .px-sm-4 {
4765
- padding-right: 1.5rem;
4766
- padding-left: 1.5rem;
5102
+ padding-right: 24px;
5103
+ padding-left: 24px;
4767
5104
  }
4768
5105
  .aesirxconsent .px-sm-5 {
4769
- padding-right: 3rem;
4770
- padding-left: 3rem;
5106
+ padding-right: 48px;
5107
+ padding-left: 48px;
4771
5108
  }
4772
5109
  .aesirxconsent .py-sm-0 {
4773
5110
  padding-top: 0;
4774
5111
  padding-bottom: 0;
4775
5112
  }
4776
5113
  .aesirxconsent .py-sm-1 {
4777
- padding-top: 0.25rem;
4778
- padding-bottom: 0.25rem;
5114
+ padding-top: 4px;
5115
+ padding-bottom: 4px;
4779
5116
  }
4780
5117
  .aesirxconsent .py-sm-2 {
4781
- padding-top: 0.5rem;
4782
- padding-bottom: 0.5rem;
5118
+ padding-top: 8px;
5119
+ padding-bottom: 8px;
4783
5120
  }
4784
5121
  .aesirxconsent .py-sm-3 {
4785
- padding-top: 1rem;
4786
- padding-bottom: 1rem;
5122
+ padding-top: 16px;
5123
+ padding-bottom: 16px;
4787
5124
  }
4788
5125
  .aesirxconsent .py-sm-4 {
4789
- padding-top: 1.5rem;
4790
- padding-bottom: 1.5rem;
5126
+ padding-top: 24px;
5127
+ padding-bottom: 24px;
4791
5128
  }
4792
5129
  .aesirxconsent .py-sm-5 {
4793
- padding-top: 3rem;
4794
- padding-bottom: 3rem;
5130
+ padding-top: 48px;
5131
+ padding-bottom: 48px;
4795
5132
  }
4796
5133
  .aesirxconsent .pt-sm-0 {
4797
5134
  padding-top: 0;
4798
5135
  }
4799
5136
  .aesirxconsent .pt-sm-1 {
4800
- padding-top: 0.25rem;
5137
+ padding-top: 4px;
4801
5138
  }
4802
5139
  .aesirxconsent .pt-sm-2 {
4803
- padding-top: 0.5rem;
5140
+ padding-top: 8px;
4804
5141
  }
4805
5142
  .aesirxconsent .pt-sm-3 {
4806
- padding-top: 1rem;
5143
+ padding-top: 16px;
4807
5144
  }
4808
5145
  .aesirxconsent .pt-sm-4 {
4809
- padding-top: 1.5rem;
5146
+ padding-top: 24px;
4810
5147
  }
4811
5148
  .aesirxconsent .pt-sm-5 {
4812
- padding-top: 3rem;
5149
+ padding-top: 48px;
4813
5150
  }
4814
5151
  .aesirxconsent .pe-sm-0 {
4815
5152
  padding-right: 0;
4816
5153
  }
4817
5154
  .aesirxconsent .pe-sm-1 {
4818
- padding-right: 0.25rem;
5155
+ padding-right: 4px;
4819
5156
  }
4820
5157
  .aesirxconsent .pe-sm-2 {
4821
- padding-right: 0.5rem;
5158
+ padding-right: 8px;
4822
5159
  }
4823
5160
  .aesirxconsent .pe-sm-3 {
4824
- padding-right: 1rem;
5161
+ padding-right: 16px;
4825
5162
  }
4826
5163
  .aesirxconsent .pe-sm-4 {
4827
- padding-right: 1.5rem;
5164
+ padding-right: 24px;
4828
5165
  }
4829
5166
  .aesirxconsent .pe-sm-5 {
4830
- padding-right: 3rem;
5167
+ padding-right: 48px;
4831
5168
  }
4832
5169
  .aesirxconsent .pb-sm-0 {
4833
5170
  padding-bottom: 0;
4834
5171
  }
4835
5172
  .aesirxconsent .pb-sm-1 {
4836
- padding-bottom: 0.25rem;
5173
+ padding-bottom: 4px;
4837
5174
  }
4838
5175
  .aesirxconsent .pb-sm-2 {
4839
- padding-bottom: 0.5rem;
5176
+ padding-bottom: 8px;
4840
5177
  }
4841
5178
  .aesirxconsent .pb-sm-3 {
4842
- padding-bottom: 1rem;
5179
+ padding-bottom: 16px;
4843
5180
  }
4844
5181
  .aesirxconsent .pb-sm-4 {
4845
- padding-bottom: 1.5rem;
5182
+ padding-bottom: 24px;
4846
5183
  }
4847
5184
  .aesirxconsent .pb-sm-5 {
4848
- padding-bottom: 3rem;
5185
+ padding-bottom: 48px;
4849
5186
  }
4850
5187
  .aesirxconsent .ps-sm-0 {
4851
5188
  padding-left: 0;
4852
5189
  }
4853
5190
  .aesirxconsent .ps-sm-1 {
4854
- padding-left: 0.25rem;
5191
+ padding-left: 4px;
4855
5192
  }
4856
5193
  .aesirxconsent .ps-sm-2 {
4857
- padding-left: 0.5rem;
5194
+ padding-left: 8px;
4858
5195
  }
4859
5196
  .aesirxconsent .ps-sm-3 {
4860
- padding-left: 1rem;
5197
+ padding-left: 16px;
4861
5198
  }
4862
5199
  .aesirxconsent .ps-sm-4 {
4863
- padding-left: 1.5rem;
5200
+ padding-left: 24px;
4864
5201
  }
4865
5202
  .aesirxconsent .ps-sm-5 {
4866
- padding-left: 3rem;
5203
+ padding-left: 48px;
4867
5204
  }
4868
5205
  .aesirxconsent .gap-sm-0 {
4869
5206
  gap: 0;
4870
5207
  }
4871
5208
  .aesirxconsent .gap-sm-1 {
4872
- gap: 0.25rem;
5209
+ gap: 4px;
4873
5210
  }
4874
5211
  .aesirxconsent .gap-sm-2 {
4875
- gap: 0.5rem;
5212
+ gap: 8px;
4876
5213
  }
4877
5214
  .aesirxconsent .gap-sm-3 {
4878
- gap: 1rem;
5215
+ gap: 16px;
4879
5216
  }
4880
5217
  .aesirxconsent .gap-sm-4 {
4881
- gap: 1.5rem;
5218
+ gap: 24px;
4882
5219
  }
4883
5220
  .aesirxconsent .gap-sm-5 {
4884
- gap: 3rem;
5221
+ gap: 48px;
4885
5222
  }
4886
5223
  .aesirxconsent .row-gap-sm-0 {
4887
5224
  row-gap: 0;
4888
5225
  }
4889
5226
  .aesirxconsent .row-gap-sm-1 {
4890
- row-gap: 0.25rem;
5227
+ row-gap: 4px;
4891
5228
  }
4892
5229
  .aesirxconsent .row-gap-sm-2 {
4893
- row-gap: 0.5rem;
5230
+ row-gap: 8px;
4894
5231
  }
4895
5232
  .aesirxconsent .row-gap-sm-3 {
4896
- row-gap: 1rem;
5233
+ row-gap: 16px;
4897
5234
  }
4898
5235
  .aesirxconsent .row-gap-sm-4 {
4899
- row-gap: 1.5rem;
5236
+ row-gap: 24px;
4900
5237
  }
4901
5238
  .aesirxconsent .row-gap-sm-5 {
4902
- row-gap: 3rem;
5239
+ row-gap: 48px;
4903
5240
  }
4904
5241
  .aesirxconsent .column-gap-sm-0 {
4905
5242
  column-gap: 0;
4906
5243
  }
4907
5244
  .aesirxconsent .column-gap-sm-1 {
4908
- column-gap: 0.25rem;
5245
+ column-gap: 4px;
4909
5246
  }
4910
5247
  .aesirxconsent .column-gap-sm-2 {
4911
- column-gap: 0.5rem;
5248
+ column-gap: 8px;
4912
5249
  }
4913
5250
  .aesirxconsent .column-gap-sm-3 {
4914
- column-gap: 1rem;
5251
+ column-gap: 16px;
4915
5252
  }
4916
5253
  .aesirxconsent .column-gap-sm-4 {
4917
- column-gap: 1.5rem;
5254
+ column-gap: 24px;
4918
5255
  }
4919
5256
  .aesirxconsent .column-gap-sm-5 {
4920
- column-gap: 3rem;
5257
+ column-gap: 48px;
4921
5258
  }
4922
5259
  .aesirxconsent .text-sm-start {
4923
5260
  text-align: left;
@@ -5120,19 +5457,19 @@ var css = `:root {
5120
5457
  margin: 0;
5121
5458
  }
5122
5459
  .aesirxconsent .m-md-1 {
5123
- margin: 0.25rem;
5460
+ margin: 4px;
5124
5461
  }
5125
5462
  .aesirxconsent .m-md-2 {
5126
- margin: 0.5rem;
5463
+ margin: 8px;
5127
5464
  }
5128
5465
  .aesirxconsent .m-md-3 {
5129
- margin: 1rem;
5466
+ margin: 16px;
5130
5467
  }
5131
5468
  .aesirxconsent .m-md-4 {
5132
- margin: 1.5rem;
5469
+ margin: 24px;
5133
5470
  }
5134
5471
  .aesirxconsent .m-md-5 {
5135
- margin: 3rem;
5472
+ margin: 48px;
5136
5473
  }
5137
5474
  .aesirxconsent .m-md-auto {
5138
5475
  margin: auto;
@@ -5142,24 +5479,24 @@ var css = `:root {
5142
5479
  margin-left: 0;
5143
5480
  }
5144
5481
  .aesirxconsent .mx-md-1 {
5145
- margin-right: 0.25rem;
5146
- margin-left: 0.25rem;
5482
+ margin-right: 4px;
5483
+ margin-left: 4px;
5147
5484
  }
5148
5485
  .aesirxconsent .mx-md-2 {
5149
- margin-right: 0.5rem;
5150
- margin-left: 0.5rem;
5486
+ margin-right: 8px;
5487
+ margin-left: 8px;
5151
5488
  }
5152
5489
  .aesirxconsent .mx-md-3 {
5153
- margin-right: 1rem;
5154
- margin-left: 1rem;
5490
+ margin-right: 16px;
5491
+ margin-left: 16px;
5155
5492
  }
5156
5493
  .aesirxconsent .mx-md-4 {
5157
- margin-right: 1.5rem;
5158
- margin-left: 1.5rem;
5494
+ margin-right: 24px;
5495
+ margin-left: 24px;
5159
5496
  }
5160
5497
  .aesirxconsent .mx-md-5 {
5161
- margin-right: 3rem;
5162
- margin-left: 3rem;
5498
+ margin-right: 48px;
5499
+ margin-left: 48px;
5163
5500
  }
5164
5501
  .aesirxconsent .mx-md-auto {
5165
5502
  margin-right: auto;
@@ -5170,24 +5507,24 @@ var css = `:root {
5170
5507
  margin-bottom: 0;
5171
5508
  }
5172
5509
  .aesirxconsent .my-md-1 {
5173
- margin-top: 0.25rem;
5174
- margin-bottom: 0.25rem;
5510
+ margin-top: 4px;
5511
+ margin-bottom: 4px;
5175
5512
  }
5176
5513
  .aesirxconsent .my-md-2 {
5177
- margin-top: 0.5rem;
5178
- margin-bottom: 0.5rem;
5514
+ margin-top: 8px;
5515
+ margin-bottom: 8px;
5179
5516
  }
5180
5517
  .aesirxconsent .my-md-3 {
5181
- margin-top: 1rem;
5182
- margin-bottom: 1rem;
5518
+ margin-top: 16px;
5519
+ margin-bottom: 16px;
5183
5520
  }
5184
5521
  .aesirxconsent .my-md-4 {
5185
- margin-top: 1.5rem;
5186
- margin-bottom: 1.5rem;
5522
+ margin-top: 24px;
5523
+ margin-bottom: 24px;
5187
5524
  }
5188
5525
  .aesirxconsent .my-md-5 {
5189
- margin-top: 3rem;
5190
- margin-bottom: 3rem;
5526
+ margin-top: 48px;
5527
+ margin-bottom: 48px;
5191
5528
  }
5192
5529
  .aesirxconsent .my-md-auto {
5193
5530
  margin-top: auto;
@@ -5197,19 +5534,19 @@ var css = `:root {
5197
5534
  margin-top: 0;
5198
5535
  }
5199
5536
  .aesirxconsent .mt-md-1 {
5200
- margin-top: 0.25rem;
5537
+ margin-top: 4px;
5201
5538
  }
5202
5539
  .aesirxconsent .mt-md-2 {
5203
- margin-top: 0.5rem;
5540
+ margin-top: 8px;
5204
5541
  }
5205
5542
  .aesirxconsent .mt-md-3 {
5206
- margin-top: 1rem;
5543
+ margin-top: 16px;
5207
5544
  }
5208
5545
  .aesirxconsent .mt-md-4 {
5209
- margin-top: 1.5rem;
5546
+ margin-top: 24px;
5210
5547
  }
5211
5548
  .aesirxconsent .mt-md-5 {
5212
- margin-top: 3rem;
5549
+ margin-top: 48px;
5213
5550
  }
5214
5551
  .aesirxconsent .mt-md-auto {
5215
5552
  margin-top: auto;
@@ -5218,19 +5555,19 @@ var css = `:root {
5218
5555
  margin-right: 0;
5219
5556
  }
5220
5557
  .aesirxconsent .me-md-1 {
5221
- margin-right: 0.25rem;
5558
+ margin-right: 4px;
5222
5559
  }
5223
5560
  .aesirxconsent .me-md-2 {
5224
- margin-right: 0.5rem;
5561
+ margin-right: 8px;
5225
5562
  }
5226
5563
  .aesirxconsent .me-md-3 {
5227
- margin-right: 1rem;
5564
+ margin-right: 16px;
5228
5565
  }
5229
5566
  .aesirxconsent .me-md-4 {
5230
- margin-right: 1.5rem;
5567
+ margin-right: 24px;
5231
5568
  }
5232
5569
  .aesirxconsent .me-md-5 {
5233
- margin-right: 3rem;
5570
+ margin-right: 48px;
5234
5571
  }
5235
5572
  .aesirxconsent .me-md-auto {
5236
5573
  margin-right: auto;
@@ -5239,19 +5576,19 @@ var css = `:root {
5239
5576
  margin-bottom: 0;
5240
5577
  }
5241
5578
  .aesirxconsent .mb-md-1 {
5242
- margin-bottom: 0.25rem;
5579
+ margin-bottom: 4px;
5243
5580
  }
5244
5581
  .aesirxconsent .mb-md-2 {
5245
- margin-bottom: 0.5rem;
5582
+ margin-bottom: 8px;
5246
5583
  }
5247
5584
  .aesirxconsent .mb-md-3 {
5248
- margin-bottom: 1rem;
5585
+ margin-bottom: 16px;
5249
5586
  }
5250
5587
  .aesirxconsent .mb-md-4 {
5251
- margin-bottom: 1.5rem;
5588
+ margin-bottom: 24px;
5252
5589
  }
5253
5590
  .aesirxconsent .mb-md-5 {
5254
- margin-bottom: 3rem;
5591
+ margin-bottom: 48px;
5255
5592
  }
5256
5593
  .aesirxconsent .mb-md-auto {
5257
5594
  margin-bottom: auto;
@@ -5260,329 +5597,329 @@ var css = `:root {
5260
5597
  margin-left: 0;
5261
5598
  }
5262
5599
  .aesirxconsent .ms-md-1 {
5263
- margin-left: 0.25rem;
5600
+ margin-left: 4px;
5264
5601
  }
5265
5602
  .aesirxconsent .ms-md-2 {
5266
- margin-left: 0.5rem;
5603
+ margin-left: 8px;
5267
5604
  }
5268
5605
  .aesirxconsent .ms-md-3 {
5269
- margin-left: 1rem;
5606
+ margin-left: 16px;
5270
5607
  }
5271
5608
  .aesirxconsent .ms-md-4 {
5272
- margin-left: 1.5rem;
5609
+ margin-left: 24px;
5273
5610
  }
5274
5611
  .aesirxconsent .ms-md-5 {
5275
- margin-left: 3rem;
5612
+ margin-left: 48px;
5276
5613
  }
5277
5614
  .aesirxconsent .ms-md-auto {
5278
5615
  margin-left: auto;
5279
5616
  }
5280
5617
  .aesirxconsent .m-md-n1 {
5281
- margin: -0.25rem;
5618
+ margin: -4px;
5282
5619
  }
5283
5620
  .aesirxconsent .m-md-n2 {
5284
- margin: -0.5rem;
5621
+ margin: -8px;
5285
5622
  }
5286
5623
  .aesirxconsent .m-md-n3 {
5287
- margin: -1rem;
5624
+ margin: -16px;
5288
5625
  }
5289
5626
  .aesirxconsent .m-md-n4 {
5290
- margin: -1.5rem;
5627
+ margin: -24px;
5291
5628
  }
5292
5629
  .aesirxconsent .m-md-n5 {
5293
- margin: -3rem;
5630
+ margin: -48px;
5294
5631
  }
5295
5632
  .aesirxconsent .mx-md-n1 {
5296
- margin-right: -0.25rem;
5297
- margin-left: -0.25rem;
5633
+ margin-right: -4px;
5634
+ margin-left: -4px;
5298
5635
  }
5299
5636
  .aesirxconsent .mx-md-n2 {
5300
- margin-right: -0.5rem;
5301
- margin-left: -0.5rem;
5637
+ margin-right: -8px;
5638
+ margin-left: -8px;
5302
5639
  }
5303
5640
  .aesirxconsent .mx-md-n3 {
5304
- margin-right: -1rem;
5305
- margin-left: -1rem;
5641
+ margin-right: -16px;
5642
+ margin-left: -16px;
5306
5643
  }
5307
5644
  .aesirxconsent .mx-md-n4 {
5308
- margin-right: -1.5rem;
5309
- margin-left: -1.5rem;
5645
+ margin-right: -24px;
5646
+ margin-left: -24px;
5310
5647
  }
5311
5648
  .aesirxconsent .mx-md-n5 {
5312
- margin-right: -3rem;
5313
- margin-left: -3rem;
5649
+ margin-right: -48px;
5650
+ margin-left: -48px;
5314
5651
  }
5315
5652
  .aesirxconsent .my-md-n1 {
5316
- margin-top: -0.25rem;
5317
- margin-bottom: -0.25rem;
5653
+ margin-top: -4px;
5654
+ margin-bottom: -4px;
5318
5655
  }
5319
5656
  .aesirxconsent .my-md-n2 {
5320
- margin-top: -0.5rem;
5321
- margin-bottom: -0.5rem;
5657
+ margin-top: -8px;
5658
+ margin-bottom: -8px;
5322
5659
  }
5323
5660
  .aesirxconsent .my-md-n3 {
5324
- margin-top: -1rem;
5325
- margin-bottom: -1rem;
5661
+ margin-top: -16px;
5662
+ margin-bottom: -16px;
5326
5663
  }
5327
5664
  .aesirxconsent .my-md-n4 {
5328
- margin-top: -1.5rem;
5329
- margin-bottom: -1.5rem;
5665
+ margin-top: -24px;
5666
+ margin-bottom: -24px;
5330
5667
  }
5331
5668
  .aesirxconsent .my-md-n5 {
5332
- margin-top: -3rem;
5333
- margin-bottom: -3rem;
5669
+ margin-top: -48px;
5670
+ margin-bottom: -48px;
5334
5671
  }
5335
5672
  .aesirxconsent .mt-md-n1 {
5336
- margin-top: -0.25rem;
5673
+ margin-top: -4px;
5337
5674
  }
5338
5675
  .aesirxconsent .mt-md-n2 {
5339
- margin-top: -0.5rem;
5676
+ margin-top: -8px;
5340
5677
  }
5341
5678
  .aesirxconsent .mt-md-n3 {
5342
- margin-top: -1rem;
5679
+ margin-top: -16px;
5343
5680
  }
5344
5681
  .aesirxconsent .mt-md-n4 {
5345
- margin-top: -1.5rem;
5682
+ margin-top: -24px;
5346
5683
  }
5347
5684
  .aesirxconsent .mt-md-n5 {
5348
- margin-top: -3rem;
5685
+ margin-top: -48px;
5349
5686
  }
5350
5687
  .aesirxconsent .me-md-n1 {
5351
- margin-right: -0.25rem;
5688
+ margin-right: -4px;
5352
5689
  }
5353
5690
  .aesirxconsent .me-md-n2 {
5354
- margin-right: -0.5rem;
5691
+ margin-right: -8px;
5355
5692
  }
5356
5693
  .aesirxconsent .me-md-n3 {
5357
- margin-right: -1rem;
5694
+ margin-right: -16px;
5358
5695
  }
5359
5696
  .aesirxconsent .me-md-n4 {
5360
- margin-right: -1.5rem;
5697
+ margin-right: -24px;
5361
5698
  }
5362
5699
  .aesirxconsent .me-md-n5 {
5363
- margin-right: -3rem;
5700
+ margin-right: -48px;
5364
5701
  }
5365
5702
  .aesirxconsent .mb-md-n1 {
5366
- margin-bottom: -0.25rem;
5703
+ margin-bottom: -4px;
5367
5704
  }
5368
5705
  .aesirxconsent .mb-md-n2 {
5369
- margin-bottom: -0.5rem;
5706
+ margin-bottom: -8px;
5370
5707
  }
5371
5708
  .aesirxconsent .mb-md-n3 {
5372
- margin-bottom: -1rem;
5709
+ margin-bottom: -16px;
5373
5710
  }
5374
5711
  .aesirxconsent .mb-md-n4 {
5375
- margin-bottom: -1.5rem;
5712
+ margin-bottom: -24px;
5376
5713
  }
5377
5714
  .aesirxconsent .mb-md-n5 {
5378
- margin-bottom: -3rem;
5715
+ margin-bottom: -48px;
5379
5716
  }
5380
5717
  .aesirxconsent .ms-md-n1 {
5381
- margin-left: -0.25rem;
5718
+ margin-left: -4px;
5382
5719
  }
5383
5720
  .aesirxconsent .ms-md-n2 {
5384
- margin-left: -0.5rem;
5721
+ margin-left: -8px;
5385
5722
  }
5386
5723
  .aesirxconsent .ms-md-n3 {
5387
- margin-left: -1rem;
5724
+ margin-left: -16px;
5388
5725
  }
5389
5726
  .aesirxconsent .ms-md-n4 {
5390
- margin-left: -1.5rem;
5727
+ margin-left: -24px;
5391
5728
  }
5392
5729
  .aesirxconsent .ms-md-n5 {
5393
- margin-left: -3rem;
5730
+ margin-left: -48px;
5394
5731
  }
5395
5732
  .aesirxconsent .p-md-0 {
5396
5733
  padding: 0;
5397
5734
  }
5398
5735
  .aesirxconsent .p-md-1 {
5399
- padding: 0.25rem;
5736
+ padding: 4px;
5400
5737
  }
5401
5738
  .aesirxconsent .p-md-2 {
5402
- padding: 0.5rem;
5739
+ padding: 8px;
5403
5740
  }
5404
5741
  .aesirxconsent .p-md-3 {
5405
- padding: 1rem;
5742
+ padding: 16px;
5406
5743
  }
5407
5744
  .aesirxconsent .p-md-4 {
5408
- padding: 1.5rem;
5745
+ padding: 24px;
5409
5746
  }
5410
5747
  .aesirxconsent .p-md-5 {
5411
- padding: 3rem;
5748
+ padding: 48px;
5412
5749
  }
5413
5750
  .aesirxconsent .px-md-0 {
5414
5751
  padding-right: 0;
5415
5752
  padding-left: 0;
5416
5753
  }
5417
5754
  .aesirxconsent .px-md-1 {
5418
- padding-right: 0.25rem;
5419
- padding-left: 0.25rem;
5755
+ padding-right: 4px;
5756
+ padding-left: 4px;
5420
5757
  }
5421
5758
  .aesirxconsent .px-md-2 {
5422
- padding-right: 0.5rem;
5423
- padding-left: 0.5rem;
5759
+ padding-right: 8px;
5760
+ padding-left: 8px;
5424
5761
  }
5425
5762
  .aesirxconsent .px-md-3 {
5426
- padding-right: 1rem;
5427
- padding-left: 1rem;
5763
+ padding-right: 16px;
5764
+ padding-left: 16px;
5428
5765
  }
5429
5766
  .aesirxconsent .px-md-4 {
5430
- padding-right: 1.5rem;
5431
- padding-left: 1.5rem;
5767
+ padding-right: 24px;
5768
+ padding-left: 24px;
5432
5769
  }
5433
5770
  .aesirxconsent .px-md-5 {
5434
- padding-right: 3rem;
5435
- padding-left: 3rem;
5771
+ padding-right: 48px;
5772
+ padding-left: 48px;
5436
5773
  }
5437
5774
  .aesirxconsent .py-md-0 {
5438
5775
  padding-top: 0;
5439
5776
  padding-bottom: 0;
5440
5777
  }
5441
5778
  .aesirxconsent .py-md-1 {
5442
- padding-top: 0.25rem;
5443
- padding-bottom: 0.25rem;
5779
+ padding-top: 4px;
5780
+ padding-bottom: 4px;
5444
5781
  }
5445
5782
  .aesirxconsent .py-md-2 {
5446
- padding-top: 0.5rem;
5447
- padding-bottom: 0.5rem;
5783
+ padding-top: 8px;
5784
+ padding-bottom: 8px;
5448
5785
  }
5449
5786
  .aesirxconsent .py-md-3 {
5450
- padding-top: 1rem;
5451
- padding-bottom: 1rem;
5787
+ padding-top: 16px;
5788
+ padding-bottom: 16px;
5452
5789
  }
5453
5790
  .aesirxconsent .py-md-4 {
5454
- padding-top: 1.5rem;
5455
- padding-bottom: 1.5rem;
5791
+ padding-top: 24px;
5792
+ padding-bottom: 24px;
5456
5793
  }
5457
5794
  .aesirxconsent .py-md-5 {
5458
- padding-top: 3rem;
5459
- padding-bottom: 3rem;
5795
+ padding-top: 48px;
5796
+ padding-bottom: 48px;
5460
5797
  }
5461
5798
  .aesirxconsent .pt-md-0 {
5462
5799
  padding-top: 0;
5463
5800
  }
5464
5801
  .aesirxconsent .pt-md-1 {
5465
- padding-top: 0.25rem;
5802
+ padding-top: 4px;
5466
5803
  }
5467
5804
  .aesirxconsent .pt-md-2 {
5468
- padding-top: 0.5rem;
5805
+ padding-top: 8px;
5469
5806
  }
5470
5807
  .aesirxconsent .pt-md-3 {
5471
- padding-top: 1rem;
5808
+ padding-top: 16px;
5472
5809
  }
5473
5810
  .aesirxconsent .pt-md-4 {
5474
- padding-top: 1.5rem;
5811
+ padding-top: 24px;
5475
5812
  }
5476
5813
  .aesirxconsent .pt-md-5 {
5477
- padding-top: 3rem;
5814
+ padding-top: 48px;
5478
5815
  }
5479
5816
  .aesirxconsent .pe-md-0 {
5480
5817
  padding-right: 0;
5481
5818
  }
5482
5819
  .aesirxconsent .pe-md-1 {
5483
- padding-right: 0.25rem;
5820
+ padding-right: 4px;
5484
5821
  }
5485
5822
  .aesirxconsent .pe-md-2 {
5486
- padding-right: 0.5rem;
5823
+ padding-right: 8px;
5487
5824
  }
5488
5825
  .aesirxconsent .pe-md-3 {
5489
- padding-right: 1rem;
5826
+ padding-right: 16px;
5490
5827
  }
5491
5828
  .aesirxconsent .pe-md-4 {
5492
- padding-right: 1.5rem;
5829
+ padding-right: 24px;
5493
5830
  }
5494
5831
  .aesirxconsent .pe-md-5 {
5495
- padding-right: 3rem;
5832
+ padding-right: 48px;
5496
5833
  }
5497
5834
  .aesirxconsent .pb-md-0 {
5498
5835
  padding-bottom: 0;
5499
5836
  }
5500
5837
  .aesirxconsent .pb-md-1 {
5501
- padding-bottom: 0.25rem;
5838
+ padding-bottom: 4px;
5502
5839
  }
5503
5840
  .aesirxconsent .pb-md-2 {
5504
- padding-bottom: 0.5rem;
5841
+ padding-bottom: 8px;
5505
5842
  }
5506
5843
  .aesirxconsent .pb-md-3 {
5507
- padding-bottom: 1rem;
5844
+ padding-bottom: 16px;
5508
5845
  }
5509
5846
  .aesirxconsent .pb-md-4 {
5510
- padding-bottom: 1.5rem;
5847
+ padding-bottom: 24px;
5511
5848
  }
5512
5849
  .aesirxconsent .pb-md-5 {
5513
- padding-bottom: 3rem;
5850
+ padding-bottom: 48px;
5514
5851
  }
5515
5852
  .aesirxconsent .ps-md-0 {
5516
5853
  padding-left: 0;
5517
5854
  }
5518
5855
  .aesirxconsent .ps-md-1 {
5519
- padding-left: 0.25rem;
5856
+ padding-left: 4px;
5520
5857
  }
5521
5858
  .aesirxconsent .ps-md-2 {
5522
- padding-left: 0.5rem;
5859
+ padding-left: 8px;
5523
5860
  }
5524
5861
  .aesirxconsent .ps-md-3 {
5525
- padding-left: 1rem;
5862
+ padding-left: 16px;
5526
5863
  }
5527
5864
  .aesirxconsent .ps-md-4 {
5528
- padding-left: 1.5rem;
5865
+ padding-left: 24px;
5529
5866
  }
5530
5867
  .aesirxconsent .ps-md-5 {
5531
- padding-left: 3rem;
5868
+ padding-left: 48px;
5532
5869
  }
5533
5870
  .aesirxconsent .gap-md-0 {
5534
5871
  gap: 0;
5535
5872
  }
5536
5873
  .aesirxconsent .gap-md-1 {
5537
- gap: 0.25rem;
5874
+ gap: 4px;
5538
5875
  }
5539
5876
  .aesirxconsent .gap-md-2 {
5540
- gap: 0.5rem;
5877
+ gap: 8px;
5541
5878
  }
5542
5879
  .aesirxconsent .gap-md-3 {
5543
- gap: 1rem;
5880
+ gap: 16px;
5544
5881
  }
5545
5882
  .aesirxconsent .gap-md-4 {
5546
- gap: 1.5rem;
5883
+ gap: 24px;
5547
5884
  }
5548
5885
  .aesirxconsent .gap-md-5 {
5549
- gap: 3rem;
5886
+ gap: 48px;
5550
5887
  }
5551
5888
  .aesirxconsent .row-gap-md-0 {
5552
5889
  row-gap: 0;
5553
5890
  }
5554
5891
  .aesirxconsent .row-gap-md-1 {
5555
- row-gap: 0.25rem;
5892
+ row-gap: 4px;
5556
5893
  }
5557
5894
  .aesirxconsent .row-gap-md-2 {
5558
- row-gap: 0.5rem;
5895
+ row-gap: 8px;
5559
5896
  }
5560
5897
  .aesirxconsent .row-gap-md-3 {
5561
- row-gap: 1rem;
5898
+ row-gap: 16px;
5562
5899
  }
5563
5900
  .aesirxconsent .row-gap-md-4 {
5564
- row-gap: 1.5rem;
5901
+ row-gap: 24px;
5565
5902
  }
5566
5903
  .aesirxconsent .row-gap-md-5 {
5567
- row-gap: 3rem;
5904
+ row-gap: 48px;
5568
5905
  }
5569
5906
  .aesirxconsent .column-gap-md-0 {
5570
5907
  column-gap: 0;
5571
5908
  }
5572
5909
  .aesirxconsent .column-gap-md-1 {
5573
- column-gap: 0.25rem;
5910
+ column-gap: 4px;
5574
5911
  }
5575
5912
  .aesirxconsent .column-gap-md-2 {
5576
- column-gap: 0.5rem;
5913
+ column-gap: 8px;
5577
5914
  }
5578
5915
  .aesirxconsent .column-gap-md-3 {
5579
- column-gap: 1rem;
5916
+ column-gap: 16px;
5580
5917
  }
5581
5918
  .aesirxconsent .column-gap-md-4 {
5582
- column-gap: 1.5rem;
5919
+ column-gap: 24px;
5583
5920
  }
5584
5921
  .aesirxconsent .column-gap-md-5 {
5585
- column-gap: 3rem;
5922
+ column-gap: 48px;
5586
5923
  }
5587
5924
  .aesirxconsent .text-md-start {
5588
5925
  text-align: left;
@@ -5785,19 +6122,19 @@ var css = `:root {
5785
6122
  margin: 0;
5786
6123
  }
5787
6124
  .aesirxconsent .m-lg-1 {
5788
- margin: 0.25rem;
6125
+ margin: 4px;
5789
6126
  }
5790
6127
  .aesirxconsent .m-lg-2 {
5791
- margin: 0.5rem;
6128
+ margin: 8px;
5792
6129
  }
5793
6130
  .aesirxconsent .m-lg-3 {
5794
- margin: 1rem;
6131
+ margin: 16px;
5795
6132
  }
5796
6133
  .aesirxconsent .m-lg-4 {
5797
- margin: 1.5rem;
6134
+ margin: 24px;
5798
6135
  }
5799
6136
  .aesirxconsent .m-lg-5 {
5800
- margin: 3rem;
6137
+ margin: 48px;
5801
6138
  }
5802
6139
  .aesirxconsent .m-lg-auto {
5803
6140
  margin: auto;
@@ -5807,24 +6144,24 @@ var css = `:root {
5807
6144
  margin-left: 0;
5808
6145
  }
5809
6146
  .aesirxconsent .mx-lg-1 {
5810
- margin-right: 0.25rem;
5811
- margin-left: 0.25rem;
6147
+ margin-right: 4px;
6148
+ margin-left: 4px;
5812
6149
  }
5813
6150
  .aesirxconsent .mx-lg-2 {
5814
- margin-right: 0.5rem;
5815
- margin-left: 0.5rem;
6151
+ margin-right: 8px;
6152
+ margin-left: 8px;
5816
6153
  }
5817
6154
  .aesirxconsent .mx-lg-3 {
5818
- margin-right: 1rem;
5819
- margin-left: 1rem;
6155
+ margin-right: 16px;
6156
+ margin-left: 16px;
5820
6157
  }
5821
6158
  .aesirxconsent .mx-lg-4 {
5822
- margin-right: 1.5rem;
5823
- margin-left: 1.5rem;
6159
+ margin-right: 24px;
6160
+ margin-left: 24px;
5824
6161
  }
5825
6162
  .aesirxconsent .mx-lg-5 {
5826
- margin-right: 3rem;
5827
- margin-left: 3rem;
6163
+ margin-right: 48px;
6164
+ margin-left: 48px;
5828
6165
  }
5829
6166
  .aesirxconsent .mx-lg-auto {
5830
6167
  margin-right: auto;
@@ -5835,24 +6172,24 @@ var css = `:root {
5835
6172
  margin-bottom: 0;
5836
6173
  }
5837
6174
  .aesirxconsent .my-lg-1 {
5838
- margin-top: 0.25rem;
5839
- margin-bottom: 0.25rem;
6175
+ margin-top: 4px;
6176
+ margin-bottom: 4px;
5840
6177
  }
5841
6178
  .aesirxconsent .my-lg-2 {
5842
- margin-top: 0.5rem;
5843
- margin-bottom: 0.5rem;
6179
+ margin-top: 8px;
6180
+ margin-bottom: 8px;
5844
6181
  }
5845
6182
  .aesirxconsent .my-lg-3 {
5846
- margin-top: 1rem;
5847
- margin-bottom: 1rem;
6183
+ margin-top: 16px;
6184
+ margin-bottom: 16px;
5848
6185
  }
5849
6186
  .aesirxconsent .my-lg-4 {
5850
- margin-top: 1.5rem;
5851
- margin-bottom: 1.5rem;
6187
+ margin-top: 24px;
6188
+ margin-bottom: 24px;
5852
6189
  }
5853
6190
  .aesirxconsent .my-lg-5 {
5854
- margin-top: 3rem;
5855
- margin-bottom: 3rem;
6191
+ margin-top: 48px;
6192
+ margin-bottom: 48px;
5856
6193
  }
5857
6194
  .aesirxconsent .my-lg-auto {
5858
6195
  margin-top: auto;
@@ -5862,19 +6199,19 @@ var css = `:root {
5862
6199
  margin-top: 0;
5863
6200
  }
5864
6201
  .aesirxconsent .mt-lg-1 {
5865
- margin-top: 0.25rem;
6202
+ margin-top: 4px;
5866
6203
  }
5867
6204
  .aesirxconsent .mt-lg-2 {
5868
- margin-top: 0.5rem;
6205
+ margin-top: 8px;
5869
6206
  }
5870
6207
  .aesirxconsent .mt-lg-3 {
5871
- margin-top: 1rem;
6208
+ margin-top: 16px;
5872
6209
  }
5873
6210
  .aesirxconsent .mt-lg-4 {
5874
- margin-top: 1.5rem;
6211
+ margin-top: 24px;
5875
6212
  }
5876
6213
  .aesirxconsent .mt-lg-5 {
5877
- margin-top: 3rem;
6214
+ margin-top: 48px;
5878
6215
  }
5879
6216
  .aesirxconsent .mt-lg-auto {
5880
6217
  margin-top: auto;
@@ -5883,19 +6220,19 @@ var css = `:root {
5883
6220
  margin-right: 0;
5884
6221
  }
5885
6222
  .aesirxconsent .me-lg-1 {
5886
- margin-right: 0.25rem;
6223
+ margin-right: 4px;
5887
6224
  }
5888
6225
  .aesirxconsent .me-lg-2 {
5889
- margin-right: 0.5rem;
6226
+ margin-right: 8px;
5890
6227
  }
5891
6228
  .aesirxconsent .me-lg-3 {
5892
- margin-right: 1rem;
6229
+ margin-right: 16px;
5893
6230
  }
5894
6231
  .aesirxconsent .me-lg-4 {
5895
- margin-right: 1.5rem;
6232
+ margin-right: 24px;
5896
6233
  }
5897
6234
  .aesirxconsent .me-lg-5 {
5898
- margin-right: 3rem;
6235
+ margin-right: 48px;
5899
6236
  }
5900
6237
  .aesirxconsent .me-lg-auto {
5901
6238
  margin-right: auto;
@@ -5904,19 +6241,19 @@ var css = `:root {
5904
6241
  margin-bottom: 0;
5905
6242
  }
5906
6243
  .aesirxconsent .mb-lg-1 {
5907
- margin-bottom: 0.25rem;
6244
+ margin-bottom: 4px;
5908
6245
  }
5909
6246
  .aesirxconsent .mb-lg-2 {
5910
- margin-bottom: 0.5rem;
6247
+ margin-bottom: 8px;
5911
6248
  }
5912
6249
  .aesirxconsent .mb-lg-3 {
5913
- margin-bottom: 1rem;
6250
+ margin-bottom: 16px;
5914
6251
  }
5915
6252
  .aesirxconsent .mb-lg-4 {
5916
- margin-bottom: 1.5rem;
6253
+ margin-bottom: 24px;
5917
6254
  }
5918
6255
  .aesirxconsent .mb-lg-5 {
5919
- margin-bottom: 3rem;
6256
+ margin-bottom: 48px;
5920
6257
  }
5921
6258
  .aesirxconsent .mb-lg-auto {
5922
6259
  margin-bottom: auto;
@@ -5925,329 +6262,329 @@ var css = `:root {
5925
6262
  margin-left: 0;
5926
6263
  }
5927
6264
  .aesirxconsent .ms-lg-1 {
5928
- margin-left: 0.25rem;
6265
+ margin-left: 4px;
5929
6266
  }
5930
6267
  .aesirxconsent .ms-lg-2 {
5931
- margin-left: 0.5rem;
6268
+ margin-left: 8px;
5932
6269
  }
5933
6270
  .aesirxconsent .ms-lg-3 {
5934
- margin-left: 1rem;
6271
+ margin-left: 16px;
5935
6272
  }
5936
6273
  .aesirxconsent .ms-lg-4 {
5937
- margin-left: 1.5rem;
6274
+ margin-left: 24px;
5938
6275
  }
5939
6276
  .aesirxconsent .ms-lg-5 {
5940
- margin-left: 3rem;
6277
+ margin-left: 48px;
5941
6278
  }
5942
6279
  .aesirxconsent .ms-lg-auto {
5943
6280
  margin-left: auto;
5944
6281
  }
5945
6282
  .aesirxconsent .m-lg-n1 {
5946
- margin: -0.25rem;
6283
+ margin: -4px;
5947
6284
  }
5948
6285
  .aesirxconsent .m-lg-n2 {
5949
- margin: -0.5rem;
6286
+ margin: -8px;
5950
6287
  }
5951
6288
  .aesirxconsent .m-lg-n3 {
5952
- margin: -1rem;
6289
+ margin: -16px;
5953
6290
  }
5954
6291
  .aesirxconsent .m-lg-n4 {
5955
- margin: -1.5rem;
6292
+ margin: -24px;
5956
6293
  }
5957
6294
  .aesirxconsent .m-lg-n5 {
5958
- margin: -3rem;
6295
+ margin: -48px;
5959
6296
  }
5960
6297
  .aesirxconsent .mx-lg-n1 {
5961
- margin-right: -0.25rem;
5962
- margin-left: -0.25rem;
6298
+ margin-right: -4px;
6299
+ margin-left: -4px;
5963
6300
  }
5964
6301
  .aesirxconsent .mx-lg-n2 {
5965
- margin-right: -0.5rem;
5966
- margin-left: -0.5rem;
6302
+ margin-right: -8px;
6303
+ margin-left: -8px;
5967
6304
  }
5968
6305
  .aesirxconsent .mx-lg-n3 {
5969
- margin-right: -1rem;
5970
- margin-left: -1rem;
6306
+ margin-right: -16px;
6307
+ margin-left: -16px;
5971
6308
  }
5972
6309
  .aesirxconsent .mx-lg-n4 {
5973
- margin-right: -1.5rem;
5974
- margin-left: -1.5rem;
6310
+ margin-right: -24px;
6311
+ margin-left: -24px;
5975
6312
  }
5976
6313
  .aesirxconsent .mx-lg-n5 {
5977
- margin-right: -3rem;
5978
- margin-left: -3rem;
6314
+ margin-right: -48px;
6315
+ margin-left: -48px;
5979
6316
  }
5980
6317
  .aesirxconsent .my-lg-n1 {
5981
- margin-top: -0.25rem;
5982
- margin-bottom: -0.25rem;
6318
+ margin-top: -4px;
6319
+ margin-bottom: -4px;
5983
6320
  }
5984
6321
  .aesirxconsent .my-lg-n2 {
5985
- margin-top: -0.5rem;
5986
- margin-bottom: -0.5rem;
6322
+ margin-top: -8px;
6323
+ margin-bottom: -8px;
5987
6324
  }
5988
6325
  .aesirxconsent .my-lg-n3 {
5989
- margin-top: -1rem;
5990
- margin-bottom: -1rem;
6326
+ margin-top: -16px;
6327
+ margin-bottom: -16px;
5991
6328
  }
5992
6329
  .aesirxconsent .my-lg-n4 {
5993
- margin-top: -1.5rem;
5994
- margin-bottom: -1.5rem;
6330
+ margin-top: -24px;
6331
+ margin-bottom: -24px;
5995
6332
  }
5996
6333
  .aesirxconsent .my-lg-n5 {
5997
- margin-top: -3rem;
5998
- margin-bottom: -3rem;
6334
+ margin-top: -48px;
6335
+ margin-bottom: -48px;
5999
6336
  }
6000
6337
  .aesirxconsent .mt-lg-n1 {
6001
- margin-top: -0.25rem;
6338
+ margin-top: -4px;
6002
6339
  }
6003
6340
  .aesirxconsent .mt-lg-n2 {
6004
- margin-top: -0.5rem;
6341
+ margin-top: -8px;
6005
6342
  }
6006
6343
  .aesirxconsent .mt-lg-n3 {
6007
- margin-top: -1rem;
6344
+ margin-top: -16px;
6008
6345
  }
6009
6346
  .aesirxconsent .mt-lg-n4 {
6010
- margin-top: -1.5rem;
6347
+ margin-top: -24px;
6011
6348
  }
6012
6349
  .aesirxconsent .mt-lg-n5 {
6013
- margin-top: -3rem;
6350
+ margin-top: -48px;
6014
6351
  }
6015
6352
  .aesirxconsent .me-lg-n1 {
6016
- margin-right: -0.25rem;
6353
+ margin-right: -4px;
6017
6354
  }
6018
6355
  .aesirxconsent .me-lg-n2 {
6019
- margin-right: -0.5rem;
6356
+ margin-right: -8px;
6020
6357
  }
6021
6358
  .aesirxconsent .me-lg-n3 {
6022
- margin-right: -1rem;
6359
+ margin-right: -16px;
6023
6360
  }
6024
6361
  .aesirxconsent .me-lg-n4 {
6025
- margin-right: -1.5rem;
6362
+ margin-right: -24px;
6026
6363
  }
6027
6364
  .aesirxconsent .me-lg-n5 {
6028
- margin-right: -3rem;
6365
+ margin-right: -48px;
6029
6366
  }
6030
6367
  .aesirxconsent .mb-lg-n1 {
6031
- margin-bottom: -0.25rem;
6368
+ margin-bottom: -4px;
6032
6369
  }
6033
6370
  .aesirxconsent .mb-lg-n2 {
6034
- margin-bottom: -0.5rem;
6371
+ margin-bottom: -8px;
6035
6372
  }
6036
6373
  .aesirxconsent .mb-lg-n3 {
6037
- margin-bottom: -1rem;
6374
+ margin-bottom: -16px;
6038
6375
  }
6039
6376
  .aesirxconsent .mb-lg-n4 {
6040
- margin-bottom: -1.5rem;
6377
+ margin-bottom: -24px;
6041
6378
  }
6042
6379
  .aesirxconsent .mb-lg-n5 {
6043
- margin-bottom: -3rem;
6380
+ margin-bottom: -48px;
6044
6381
  }
6045
6382
  .aesirxconsent .ms-lg-n1 {
6046
- margin-left: -0.25rem;
6383
+ margin-left: -4px;
6047
6384
  }
6048
6385
  .aesirxconsent .ms-lg-n2 {
6049
- margin-left: -0.5rem;
6386
+ margin-left: -8px;
6050
6387
  }
6051
6388
  .aesirxconsent .ms-lg-n3 {
6052
- margin-left: -1rem;
6389
+ margin-left: -16px;
6053
6390
  }
6054
6391
  .aesirxconsent .ms-lg-n4 {
6055
- margin-left: -1.5rem;
6392
+ margin-left: -24px;
6056
6393
  }
6057
6394
  .aesirxconsent .ms-lg-n5 {
6058
- margin-left: -3rem;
6395
+ margin-left: -48px;
6059
6396
  }
6060
6397
  .aesirxconsent .p-lg-0 {
6061
6398
  padding: 0;
6062
6399
  }
6063
6400
  .aesirxconsent .p-lg-1 {
6064
- padding: 0.25rem;
6401
+ padding: 4px;
6065
6402
  }
6066
6403
  .aesirxconsent .p-lg-2 {
6067
- padding: 0.5rem;
6404
+ padding: 8px;
6068
6405
  }
6069
6406
  .aesirxconsent .p-lg-3 {
6070
- padding: 1rem;
6407
+ padding: 16px;
6071
6408
  }
6072
6409
  .aesirxconsent .p-lg-4 {
6073
- padding: 1.5rem;
6410
+ padding: 24px;
6074
6411
  }
6075
6412
  .aesirxconsent .p-lg-5 {
6076
- padding: 3rem;
6413
+ padding: 48px;
6077
6414
  }
6078
6415
  .aesirxconsent .px-lg-0 {
6079
6416
  padding-right: 0;
6080
6417
  padding-left: 0;
6081
6418
  }
6082
6419
  .aesirxconsent .px-lg-1 {
6083
- padding-right: 0.25rem;
6084
- padding-left: 0.25rem;
6420
+ padding-right: 4px;
6421
+ padding-left: 4px;
6085
6422
  }
6086
6423
  .aesirxconsent .px-lg-2 {
6087
- padding-right: 0.5rem;
6088
- padding-left: 0.5rem;
6424
+ padding-right: 8px;
6425
+ padding-left: 8px;
6089
6426
  }
6090
6427
  .aesirxconsent .px-lg-3 {
6091
- padding-right: 1rem;
6092
- padding-left: 1rem;
6428
+ padding-right: 16px;
6429
+ padding-left: 16px;
6093
6430
  }
6094
6431
  .aesirxconsent .px-lg-4 {
6095
- padding-right: 1.5rem;
6096
- padding-left: 1.5rem;
6432
+ padding-right: 24px;
6433
+ padding-left: 24px;
6097
6434
  }
6098
6435
  .aesirxconsent .px-lg-5 {
6099
- padding-right: 3rem;
6100
- padding-left: 3rem;
6436
+ padding-right: 48px;
6437
+ padding-left: 48px;
6101
6438
  }
6102
6439
  .aesirxconsent .py-lg-0 {
6103
6440
  padding-top: 0;
6104
6441
  padding-bottom: 0;
6105
6442
  }
6106
6443
  .aesirxconsent .py-lg-1 {
6107
- padding-top: 0.25rem;
6108
- padding-bottom: 0.25rem;
6444
+ padding-top: 4px;
6445
+ padding-bottom: 4px;
6109
6446
  }
6110
6447
  .aesirxconsent .py-lg-2 {
6111
- padding-top: 0.5rem;
6112
- padding-bottom: 0.5rem;
6448
+ padding-top: 8px;
6449
+ padding-bottom: 8px;
6113
6450
  }
6114
6451
  .aesirxconsent .py-lg-3 {
6115
- padding-top: 1rem;
6116
- padding-bottom: 1rem;
6452
+ padding-top: 16px;
6453
+ padding-bottom: 16px;
6117
6454
  }
6118
6455
  .aesirxconsent .py-lg-4 {
6119
- padding-top: 1.5rem;
6120
- padding-bottom: 1.5rem;
6456
+ padding-top: 24px;
6457
+ padding-bottom: 24px;
6121
6458
  }
6122
6459
  .aesirxconsent .py-lg-5 {
6123
- padding-top: 3rem;
6124
- padding-bottom: 3rem;
6460
+ padding-top: 48px;
6461
+ padding-bottom: 48px;
6125
6462
  }
6126
6463
  .aesirxconsent .pt-lg-0 {
6127
6464
  padding-top: 0;
6128
6465
  }
6129
6466
  .aesirxconsent .pt-lg-1 {
6130
- padding-top: 0.25rem;
6467
+ padding-top: 4px;
6131
6468
  }
6132
6469
  .aesirxconsent .pt-lg-2 {
6133
- padding-top: 0.5rem;
6470
+ padding-top: 8px;
6134
6471
  }
6135
6472
  .aesirxconsent .pt-lg-3 {
6136
- padding-top: 1rem;
6473
+ padding-top: 16px;
6137
6474
  }
6138
6475
  .aesirxconsent .pt-lg-4 {
6139
- padding-top: 1.5rem;
6476
+ padding-top: 24px;
6140
6477
  }
6141
6478
  .aesirxconsent .pt-lg-5 {
6142
- padding-top: 3rem;
6479
+ padding-top: 48px;
6143
6480
  }
6144
6481
  .aesirxconsent .pe-lg-0 {
6145
6482
  padding-right: 0;
6146
6483
  }
6147
6484
  .aesirxconsent .pe-lg-1 {
6148
- padding-right: 0.25rem;
6485
+ padding-right: 4px;
6149
6486
  }
6150
6487
  .aesirxconsent .pe-lg-2 {
6151
- padding-right: 0.5rem;
6488
+ padding-right: 8px;
6152
6489
  }
6153
6490
  .aesirxconsent .pe-lg-3 {
6154
- padding-right: 1rem;
6491
+ padding-right: 16px;
6155
6492
  }
6156
6493
  .aesirxconsent .pe-lg-4 {
6157
- padding-right: 1.5rem;
6494
+ padding-right: 24px;
6158
6495
  }
6159
6496
  .aesirxconsent .pe-lg-5 {
6160
- padding-right: 3rem;
6497
+ padding-right: 48px;
6161
6498
  }
6162
6499
  .aesirxconsent .pb-lg-0 {
6163
6500
  padding-bottom: 0;
6164
6501
  }
6165
6502
  .aesirxconsent .pb-lg-1 {
6166
- padding-bottom: 0.25rem;
6503
+ padding-bottom: 4px;
6167
6504
  }
6168
6505
  .aesirxconsent .pb-lg-2 {
6169
- padding-bottom: 0.5rem;
6506
+ padding-bottom: 8px;
6170
6507
  }
6171
6508
  .aesirxconsent .pb-lg-3 {
6172
- padding-bottom: 1rem;
6509
+ padding-bottom: 16px;
6173
6510
  }
6174
6511
  .aesirxconsent .pb-lg-4 {
6175
- padding-bottom: 1.5rem;
6512
+ padding-bottom: 24px;
6176
6513
  }
6177
6514
  .aesirxconsent .pb-lg-5 {
6178
- padding-bottom: 3rem;
6515
+ padding-bottom: 48px;
6179
6516
  }
6180
6517
  .aesirxconsent .ps-lg-0 {
6181
6518
  padding-left: 0;
6182
6519
  }
6183
6520
  .aesirxconsent .ps-lg-1 {
6184
- padding-left: 0.25rem;
6521
+ padding-left: 4px;
6185
6522
  }
6186
6523
  .aesirxconsent .ps-lg-2 {
6187
- padding-left: 0.5rem;
6524
+ padding-left: 8px;
6188
6525
  }
6189
6526
  .aesirxconsent .ps-lg-3 {
6190
- padding-left: 1rem;
6527
+ padding-left: 16px;
6191
6528
  }
6192
6529
  .aesirxconsent .ps-lg-4 {
6193
- padding-left: 1.5rem;
6530
+ padding-left: 24px;
6194
6531
  }
6195
6532
  .aesirxconsent .ps-lg-5 {
6196
- padding-left: 3rem;
6533
+ padding-left: 48px;
6197
6534
  }
6198
6535
  .aesirxconsent .gap-lg-0 {
6199
6536
  gap: 0;
6200
6537
  }
6201
6538
  .aesirxconsent .gap-lg-1 {
6202
- gap: 0.25rem;
6539
+ gap: 4px;
6203
6540
  }
6204
6541
  .aesirxconsent .gap-lg-2 {
6205
- gap: 0.5rem;
6542
+ gap: 8px;
6206
6543
  }
6207
6544
  .aesirxconsent .gap-lg-3 {
6208
- gap: 1rem;
6545
+ gap: 16px;
6209
6546
  }
6210
6547
  .aesirxconsent .gap-lg-4 {
6211
- gap: 1.5rem;
6548
+ gap: 24px;
6212
6549
  }
6213
6550
  .aesirxconsent .gap-lg-5 {
6214
- gap: 3rem;
6551
+ gap: 48px;
6215
6552
  }
6216
6553
  .aesirxconsent .row-gap-lg-0 {
6217
6554
  row-gap: 0;
6218
6555
  }
6219
6556
  .aesirxconsent .row-gap-lg-1 {
6220
- row-gap: 0.25rem;
6557
+ row-gap: 4px;
6221
6558
  }
6222
6559
  .aesirxconsent .row-gap-lg-2 {
6223
- row-gap: 0.5rem;
6560
+ row-gap: 8px;
6224
6561
  }
6225
6562
  .aesirxconsent .row-gap-lg-3 {
6226
- row-gap: 1rem;
6563
+ row-gap: 16px;
6227
6564
  }
6228
6565
  .aesirxconsent .row-gap-lg-4 {
6229
- row-gap: 1.5rem;
6566
+ row-gap: 24px;
6230
6567
  }
6231
6568
  .aesirxconsent .row-gap-lg-5 {
6232
- row-gap: 3rem;
6569
+ row-gap: 48px;
6233
6570
  }
6234
6571
  .aesirxconsent .column-gap-lg-0 {
6235
6572
  column-gap: 0;
6236
6573
  }
6237
6574
  .aesirxconsent .column-gap-lg-1 {
6238
- column-gap: 0.25rem;
6575
+ column-gap: 4px;
6239
6576
  }
6240
6577
  .aesirxconsent .column-gap-lg-2 {
6241
- column-gap: 0.5rem;
6578
+ column-gap: 8px;
6242
6579
  }
6243
6580
  .aesirxconsent .column-gap-lg-3 {
6244
- column-gap: 1rem;
6581
+ column-gap: 16px;
6245
6582
  }
6246
6583
  .aesirxconsent .column-gap-lg-4 {
6247
- column-gap: 1.5rem;
6584
+ column-gap: 24px;
6248
6585
  }
6249
6586
  .aesirxconsent .column-gap-lg-5 {
6250
- column-gap: 3rem;
6587
+ column-gap: 48px;
6251
6588
  }
6252
6589
  .aesirxconsent .text-lg-start {
6253
6590
  text-align: left;
@@ -6450,19 +6787,19 @@ var css = `:root {
6450
6787
  margin: 0;
6451
6788
  }
6452
6789
  .aesirxconsent .m-xl-1 {
6453
- margin: 0.25rem;
6790
+ margin: 4px;
6454
6791
  }
6455
6792
  .aesirxconsent .m-xl-2 {
6456
- margin: 0.5rem;
6793
+ margin: 8px;
6457
6794
  }
6458
6795
  .aesirxconsent .m-xl-3 {
6459
- margin: 1rem;
6796
+ margin: 16px;
6460
6797
  }
6461
6798
  .aesirxconsent .m-xl-4 {
6462
- margin: 1.5rem;
6799
+ margin: 24px;
6463
6800
  }
6464
6801
  .aesirxconsent .m-xl-5 {
6465
- margin: 3rem;
6802
+ margin: 48px;
6466
6803
  }
6467
6804
  .aesirxconsent .m-xl-auto {
6468
6805
  margin: auto;
@@ -6472,24 +6809,24 @@ var css = `:root {
6472
6809
  margin-left: 0;
6473
6810
  }
6474
6811
  .aesirxconsent .mx-xl-1 {
6475
- margin-right: 0.25rem;
6476
- margin-left: 0.25rem;
6812
+ margin-right: 4px;
6813
+ margin-left: 4px;
6477
6814
  }
6478
6815
  .aesirxconsent .mx-xl-2 {
6479
- margin-right: 0.5rem;
6480
- margin-left: 0.5rem;
6816
+ margin-right: 8px;
6817
+ margin-left: 8px;
6481
6818
  }
6482
6819
  .aesirxconsent .mx-xl-3 {
6483
- margin-right: 1rem;
6484
- margin-left: 1rem;
6820
+ margin-right: 16px;
6821
+ margin-left: 16px;
6485
6822
  }
6486
6823
  .aesirxconsent .mx-xl-4 {
6487
- margin-right: 1.5rem;
6488
- margin-left: 1.5rem;
6824
+ margin-right: 24px;
6825
+ margin-left: 24px;
6489
6826
  }
6490
6827
  .aesirxconsent .mx-xl-5 {
6491
- margin-right: 3rem;
6492
- margin-left: 3rem;
6828
+ margin-right: 48px;
6829
+ margin-left: 48px;
6493
6830
  }
6494
6831
  .aesirxconsent .mx-xl-auto {
6495
6832
  margin-right: auto;
@@ -6500,24 +6837,24 @@ var css = `:root {
6500
6837
  margin-bottom: 0;
6501
6838
  }
6502
6839
  .aesirxconsent .my-xl-1 {
6503
- margin-top: 0.25rem;
6504
- margin-bottom: 0.25rem;
6840
+ margin-top: 4px;
6841
+ margin-bottom: 4px;
6505
6842
  }
6506
6843
  .aesirxconsent .my-xl-2 {
6507
- margin-top: 0.5rem;
6508
- margin-bottom: 0.5rem;
6844
+ margin-top: 8px;
6845
+ margin-bottom: 8px;
6509
6846
  }
6510
6847
  .aesirxconsent .my-xl-3 {
6511
- margin-top: 1rem;
6512
- margin-bottom: 1rem;
6848
+ margin-top: 16px;
6849
+ margin-bottom: 16px;
6513
6850
  }
6514
6851
  .aesirxconsent .my-xl-4 {
6515
- margin-top: 1.5rem;
6516
- margin-bottom: 1.5rem;
6852
+ margin-top: 24px;
6853
+ margin-bottom: 24px;
6517
6854
  }
6518
6855
  .aesirxconsent .my-xl-5 {
6519
- margin-top: 3rem;
6520
- margin-bottom: 3rem;
6856
+ margin-top: 48px;
6857
+ margin-bottom: 48px;
6521
6858
  }
6522
6859
  .aesirxconsent .my-xl-auto {
6523
6860
  margin-top: auto;
@@ -6527,19 +6864,19 @@ var css = `:root {
6527
6864
  margin-top: 0;
6528
6865
  }
6529
6866
  .aesirxconsent .mt-xl-1 {
6530
- margin-top: 0.25rem;
6867
+ margin-top: 4px;
6531
6868
  }
6532
6869
  .aesirxconsent .mt-xl-2 {
6533
- margin-top: 0.5rem;
6870
+ margin-top: 8px;
6534
6871
  }
6535
6872
  .aesirxconsent .mt-xl-3 {
6536
- margin-top: 1rem;
6873
+ margin-top: 16px;
6537
6874
  }
6538
6875
  .aesirxconsent .mt-xl-4 {
6539
- margin-top: 1.5rem;
6876
+ margin-top: 24px;
6540
6877
  }
6541
6878
  .aesirxconsent .mt-xl-5 {
6542
- margin-top: 3rem;
6879
+ margin-top: 48px;
6543
6880
  }
6544
6881
  .aesirxconsent .mt-xl-auto {
6545
6882
  margin-top: auto;
@@ -6548,19 +6885,19 @@ var css = `:root {
6548
6885
  margin-right: 0;
6549
6886
  }
6550
6887
  .aesirxconsent .me-xl-1 {
6551
- margin-right: 0.25rem;
6888
+ margin-right: 4px;
6552
6889
  }
6553
6890
  .aesirxconsent .me-xl-2 {
6554
- margin-right: 0.5rem;
6891
+ margin-right: 8px;
6555
6892
  }
6556
6893
  .aesirxconsent .me-xl-3 {
6557
- margin-right: 1rem;
6894
+ margin-right: 16px;
6558
6895
  }
6559
6896
  .aesirxconsent .me-xl-4 {
6560
- margin-right: 1.5rem;
6897
+ margin-right: 24px;
6561
6898
  }
6562
6899
  .aesirxconsent .me-xl-5 {
6563
- margin-right: 3rem;
6900
+ margin-right: 48px;
6564
6901
  }
6565
6902
  .aesirxconsent .me-xl-auto {
6566
6903
  margin-right: auto;
@@ -6569,19 +6906,19 @@ var css = `:root {
6569
6906
  margin-bottom: 0;
6570
6907
  }
6571
6908
  .aesirxconsent .mb-xl-1 {
6572
- margin-bottom: 0.25rem;
6909
+ margin-bottom: 4px;
6573
6910
  }
6574
6911
  .aesirxconsent .mb-xl-2 {
6575
- margin-bottom: 0.5rem;
6912
+ margin-bottom: 8px;
6576
6913
  }
6577
6914
  .aesirxconsent .mb-xl-3 {
6578
- margin-bottom: 1rem;
6915
+ margin-bottom: 16px;
6579
6916
  }
6580
6917
  .aesirxconsent .mb-xl-4 {
6581
- margin-bottom: 1.5rem;
6918
+ margin-bottom: 24px;
6582
6919
  }
6583
6920
  .aesirxconsent .mb-xl-5 {
6584
- margin-bottom: 3rem;
6921
+ margin-bottom: 48px;
6585
6922
  }
6586
6923
  .aesirxconsent .mb-xl-auto {
6587
6924
  margin-bottom: auto;
@@ -6590,329 +6927,329 @@ var css = `:root {
6590
6927
  margin-left: 0;
6591
6928
  }
6592
6929
  .aesirxconsent .ms-xl-1 {
6593
- margin-left: 0.25rem;
6930
+ margin-left: 4px;
6594
6931
  }
6595
6932
  .aesirxconsent .ms-xl-2 {
6596
- margin-left: 0.5rem;
6933
+ margin-left: 8px;
6597
6934
  }
6598
6935
  .aesirxconsent .ms-xl-3 {
6599
- margin-left: 1rem;
6936
+ margin-left: 16px;
6600
6937
  }
6601
6938
  .aesirxconsent .ms-xl-4 {
6602
- margin-left: 1.5rem;
6939
+ margin-left: 24px;
6603
6940
  }
6604
6941
  .aesirxconsent .ms-xl-5 {
6605
- margin-left: 3rem;
6942
+ margin-left: 48px;
6606
6943
  }
6607
6944
  .aesirxconsent .ms-xl-auto {
6608
6945
  margin-left: auto;
6609
6946
  }
6610
6947
  .aesirxconsent .m-xl-n1 {
6611
- margin: -0.25rem;
6948
+ margin: -4px;
6612
6949
  }
6613
6950
  .aesirxconsent .m-xl-n2 {
6614
- margin: -0.5rem;
6951
+ margin: -8px;
6615
6952
  }
6616
6953
  .aesirxconsent .m-xl-n3 {
6617
- margin: -1rem;
6954
+ margin: -16px;
6618
6955
  }
6619
6956
  .aesirxconsent .m-xl-n4 {
6620
- margin: -1.5rem;
6957
+ margin: -24px;
6621
6958
  }
6622
6959
  .aesirxconsent .m-xl-n5 {
6623
- margin: -3rem;
6960
+ margin: -48px;
6624
6961
  }
6625
6962
  .aesirxconsent .mx-xl-n1 {
6626
- margin-right: -0.25rem;
6627
- margin-left: -0.25rem;
6963
+ margin-right: -4px;
6964
+ margin-left: -4px;
6628
6965
  }
6629
6966
  .aesirxconsent .mx-xl-n2 {
6630
- margin-right: -0.5rem;
6631
- margin-left: -0.5rem;
6967
+ margin-right: -8px;
6968
+ margin-left: -8px;
6632
6969
  }
6633
6970
  .aesirxconsent .mx-xl-n3 {
6634
- margin-right: -1rem;
6635
- margin-left: -1rem;
6971
+ margin-right: -16px;
6972
+ margin-left: -16px;
6636
6973
  }
6637
6974
  .aesirxconsent .mx-xl-n4 {
6638
- margin-right: -1.5rem;
6639
- margin-left: -1.5rem;
6975
+ margin-right: -24px;
6976
+ margin-left: -24px;
6640
6977
  }
6641
6978
  .aesirxconsent .mx-xl-n5 {
6642
- margin-right: -3rem;
6643
- margin-left: -3rem;
6979
+ margin-right: -48px;
6980
+ margin-left: -48px;
6644
6981
  }
6645
6982
  .aesirxconsent .my-xl-n1 {
6646
- margin-top: -0.25rem;
6647
- margin-bottom: -0.25rem;
6983
+ margin-top: -4px;
6984
+ margin-bottom: -4px;
6648
6985
  }
6649
6986
  .aesirxconsent .my-xl-n2 {
6650
- margin-top: -0.5rem;
6651
- margin-bottom: -0.5rem;
6987
+ margin-top: -8px;
6988
+ margin-bottom: -8px;
6652
6989
  }
6653
6990
  .aesirxconsent .my-xl-n3 {
6654
- margin-top: -1rem;
6655
- margin-bottom: -1rem;
6991
+ margin-top: -16px;
6992
+ margin-bottom: -16px;
6656
6993
  }
6657
6994
  .aesirxconsent .my-xl-n4 {
6658
- margin-top: -1.5rem;
6659
- margin-bottom: -1.5rem;
6995
+ margin-top: -24px;
6996
+ margin-bottom: -24px;
6660
6997
  }
6661
6998
  .aesirxconsent .my-xl-n5 {
6662
- margin-top: -3rem;
6663
- margin-bottom: -3rem;
6999
+ margin-top: -48px;
7000
+ margin-bottom: -48px;
6664
7001
  }
6665
7002
  .aesirxconsent .mt-xl-n1 {
6666
- margin-top: -0.25rem;
7003
+ margin-top: -4px;
6667
7004
  }
6668
7005
  .aesirxconsent .mt-xl-n2 {
6669
- margin-top: -0.5rem;
7006
+ margin-top: -8px;
6670
7007
  }
6671
7008
  .aesirxconsent .mt-xl-n3 {
6672
- margin-top: -1rem;
7009
+ margin-top: -16px;
6673
7010
  }
6674
7011
  .aesirxconsent .mt-xl-n4 {
6675
- margin-top: -1.5rem;
7012
+ margin-top: -24px;
6676
7013
  }
6677
7014
  .aesirxconsent .mt-xl-n5 {
6678
- margin-top: -3rem;
7015
+ margin-top: -48px;
6679
7016
  }
6680
7017
  .aesirxconsent .me-xl-n1 {
6681
- margin-right: -0.25rem;
7018
+ margin-right: -4px;
6682
7019
  }
6683
7020
  .aesirxconsent .me-xl-n2 {
6684
- margin-right: -0.5rem;
7021
+ margin-right: -8px;
6685
7022
  }
6686
7023
  .aesirxconsent .me-xl-n3 {
6687
- margin-right: -1rem;
7024
+ margin-right: -16px;
6688
7025
  }
6689
7026
  .aesirxconsent .me-xl-n4 {
6690
- margin-right: -1.5rem;
7027
+ margin-right: -24px;
6691
7028
  }
6692
7029
  .aesirxconsent .me-xl-n5 {
6693
- margin-right: -3rem;
7030
+ margin-right: -48px;
6694
7031
  }
6695
7032
  .aesirxconsent .mb-xl-n1 {
6696
- margin-bottom: -0.25rem;
7033
+ margin-bottom: -4px;
6697
7034
  }
6698
7035
  .aesirxconsent .mb-xl-n2 {
6699
- margin-bottom: -0.5rem;
7036
+ margin-bottom: -8px;
6700
7037
  }
6701
7038
  .aesirxconsent .mb-xl-n3 {
6702
- margin-bottom: -1rem;
7039
+ margin-bottom: -16px;
6703
7040
  }
6704
7041
  .aesirxconsent .mb-xl-n4 {
6705
- margin-bottom: -1.5rem;
7042
+ margin-bottom: -24px;
6706
7043
  }
6707
7044
  .aesirxconsent .mb-xl-n5 {
6708
- margin-bottom: -3rem;
7045
+ margin-bottom: -48px;
6709
7046
  }
6710
7047
  .aesirxconsent .ms-xl-n1 {
6711
- margin-left: -0.25rem;
7048
+ margin-left: -4px;
6712
7049
  }
6713
7050
  .aesirxconsent .ms-xl-n2 {
6714
- margin-left: -0.5rem;
7051
+ margin-left: -8px;
6715
7052
  }
6716
7053
  .aesirxconsent .ms-xl-n3 {
6717
- margin-left: -1rem;
7054
+ margin-left: -16px;
6718
7055
  }
6719
7056
  .aesirxconsent .ms-xl-n4 {
6720
- margin-left: -1.5rem;
7057
+ margin-left: -24px;
6721
7058
  }
6722
7059
  .aesirxconsent .ms-xl-n5 {
6723
- margin-left: -3rem;
7060
+ margin-left: -48px;
6724
7061
  }
6725
7062
  .aesirxconsent .p-xl-0 {
6726
7063
  padding: 0;
6727
7064
  }
6728
7065
  .aesirxconsent .p-xl-1 {
6729
- padding: 0.25rem;
7066
+ padding: 4px;
6730
7067
  }
6731
7068
  .aesirxconsent .p-xl-2 {
6732
- padding: 0.5rem;
7069
+ padding: 8px;
6733
7070
  }
6734
7071
  .aesirxconsent .p-xl-3 {
6735
- padding: 1rem;
7072
+ padding: 16px;
6736
7073
  }
6737
7074
  .aesirxconsent .p-xl-4 {
6738
- padding: 1.5rem;
7075
+ padding: 24px;
6739
7076
  }
6740
7077
  .aesirxconsent .p-xl-5 {
6741
- padding: 3rem;
7078
+ padding: 48px;
6742
7079
  }
6743
7080
  .aesirxconsent .px-xl-0 {
6744
7081
  padding-right: 0;
6745
7082
  padding-left: 0;
6746
7083
  }
6747
7084
  .aesirxconsent .px-xl-1 {
6748
- padding-right: 0.25rem;
6749
- padding-left: 0.25rem;
7085
+ padding-right: 4px;
7086
+ padding-left: 4px;
6750
7087
  }
6751
7088
  .aesirxconsent .px-xl-2 {
6752
- padding-right: 0.5rem;
6753
- padding-left: 0.5rem;
7089
+ padding-right: 8px;
7090
+ padding-left: 8px;
6754
7091
  }
6755
7092
  .aesirxconsent .px-xl-3 {
6756
- padding-right: 1rem;
6757
- padding-left: 1rem;
7093
+ padding-right: 16px;
7094
+ padding-left: 16px;
6758
7095
  }
6759
7096
  .aesirxconsent .px-xl-4 {
6760
- padding-right: 1.5rem;
6761
- padding-left: 1.5rem;
7097
+ padding-right: 24px;
7098
+ padding-left: 24px;
6762
7099
  }
6763
7100
  .aesirxconsent .px-xl-5 {
6764
- padding-right: 3rem;
6765
- padding-left: 3rem;
7101
+ padding-right: 48px;
7102
+ padding-left: 48px;
6766
7103
  }
6767
7104
  .aesirxconsent .py-xl-0 {
6768
7105
  padding-top: 0;
6769
7106
  padding-bottom: 0;
6770
7107
  }
6771
7108
  .aesirxconsent .py-xl-1 {
6772
- padding-top: 0.25rem;
6773
- padding-bottom: 0.25rem;
7109
+ padding-top: 4px;
7110
+ padding-bottom: 4px;
6774
7111
  }
6775
7112
  .aesirxconsent .py-xl-2 {
6776
- padding-top: 0.5rem;
6777
- padding-bottom: 0.5rem;
7113
+ padding-top: 8px;
7114
+ padding-bottom: 8px;
6778
7115
  }
6779
7116
  .aesirxconsent .py-xl-3 {
6780
- padding-top: 1rem;
6781
- padding-bottom: 1rem;
7117
+ padding-top: 16px;
7118
+ padding-bottom: 16px;
6782
7119
  }
6783
7120
  .aesirxconsent .py-xl-4 {
6784
- padding-top: 1.5rem;
6785
- padding-bottom: 1.5rem;
7121
+ padding-top: 24px;
7122
+ padding-bottom: 24px;
6786
7123
  }
6787
7124
  .aesirxconsent .py-xl-5 {
6788
- padding-top: 3rem;
6789
- padding-bottom: 3rem;
7125
+ padding-top: 48px;
7126
+ padding-bottom: 48px;
6790
7127
  }
6791
7128
  .aesirxconsent .pt-xl-0 {
6792
7129
  padding-top: 0;
6793
7130
  }
6794
7131
  .aesirxconsent .pt-xl-1 {
6795
- padding-top: 0.25rem;
7132
+ padding-top: 4px;
6796
7133
  }
6797
7134
  .aesirxconsent .pt-xl-2 {
6798
- padding-top: 0.5rem;
7135
+ padding-top: 8px;
6799
7136
  }
6800
7137
  .aesirxconsent .pt-xl-3 {
6801
- padding-top: 1rem;
7138
+ padding-top: 16px;
6802
7139
  }
6803
7140
  .aesirxconsent .pt-xl-4 {
6804
- padding-top: 1.5rem;
7141
+ padding-top: 24px;
6805
7142
  }
6806
7143
  .aesirxconsent .pt-xl-5 {
6807
- padding-top: 3rem;
7144
+ padding-top: 48px;
6808
7145
  }
6809
7146
  .aesirxconsent .pe-xl-0 {
6810
7147
  padding-right: 0;
6811
7148
  }
6812
7149
  .aesirxconsent .pe-xl-1 {
6813
- padding-right: 0.25rem;
7150
+ padding-right: 4px;
6814
7151
  }
6815
7152
  .aesirxconsent .pe-xl-2 {
6816
- padding-right: 0.5rem;
7153
+ padding-right: 8px;
6817
7154
  }
6818
7155
  .aesirxconsent .pe-xl-3 {
6819
- padding-right: 1rem;
7156
+ padding-right: 16px;
6820
7157
  }
6821
7158
  .aesirxconsent .pe-xl-4 {
6822
- padding-right: 1.5rem;
7159
+ padding-right: 24px;
6823
7160
  }
6824
7161
  .aesirxconsent .pe-xl-5 {
6825
- padding-right: 3rem;
7162
+ padding-right: 48px;
6826
7163
  }
6827
7164
  .aesirxconsent .pb-xl-0 {
6828
7165
  padding-bottom: 0;
6829
7166
  }
6830
7167
  .aesirxconsent .pb-xl-1 {
6831
- padding-bottom: 0.25rem;
7168
+ padding-bottom: 4px;
6832
7169
  }
6833
7170
  .aesirxconsent .pb-xl-2 {
6834
- padding-bottom: 0.5rem;
7171
+ padding-bottom: 8px;
6835
7172
  }
6836
7173
  .aesirxconsent .pb-xl-3 {
6837
- padding-bottom: 1rem;
7174
+ padding-bottom: 16px;
6838
7175
  }
6839
7176
  .aesirxconsent .pb-xl-4 {
6840
- padding-bottom: 1.5rem;
7177
+ padding-bottom: 24px;
6841
7178
  }
6842
7179
  .aesirxconsent .pb-xl-5 {
6843
- padding-bottom: 3rem;
7180
+ padding-bottom: 48px;
6844
7181
  }
6845
7182
  .aesirxconsent .ps-xl-0 {
6846
7183
  padding-left: 0;
6847
7184
  }
6848
7185
  .aesirxconsent .ps-xl-1 {
6849
- padding-left: 0.25rem;
7186
+ padding-left: 4px;
6850
7187
  }
6851
7188
  .aesirxconsent .ps-xl-2 {
6852
- padding-left: 0.5rem;
7189
+ padding-left: 8px;
6853
7190
  }
6854
7191
  .aesirxconsent .ps-xl-3 {
6855
- padding-left: 1rem;
7192
+ padding-left: 16px;
6856
7193
  }
6857
7194
  .aesirxconsent .ps-xl-4 {
6858
- padding-left: 1.5rem;
7195
+ padding-left: 24px;
6859
7196
  }
6860
7197
  .aesirxconsent .ps-xl-5 {
6861
- padding-left: 3rem;
7198
+ padding-left: 48px;
6862
7199
  }
6863
7200
  .aesirxconsent .gap-xl-0 {
6864
7201
  gap: 0;
6865
7202
  }
6866
7203
  .aesirxconsent .gap-xl-1 {
6867
- gap: 0.25rem;
7204
+ gap: 4px;
6868
7205
  }
6869
7206
  .aesirxconsent .gap-xl-2 {
6870
- gap: 0.5rem;
7207
+ gap: 8px;
6871
7208
  }
6872
7209
  .aesirxconsent .gap-xl-3 {
6873
- gap: 1rem;
7210
+ gap: 16px;
6874
7211
  }
6875
7212
  .aesirxconsent .gap-xl-4 {
6876
- gap: 1.5rem;
7213
+ gap: 24px;
6877
7214
  }
6878
7215
  .aesirxconsent .gap-xl-5 {
6879
- gap: 3rem;
7216
+ gap: 48px;
6880
7217
  }
6881
7218
  .aesirxconsent .row-gap-xl-0 {
6882
7219
  row-gap: 0;
6883
7220
  }
6884
7221
  .aesirxconsent .row-gap-xl-1 {
6885
- row-gap: 0.25rem;
7222
+ row-gap: 4px;
6886
7223
  }
6887
7224
  .aesirxconsent .row-gap-xl-2 {
6888
- row-gap: 0.5rem;
7225
+ row-gap: 8px;
6889
7226
  }
6890
7227
  .aesirxconsent .row-gap-xl-3 {
6891
- row-gap: 1rem;
7228
+ row-gap: 16px;
6892
7229
  }
6893
7230
  .aesirxconsent .row-gap-xl-4 {
6894
- row-gap: 1.5rem;
7231
+ row-gap: 24px;
6895
7232
  }
6896
7233
  .aesirxconsent .row-gap-xl-5 {
6897
- row-gap: 3rem;
7234
+ row-gap: 48px;
6898
7235
  }
6899
7236
  .aesirxconsent .column-gap-xl-0 {
6900
7237
  column-gap: 0;
6901
7238
  }
6902
7239
  .aesirxconsent .column-gap-xl-1 {
6903
- column-gap: 0.25rem;
7240
+ column-gap: 4px;
6904
7241
  }
6905
7242
  .aesirxconsent .column-gap-xl-2 {
6906
- column-gap: 0.5rem;
7243
+ column-gap: 8px;
6907
7244
  }
6908
7245
  .aesirxconsent .column-gap-xl-3 {
6909
- column-gap: 1rem;
7246
+ column-gap: 16px;
6910
7247
  }
6911
7248
  .aesirxconsent .column-gap-xl-4 {
6912
- column-gap: 1.5rem;
7249
+ column-gap: 24px;
6913
7250
  }
6914
7251
  .aesirxconsent .column-gap-xl-5 {
6915
- column-gap: 3rem;
7252
+ column-gap: 48px;
6916
7253
  }
6917
7254
  .aesirxconsent .text-xl-start {
6918
7255
  text-align: left;
@@ -7115,19 +7452,19 @@ var css = `:root {
7115
7452
  margin: 0;
7116
7453
  }
7117
7454
  .aesirxconsent .m-xxl-1 {
7118
- margin: 0.25rem;
7455
+ margin: 4px;
7119
7456
  }
7120
7457
  .aesirxconsent .m-xxl-2 {
7121
- margin: 0.5rem;
7458
+ margin: 8px;
7122
7459
  }
7123
7460
  .aesirxconsent .m-xxl-3 {
7124
- margin: 1rem;
7461
+ margin: 16px;
7125
7462
  }
7126
7463
  .aesirxconsent .m-xxl-4 {
7127
- margin: 1.5rem;
7464
+ margin: 24px;
7128
7465
  }
7129
7466
  .aesirxconsent .m-xxl-5 {
7130
- margin: 3rem;
7467
+ margin: 48px;
7131
7468
  }
7132
7469
  .aesirxconsent .m-xxl-auto {
7133
7470
  margin: auto;
@@ -7137,24 +7474,24 @@ var css = `:root {
7137
7474
  margin-left: 0;
7138
7475
  }
7139
7476
  .aesirxconsent .mx-xxl-1 {
7140
- margin-right: 0.25rem;
7141
- margin-left: 0.25rem;
7477
+ margin-right: 4px;
7478
+ margin-left: 4px;
7142
7479
  }
7143
7480
  .aesirxconsent .mx-xxl-2 {
7144
- margin-right: 0.5rem;
7145
- margin-left: 0.5rem;
7481
+ margin-right: 8px;
7482
+ margin-left: 8px;
7146
7483
  }
7147
7484
  .aesirxconsent .mx-xxl-3 {
7148
- margin-right: 1rem;
7149
- margin-left: 1rem;
7485
+ margin-right: 16px;
7486
+ margin-left: 16px;
7150
7487
  }
7151
7488
  .aesirxconsent .mx-xxl-4 {
7152
- margin-right: 1.5rem;
7153
- margin-left: 1.5rem;
7489
+ margin-right: 24px;
7490
+ margin-left: 24px;
7154
7491
  }
7155
7492
  .aesirxconsent .mx-xxl-5 {
7156
- margin-right: 3rem;
7157
- margin-left: 3rem;
7493
+ margin-right: 48px;
7494
+ margin-left: 48px;
7158
7495
  }
7159
7496
  .aesirxconsent .mx-xxl-auto {
7160
7497
  margin-right: auto;
@@ -7165,24 +7502,24 @@ var css = `:root {
7165
7502
  margin-bottom: 0;
7166
7503
  }
7167
7504
  .aesirxconsent .my-xxl-1 {
7168
- margin-top: 0.25rem;
7169
- margin-bottom: 0.25rem;
7505
+ margin-top: 4px;
7506
+ margin-bottom: 4px;
7170
7507
  }
7171
7508
  .aesirxconsent .my-xxl-2 {
7172
- margin-top: 0.5rem;
7173
- margin-bottom: 0.5rem;
7509
+ margin-top: 8px;
7510
+ margin-bottom: 8px;
7174
7511
  }
7175
7512
  .aesirxconsent .my-xxl-3 {
7176
- margin-top: 1rem;
7177
- margin-bottom: 1rem;
7513
+ margin-top: 16px;
7514
+ margin-bottom: 16px;
7178
7515
  }
7179
7516
  .aesirxconsent .my-xxl-4 {
7180
- margin-top: 1.5rem;
7181
- margin-bottom: 1.5rem;
7517
+ margin-top: 24px;
7518
+ margin-bottom: 24px;
7182
7519
  }
7183
7520
  .aesirxconsent .my-xxl-5 {
7184
- margin-top: 3rem;
7185
- margin-bottom: 3rem;
7521
+ margin-top: 48px;
7522
+ margin-bottom: 48px;
7186
7523
  }
7187
7524
  .aesirxconsent .my-xxl-auto {
7188
7525
  margin-top: auto;
@@ -7192,19 +7529,19 @@ var css = `:root {
7192
7529
  margin-top: 0;
7193
7530
  }
7194
7531
  .aesirxconsent .mt-xxl-1 {
7195
- margin-top: 0.25rem;
7532
+ margin-top: 4px;
7196
7533
  }
7197
7534
  .aesirxconsent .mt-xxl-2 {
7198
- margin-top: 0.5rem;
7535
+ margin-top: 8px;
7199
7536
  }
7200
7537
  .aesirxconsent .mt-xxl-3 {
7201
- margin-top: 1rem;
7538
+ margin-top: 16px;
7202
7539
  }
7203
7540
  .aesirxconsent .mt-xxl-4 {
7204
- margin-top: 1.5rem;
7541
+ margin-top: 24px;
7205
7542
  }
7206
7543
  .aesirxconsent .mt-xxl-5 {
7207
- margin-top: 3rem;
7544
+ margin-top: 48px;
7208
7545
  }
7209
7546
  .aesirxconsent .mt-xxl-auto {
7210
7547
  margin-top: auto;
@@ -7213,19 +7550,19 @@ var css = `:root {
7213
7550
  margin-right: 0;
7214
7551
  }
7215
7552
  .aesirxconsent .me-xxl-1 {
7216
- margin-right: 0.25rem;
7553
+ margin-right: 4px;
7217
7554
  }
7218
7555
  .aesirxconsent .me-xxl-2 {
7219
- margin-right: 0.5rem;
7556
+ margin-right: 8px;
7220
7557
  }
7221
7558
  .aesirxconsent .me-xxl-3 {
7222
- margin-right: 1rem;
7559
+ margin-right: 16px;
7223
7560
  }
7224
7561
  .aesirxconsent .me-xxl-4 {
7225
- margin-right: 1.5rem;
7562
+ margin-right: 24px;
7226
7563
  }
7227
7564
  .aesirxconsent .me-xxl-5 {
7228
- margin-right: 3rem;
7565
+ margin-right: 48px;
7229
7566
  }
7230
7567
  .aesirxconsent .me-xxl-auto {
7231
7568
  margin-right: auto;
@@ -7234,19 +7571,19 @@ var css = `:root {
7234
7571
  margin-bottom: 0;
7235
7572
  }
7236
7573
  .aesirxconsent .mb-xxl-1 {
7237
- margin-bottom: 0.25rem;
7574
+ margin-bottom: 4px;
7238
7575
  }
7239
7576
  .aesirxconsent .mb-xxl-2 {
7240
- margin-bottom: 0.5rem;
7577
+ margin-bottom: 8px;
7241
7578
  }
7242
7579
  .aesirxconsent .mb-xxl-3 {
7243
- margin-bottom: 1rem;
7580
+ margin-bottom: 16px;
7244
7581
  }
7245
7582
  .aesirxconsent .mb-xxl-4 {
7246
- margin-bottom: 1.5rem;
7583
+ margin-bottom: 24px;
7247
7584
  }
7248
7585
  .aesirxconsent .mb-xxl-5 {
7249
- margin-bottom: 3rem;
7586
+ margin-bottom: 48px;
7250
7587
  }
7251
7588
  .aesirxconsent .mb-xxl-auto {
7252
7589
  margin-bottom: auto;
@@ -7255,329 +7592,329 @@ var css = `:root {
7255
7592
  margin-left: 0;
7256
7593
  }
7257
7594
  .aesirxconsent .ms-xxl-1 {
7258
- margin-left: 0.25rem;
7595
+ margin-left: 4px;
7259
7596
  }
7260
7597
  .aesirxconsent .ms-xxl-2 {
7261
- margin-left: 0.5rem;
7598
+ margin-left: 8px;
7262
7599
  }
7263
7600
  .aesirxconsent .ms-xxl-3 {
7264
- margin-left: 1rem;
7601
+ margin-left: 16px;
7265
7602
  }
7266
7603
  .aesirxconsent .ms-xxl-4 {
7267
- margin-left: 1.5rem;
7604
+ margin-left: 24px;
7268
7605
  }
7269
7606
  .aesirxconsent .ms-xxl-5 {
7270
- margin-left: 3rem;
7607
+ margin-left: 48px;
7271
7608
  }
7272
7609
  .aesirxconsent .ms-xxl-auto {
7273
7610
  margin-left: auto;
7274
7611
  }
7275
7612
  .aesirxconsent .m-xxl-n1 {
7276
- margin: -0.25rem;
7613
+ margin: -4px;
7277
7614
  }
7278
7615
  .aesirxconsent .m-xxl-n2 {
7279
- margin: -0.5rem;
7616
+ margin: -8px;
7280
7617
  }
7281
7618
  .aesirxconsent .m-xxl-n3 {
7282
- margin: -1rem;
7619
+ margin: -16px;
7283
7620
  }
7284
7621
  .aesirxconsent .m-xxl-n4 {
7285
- margin: -1.5rem;
7622
+ margin: -24px;
7286
7623
  }
7287
7624
  .aesirxconsent .m-xxl-n5 {
7288
- margin: -3rem;
7625
+ margin: -48px;
7289
7626
  }
7290
7627
  .aesirxconsent .mx-xxl-n1 {
7291
- margin-right: -0.25rem;
7292
- margin-left: -0.25rem;
7628
+ margin-right: -4px;
7629
+ margin-left: -4px;
7293
7630
  }
7294
7631
  .aesirxconsent .mx-xxl-n2 {
7295
- margin-right: -0.5rem;
7296
- margin-left: -0.5rem;
7632
+ margin-right: -8px;
7633
+ margin-left: -8px;
7297
7634
  }
7298
7635
  .aesirxconsent .mx-xxl-n3 {
7299
- margin-right: -1rem;
7300
- margin-left: -1rem;
7636
+ margin-right: -16px;
7637
+ margin-left: -16px;
7301
7638
  }
7302
7639
  .aesirxconsent .mx-xxl-n4 {
7303
- margin-right: -1.5rem;
7304
- margin-left: -1.5rem;
7640
+ margin-right: -24px;
7641
+ margin-left: -24px;
7305
7642
  }
7306
7643
  .aesirxconsent .mx-xxl-n5 {
7307
- margin-right: -3rem;
7308
- margin-left: -3rem;
7644
+ margin-right: -48px;
7645
+ margin-left: -48px;
7309
7646
  }
7310
7647
  .aesirxconsent .my-xxl-n1 {
7311
- margin-top: -0.25rem;
7312
- margin-bottom: -0.25rem;
7648
+ margin-top: -4px;
7649
+ margin-bottom: -4px;
7313
7650
  }
7314
7651
  .aesirxconsent .my-xxl-n2 {
7315
- margin-top: -0.5rem;
7316
- margin-bottom: -0.5rem;
7652
+ margin-top: -8px;
7653
+ margin-bottom: -8px;
7317
7654
  }
7318
7655
  .aesirxconsent .my-xxl-n3 {
7319
- margin-top: -1rem;
7320
- margin-bottom: -1rem;
7656
+ margin-top: -16px;
7657
+ margin-bottom: -16px;
7321
7658
  }
7322
7659
  .aesirxconsent .my-xxl-n4 {
7323
- margin-top: -1.5rem;
7324
- margin-bottom: -1.5rem;
7660
+ margin-top: -24px;
7661
+ margin-bottom: -24px;
7325
7662
  }
7326
7663
  .aesirxconsent .my-xxl-n5 {
7327
- margin-top: -3rem;
7328
- margin-bottom: -3rem;
7664
+ margin-top: -48px;
7665
+ margin-bottom: -48px;
7329
7666
  }
7330
7667
  .aesirxconsent .mt-xxl-n1 {
7331
- margin-top: -0.25rem;
7668
+ margin-top: -4px;
7332
7669
  }
7333
7670
  .aesirxconsent .mt-xxl-n2 {
7334
- margin-top: -0.5rem;
7671
+ margin-top: -8px;
7335
7672
  }
7336
7673
  .aesirxconsent .mt-xxl-n3 {
7337
- margin-top: -1rem;
7674
+ margin-top: -16px;
7338
7675
  }
7339
7676
  .aesirxconsent .mt-xxl-n4 {
7340
- margin-top: -1.5rem;
7677
+ margin-top: -24px;
7341
7678
  }
7342
7679
  .aesirxconsent .mt-xxl-n5 {
7343
- margin-top: -3rem;
7680
+ margin-top: -48px;
7344
7681
  }
7345
7682
  .aesirxconsent .me-xxl-n1 {
7346
- margin-right: -0.25rem;
7683
+ margin-right: -4px;
7347
7684
  }
7348
7685
  .aesirxconsent .me-xxl-n2 {
7349
- margin-right: -0.5rem;
7686
+ margin-right: -8px;
7350
7687
  }
7351
7688
  .aesirxconsent .me-xxl-n3 {
7352
- margin-right: -1rem;
7689
+ margin-right: -16px;
7353
7690
  }
7354
7691
  .aesirxconsent .me-xxl-n4 {
7355
- margin-right: -1.5rem;
7692
+ margin-right: -24px;
7356
7693
  }
7357
7694
  .aesirxconsent .me-xxl-n5 {
7358
- margin-right: -3rem;
7695
+ margin-right: -48px;
7359
7696
  }
7360
7697
  .aesirxconsent .mb-xxl-n1 {
7361
- margin-bottom: -0.25rem;
7698
+ margin-bottom: -4px;
7362
7699
  }
7363
7700
  .aesirxconsent .mb-xxl-n2 {
7364
- margin-bottom: -0.5rem;
7701
+ margin-bottom: -8px;
7365
7702
  }
7366
7703
  .aesirxconsent .mb-xxl-n3 {
7367
- margin-bottom: -1rem;
7704
+ margin-bottom: -16px;
7368
7705
  }
7369
7706
  .aesirxconsent .mb-xxl-n4 {
7370
- margin-bottom: -1.5rem;
7707
+ margin-bottom: -24px;
7371
7708
  }
7372
7709
  .aesirxconsent .mb-xxl-n5 {
7373
- margin-bottom: -3rem;
7710
+ margin-bottom: -48px;
7374
7711
  }
7375
7712
  .aesirxconsent .ms-xxl-n1 {
7376
- margin-left: -0.25rem;
7713
+ margin-left: -4px;
7377
7714
  }
7378
7715
  .aesirxconsent .ms-xxl-n2 {
7379
- margin-left: -0.5rem;
7716
+ margin-left: -8px;
7380
7717
  }
7381
7718
  .aesirxconsent .ms-xxl-n3 {
7382
- margin-left: -1rem;
7719
+ margin-left: -16px;
7383
7720
  }
7384
7721
  .aesirxconsent .ms-xxl-n4 {
7385
- margin-left: -1.5rem;
7722
+ margin-left: -24px;
7386
7723
  }
7387
7724
  .aesirxconsent .ms-xxl-n5 {
7388
- margin-left: -3rem;
7725
+ margin-left: -48px;
7389
7726
  }
7390
7727
  .aesirxconsent .p-xxl-0 {
7391
7728
  padding: 0;
7392
7729
  }
7393
7730
  .aesirxconsent .p-xxl-1 {
7394
- padding: 0.25rem;
7731
+ padding: 4px;
7395
7732
  }
7396
7733
  .aesirxconsent .p-xxl-2 {
7397
- padding: 0.5rem;
7734
+ padding: 8px;
7398
7735
  }
7399
7736
  .aesirxconsent .p-xxl-3 {
7400
- padding: 1rem;
7737
+ padding: 16px;
7401
7738
  }
7402
7739
  .aesirxconsent .p-xxl-4 {
7403
- padding: 1.5rem;
7740
+ padding: 24px;
7404
7741
  }
7405
7742
  .aesirxconsent .p-xxl-5 {
7406
- padding: 3rem;
7743
+ padding: 48px;
7407
7744
  }
7408
7745
  .aesirxconsent .px-xxl-0 {
7409
7746
  padding-right: 0;
7410
7747
  padding-left: 0;
7411
7748
  }
7412
7749
  .aesirxconsent .px-xxl-1 {
7413
- padding-right: 0.25rem;
7414
- padding-left: 0.25rem;
7750
+ padding-right: 4px;
7751
+ padding-left: 4px;
7415
7752
  }
7416
7753
  .aesirxconsent .px-xxl-2 {
7417
- padding-right: 0.5rem;
7418
- padding-left: 0.5rem;
7754
+ padding-right: 8px;
7755
+ padding-left: 8px;
7419
7756
  }
7420
7757
  .aesirxconsent .px-xxl-3 {
7421
- padding-right: 1rem;
7422
- padding-left: 1rem;
7758
+ padding-right: 16px;
7759
+ padding-left: 16px;
7423
7760
  }
7424
7761
  .aesirxconsent .px-xxl-4 {
7425
- padding-right: 1.5rem;
7426
- padding-left: 1.5rem;
7762
+ padding-right: 24px;
7763
+ padding-left: 24px;
7427
7764
  }
7428
7765
  .aesirxconsent .px-xxl-5 {
7429
- padding-right: 3rem;
7430
- padding-left: 3rem;
7766
+ padding-right: 48px;
7767
+ padding-left: 48px;
7431
7768
  }
7432
7769
  .aesirxconsent .py-xxl-0 {
7433
7770
  padding-top: 0;
7434
7771
  padding-bottom: 0;
7435
7772
  }
7436
7773
  .aesirxconsent .py-xxl-1 {
7437
- padding-top: 0.25rem;
7438
- padding-bottom: 0.25rem;
7774
+ padding-top: 4px;
7775
+ padding-bottom: 4px;
7439
7776
  }
7440
7777
  .aesirxconsent .py-xxl-2 {
7441
- padding-top: 0.5rem;
7442
- padding-bottom: 0.5rem;
7778
+ padding-top: 8px;
7779
+ padding-bottom: 8px;
7443
7780
  }
7444
7781
  .aesirxconsent .py-xxl-3 {
7445
- padding-top: 1rem;
7446
- padding-bottom: 1rem;
7782
+ padding-top: 16px;
7783
+ padding-bottom: 16px;
7447
7784
  }
7448
7785
  .aesirxconsent .py-xxl-4 {
7449
- padding-top: 1.5rem;
7450
- padding-bottom: 1.5rem;
7786
+ padding-top: 24px;
7787
+ padding-bottom: 24px;
7451
7788
  }
7452
7789
  .aesirxconsent .py-xxl-5 {
7453
- padding-top: 3rem;
7454
- padding-bottom: 3rem;
7790
+ padding-top: 48px;
7791
+ padding-bottom: 48px;
7455
7792
  }
7456
7793
  .aesirxconsent .pt-xxl-0 {
7457
7794
  padding-top: 0;
7458
7795
  }
7459
7796
  .aesirxconsent .pt-xxl-1 {
7460
- padding-top: 0.25rem;
7797
+ padding-top: 4px;
7461
7798
  }
7462
7799
  .aesirxconsent .pt-xxl-2 {
7463
- padding-top: 0.5rem;
7800
+ padding-top: 8px;
7464
7801
  }
7465
7802
  .aesirxconsent .pt-xxl-3 {
7466
- padding-top: 1rem;
7803
+ padding-top: 16px;
7467
7804
  }
7468
7805
  .aesirxconsent .pt-xxl-4 {
7469
- padding-top: 1.5rem;
7806
+ padding-top: 24px;
7470
7807
  }
7471
7808
  .aesirxconsent .pt-xxl-5 {
7472
- padding-top: 3rem;
7809
+ padding-top: 48px;
7473
7810
  }
7474
7811
  .aesirxconsent .pe-xxl-0 {
7475
7812
  padding-right: 0;
7476
7813
  }
7477
7814
  .aesirxconsent .pe-xxl-1 {
7478
- padding-right: 0.25rem;
7815
+ padding-right: 4px;
7479
7816
  }
7480
7817
  .aesirxconsent .pe-xxl-2 {
7481
- padding-right: 0.5rem;
7818
+ padding-right: 8px;
7482
7819
  }
7483
7820
  .aesirxconsent .pe-xxl-3 {
7484
- padding-right: 1rem;
7821
+ padding-right: 16px;
7485
7822
  }
7486
7823
  .aesirxconsent .pe-xxl-4 {
7487
- padding-right: 1.5rem;
7824
+ padding-right: 24px;
7488
7825
  }
7489
7826
  .aesirxconsent .pe-xxl-5 {
7490
- padding-right: 3rem;
7827
+ padding-right: 48px;
7491
7828
  }
7492
7829
  .aesirxconsent .pb-xxl-0 {
7493
7830
  padding-bottom: 0;
7494
7831
  }
7495
7832
  .aesirxconsent .pb-xxl-1 {
7496
- padding-bottom: 0.25rem;
7833
+ padding-bottom: 4px;
7497
7834
  }
7498
7835
  .aesirxconsent .pb-xxl-2 {
7499
- padding-bottom: 0.5rem;
7836
+ padding-bottom: 8px;
7500
7837
  }
7501
7838
  .aesirxconsent .pb-xxl-3 {
7502
- padding-bottom: 1rem;
7839
+ padding-bottom: 16px;
7503
7840
  }
7504
7841
  .aesirxconsent .pb-xxl-4 {
7505
- padding-bottom: 1.5rem;
7842
+ padding-bottom: 24px;
7506
7843
  }
7507
7844
  .aesirxconsent .pb-xxl-5 {
7508
- padding-bottom: 3rem;
7845
+ padding-bottom: 48px;
7509
7846
  }
7510
7847
  .aesirxconsent .ps-xxl-0 {
7511
7848
  padding-left: 0;
7512
7849
  }
7513
7850
  .aesirxconsent .ps-xxl-1 {
7514
- padding-left: 0.25rem;
7851
+ padding-left: 4px;
7515
7852
  }
7516
7853
  .aesirxconsent .ps-xxl-2 {
7517
- padding-left: 0.5rem;
7854
+ padding-left: 8px;
7518
7855
  }
7519
7856
  .aesirxconsent .ps-xxl-3 {
7520
- padding-left: 1rem;
7857
+ padding-left: 16px;
7521
7858
  }
7522
7859
  .aesirxconsent .ps-xxl-4 {
7523
- padding-left: 1.5rem;
7860
+ padding-left: 24px;
7524
7861
  }
7525
7862
  .aesirxconsent .ps-xxl-5 {
7526
- padding-left: 3rem;
7863
+ padding-left: 48px;
7527
7864
  }
7528
7865
  .aesirxconsent .gap-xxl-0 {
7529
7866
  gap: 0;
7530
7867
  }
7531
7868
  .aesirxconsent .gap-xxl-1 {
7532
- gap: 0.25rem;
7869
+ gap: 4px;
7533
7870
  }
7534
7871
  .aesirxconsent .gap-xxl-2 {
7535
- gap: 0.5rem;
7872
+ gap: 8px;
7536
7873
  }
7537
7874
  .aesirxconsent .gap-xxl-3 {
7538
- gap: 1rem;
7875
+ gap: 16px;
7539
7876
  }
7540
7877
  .aesirxconsent .gap-xxl-4 {
7541
- gap: 1.5rem;
7878
+ gap: 24px;
7542
7879
  }
7543
7880
  .aesirxconsent .gap-xxl-5 {
7544
- gap: 3rem;
7881
+ gap: 48px;
7545
7882
  }
7546
7883
  .aesirxconsent .row-gap-xxl-0 {
7547
7884
  row-gap: 0;
7548
7885
  }
7549
7886
  .aesirxconsent .row-gap-xxl-1 {
7550
- row-gap: 0.25rem;
7887
+ row-gap: 4px;
7551
7888
  }
7552
7889
  .aesirxconsent .row-gap-xxl-2 {
7553
- row-gap: 0.5rem;
7890
+ row-gap: 8px;
7554
7891
  }
7555
7892
  .aesirxconsent .row-gap-xxl-3 {
7556
- row-gap: 1rem;
7893
+ row-gap: 16px;
7557
7894
  }
7558
7895
  .aesirxconsent .row-gap-xxl-4 {
7559
- row-gap: 1.5rem;
7896
+ row-gap: 24px;
7560
7897
  }
7561
7898
  .aesirxconsent .row-gap-xxl-5 {
7562
- row-gap: 3rem;
7899
+ row-gap: 48px;
7563
7900
  }
7564
7901
  .aesirxconsent .column-gap-xxl-0 {
7565
7902
  column-gap: 0;
7566
7903
  }
7567
7904
  .aesirxconsent .column-gap-xxl-1 {
7568
- column-gap: 0.25rem;
7905
+ column-gap: 4px;
7569
7906
  }
7570
7907
  .aesirxconsent .column-gap-xxl-2 {
7571
- column-gap: 0.5rem;
7908
+ column-gap: 8px;
7572
7909
  }
7573
7910
  .aesirxconsent .column-gap-xxl-3 {
7574
- column-gap: 1rem;
7911
+ column-gap: 16px;
7575
7912
  }
7576
7913
  .aesirxconsent .column-gap-xxl-4 {
7577
- column-gap: 1.5rem;
7914
+ column-gap: 24px;
7578
7915
  }
7579
7916
  .aesirxconsent .column-gap-xxl-5 {
7580
- column-gap: 3rem;
7917
+ column-gap: 48px;
7581
7918
  }
7582
7919
  .aesirxconsent .text-xxl-start {
7583
7920
  text-align: left;
@@ -7638,6 +7975,22 @@ var css = `:root {
7638
7975
  display: none;
7639
7976
  }
7640
7977
  }
7978
+ .aesirxconsent a {
7979
+ text-decoration: underline;
7980
+ }
7981
+ .aesirxconsent button {
7982
+ text-transform: none;
7983
+ }
7984
+ .aesirxconsent .text-primary {
7985
+ color: #132342;
7986
+ }
7987
+ .aesirxconsent img {
7988
+ height: auto;
7989
+ display: inline;
7990
+ }
7991
+ .aesirxconsent .btn {
7992
+ --aesirxconsent-btn-font-size: 16px;
7993
+ }
7641
7994
  .aesirxconsent .btn.text-white {
7642
7995
  color: #fff;
7643
7996
  }
@@ -7679,6 +8032,7 @@ var css = `:root {
7679
8032
  }
7680
8033
  .aesirxconsent .toast {
7681
8034
  --aesirxconsent-toast-zindex: 1049;
8035
+ --aesirxconsent-toast-font-size: 16px;
7682
8036
  border: 0;
7683
8037
  box-shadow: none;
7684
8038
  }
@@ -7838,6 +8192,37 @@ var css = `:root {
7838
8192
 
7839
8193
  .aesirxsso {
7840
8194
  color: #5f5e70;
8195
+ }
8196
+
8197
+ [data-bs-theme=dark] .aesirxconsent {
8198
+ color: #c8c8db;
8199
+ }
8200
+ [data-bs-theme=dark] .aesirxconsent .block-wallet,
8201
+ [data-bs-theme=dark] .aesirxconsent .modal-header {
8202
+ background-color: var(--aesirxconsent-body-bg);
8203
+ }
8204
+ [data-bs-theme=dark] .aesirxconsent .border,
8205
+ [data-bs-theme=dark] .aesirxconsent .border-bottom,
8206
+ [data-bs-theme=dark] .aesirxconsent .border-top,
8207
+ [data-bs-theme=dark] .aesirxconsent .border-start,
8208
+ [data-bs-theme=dark] .aesirxconsent .border-end {
8209
+ border-color: var(--aesirxconsent-border-color);
8210
+ }
8211
+ [data-bs-theme=dark] .aesirxconsent .btn-dark {
8212
+ border-color: var(--aesirxconsent-dark-border-subtle);
8213
+ background-color: var(--aesirxconsent-dark-bg-subtle);
8214
+ }
8215
+ [data-bs-theme=dark] .aesirxconsent .bg-white {
8216
+ background-color: var(--aesirxconsent-light-bg-subtle);
8217
+ }
8218
+ [data-bs-theme=dark] .aesirxconsent .bg-light {
8219
+ background-color: var(--aesirxconsent-light-bg-subtle);
8220
+ }
8221
+ [data-bs-theme=dark] .aesirxconsent .read-more .read-more-btn {
8222
+ color: #fff;
8223
+ }
8224
+ [data-bs-theme=dark] .aesirxconsent .text-primary {
8225
+ color: #fff;
7841
8226
  }`;
7842
8227
  document.head.appendChild(document.createElement("style")).appendChild(document.createTextNode(css));
7843
8228
 
@@ -7869,55 +8254,56 @@ var arrow_default = 'data:image/svg+xml,<svg width="18" height="18" viewBox="0 0
7869
8254
  var terms = [
7870
8255
  {
7871
8256
  level: 1,
7872
- tier: "Tier 1",
7873
- name: "Session-Based",
7874
- levelname: "Basic",
7875
- content: "Ideal for new site visitors or if you don't want your data stored beyond your current visit.",
7876
- term: "You consent to data collection for a 30-minute session only.",
7877
- upgrade: "Upgrade to Tier 2 Consent - Medium",
7878
- upgradetext: " & add on a Web3 Wallet for greater data control & consent or revoke at any time you choose.",
8257
+ tier: "txt_tier_1_tier",
8258
+ name: "txt_tier_1_name",
8259
+ levelname: "txt_tier_1_levelname",
8260
+ content: "txt_tier_1_content",
8261
+ term: "txt_tier_1_term",
8262
+ upgrade: "txt_tier_1_upgrade",
8263
+ upgradetext: "txt_tier_1_upgradetext",
7879
8264
  logos: [aesirx_default]
7880
8265
  },
7881
8266
  {
7882
8267
  level: 2,
7883
- tier: "Tier 2",
7884
- name: "AesirX WEB3 ID",
7885
- levelname: "Medium",
7886
- content: "Ideal for personalized online experiences & secure consent management across sessions & platforms.",
7887
- term: "You consent to data use across multiple sessions.",
7888
- upgrade: "Upgrade to Tier 3 Consent - High ",
7889
- upgradetext: "& add on Wallet-Based Decentralized Consent to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
8268
+ tier: "txt_tier_2_tier",
8269
+ name: "txt_tier_2_name",
8270
+ levelname: "txt_tier_2_levelname",
8271
+ content: "txt_tier_2_content",
8272
+ term: "txt_tier_2_term",
8273
+ upgrade: "txt_tier_2_upgrade",
8274
+ upgradetext: "txt_tier_2_upgradetext",
7890
8275
  logos: [aesirx_default, web3id_default]
7891
8276
  },
7892
8277
  {
7893
8278
  level: 3,
7894
- tier: "Tier 3",
7895
- name: "Decentralized Wallet",
7896
- levelname: "High",
7897
- content: "Utilize your Web3 Wallet for greater control over your data.",
7898
- term: "You consent for your data to be used, which can be revoked at any time you choose.",
7899
- upgrade: "Upgrade to Tier 4 Consent - Super Advanced (our highest tier!)",
7900
- upgradetext: " & add on AesirX WEB3 ID to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
8279
+ tier: "txt_tier_3_tier",
8280
+ name: "txt_tier_3_name",
8281
+ levelname: "txt_tier_3_levelname",
8282
+ content: "txt_tier_3_content",
8283
+ term: "txt_tier_3_term",
8284
+ upgrade: "txt_tier_3_upgrade",
8285
+ upgradetext: "txt_tier_3_upgradetext",
7901
8286
  logos: [aesirx_default, web3id_default]
7902
8287
  },
7903
8288
  {
7904
8289
  level: 4,
7905
- tier: "Tier 4",
7906
- name: "Combined Wallet + AesirX WEB3 ID",
7907
- levelname: "Super Advanced",
7908
- content: "Use your Web3 Wallet + AesirX WEB3 ID & get full multi-site control of your data use. Consent or revoke permissions at any time for true decentralized data ownership.",
7909
- term: "You consent for your data to be used, which can be revoked at any time you choose.",
7910
- upgradetext: "The most personalized and privacy-preserving experience!",
8290
+ tier: "txt_tier_4_tier",
8291
+ name: "txt_tier_4_name",
8292
+ levelname: "txt_tier_4_levelname",
8293
+ content: "txt_tier_4_content",
8294
+ term: "txt_tier_4_term",
8295
+ upgradetext: "txt_tier_4_upgradetext",
7911
8296
  logos: [aesirx_default, web3id_default, concordium_default]
7912
8297
  }
7913
8298
  ];
7914
8299
  var TermsComponent = ({ children, level, handleLevel }) => {
8300
+ const { t } = useTranslation();
7915
8301
  const handleReadmore = (status) => {
7916
8302
  setShowReadmore(status);
7917
8303
  };
7918
8304
  const [showReadmore, setShowReadmore] = useState2(false);
7919
8305
  return /* @__PURE__ */ React.createElement(React.Fragment, null, terms.map(
7920
- (term, key) => term.level === level && /* @__PURE__ */ React.createElement(Fragment, { key }, /* @__PURE__ */ React.createElement("div", { className: "rounded-top d-flex justify-content-between bg-light p-3 fw-bold flex-wrap" }, /* @__PURE__ */ React.createElement("div", null, term.name), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center" }, /* @__PURE__ */ React.createElement("div", { className: `status-tier tier-${term.level} rounded-circle` }), term.tier, " - ", term.levelname)), /* @__PURE__ */ React.createElement("div", { className: "p-3 bg-white" }, /* @__PURE__ */ React.createElement("span", { className: "fw-bold" }, term.content), " ", /* @__PURE__ */ React.createElement("span", { className: "fw-light" }, term.term), /* @__PURE__ */ React.createElement("div", { className: "read-more" }, /* @__PURE__ */ React.createElement(
8306
+ (term, key) => term.level === level && /* @__PURE__ */ React.createElement(Fragment, { key }, /* @__PURE__ */ React.createElement("div", { className: "rounded-top d-flex justify-content-between bg-light p-3 fw-bold flex-wrap" }, /* @__PURE__ */ React.createElement("div", null, t(term.name)), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center" }, /* @__PURE__ */ React.createElement("div", { className: `status-tier tier-${term.level} rounded-circle` }), t(term.tier), " - ", t(term.levelname))), /* @__PURE__ */ React.createElement("div", { className: "p-3 bg-white" }, /* @__PURE__ */ React.createElement("span", { className: "fw-bold" }, t(term.content)), " ", /* @__PURE__ */ React.createElement("span", { className: "fw-light" }, t(term.term)), /* @__PURE__ */ React.createElement("div", { className: "read-more" }, /* @__PURE__ */ React.createElement(
7921
8307
  "div",
7922
8308
  {
7923
8309
  className: "read-more-btn",
@@ -7925,7 +8311,7 @@ var TermsComponent = ({ children, level, handleLevel }) => {
7925
8311
  handleReadmore(!showReadmore ? true : false);
7926
8312
  }
7927
8313
  },
7928
- !showReadmore ? "Show details" : "Hide details",
8314
+ !showReadmore ? t("txt_show_details") : t("txt_hide_details"),
7929
8315
  " ",
7930
8316
  /* @__PURE__ */ React.createElement("img", { src: arrow_default, className: `ms-1 ${showReadmore ? "revert" : ""}` })
7931
8317
  ))), /* @__PURE__ */ React.createElement("div", { className: "rounded-bottom position-relative overflow-hidden text-white" }, /* @__PURE__ */ React.createElement("img", { className: "position-absolute h-100 w-100 object-fit-cover", src: bg_default }), /* @__PURE__ */ React.createElement(
@@ -7934,15 +8320,15 @@ var TermsComponent = ({ children, level, handleLevel }) => {
7934
8320
  className: "position-absolute h-100 w-100 object-fit-cover lightning flash-effect",
7935
8321
  src: bg_default
7936
8322
  }
7937
- ), /* @__PURE__ */ React.createElement("div", { className: "position-relative p-3" }, showReadmore && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center" }, term.logos.map((logo, i) => /* @__PURE__ */ React.createElement(Fragment, { key: i }, /* @__PURE__ */ React.createElement("img", { className: "me-2", src: logo, alt: term.levelname })))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start my-3" }, /* @__PURE__ */ React.createElement("img", { src: upgrade_default }), /* @__PURE__ */ React.createElement("div", { className: "ms-3" }, term.upgrade && /* @__PURE__ */ React.createElement(
8323
+ ), /* @__PURE__ */ React.createElement("div", { className: "position-relative p-3" }, showReadmore && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center" }, term.logos.map((logo, i) => /* @__PURE__ */ React.createElement(Fragment, { key: i }, /* @__PURE__ */ React.createElement("img", { className: "me-2", src: logo, alt: t(term.levelname) })))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start my-3" }, /* @__PURE__ */ React.createElement("img", { src: upgrade_default }), /* @__PURE__ */ React.createElement("div", { className: "ms-3" }, term.upgrade && /* @__PURE__ */ React.createElement(
7938
8324
  "a",
7939
8325
  {
7940
8326
  className: "text-white",
7941
8327
  href: "#",
7942
8328
  onClick: () => handleLevel(terms[key + 1].level)
7943
8329
  },
7944
- term.upgrade
7945
- ), term.upgradetext, /* @__PURE__ */ React.createElement("div", { className: "fst-italic" }, "We do not collect any personal data, only user insights.")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React.createElement("div", { className: "me-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt: term.name }), " Shield of Privacy"), children))))
8330
+ t(term.upgrade)
8331
+ ), t(term.upgradetext), /* @__PURE__ */ React.createElement("div", { className: "fst-italic" }, t("txt_no_collect"))))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React.createElement("div", { className: "me-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt: t(term.name) }), " ", t("txt_shield_of_privacy")), children))))
7946
8332
  ));
7947
8333
  };
7948
8334
 
@@ -7958,13 +8344,19 @@ var no_default = 'data:image/svg+xml,<svg width="18" height="19" viewBox="0 0 18
7958
8344
  // src/Components/Consent.tsx
7959
8345
  import ContentLoader from "react-content-loader";
7960
8346
  import { SSOButton } from "aesirx-sso";
7961
- import { MAINNET as MAINNET2, WithWalletConnector } from "@concordium/react-components";
7962
- import { OsTypes as OsTypes2, isMobile as isMobile2, osName as osName2 } from "react-device-detect";
8347
+ import {
8348
+ MAINNET as MAINNET2,
8349
+ WithWalletConnector,
8350
+ useConnection as useConnection2,
8351
+ useConnect as useConnect2
8352
+ } from "@concordium/react-components";
8353
+ import { OsTypes, isMobile as isMobile2, osName } from "react-device-detect";
7963
8354
 
7964
8355
  // src/Components/LoadingStatus.tsx
7965
8356
  import React2 from "react";
7966
8357
  import { Button } from "react-bootstrap";
7967
8358
  var LoadingStatus = ({ loading }) => {
8359
+ const { t } = useTranslation();
7968
8360
  return /* @__PURE__ */ React2.createElement(React2.Fragment, null, loading === "connect" ? /* @__PURE__ */ React2.createElement("div", { className: "loading-status" }, /* @__PURE__ */ React2.createElement(
7969
8361
  Button,
7970
8362
  {
@@ -7980,7 +8372,7 @@ var LoadingStatus = ({ loading }) => {
7980
8372
  "aria-hidden": "true"
7981
8373
  }
7982
8374
  ),
7983
- /* @__PURE__ */ React2.createElement("span", { className: "text" }, "Please connect your Concordium wallet")
8375
+ /* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_please_connect"))
7984
8376
  )) : loading === "sign" ? /* @__PURE__ */ React2.createElement("div", { className: "loading-status" }, /* @__PURE__ */ React2.createElement(
7985
8377
  Button,
7986
8378
  {
@@ -7996,7 +8388,7 @@ var LoadingStatus = ({ loading }) => {
7996
8388
  "aria-hidden": "true"
7997
8389
  }
7998
8390
  ),
7999
- /* @__PURE__ */ React2.createElement("span", { className: "text" }, "Please sign the message on your wallet twice and wait for it to be saved.")
8391
+ /* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_please_sign"))
8000
8392
  )) : loading === "saving" ? /* @__PURE__ */ React2.createElement("div", { className: "loading-status" }, /* @__PURE__ */ React2.createElement(
8001
8393
  Button,
8002
8394
  {
@@ -8012,16 +8404,96 @@ var LoadingStatus = ({ loading }) => {
8012
8404
  "aria-hidden": "true"
8013
8405
  }
8014
8406
  ),
8015
- /* @__PURE__ */ React2.createElement("span", { className: "text" }, "Saving...")
8407
+ /* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_saving"))
8016
8408
  )) : /* @__PURE__ */ React2.createElement(React2.Fragment, null));
8017
8409
  };
8018
8410
 
8411
+ // src/Components/Connect.tsx
8412
+ import React3, { useState as useState3 } from "react";
8413
+ import { Modal } from "react-bootstrap";
8414
+ import { isMobile, isDesktop as isDesktop2 } from "react-device-detect";
8415
+
8416
+ // src/Assets/concordium_logo.png
8417
+ var concordium_logo_default = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAF5SURBVHgBrVXtcYMwDJVz/I83qDdoOkHpBtkARmgmgE5QNkg2aDtB2IBkgtIJSCdwpdrcCUcGUvruFDv6eEiyMApGYK3VuGxQUpQ7r/5GaVA+lFIXuAVEiFKgdDaOdIwjEUgp4A1FwwIkAWmGy0Hwa1FqvzfgWjMPSLoRyt2TXvDVvv+ziD8D0hwWIPGkObgSe+zwxA/soZTdFmWNckZbHSQ1iEd7KWW7D4IKoUXkb5hPejUxQm/TCVJOrpnvkdkqUmyZouPl22mUzL9i+mYF7s3qcWL7q2kQEIvVq8BRR/YxrGMGIm4jZDVM48z2hu0vIbGx/oXwF8w7xEH2iv1/ZPuv3187vGxee6s/wEY4tC6YHhPYM+UNJS4Fe+IDZnxigTm4g1r7bCp+ZaL9GZd7Fr/jmXXBjBr4D9BThXIz+CNUQF7CsCWEFtyEUGvo60EtobJfwjtjFERu5yGFW+FP+biEOJGUWGKLy5N1M52DK117oWmgtrQwgh9inye0Cp+8ygAAAABJRU5ErkJggg==";
8418
+
8419
+ // src/Components/Connect.tsx
8420
+ var ConnectModal = ({
8421
+ isConnecting,
8422
+ handleOnConnect,
8423
+ activeConnectorError,
8424
+ activeConnectorType,
8425
+ activeConnector
8426
+ }) => {
8427
+ const [show, setShow] = useState3(true);
8428
+ const handleClose = () => setShow(false);
8429
+ const { t } = useTranslation();
8430
+ return /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(Modal, { show, onHide: handleClose }, /* @__PURE__ */ React3.createElement(Modal.Body, { className: "aesirxconsent" }, /* @__PURE__ */ React3.createElement("div", { className: "pb-4 px-4 block-wallet rounded-top" }, /* @__PURE__ */ React3.createElement("div", { className: "px-3 text-center" }, /* @__PURE__ */ React3.createElement("h3", { className: "fs-3 fw-semibold mt-2 mb-4 text-primary" }, t("txt_please_connect_your_wallet")), /* @__PURE__ */ React3.createElement("div", { className: "d-flex flex-row flex-wrap" }, isDesktop2 && /* @__PURE__ */ React3.createElement(
8431
+ "button",
8432
+ {
8433
+ disabled: isConnecting,
8434
+ className: "btn btn-primary btn-concordium flex-grow-1 fw-medium py-2 px-4 lh-sm text-white d-flex align-items-center justify-content-center mb-3",
8435
+ onClick: () => handleOnConnect(BROWSER_WALLET)
8436
+ },
8437
+ isConnecting ? /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(
8438
+ "span",
8439
+ {
8440
+ className: "spinner-border spinner-border-sm me-1",
8441
+ role: "status",
8442
+ "aria-hidden": "true"
8443
+ }
8444
+ ), t("txt_connecting")) : /* @__PURE__ */ React3.createElement(React3.Fragment, null, " ", /* @__PURE__ */ React3.createElement(
8445
+ "img",
8446
+ {
8447
+ src: concordium_logo_default,
8448
+ className: "me-3 align-text-bottom",
8449
+ alt: "Concordium"
8450
+ }
8451
+ ), "Concordium Browser Wallet")
8452
+ ), /* @__PURE__ */ React3.createElement(
8453
+ "button",
8454
+ {
8455
+ className: "btn btn-primary btn-concordium flex-grow-1 fw-medium py-2 px-4 lh-sm text-white d-flex align-items-center justify-content-center",
8456
+ onClick: () => handleOnConnect(WALLET_CONNECT)
8457
+ },
8458
+ !activeConnectorError && activeConnectorType && !activeConnector ? /* @__PURE__ */ React3.createElement(
8459
+ "span",
8460
+ {
8461
+ className: "spinner-border spinner-border-sm me-1",
8462
+ role: "status",
8463
+ "aria-hidden": "true"
8464
+ }
8465
+ ) : /* @__PURE__ */ React3.createElement(React3.Fragment, null, " ", /* @__PURE__ */ React3.createElement(
8466
+ "img",
8467
+ {
8468
+ src: concordium_logo_default,
8469
+ className: "me-3 align-text-bottom",
8470
+ alt: "Concordium"
8471
+ }
8472
+ ), isMobile ? "Concordium or CryptoX" : "QR Code (Concordium Mobile or CryptoX Mobile)")
8473
+ )), " ")))));
8474
+ };
8475
+ var Connect_default = ConnectModal;
8476
+
8019
8477
  // src/Components/Consent.tsx
8020
8478
  var ConsentComponent = ({ endpoint }) => {
8021
- return /* @__PURE__ */ React3.createElement(WithWalletConnector, { network: MAINNET2 }, (props) => /* @__PURE__ */ React3.createElement(ConsentComponentApp, { ...props, endpoint }));
8479
+ return /* @__PURE__ */ React4.createElement(WithWalletConnector, { network: MAINNET2 }, (props) => /* @__PURE__ */ React4.createElement(ConsentComponentApp, { ...props, endpoint }));
8022
8480
  };
8023
8481
  var ConsentComponentApp = (props) => {
8024
- const { endpoint, setActiveConnectorType } = props;
8482
+ const {
8483
+ endpoint,
8484
+ activeConnectorType,
8485
+ activeConnector,
8486
+ activeConnectorError,
8487
+ connectedAccounts,
8488
+ genesisHashes,
8489
+ setActiveConnectorType
8490
+ } = props;
8491
+ const { setConnection } = useConnection2(connectedAccounts, genesisHashes);
8492
+ const { isConnecting } = useConnect2(activeConnector, setConnection);
8493
+ const handleOnConnect = async (connectorType) => {
8494
+ await setActiveConnectorType(connectorType);
8495
+ setLoading("done");
8496
+ };
8025
8497
  const [
8026
8498
  uuid,
8027
8499
  level,
@@ -8032,13 +8504,16 @@ var ConsentComponentApp = (props) => {
8032
8504
  web3ID,
8033
8505
  handleLevel,
8034
8506
  showRevoke,
8035
- handleRevoke
8507
+ handleRevoke,
8508
+ showConnectModal
8036
8509
  ] = useConsentStatus_default(endpoint, props);
8037
- const [consents, setConsents] = useState3([1, 2]);
8038
- const [loading, setLoading] = useState3("done");
8039
- const [showExpandConsent, setShowExpandConsent] = useState3(true);
8040
- const [showExpandRevoke, setShowExpandRevoke] = useState3(false);
8041
- const [showBackdrop, setShowBackdrop] = useState3(true);
8510
+ const [consents, setConsents] = useState4([1, 2]);
8511
+ const [loading, setLoading] = useState4("done");
8512
+ const [showExpandConsent, setShowExpandConsent] = useState4(true);
8513
+ const [showExpandRevoke, setShowExpandRevoke] = useState4(false);
8514
+ const [showBackdrop, setShowBackdrop] = useState4(true);
8515
+ const analyticsContext = useContext2(AnalyticsContext);
8516
+ const { t } = useTranslation();
8042
8517
  const handleChange = async ({ target: { value } }) => {
8043
8518
  if (consents.indexOf(parseInt(value)) === -1) {
8044
8519
  setConsents([...consents, ...[parseInt(value)]]);
@@ -8048,24 +8523,36 @@ var ConsentComponentApp = (props) => {
8048
8523
  };
8049
8524
  const handleAgree = async () => {
8050
8525
  try {
8526
+ let flag = true;
8051
8527
  if (level > 2) {
8052
- setLoading("connect");
8053
- setLoading("sign");
8054
- const signature = await getSignature(endpoint, account, connection, "Give consent:{}");
8055
- setLoading("saving");
8056
- await agreeConsents(endpoint, level, uuid, consents, account, signature, web3ID);
8528
+ if (account) {
8529
+ const signature = await getSignature(endpoint, account, connection, "Give consent:{}");
8530
+ setLoading("saving");
8531
+ await agreeConsents(endpoint, level, uuid, consents, account, signature, web3ID);
8532
+ } else {
8533
+ setLoading("connect");
8534
+ flag = false;
8535
+ }
8057
8536
  } else {
8058
8537
  setLoading("saving");
8538
+ const consentList = await getConsents(endpoint, analyticsContext.visitor_uuid);
8059
8539
  consents.forEach(async (consent) => {
8060
- await agreeConsents(endpoint, 1, uuid, consent);
8540
+ const existConsent = consentList.find((item) => item?.consent === consent);
8541
+ if (!existConsent) {
8542
+ await agreeConsents(endpoint, 1, uuid, consent);
8543
+ } else if (!!existConsent?.consent_uuid && existConsent?.expiration && new Date(existConsent.expiration) < /* @__PURE__ */ new Date()) {
8544
+ await agreeConsents(endpoint, 1, uuid, consent);
8545
+ }
8061
8546
  });
8062
8547
  }
8063
- sessionStorage.setItem("aesirx-analytics-uuid", uuid);
8064
- sessionStorage.setItem("aesirx-analytics-allow", "1");
8065
- setShow(false);
8066
- setLoading("done");
8067
- handleRevoke(true, level);
8068
- setShowBackdrop(false);
8548
+ if (flag) {
8549
+ sessionStorage.setItem("aesirx-analytics-uuid", uuid);
8550
+ sessionStorage.setItem("aesirx-analytics-allow", "1");
8551
+ setShow(false);
8552
+ setLoading("done");
8553
+ handleRevoke(true, level);
8554
+ setShowBackdrop(false);
8555
+ }
8069
8556
  } catch (error) {
8070
8557
  handleNotAllow();
8071
8558
  setLoading("done");
@@ -8088,31 +8575,42 @@ var ConsentComponentApp = (props) => {
8088
8575
  };
8089
8576
  const handleNotAllow = () => {
8090
8577
  sessionStorage.setItem("aesirx-analytics-uuid", uuid);
8578
+ sessionStorage.setItem("aesirx-analytics-rejected", "true");
8091
8579
  setShowExpandConsent(false);
8092
8580
  setShowBackdrop(false);
8093
8581
  };
8094
8582
  const handleRevokeBtn = async () => {
8095
8583
  const levelRevoke = sessionStorage.getItem("aesirx-analytics-revoke");
8096
8584
  try {
8097
- if (levelRevoke) {
8585
+ let flag = true;
8586
+ if (levelRevoke !== "1") {
8098
8587
  if (parseInt(levelRevoke) > 2) {
8099
- setLoading("connect");
8100
- setLoading("sign");
8101
- const signature = await getSignature(endpoint, account, connection, "Revoke consent:{}");
8102
- setLoading("saving");
8103
- const consentList = await getConsents(endpoint, uuid);
8104
- consentList.forEach(async (consent) => {
8105
- !consent?.expiration && await revokeConsents(
8588
+ if (account) {
8589
+ setLoading("sign");
8590
+ const signature = await getSignature(
8106
8591
  endpoint,
8107
- levelRevoke,
8108
- consent?.consent_uuid,
8109
8592
  account,
8110
- signature,
8111
- web3ID
8593
+ connection,
8594
+ "Revoke consent:{}"
8112
8595
  );
8113
- });
8114
- setLoading("done");
8115
- handleRevoke(false);
8596
+ setLoading("saving");
8597
+ const consentList = await getConsents(endpoint, uuid);
8598
+ consentList.forEach(async (consent) => {
8599
+ !consent?.expiration && await revokeConsents(
8600
+ endpoint,
8601
+ levelRevoke,
8602
+ consent?.consent_uuid,
8603
+ account,
8604
+ signature,
8605
+ web3ID
8606
+ );
8607
+ });
8608
+ setLoading("done");
8609
+ handleRevoke(false);
8610
+ } else {
8611
+ setLoading("connect");
8612
+ flag = false;
8613
+ }
8116
8614
  } else {
8117
8615
  setLoading("saving");
8118
8616
  const consentList = await getConsents(endpoint, uuid);
@@ -8130,6 +8628,14 @@ var ConsentComponentApp = (props) => {
8130
8628
  setLoading("done");
8131
8629
  handleRevoke(false);
8132
8630
  }
8631
+ if (flag) {
8632
+ setShowExpandConsent(false);
8633
+ setShow(true);
8634
+ setShowBackdrop(false);
8635
+ sessionStorage.removeItem("aesirx-analytics-allow");
8636
+ }
8637
+ } else {
8638
+ handleRevoke(false);
8133
8639
  setShowExpandConsent(false);
8134
8640
  setShow(true);
8135
8641
  setShowBackdrop(false);
@@ -8140,32 +8646,38 @@ var ConsentComponentApp = (props) => {
8140
8646
  toast2.error(error?.response?.data?.error ?? error.message);
8141
8647
  }
8142
8648
  };
8143
- return /* @__PURE__ */ React3.createElement("div", { className: "aesirxconsent" }, /* @__PURE__ */ React3.createElement(ToastContainer, null), /* @__PURE__ */ React3.createElement("div", { className: `offcanvas-backdrop fade ${showBackdrop && show ? "show" : "d-none"}` }), /* @__PURE__ */ React3.createElement("div", { tabIndex: -1, className: `toast-container position-fixed bottom-0 end-0 p-3` }, /* @__PURE__ */ React3.createElement(
8649
+ useEffect2(() => {
8650
+ if (sessionStorage.getItem("aesirx-analytics-rejected") === "true") {
8651
+ setShowBackdrop(false);
8652
+ setShowExpandConsent(false);
8653
+ }
8654
+ }, []);
8655
+ return /* @__PURE__ */ React4.createElement("div", { className: "aesirxconsent" }, /* @__PURE__ */ React4.createElement(ToastContainer, null), /* @__PURE__ */ React4.createElement("div", { className: `offcanvas-backdrop fade ${showBackdrop && show ? "show" : "d-none"}` }), /* @__PURE__ */ React4.createElement("div", { tabIndex: -1, className: `toast-container position-fixed bottom-0 end-0 p-3` }, /* @__PURE__ */ React4.createElement(
8144
8656
  "div",
8145
8657
  {
8146
8658
  className: `toast revoke-toast ${showRevoke || sessionStorage.getItem("aesirx-analytics-revoke") && sessionStorage.getItem("aesirx-analytics-revoke") !== "0" ? "show" : ""} ${showExpandRevoke ? "" : "minimize"}`
8147
8659
  },
8148
- /* @__PURE__ */ React3.createElement(LoadingStatus, { loading }),
8149
- /* @__PURE__ */ React3.createElement("div", { className: "toast-body p-0 " }, /* @__PURE__ */ React3.createElement("div", { className: "revoke-wrapper minimize-shield-wrapper position-relative" }, !showExpandRevoke && /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(
8660
+ /* @__PURE__ */ React4.createElement(LoadingStatus, { loading }),
8661
+ /* @__PURE__ */ React4.createElement("div", { className: "toast-body p-0 " }, /* @__PURE__ */ React4.createElement("div", { className: "revoke-wrapper minimize-shield-wrapper position-relative" }, !showExpandRevoke && /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement(
8150
8662
  "img",
8151
8663
  {
8152
8664
  className: "cover-img position-absolute h-100 w-100 object-fit-cover",
8153
8665
  src: bg_default
8154
8666
  }
8155
- ), /* @__PURE__ */ React3.createElement(
8667
+ ), /* @__PURE__ */ React4.createElement(
8156
8668
  "div",
8157
8669
  {
8158
8670
  className: "minimize-shield",
8159
8671
  onClick: () => {
8160
- if (osName2 !== OsTypes2?.IOS && isMobile2 && !connection && sessionStorage.getItem("aesirx-analytics-revoke") && parseInt(sessionStorage.getItem("aesirx-analytics-revoke")) > 2) {
8672
+ if (osName !== OsTypes?.IOS && isMobile2 && !connection && sessionStorage.getItem("aesirx-analytics-revoke") && parseInt(sessionStorage.getItem("aesirx-analytics-revoke")) > 2) {
8161
8673
  setActiveConnectorType(WALLET_CONNECT);
8162
8674
  }
8163
8675
  setShowExpandRevoke(true);
8164
8676
  }
8165
8677
  },
8166
- /* @__PURE__ */ React3.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }),
8167
- "Shield of Privacy"
8168
- )), showExpandRevoke && /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(
8678
+ /* @__PURE__ */ React4.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }),
8679
+ t("txt_shield_of_privacy")
8680
+ )), showExpandRevoke && /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement(
8169
8681
  "div",
8170
8682
  {
8171
8683
  className: "minimize-revoke",
@@ -8173,57 +8685,58 @@ var ConsentComponentApp = (props) => {
8173
8685
  setShowExpandRevoke(false);
8174
8686
  }
8175
8687
  },
8176
- /* @__PURE__ */ React3.createElement("img", { src: no_default })
8177
- ), /* @__PURE__ */ React3.createElement("div", { className: "p-3 bg-white text" }, "You can revoke your consent for data usage at any time. ", /* @__PURE__ */ React3.createElement("br", null), "Go to", " ", /* @__PURE__ */ React3.createElement(
8688
+ /* @__PURE__ */ React4.createElement("img", { src: no_default })
8689
+ ), /* @__PURE__ */ React4.createElement("div", { className: "p-3 bg-white text" }, t("txt_you_can_revoke"), " ", /* @__PURE__ */ React4.createElement("br", null), t("txt_go_to"), " ", /* @__PURE__ */ React4.createElement(
8178
8690
  "a",
8179
8691
  {
8180
- href: "https://nft.web3id.aesirx.io",
8692
+ href: "https://nft.shield.aesirx.io",
8181
8693
  className: "text-success text-decoration-underline",
8182
8694
  target: "_blank",
8183
8695
  rel: "noreferrer"
8184
8696
  },
8185
- "link"
8186
- ), " ", "for more information."), /* @__PURE__ */ React3.createElement("div", { className: "rounded-bottom position-relative overflow-hidden text-white" }, /* @__PURE__ */ React3.createElement(
8697
+ t("txt_link")
8698
+ ), " ", t("txt_for_more_information")), /* @__PURE__ */ React4.createElement("div", { className: "rounded-bottom position-relative overflow-hidden text-white" }, /* @__PURE__ */ React4.createElement(
8187
8699
  "img",
8188
8700
  {
8189
8701
  className: "cover-img position-absolute h-100 w-100 object-fit-cover",
8190
8702
  src: bg_default
8191
8703
  }
8192
- ), /* @__PURE__ */ React3.createElement("div", { className: "position-relative p-3" }, /* @__PURE__ */ React3.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React3.createElement("div", { className: "me-2" }, /* @__PURE__ */ React3.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }), " Shield of Privacy"), sessionStorage.getItem("aesirx-analytics-revoke") !== "1" && /* @__PURE__ */ React3.createElement("div", { className: "d-flex align-items-center" }, /* @__PURE__ */ React3.createElement(
8704
+ ), /* @__PURE__ */ React4.createElement("div", { className: "position-relative p-3" }, /* @__PURE__ */ React4.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React4.createElement("div", { className: "me-2" }, /* @__PURE__ */ React4.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }), " ", t("txt_shield_of_privacy")), /* @__PURE__ */ React4.createElement("div", { className: "d-flex align-items-center" }, /* @__PURE__ */ React4.createElement(
8193
8705
  "a",
8194
8706
  {
8195
8707
  className: "text-success text-decoration-underline manage-consent",
8196
- href: "https://dapp.web3id.aesirx.io/revoke-consent",
8708
+ href: "https://dapp.shield.aesirx.io/revoke-consent",
8197
8709
  target: "_blank",
8198
8710
  rel: "noreferrer"
8199
8711
  },
8200
- "Manage Consent"
8201
- ), loading === "done" ? /* @__PURE__ */ React3.createElement(
8712
+ t("txt_manage_consent")
8713
+ ), loading === "done" ? /* @__PURE__ */ React4.createElement(
8202
8714
  Button2,
8203
8715
  {
8204
8716
  variant: "success",
8205
8717
  onClick: handleRevokeBtn,
8206
8718
  className: "text-white d-flex align-items-center revoke-btn"
8207
8719
  },
8208
- "Revoke Consent"
8209
- ) : /* @__PURE__ */ React3.createElement(React3.Fragment, null))))))))
8210
- )), /* @__PURE__ */ React3.createElement("div", { tabIndex: -1, className: `toast-container position-fixed bottom-0 end-0 p-3` }, /* @__PURE__ */ React3.createElement("div", { className: `toast ${show ? "show" : ""} ${showExpandConsent ? "" : "minimize"}` }, /* @__PURE__ */ React3.createElement(LoadingStatus, { loading }), /* @__PURE__ */ React3.createElement("div", { className: "toast-body p-0" }, !showExpandConsent ? /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement("div", { className: "minimize-shield-wrapper position-relative" }, /* @__PURE__ */ React3.createElement(
8720
+ t("txt_revoke_consent")
8721
+ ) : /* @__PURE__ */ React4.createElement(React4.Fragment, null))))))))
8722
+ )), /* @__PURE__ */ React4.createElement("div", { tabIndex: -1, className: `toast-container position-fixed bottom-0 end-0 p-3` }, /* @__PURE__ */ React4.createElement("div", { className: `toast ${show ? "show" : ""} ${showExpandConsent ? "" : "minimize"}` }, /* @__PURE__ */ React4.createElement(LoadingStatus, { loading }), /* @__PURE__ */ React4.createElement("div", { className: "toast-body p-0" }, !showExpandConsent ? /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement("div", { className: "minimize-shield-wrapper position-relative" }, /* @__PURE__ */ React4.createElement(
8211
8723
  "img",
8212
8724
  {
8213
8725
  className: "cover-img position-absolute h-100 w-100 object-fit-cover",
8214
8726
  src: bg_default
8215
8727
  }
8216
- ), /* @__PURE__ */ React3.createElement(
8728
+ ), /* @__PURE__ */ React4.createElement(
8217
8729
  "div",
8218
8730
  {
8219
8731
  className: "minimize-shield",
8220
8732
  onClick: () => {
8221
8733
  setShowExpandConsent(true);
8734
+ sessionStorage.removeItem("aesirx-analytics-rejected");
8222
8735
  }
8223
8736
  },
8224
- /* @__PURE__ */ React3.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }),
8225
- "Shield of Privacy"
8226
- ))) : /* @__PURE__ */ React3.createElement(React3.Fragment, null, level ? /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement(TermsComponent, { level, handleLevel }, /* @__PURE__ */ React3.createElement(Form, { className: "mb-0" }, /* @__PURE__ */ React3.createElement(
8737
+ /* @__PURE__ */ React4.createElement("img", { src: privacy_default, alt: "Shield of Privacy" }),
8738
+ t("txt_shield_of_privacy")
8739
+ ))) : /* @__PURE__ */ React4.createElement(React4.Fragment, null, level ? /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement(TermsComponent, { level, handleLevel }, /* @__PURE__ */ React4.createElement(Form, { className: "mb-0" }, /* @__PURE__ */ React4.createElement(
8227
8740
  Form.Check,
8228
8741
  {
8229
8742
  checked: consents.includes(1),
@@ -8233,7 +8746,7 @@ var ConsentComponentApp = (props) => {
8233
8746
  onChange: handleChange,
8234
8747
  className: "d-none"
8235
8748
  }
8236
- ), /* @__PURE__ */ React3.createElement(
8749
+ ), /* @__PURE__ */ React4.createElement(
8237
8750
  Form.Check,
8238
8751
  {
8239
8752
  checked: consents.includes(2),
@@ -8243,33 +8756,33 @@ var ConsentComponentApp = (props) => {
8243
8756
  onChange: handleChange,
8244
8757
  className: "d-none"
8245
8758
  }
8246
- ), /* @__PURE__ */ React3.createElement("div", { className: "d-flex justify-content-end" }, loading === "done" ? /* @__PURE__ */ React3.createElement(React3.Fragment, null, level === 2 ? /* @__PURE__ */ React3.createElement("div", { className: "ssoBtnWrapper me-1 bg-success" }, /* @__PURE__ */ React3.createElement(
8759
+ ), /* @__PURE__ */ React4.createElement("div", { className: "d-flex justify-content-end" }, loading === "done" ? /* @__PURE__ */ React4.createElement(React4.Fragment, null, level === 2 ? /* @__PURE__ */ React4.createElement("div", { className: "ssoBtnWrapper me-1 bg-success" }, /* @__PURE__ */ React4.createElement(
8247
8760
  SSOButton,
8248
8761
  {
8249
8762
  className: "btn btn-success text-white d-flex align-items-center",
8250
- text: /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement("img", { src: yes_default, className: "me-1" }), "Yes, I consent"),
8763
+ text: /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement("img", { src: yes_default, className: "me-1" }), t("txt_yes_i_consent")),
8251
8764
  ssoState: "noscopes",
8252
8765
  onGetData
8253
8766
  }
8254
- )) : /* @__PURE__ */ React3.createElement(
8767
+ )) : /* @__PURE__ */ React4.createElement(
8255
8768
  Button2,
8256
8769
  {
8257
8770
  variant: "success",
8258
8771
  onClick: handleAgree,
8259
8772
  className: "me-1 text-white d-flex align-items-center"
8260
8773
  },
8261
- /* @__PURE__ */ React3.createElement("img", { src: yes_default, className: "me-1" }),
8262
- "Yes, I consent"
8263
- ), /* @__PURE__ */ React3.createElement(
8774
+ /* @__PURE__ */ React4.createElement("img", { src: yes_default, className: "me-1" }),
8775
+ t("txt_yes_i_consent")
8776
+ ), /* @__PURE__ */ React4.createElement(
8264
8777
  Button2,
8265
8778
  {
8266
8779
  variant: "success-outline",
8267
8780
  onClick: handleNotAllow,
8268
8781
  className: "d-flex align-items-center"
8269
8782
  },
8270
- /* @__PURE__ */ React3.createElement("img", { src: no_default, className: "me-1" }),
8271
- "Reject Consent"
8272
- )) : /* @__PURE__ */ React3.createElement(React3.Fragment, null))))) : /* @__PURE__ */ React3.createElement("div", { className: "p-4" }, /* @__PURE__ */ React3.createElement(
8783
+ /* @__PURE__ */ React4.createElement("img", { src: no_default, className: "me-1" }),
8784
+ t("txt_reject_consent")
8785
+ )) : /* @__PURE__ */ React4.createElement(React4.Fragment, null))))) : /* @__PURE__ */ React4.createElement("div", { className: "p-4" }, /* @__PURE__ */ React4.createElement(
8273
8786
  ContentLoader,
8274
8787
  {
8275
8788
  speed: 2,
@@ -8279,15 +8792,24 @@ var ConsentComponentApp = (props) => {
8279
8792
  backgroundColor: "#f3f3f3",
8280
8793
  foregroundColor: "#ecebeb"
8281
8794
  },
8282
- /* @__PURE__ */ React3.createElement("rect", { x: "0", y: "0", rx: "3", ry: "3", width: "67", height: "11" }),
8283
- /* @__PURE__ */ React3.createElement("rect", { x: "76", y: "0", rx: "3", ry: "3", width: "140", height: "11" }),
8284
- /* @__PURE__ */ React3.createElement("rect", { x: "127", y: "48", rx: "3", ry: "3", width: "53", height: "11" }),
8285
- /* @__PURE__ */ React3.createElement("rect", { x: "187", y: "48", rx: "3", ry: "3", width: "72", height: "11" }),
8286
- /* @__PURE__ */ React3.createElement("rect", { x: "18", y: "48", rx: "3", ry: "3", width: "100", height: "11" }),
8287
- /* @__PURE__ */ React3.createElement("rect", { x: "0", y: "71", rx: "3", ry: "3", width: "37", height: "11" }),
8288
- /* @__PURE__ */ React3.createElement("rect", { x: "18", y: "23", rx: "3", ry: "3", width: "140", height: "11" }),
8289
- /* @__PURE__ */ React3.createElement("rect", { x: "166", y: "23", rx: "3", ry: "3", width: "173", height: "11" })
8290
- )))))));
8795
+ /* @__PURE__ */ React4.createElement("rect", { x: "0", y: "0", rx: "3", ry: "3", width: "67", height: "11" }),
8796
+ /* @__PURE__ */ React4.createElement("rect", { x: "76", y: "0", rx: "3", ry: "3", width: "140", height: "11" }),
8797
+ /* @__PURE__ */ React4.createElement("rect", { x: "127", y: "48", rx: "3", ry: "3", width: "53", height: "11" }),
8798
+ /* @__PURE__ */ React4.createElement("rect", { x: "187", y: "48", rx: "3", ry: "3", width: "72", height: "11" }),
8799
+ /* @__PURE__ */ React4.createElement("rect", { x: "18", y: "48", rx: "3", ry: "3", width: "100", height: "11" }),
8800
+ /* @__PURE__ */ React4.createElement("rect", { x: "0", y: "71", rx: "3", ry: "3", width: "37", height: "11" }),
8801
+ /* @__PURE__ */ React4.createElement("rect", { x: "18", y: "23", rx: "3", ry: "3", width: "140", height: "11" }),
8802
+ /* @__PURE__ */ React4.createElement("rect", { x: "166", y: "23", rx: "3", ry: "3", width: "173", height: "11" })
8803
+ )))))), !account && (loading === "connect" || showConnectModal) && /* @__PURE__ */ React4.createElement(
8804
+ Connect_default,
8805
+ {
8806
+ isConnecting,
8807
+ handleOnConnect,
8808
+ activeConnectorError,
8809
+ activeConnectorType,
8810
+ activeConnector
8811
+ }
8812
+ ));
8291
8813
  };
8292
8814
  var Consent_default = ConsentComponent;
8293
8815
  export {