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