@plaidev/karte-action-sdk 1.1.230-28646468.175b835d → 1.1.230

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.
@@ -1335,7 +1335,9 @@ function showOnTime(props, show = NOOP) {
1335
1335
  /**
1336
1336
  * アクションテーブルに関連するコードの管理
1337
1337
  */
1338
- const DEFAULT_COLLECTION_ENDPOINT = 'https://action-table.karte.io/collection';
1338
+ const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__ === 'string'
1339
+ ? __FLYER_GEN_COLLECTION_API_ENDPOINT__
1340
+ : 'https://action-table.karte.io/collection';
1339
1341
  /**
1340
1342
  * アクションテーブルを管理するメソッドを取得する
1341
1343
  *
@@ -1346,7 +1348,7 @@ const DEFAULT_COLLECTION_ENDPOINT = 'https://action-table.karte.io/collection';
1346
1348
  * @public
1347
1349
  */
1348
1350
  function collection$1(config) {
1349
- const endpoint = config.collection_endpoint || DEFAULT_COLLECTION_ENDPOINT;
1351
+ const endpoint = config.endpoint || DEFAULT_COLLECTION_ENDPOINT;
1350
1352
  const api_key = config.api_key;
1351
1353
  const table = config.table;
1352
1354
  return {
@@ -1428,7 +1430,7 @@ function request(url, data, cb) {
1428
1430
  });
1429
1431
  }
1430
1432
  /** @internal */
1431
- const loadActionTableRow = async (config, data, api_key, collection_endpoint) => new Promise((resolve, reject) => {
1433
+ const loadActionTableRow = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1432
1434
  const defaultValue = config.query.default_value ?? null;
1433
1435
  const key = data[config.query.key] ?? null;
1434
1436
  if (key == null) {
@@ -1438,7 +1440,7 @@ const loadActionTableRow = async (config, data, api_key, collection_endpoint) =>
1438
1440
  }
1439
1441
  return reject('key is not found.');
1440
1442
  }
1441
- return collection$1({ collection_endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => {
1443
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => {
1442
1444
  if (err) {
1443
1445
  if (defaultValue != null) {
1444
1446
  return resolve(defaultValue);
@@ -1458,7 +1460,7 @@ const loadActionTableRow = async (config, data, api_key, collection_endpoint) =>
1458
1460
  });
1459
1461
  });
1460
1462
  /** @internal */
1461
- const loadActionTableRows = async (config, data, api_key, collection_endpoint) => new Promise((resolve, reject) => {
1463
+ const loadActionTableRows = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1462
1464
  if (config.query.keys == null) {
1463
1465
  console.warn('key is not defined.');
1464
1466
  return reject('key is not defined.');
@@ -1481,7 +1483,7 @@ const loadActionTableRows = async (config, data, api_key, collection_endpoint) =
1481
1483
  }
1482
1484
  return reject('key is not found.');
1483
1485
  }
1484
- return collection$1({ collection_endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => {
1486
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => {
1485
1487
  if (err) {
1486
1488
  if (defaultValue != null) {
1487
1489
  return resolve(defaultValue);
@@ -1501,7 +1503,7 @@ const loadActionTableRows = async (config, data, api_key, collection_endpoint) =
1501
1503
  });
1502
1504
  });
1503
1505
  /** @internal */
1504
- const loadActionTableQuery = async (config, data, api_key, collection_endpoint) => new Promise((resolve, reject) => {
1506
+ const loadActionTableQuery = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1505
1507
  if (config.query.params == null) {
1506
1508
  console.warn('key is not defined.');
1507
1509
  return reject('key is not defined.');
@@ -1523,7 +1525,7 @@ const loadActionTableQuery = async (config, data, api_key, collection_endpoint)
1523
1525
  }
1524
1526
  return reject('key is not found.');
1525
1527
  }
1526
- return collection$1({ collection_endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, params, null, (err, data) => {
1528
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, params, null, (err, data) => {
1527
1529
  if (err) {
1528
1530
  if (defaultValue != null) {
1529
1531
  return resolve(defaultValue);
@@ -1543,8 +1545,8 @@ const loadActionTableQuery = async (config, data, api_key, collection_endpoint)
1543
1545
  });
1544
1546
  });
1545
1547
  /** @internal */
1546
- const loadActionTable = async (config, data, api_key, collection_endpoint) => {
1547
- console.debug('[debug] loadActionTable', isPreview(), api_key, collection_endpoint, JSON.stringify(config));
1548
+ const loadActionTable = async (config, data, api_key, endpoint) => {
1549
+ console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
1548
1550
  const results = config.map(c => c.preview_value)
1549
1551
  ;
1550
1552
  return config.reduce((acc, c, i) => {
@@ -1556,8 +1558,8 @@ const loadActionTable = async (config, data, api_key, collection_endpoint) => {
1556
1558
  }, {});
1557
1559
  };
1558
1560
  /** @internal */
1559
- async function setupActionTable(localVariablesQuery, data, apiKey, collection_endpoint) {
1560
- const result = await loadActionTable(localVariablesQuery, data, apiKey, collection_endpoint);
1561
+ async function setupActionTable(localVariablesQuery, data, apiKey) {
1562
+ const result = await loadActionTable(localVariablesQuery, data, apiKey);
1561
1563
  let success = false;
1562
1564
  if (Object.keys(result).length === localVariablesQuery.length) {
1563
1565
  setVariables(result);
@@ -1773,7 +1775,7 @@ function createModal(App, options = {
1773
1775
  variables: {},
1774
1776
  localVariablesQuery: undefined,
1775
1777
  karteTemplate: {},
1776
- context: { api_key: '', collection_endpoint: undefined },
1778
+ context: { api_key: '' },
1777
1779
  }) {
1778
1780
  let app = null;
1779
1781
  const data = getVariables();
@@ -1880,7 +1882,7 @@ function createModal(App, options = {
1880
1882
  initActionTable(options.localVariablesQuery);
1881
1883
  let actionTablePromise = null;
1882
1884
  if (options.localVariablesQuery && data.api_key) {
1883
- actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key, options.context.collection_endpoint);
1885
+ actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key);
1884
1886
  }
1885
1887
  // NOTE: onCreateより前にListenする必要がある
1886
1888
  window.addEventListener(ACTION_SHOW_EVENT, handleShow);
@@ -2055,14 +2057,14 @@ async function runScript$1(options = {
2055
2057
  variables: {},
2056
2058
  localVariablesQuery: undefined,
2057
2059
  karteTemplate: {},
2058
- context: { api_key: '', collection_endpoint: undefined },
2060
+ context: { api_key: '' },
2059
2061
  }) {
2060
2062
  if (!options.onCreate)
2061
2063
  return;
2062
2064
  let data = getVariables();
2063
2065
  initialize({ send: options.send, initialState: data.initial_state });
2064
2066
  initActionTable(options.localVariablesQuery);
2065
- const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key, options.context.collection_endpoint);
2067
+ const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
2066
2068
  if (!success)
2067
2069
  return;
2068
2070
  // Action Tableの取得結果を反映する
@@ -2148,15 +2150,6 @@ async function loadGlobalStyle(href) {
2148
2150
  *
2149
2151
  * アクションのCreate, Destroyの状態はここで管理する。
2150
2152
  */
2151
- const emptyOptions = {
2152
- send: () => { },
2153
- publish: () => { },
2154
- props: {},
2155
- variables: {},
2156
- localVariablesQuery: undefined,
2157
- karteTemplate: {},
2158
- context: { api_key: '', collection_endpoint: undefined },
2159
- };
2160
2153
  /**
2161
2154
  * アクションを作成する
2162
2155
  *
@@ -2167,9 +2160,15 @@ const emptyOptions = {
2167
2160
  *
2168
2161
  * @public
2169
2162
  */
2170
- function create(App, options) {
2171
- // TSの型検査が効かない場所やエラーを無視している箇所があるため、念の為
2172
- options = { ...emptyOptions, ...options };
2163
+ function create(App, options = {
2164
+ send: () => { },
2165
+ publish: () => { },
2166
+ props: {},
2167
+ variables: {},
2168
+ localVariablesQuery: undefined,
2169
+ karteTemplate: {},
2170
+ context: { api_key: '' },
2171
+ }) {
2173
2172
  setVariables({
2174
2173
  ...options.props,
2175
2174
  ...options.variables,
@@ -2197,7 +2196,6 @@ function create(App, options) {
2197
2196
  setSystem({
2198
2197
  // @ts-ignore
2199
2198
  apiKey: data.api_key || null,
2200
- collection_endpoint: options.context.collection_endpoint,
2201
2199
  shortenId: data.shorten_id || null,
2202
2200
  campaignId: data.campaign_id || null,
2203
2201
  });
@@ -2753,11 +2751,7 @@ const storage = {
2753
2751
  function collection(table) {
2754
2752
  const systemConfig = getSystem();
2755
2753
  const collectionName = table.replace(/^v2\//, '');
2756
- return collection$1({
2757
- api_key: systemConfig.apiKey || 'mock',
2758
- collection_endpoint: systemConfig.collection_endpoint,
2759
- table: collectionName,
2760
- });
2754
+ return collection$1({ api_key: systemConfig.apiKey || 'mock', table: collectionName });
2761
2755
  }
2762
2756
 
2763
2757
  var widget = /*#__PURE__*/Object.freeze({
@@ -3011,7 +3005,7 @@ class State extends SvelteComponent {
3011
3005
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
3012
3006
 
3013
3007
  function add_css$w(target) {
3014
- append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
3008
+ append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
3015
3009
  }
3016
3010
 
3017
3011
  // (23:0) {#if $state === path}
@@ -3038,7 +3032,7 @@ function create_if_block$c(ctx) {
3038
3032
  },
3039
3033
  h() {
3040
3034
  attr(div, "data-state-path", /*path*/ ctx[0]);
3041
- attr(div, "class", "state-item svelte-2qb6dm");
3035
+ attr(div, "class", "state-item svelte-1amihue");
3042
3036
  },
3043
3037
  m(target, anchor) {
3044
3038
  insert_hydration(target, div, anchor);
@@ -3305,7 +3299,7 @@ function customAnimation(node, { transforms, animationStyle, delay = 0, duration
3305
3299
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
3306
3300
 
3307
3301
  function add_css$v(target) {
3308
- append_styles(target, "svelte-1d4fta", ".background.svelte-1d4fta{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
3302
+ append_styles(target, "svelte-g6ucc2", ".background.svelte-g6ucc2{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
3309
3303
  }
3310
3304
 
3311
3305
  // (14:0) {#if backgroundOverlay}
@@ -3326,7 +3320,7 @@ function create_if_block$b(ctx) {
3326
3320
  this.h();
3327
3321
  },
3328
3322
  h() {
3329
- attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
3323
+ attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"));
3330
3324
  },
3331
3325
  m(target, anchor) {
3332
3326
  insert_hydration(target, div, anchor);
@@ -3337,7 +3331,7 @@ function create_if_block$b(ctx) {
3337
3331
  }
3338
3332
  },
3339
3333
  p(ctx, dirty) {
3340
- if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
3334
+ if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"))) {
3341
3335
  attr(div, "class", div_class_value);
3342
3336
  }
3343
3337
  },
@@ -3447,7 +3441,7 @@ function checkStopPropagation(eventName, handler) {
3447
3441
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3448
3442
 
3449
3443
  function add_css$u(target) {
3450
- append_styles(target, "svelte-15k4deh", ".button.svelte-15k4deh{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-15k4deh:link,.button.svelte-15k4deh:visited,.button.svelte-15k4deh:active,.button.svelte-15k4deh:hover{color:inherit}");
3444
+ append_styles(target, "svelte-1kmu8zp", ".button.svelte-1kmu8zp{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1kmu8zp:link,.button.svelte-1kmu8zp:visited,.button.svelte-1kmu8zp:active,.button.svelte-1kmu8zp:hover{color:inherit}");
3451
3445
  }
3452
3446
 
3453
3447
  // (50:0) {:else}
@@ -3486,7 +3480,7 @@ function create_else_block$4(ctx) {
3486
3480
  },
3487
3481
  h() {
3488
3482
  set_attributes(button, button_data);
3489
- toggle_class(button, "svelte-15k4deh", true);
3483
+ toggle_class(button, "svelte-1kmu8zp", true);
3490
3484
  },
3491
3485
  m(target, anchor) {
3492
3486
  insert_hydration(target, button, anchor);
@@ -3525,7 +3519,7 @@ function create_else_block$4(ctx) {
3525
3519
  dataAttrStopPropagation('click')
3526
3520
  ]));
3527
3521
 
3528
- toggle_class(button, "svelte-15k4deh", true);
3522
+ toggle_class(button, "svelte-1kmu8zp", true);
3529
3523
  },
3530
3524
  i(local) {
3531
3525
  if (current) return;
@@ -3566,7 +3560,7 @@ function create_if_block_2$1(ctx) {
3566
3560
  this.h();
3567
3561
  },
3568
3562
  h() {
3569
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
3563
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1kmu8zp"));
3570
3564
  attr(div, "style", /*style*/ ctx[1]);
3571
3565
  },
3572
3566
  m(target, anchor) {
@@ -3666,7 +3660,7 @@ function create_if_block_1$2(ctx) {
3666
3660
  },
3667
3661
  h() {
3668
3662
  set_attributes(a, a_data);
3669
- toggle_class(a, "svelte-15k4deh", true);
3663
+ toggle_class(a, "svelte-1kmu8zp", true);
3670
3664
  },
3671
3665
  m(target, anchor) {
3672
3666
  insert_hydration(target, a, anchor);
@@ -3708,7 +3702,7 @@ function create_if_block_1$2(ctx) {
3708
3702
  dataAttrStopPropagation('click')
3709
3703
  ]));
3710
3704
 
3711
- toggle_class(a, "svelte-15k4deh", true);
3705
+ toggle_class(a, "svelte-1kmu8zp", true);
3712
3706
  },
3713
3707
  i(local) {
3714
3708
  if (current) return;
@@ -3749,7 +3743,7 @@ function create_if_block$a(ctx) {
3749
3743
  this.h();
3750
3744
  },
3751
3745
  h() {
3752
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
3746
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1kmu8zp"));
3753
3747
  attr(div, "style", /*style*/ ctx[1]);
3754
3748
  },
3755
3749
  m(target, anchor) {
@@ -3957,7 +3951,7 @@ let Button$1 = class Button extends SvelteComponent {
3957
3951
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3958
3952
 
3959
3953
  function add_css$t(target) {
3960
- append_styles(target, "svelte-1ijkyzl", ".modal.svelte-1ijkyzl{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1ijkyzl > .button{flex:auto;display:flex}.close.svelte-1ijkyzl{position:absolute;top:0;right:0}.close.svelte-1ijkyzl > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1ijkyzl > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1ijkyzl{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1ijkyzl{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1ijkyzl{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
3954
+ append_styles(target, "svelte-1i2vo31", ".modal.svelte-1i2vo31{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1i2vo31 > .button{flex:auto;display:flex}.close.svelte-1i2vo31{position:absolute;top:0;right:0}.close.svelte-1i2vo31 > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1i2vo31 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1i2vo31{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1i2vo31{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1i2vo31{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
3961
3955
  }
3962
3956
 
3963
3957
  // (277:0) {:else}
@@ -4132,7 +4126,7 @@ function create_if_block$9(ctx) {
4132
4126
  this.h();
4133
4127
  },
4134
4128
  h() {
4135
- attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"));
4129
+ attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"));
4136
4130
  attr(div, "role", "dialog");
4137
4131
  attr(div, "aria-modal", "true");
4138
4132
  attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
@@ -4156,7 +4150,7 @@ function create_if_block$9(ctx) {
4156
4150
 
4157
4151
  button.$set(button_changes);
4158
4152
 
4159
- if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"))) {
4153
+ if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"))) {
4160
4154
  attr(div, "class", div_class_value);
4161
4155
  }
4162
4156
  },
@@ -4220,7 +4214,7 @@ function create_if_block_1$1(ctx) {
4220
4214
  this.h();
4221
4215
  },
4222
4216
  h() {
4223
- attr(div, "class", "close svelte-1ijkyzl");
4217
+ attr(div, "class", "close svelte-1i2vo31");
4224
4218
  set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
4225
4219
  },
4226
4220
  m(target, anchor) {
@@ -4345,7 +4339,7 @@ function create_default_slot$6(ctx) {
4345
4339
  this.h();
4346
4340
  },
4347
4341
  h() {
4348
- attr(div, "class", "modal-content svelte-1ijkyzl");
4342
+ attr(div, "class", "modal-content svelte-1i2vo31");
4349
4343
  attr(div, "style", /*_style*/ ctx[5]);
4350
4344
  },
4351
4345
  m(target, anchor) {
@@ -4982,7 +4976,7 @@ class Grid extends SvelteComponent {
4982
4976
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
4983
4977
 
4984
4978
  function add_css$s(target) {
4985
- append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
4979
+ append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
4986
4980
  }
4987
4981
 
4988
4982
  function create_fragment$_(ctx) {
@@ -5016,8 +5010,8 @@ function create_fragment$_(ctx) {
5016
5010
  this.h();
5017
5011
  },
5018
5012
  h() {
5019
- attr(div0, "class", "grid-item-inner svelte-n7kdl3");
5020
- attr(div1, "class", "grid-item svelte-n7kdl3");
5013
+ attr(div0, "class", "grid-item-inner svelte-1cryhmb");
5014
+ attr(div1, "class", "grid-item svelte-1cryhmb");
5021
5015
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
5022
5016
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
5023
5017
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -5339,7 +5333,7 @@ class RenderText extends SvelteComponent {
5339
5333
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
5340
5334
 
5341
5335
  function add_css$r(target) {
5342
- append_styles(target, "svelte-9ixs0b", ".text-element-wrapper.svelte-9ixs0b.svelte-9ixs0b{position:relative;height:100%}.text-element.svelte-9ixs0b.svelte-9ixs0b{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden;font-size:12px;line-height:1.5}.text-link-element.svelte-9ixs0b.svelte-9ixs0b{text-decoration:none;color:inherit}.text-element-inner.svelte-9ixs0b.svelte-9ixs0b{width:100%;height:auto}.text-direction-vertical.svelte-9ixs0b.svelte-9ixs0b{writing-mode:vertical-rl}.text-direction-vertical.svelte-9ixs0b .text-element-inner.svelte-9ixs0b{width:auto;height:100%}.tooltip.svelte-9ixs0b.svelte-9ixs0b{display:none;position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);color:#fff;background-color:#3d4948;white-space:nowrap;padding:4px 8px 4px 8px;border-radius:4px;font-size:12px;z-index:2147483647}.tooltip.svelte-9ixs0b.svelte-9ixs0b:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-9ixs0b.svelte-9ixs0b{display:block}.tooltip-error.svelte-9ixs0b.svelte-9ixs0b{background-color:#c00}.tooltip-error.svelte-9ixs0b.svelte-9ixs0b:before{border-bottom:7px solid #c00}");
5336
+ append_styles(target, "svelte-vz6867", ".text-element-wrapper.svelte-vz6867.svelte-vz6867{position:relative;height:100%}.text-element.svelte-vz6867.svelte-vz6867{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden;font-size:12px;line-height:1.5}.text-link-element.svelte-vz6867.svelte-vz6867{text-decoration:none;color:inherit}.text-element-inner.svelte-vz6867.svelte-vz6867{width:100%;height:auto}.text-direction-vertical.svelte-vz6867.svelte-vz6867{writing-mode:vertical-rl}.text-direction-vertical.svelte-vz6867 .text-element-inner.svelte-vz6867{width:auto;height:100%}.tooltip.svelte-vz6867.svelte-vz6867{display:none;position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);color:#fff;background-color:#3d4948;white-space:nowrap;padding:4px 8px 4px 8px;border-radius:4px;font-size:12px;z-index:2147483647}.tooltip.svelte-vz6867.svelte-vz6867:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-vz6867.svelte-vz6867{display:block}.tooltip-error.svelte-vz6867.svelte-vz6867{background-color:#c00}.tooltip-error.svelte-vz6867.svelte-vz6867:before{border-bottom:7px solid #c00}");
5343
5337
  }
5344
5338
 
5345
5339
  // (94:2) {:else}
@@ -5369,8 +5363,8 @@ function create_else_block$1(ctx) {
5369
5363
  this.h();
5370
5364
  },
5371
5365
  h() {
5372
- attr(div0, "class", "text-element-inner svelte-9ixs0b");
5373
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
5366
+ attr(div0, "class", "text-element-inner svelte-vz6867");
5367
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
5374
5368
  attr(div1, "style", /*style*/ ctx[5]);
5375
5369
  },
5376
5370
  m(target, anchor) {
@@ -5384,7 +5378,7 @@ function create_else_block$1(ctx) {
5384
5378
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
5385
5379
  rendertext.$set(rendertext_changes);
5386
5380
 
5387
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
5381
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
5388
5382
  attr(div1, "class", div1_class_value);
5389
5383
  }
5390
5384
 
@@ -5459,12 +5453,12 @@ function create_if_block$7(ctx) {
5459
5453
  this.h();
5460
5454
  },
5461
5455
  h() {
5462
- attr(div0, "class", "text-element-inner svelte-9ixs0b");
5456
+ attr(div0, "class", "text-element-inner svelte-vz6867");
5463
5457
  attr(a, "href", '');
5464
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
5458
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
5465
5459
  attr(a, "style", /*style*/ ctx[5]);
5466
- attr(div1, "class", "tooltip svelte-9ixs0b");
5467
- attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
5460
+ attr(div1, "class", "tooltip svelte-vz6867");
5461
+ attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
5468
5462
  },
5469
5463
  m(target, anchor) {
5470
5464
  insert_hydration(target, a, anchor);
@@ -5490,7 +5484,7 @@ function create_if_block$7(ctx) {
5490
5484
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
5491
5485
  rendertext.$set(rendertext_changes);
5492
5486
 
5493
- if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
5487
+ if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
5494
5488
  attr(a, "class", a_class_value);
5495
5489
  }
5496
5490
 
@@ -5552,7 +5546,7 @@ function create_fragment$Y(ctx) {
5552
5546
  this.h();
5553
5547
  },
5554
5548
  h() {
5555
- attr(div, "class", "text-element-wrapper svelte-9ixs0b");
5549
+ attr(div, "class", "text-element-wrapper svelte-vz6867");
5556
5550
  },
5557
5551
  m(target, anchor) {
5558
5552
  insert_hydration(target, div, anchor);
@@ -5718,7 +5712,7 @@ class TextElement extends SvelteComponent {
5718
5712
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
5719
5713
 
5720
5714
  function add_css$q(target) {
5721
- append_styles(target, "svelte-1vg84sc", ".text-button-element.svelte-1vg84sc{width:100%;height:100%}.text-button-element.svelte-1vg84sc > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#33403e;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-1vg84sc > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-1vg84sc > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-1vg84sc > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5715
+ append_styles(target, "svelte-ujdxfc", ".text-button-element.svelte-ujdxfc{width:100%;height:100%}.text-button-element.svelte-ujdxfc > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#33403e;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-ujdxfc > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-ujdxfc > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-ujdxfc > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5722
5716
  }
5723
5717
 
5724
5718
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5787,7 +5781,7 @@ function create_fragment$X(ctx) {
5787
5781
  this.h();
5788
5782
  },
5789
5783
  h() {
5790
- attr(div, "class", "text-button-element svelte-1vg84sc");
5784
+ attr(div, "class", "text-button-element svelte-ujdxfc");
5791
5785
  },
5792
5786
  m(target, anchor) {
5793
5787
  insert_hydration(target, div, anchor);
@@ -5879,7 +5873,7 @@ class TextButtonElement extends SvelteComponent {
5879
5873
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5880
5874
 
5881
5875
  function add_css$p(target) {
5882
- append_styles(target, "svelte-t6tu0e", ".image-element.svelte-t6tu0e{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-t6tu0e > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image-element.svelte-t6tu0e > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-t6tu0e > .button:not(._disabled):hover,.image-element.transport.svelte-t6tu0e > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-t6tu0e{width:100%;height:100%}");
5876
+ append_styles(target, "svelte-1alkh1m", ".image-element.svelte-1alkh1m{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1alkh1m > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image-element.svelte-1alkh1m > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1alkh1m > .button:not(._disabled):hover,.image-element.transport.svelte-1alkh1m > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-1alkh1m{width:100%;height:100%}");
5883
5877
  }
5884
5878
 
5885
5879
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -5907,7 +5901,7 @@ function create_default_slot$4(ctx) {
5907
5901
  this.h();
5908
5902
  },
5909
5903
  h() {
5910
- attr(img, "class", "image svelte-t6tu0e");
5904
+ attr(img, "class", "image svelte-1alkh1m");
5911
5905
  attr(img, "loading", "lazy");
5912
5906
  attr(img, "width", "auto");
5913
5907
  attr(img, "height", "auto");
@@ -5979,7 +5973,7 @@ function create_fragment$W(ctx) {
5979
5973
  this.h();
5980
5974
  },
5981
5975
  h() {
5982
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
5976
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
5983
5977
  },
5984
5978
  m(target, anchor) {
5985
5979
  insert_hydration(target, div, anchor);
@@ -5998,7 +5992,7 @@ function create_fragment$W(ctx) {
5998
5992
 
5999
5993
  button.$set(button_changes);
6000
5994
 
6001
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
5995
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
6002
5996
  attr(div, "class", div_class_value);
6003
5997
  }
6004
5998
  },
@@ -6070,7 +6064,7 @@ class ImageElement extends SvelteComponent {
6070
6064
  /* src/components/List.svelte generated by Svelte v3.53.1 */
6071
6065
 
6072
6066
  function add_css$o(target) {
6073
- append_styles(target, "svelte-aquv6z", ".list.svelte-aquv6z{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
6067
+ append_styles(target, "svelte-1t8r9z", ".list.svelte-1t8r9z{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
6074
6068
  }
6075
6069
 
6076
6070
  function create_fragment$V(ctx) {
@@ -6093,7 +6087,7 @@ function create_fragment$V(ctx) {
6093
6087
  this.h();
6094
6088
  },
6095
6089
  h() {
6096
- attr(div, "class", "list svelte-aquv6z");
6090
+ attr(div, "class", "list svelte-1t8r9z");
6097
6091
  attr(div, "style", /*style*/ ctx[0]);
6098
6092
  },
6099
6093
  m(target, anchor) {
@@ -6227,7 +6221,7 @@ class List extends SvelteComponent {
6227
6221
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
6228
6222
 
6229
6223
  function add_css$n(target) {
6230
- append_styles(target, "svelte-9n97pe", ".list-item.svelte-9n97pe{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-9n97pe > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6224
+ append_styles(target, "svelte-1lbw8v2", ".list-item.svelte-1lbw8v2{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-1lbw8v2 > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6231
6225
  }
6232
6226
 
6233
6227
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -6310,7 +6304,7 @@ function create_fragment$U(ctx) {
6310
6304
  this.h();
6311
6305
  },
6312
6306
  h() {
6313
- attr(div, "class", "list-item svelte-9n97pe");
6307
+ attr(div, "class", "list-item svelte-1lbw8v2");
6314
6308
  attr(div, "style", /*listItemStyle*/ ctx[3]);
6315
6309
  },
6316
6310
  m(target, anchor) {
@@ -6436,7 +6430,7 @@ class ListItem extends SvelteComponent {
6436
6430
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
6437
6431
 
6438
6432
  function add_css$m(target) {
6439
- append_styles(target, "svelte-wocq4p", ".embed.svelte-wocq4p{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-wocq4p iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6433
+ append_styles(target, "svelte-w6jkzh", ".embed.svelte-w6jkzh{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-w6jkzh iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6440
6434
  }
6441
6435
 
6442
6436
  function create_fragment$T(ctx) {
@@ -6454,7 +6448,7 @@ function create_fragment$T(ctx) {
6454
6448
  this.h();
6455
6449
  },
6456
6450
  h() {
6457
- attr(div, "class", "embed svelte-wocq4p");
6451
+ attr(div, "class", "embed svelte-w6jkzh");
6458
6452
  attr(div, "style", /*_style*/ ctx[1]);
6459
6453
  },
6460
6454
  m(target, anchor) {
@@ -6497,7 +6491,7 @@ class EmbedElement extends SvelteComponent {
6497
6491
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
6498
6492
 
6499
6493
  function add_css$l(target) {
6500
- append_styles(target, "svelte-vikz49", ".embed.svelte-vikz49{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-vikz49 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6494
+ append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6501
6495
  }
6502
6496
 
6503
6497
  function create_fragment$S(ctx) {
@@ -6520,7 +6514,7 @@ function create_fragment$S(ctx) {
6520
6514
  },
6521
6515
  h() {
6522
6516
  attr(div0, "class", "karte-player");
6523
- attr(div1, "class", "embed svelte-vikz49");
6517
+ attr(div1, "class", "embed svelte-ljxq7x");
6524
6518
  attr(div1, "style", /*_style*/ ctx[0]);
6525
6519
  },
6526
6520
  m(target, anchor) {
@@ -6862,7 +6856,7 @@ class MovieYouTubeElement extends SvelteComponent {
6862
6856
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6863
6857
 
6864
6858
  function add_css$k(target) {
6865
- append_styles(target, "svelte-vikz49", ".embed.svelte-vikz49{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-vikz49 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6859
+ append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6866
6860
  }
6867
6861
 
6868
6862
  function create_fragment$R(ctx) {
@@ -6885,7 +6879,7 @@ function create_fragment$R(ctx) {
6885
6879
  },
6886
6880
  h() {
6887
6881
  attr(div0, "class", "karte-player");
6888
- attr(div1, "class", "embed svelte-vikz49");
6882
+ attr(div1, "class", "embed svelte-ljxq7x");
6889
6883
  attr(div1, "style", /*_style*/ ctx[0]);
6890
6884
  },
6891
6885
  m(target, anchor) {
@@ -7069,7 +7063,7 @@ class MovieVimeoElement extends SvelteComponent {
7069
7063
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
7070
7064
 
7071
7065
  function add_css$j(target) {
7072
- append_styles(target, "svelte-zxvkkc", ".textarea-wrapper.svelte-zxvkkc{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-zxvkkc{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-zxvkkc::placeholder{color:var(--placeholder-color)}.textarea.svelte-zxvkkc:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
7066
+ append_styles(target, "svelte-1fjy5oo", ".textarea-wrapper.svelte-1fjy5oo{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-1fjy5oo{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-1fjy5oo::placeholder{color:var(--placeholder-color)}.textarea.svelte-1fjy5oo:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
7073
7067
  }
7074
7068
 
7075
7069
  function create_fragment$Q(ctx) {
@@ -7099,12 +7093,12 @@ function create_fragment$Q(ctx) {
7099
7093
  this.h();
7100
7094
  },
7101
7095
  h() {
7102
- attr(textarea, "class", "textarea svelte-zxvkkc");
7096
+ attr(textarea, "class", "textarea svelte-1fjy5oo");
7103
7097
  textarea.value = /*$value*/ ctx[4];
7104
7098
  textarea.required = /*required*/ ctx[1];
7105
7099
  attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
7106
7100
  attr(textarea, "style", /*style*/ ctx[3]);
7107
- attr(div, "class", "textarea-wrapper svelte-zxvkkc");
7101
+ attr(div, "class", "textarea-wrapper svelte-1fjy5oo");
7108
7102
  attr(div, "style", /*styleVariables*/ ctx[2]);
7109
7103
  },
7110
7104
  m(target, anchor) {
@@ -7256,7 +7250,7 @@ class FormTextarea extends SvelteComponent {
7256
7250
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
7257
7251
 
7258
7252
  function add_css$i(target) {
7259
- append_styles(target, "svelte-17s08g", ".radio-buttons.svelte-17s08g{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-17s08g{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-17s08g{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-17s08g:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18,160,160,.08),0px 1px 4px -1px rgba(18,160,160,.24)}.radio-button-text.svelte-17s08g{margin-left:0.5em}");
7253
+ append_styles(target, "svelte-1ntb6j8", ".radio-buttons.svelte-1ntb6j8{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-1ntb6j8{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-1ntb6j8{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-1ntb6j8:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18,160,160,.08),0px 1px 4px -1px rgba(18,160,160,.24)}.radio-button-text.svelte-1ntb6j8{margin-left:0.5em}");
7260
7254
  }
7261
7255
 
7262
7256
  function get_each_context$5(ctx, list, i) {
@@ -7313,14 +7307,14 @@ function create_each_block$5(ctx) {
7313
7307
  },
7314
7308
  h() {
7315
7309
  attr(input, "type", "radio");
7316
- attr(input, "class", "radio-button-input svelte-17s08g");
7310
+ attr(input, "class", "radio-button-input svelte-1ntb6j8");
7317
7311
  attr(input, "style", /*buttonStyle*/ ctx[5]);
7318
7312
  attr(input, "name", /*name*/ ctx[0]);
7319
7313
  input.value = input_value_value = /*option*/ ctx[17];
7320
7314
  input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
7321
- attr(span, "class", "radio-button-text svelte-17s08g");
7315
+ attr(span, "class", "radio-button-text svelte-1ntb6j8");
7322
7316
  attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
7323
- attr(label, "class", "radio-button svelte-17s08g");
7317
+ attr(label, "class", "radio-button svelte-1ntb6j8");
7324
7318
  },
7325
7319
  m(target, anchor) {
7326
7320
  insert_hydration(target, label, anchor);
@@ -7399,7 +7393,7 @@ function create_fragment$P(ctx) {
7399
7393
  this.h();
7400
7394
  },
7401
7395
  h() {
7402
- attr(div, "class", "radio-buttons svelte-17s08g");
7396
+ attr(div, "class", "radio-buttons svelte-1ntb6j8");
7403
7397
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7404
7398
  },
7405
7399
  m(target, anchor) {
@@ -7568,7 +7562,7 @@ class FormRadioButtons extends SvelteComponent {
7568
7562
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
7569
7563
 
7570
7564
  function add_css$h(target) {
7571
- append_styles(target, "svelte-t9ynyj", ".select.svelte-t9ynyj{width:100%;height:100%}.select-select.svelte-t9ynyj{position:relative;appearance:none;width:100%;height:100%;cursor:pointer;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:0 0 0 10px;font-size:12px;line-height:1.5}.select-select.svelte-t9ynyj:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-t9ynyj{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
7565
+ append_styles(target, "svelte-iejizj", ".select.svelte-iejizj{width:100%;height:100%}.select-select.svelte-iejizj{position:relative;appearance:none;width:100%;height:100%;cursor:pointer;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:0 0 0 10px;font-size:12px;line-height:1.5}.select-select.svelte-iejizj:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-iejizj{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
7572
7566
  }
7573
7567
 
7574
7568
  function get_each_context$4(ctx, list, i) {
@@ -7739,10 +7733,10 @@ function create_fragment$O(ctx) {
7739
7733
  this.h();
7740
7734
  },
7741
7735
  h() {
7742
- attr(select, "class", "select-select svelte-t9ynyj");
7736
+ attr(select, "class", "select-select svelte-iejizj");
7743
7737
  attr(select, "style", /*style*/ ctx[3]);
7744
- attr(div0, "class", "select-icon svelte-t9ynyj");
7745
- attr(div1, "class", "select svelte-t9ynyj");
7738
+ attr(div0, "class", "select-icon svelte-iejizj");
7739
+ attr(div1, "class", "select svelte-iejizj");
7746
7740
  attr(div1, "style", /*styleVariables*/ ctx[2]);
7747
7741
  },
7748
7742
  m(target, anchor) {
@@ -7944,7 +7938,7 @@ class FormSelect extends SvelteComponent {
7944
7938
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
7945
7939
 
7946
7940
  function add_css$g(target) {
7947
- append_styles(target, "svelte-1p65cg8", ".check-boxes.svelte-1p65cg8.svelte-1p65cg8{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-1p65cg8.svelte-1p65cg8{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-1p65cg8.svelte-1p65cg8{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-1p65cg8.svelte-1p65cg8{display:inline-flex;background-color:var(--color-main);width:var(--size);height:var(--size);border-radius:calc(var(--size) / 4);justify-content:center;align-items:center;flex:none}.check-box-icon.svelte-1p65cg8.svelte-1p65cg8{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-1p65cg8.svelte-1p65cg8:after{content:'';display:block;box-sizing:border-box;width:45%;height:91%;transform:translate(60%, -8%) rotate(45deg);border-style:none solid solid none;border-width:2px;border-color:var(--color-sub)}.check-box-check._checked.svelte-1p65cg8.svelte-1p65cg8{background-color:var(--color-main-active)}.check-box-check._checked.svelte-1p65cg8 .check-box-icon.svelte-1p65cg8:after{border-color:var(--color-sub-active)}.check-box-text.svelte-1p65cg8.svelte-1p65cg8{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
7941
+ append_styles(target, "svelte-2pz1us", ".check-boxes.svelte-2pz1us.svelte-2pz1us{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-2pz1us.svelte-2pz1us{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-2pz1us.svelte-2pz1us{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-2pz1us.svelte-2pz1us{display:inline-flex;background-color:var(--color-main);width:var(--size);height:var(--size);border-radius:calc(var(--size) / 4);justify-content:center;align-items:center;flex:none}.check-box-icon.svelte-2pz1us.svelte-2pz1us{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-2pz1us.svelte-2pz1us:after{content:'';display:block;box-sizing:border-box;width:45%;height:91%;transform:translate(60%, -8%) rotate(45deg);border-style:none solid solid none;border-width:2px;border-color:var(--color-sub)}.check-box-check._checked.svelte-2pz1us.svelte-2pz1us{background-color:var(--color-main-active)}.check-box-check._checked.svelte-2pz1us .check-box-icon.svelte-2pz1us:after{border-color:var(--color-sub-active)}.check-box-text.svelte-2pz1us.svelte-2pz1us{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
7948
7942
  }
7949
7943
 
7950
7944
  function get_each_context$3(ctx, list, i) {
@@ -8006,19 +8000,19 @@ function create_each_block$3(ctx) {
8006
8000
  this.h();
8007
8001
  },
8008
8002
  h() {
8009
- attr(input, "class", "check-box-input svelte-1p65cg8");
8003
+ attr(input, "class", "check-box-input svelte-2pz1us");
8010
8004
  attr(input, "type", "checkbox");
8011
8005
  attr(input, "name", /*name*/ ctx[0]);
8012
8006
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
8013
- attr(span0, "class", "check-box-icon svelte-1p65cg8");
8007
+ attr(span0, "class", "check-box-icon svelte-2pz1us");
8014
8008
 
8015
8009
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
8016
8010
  ? ' _checked'
8017
- : ''}`) + " svelte-1p65cg8"));
8011
+ : ''}`) + " svelte-2pz1us"));
8018
8012
 
8019
- attr(span2, "class", "check-box-text svelte-1p65cg8");
8013
+ attr(span2, "class", "check-box-text svelte-2pz1us");
8020
8014
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
8021
- attr(label, "class", "check-box svelte-1p65cg8");
8015
+ attr(label, "class", "check-box svelte-2pz1us");
8022
8016
  attr(label, "style", /*styleVariables*/ ctx[5]);
8023
8017
  },
8024
8018
  m(target, anchor) {
@@ -8050,7 +8044,7 @@ function create_each_block$3(ctx) {
8050
8044
 
8051
8045
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
8052
8046
  ? ' _checked'
8053
- : ''}`) + " svelte-1p65cg8"))) {
8047
+ : ''}`) + " svelte-2pz1us"))) {
8054
8048
  attr(span1, "class", span1_class_value);
8055
8049
  }
8056
8050
 
@@ -8103,7 +8097,7 @@ function create_fragment$N(ctx) {
8103
8097
  this.h();
8104
8098
  },
8105
8099
  h() {
8106
- attr(div, "class", "check-boxes svelte-1p65cg8");
8100
+ attr(div, "class", "check-boxes svelte-2pz1us");
8107
8101
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
8108
8102
  },
8109
8103
  m(target, anchor) {
@@ -8278,7 +8272,7 @@ class FormCheckBoxes extends SvelteComponent {
8278
8272
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
8279
8273
 
8280
8274
  function add_css$f(target) {
8281
- append_styles(target, "svelte-1iqf36p", ".rating-buttons.svelte-1iqf36p{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1iqf36p{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
8275
+ append_styles(target, "svelte-9idbf1", ".rating-buttons.svelte-9idbf1{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-9idbf1{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
8282
8276
  }
8283
8277
 
8284
8278
  function get_each_context$2(ctx, list, i) {
@@ -8313,7 +8307,7 @@ function create_each_block$2(ctx) {
8313
8307
  this.h();
8314
8308
  },
8315
8309
  h() {
8316
- attr(button, "class", "rating-button svelte-1iqf36p");
8310
+ attr(button, "class", "rating-button svelte-9idbf1");
8317
8311
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
8318
8312
  },
8319
8313
  m(target, anchor) {
@@ -8376,7 +8370,7 @@ function create_fragment$M(ctx) {
8376
8370
  this.h();
8377
8371
  },
8378
8372
  h() {
8379
- attr(div, "class", "rating-buttons svelte-1iqf36p");
8373
+ attr(div, "class", "rating-buttons svelte-9idbf1");
8380
8374
  },
8381
8375
  m(target, anchor) {
8382
8376
  insert_hydration(target, div, anchor);
@@ -8520,7 +8514,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
8520
8514
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
8521
8515
 
8522
8516
  function add_css$e(target) {
8523
- append_styles(target, "svelte-tbunko", ".rating-buttons.svelte-tbunko{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-tbunko{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-tbunko{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-tbunko:not(._active){filter:grayscale(100%)}");
8517
+ append_styles(target, "svelte-1b5dvzw", ".rating-buttons.svelte-1b5dvzw{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1b5dvzw{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-1b5dvzw{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-1b5dvzw:not(._active){filter:grayscale(100%)}");
8524
8518
  }
8525
8519
 
8526
8520
  function get_each_context$1(ctx, list, i) {
@@ -8556,9 +8550,9 @@ function create_each_block$1(ctx) {
8556
8550
  },
8557
8551
  h() {
8558
8552
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
8559
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
8553
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
8560
8554
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
8561
- attr(button, "class", "rating-button svelte-tbunko");
8555
+ attr(button, "class", "rating-button svelte-1b5dvzw");
8562
8556
  attr(button, "style", /*buttonStyle*/ ctx[0]);
8563
8557
  },
8564
8558
  m(target, anchor) {
@@ -8574,7 +8568,7 @@ function create_each_block$1(ctx) {
8574
8568
  p(new_ctx, dirty) {
8575
8569
  ctx = new_ctx;
8576
8570
 
8577
- if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"))) {
8571
+ if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"))) {
8578
8572
  attr(img, "class", img_class_value);
8579
8573
  }
8580
8574
 
@@ -8621,7 +8615,7 @@ function create_fragment$L(ctx) {
8621
8615
  this.h();
8622
8616
  },
8623
8617
  h() {
8624
- attr(div, "class", "rating-buttons svelte-tbunko");
8618
+ attr(div, "class", "rating-buttons svelte-1b5dvzw");
8625
8619
  },
8626
8620
  m(target, anchor) {
8627
8621
  insert_hydration(target, div, anchor);
@@ -8729,7 +8723,7 @@ class FormRatingButtonsFace extends SvelteComponent {
8729
8723
  /* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
8730
8724
 
8731
8725
  function add_css$d(target) {
8732
- append_styles(target, "svelte-h8fqwx", ".input-wrapper.svelte-h8fqwx{display:flex;align-items:center;width:100%;height:100%}.input.svelte-h8fqwx{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-h8fqwx::placeholder{color:var(--placeholder-color)}.input.svelte-h8fqwx:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-h8fqwx{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
8726
+ append_styles(target, "svelte-f14zo5", ".input-wrapper.svelte-f14zo5{display:flex;align-items:center;width:100%;height:100%}.input.svelte-f14zo5{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-f14zo5::placeholder{color:var(--placeholder-color)}.input.svelte-f14zo5:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-f14zo5{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
8733
8727
  }
8734
8728
 
8735
8729
  function create_fragment$K(ctx) {
@@ -8760,13 +8754,13 @@ function create_fragment$K(ctx) {
8760
8754
  this.h();
8761
8755
  },
8762
8756
  h() {
8763
- attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
8757
+ attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"));
8764
8758
  attr(input, "type", "text");
8765
8759
  input.value = /*$value*/ ctx[2];
8766
8760
  input.required = /*required*/ ctx[0];
8767
8761
  attr(input, "placeholder", /*placeholder*/ ctx[1]);
8768
8762
  attr(input, "style", /*style*/ ctx[5]);
8769
- attr(div, "class", "input-wrapper svelte-h8fqwx");
8763
+ attr(div, "class", "input-wrapper svelte-f14zo5");
8770
8764
  attr(div, "style", /*styleVariables*/ ctx[4]);
8771
8765
  },
8772
8766
  m(target, anchor) {
@@ -8779,7 +8773,7 @@ function create_fragment$K(ctx) {
8779
8773
  }
8780
8774
  },
8781
8775
  p(ctx, [dirty]) {
8782
- if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
8776
+ if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"))) {
8783
8777
  attr(input, "class", input_class_value);
8784
8778
  }
8785
8779
 
@@ -8967,7 +8961,7 @@ class FormIdentifyInput extends SvelteComponent {
8967
8961
  /* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
8968
8962
 
8969
8963
  function add_css$c(target) {
8970
- append_styles(target, "svelte-8zbmyo", ".radio-buttons.svelte-8zbmyo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-8zbmyo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-8zbmyo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-8zbmyo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-8zbmyo{margin-left:0.5em}");
8964
+ append_styles(target, "svelte-pzrwlo", ".radio-buttons.svelte-pzrwlo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-pzrwlo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-pzrwlo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-pzrwlo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-pzrwlo{margin-left:0.5em}");
8971
8965
  }
8972
8966
 
8973
8967
  function create_fragment$J(ctx) {
@@ -9033,20 +9027,20 @@ function create_fragment$J(ctx) {
9033
9027
  },
9034
9028
  h() {
9035
9029
  attr(input0, "type", "radio");
9036
- attr(input0, "class", "radio-button-input svelte-8zbmyo");
9030
+ attr(input0, "class", "radio-button-input svelte-pzrwlo");
9037
9031
  attr(input0, "style", /*buttonStyle*/ ctx[2]);
9038
9032
  input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
9039
- attr(span0, "class", "radio-button-text svelte-8zbmyo");
9033
+ attr(span0, "class", "radio-button-text svelte-pzrwlo");
9040
9034
  attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
9041
- attr(label0, "class", "radio-button svelte-8zbmyo");
9035
+ attr(label0, "class", "radio-button svelte-pzrwlo");
9042
9036
  attr(input1, "type", "radio");
9043
- attr(input1, "class", "radio-button-input svelte-8zbmyo");
9037
+ attr(input1, "class", "radio-button-input svelte-pzrwlo");
9044
9038
  attr(input1, "style", /*buttonStyle*/ ctx[2]);
9045
9039
  input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
9046
- attr(span1, "class", "radio-button-text svelte-8zbmyo");
9040
+ attr(span1, "class", "radio-button-text svelte-pzrwlo");
9047
9041
  attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
9048
- attr(label1, "class", "radio-button svelte-8zbmyo");
9049
- attr(div, "class", "radio-buttons svelte-8zbmyo");
9042
+ attr(label1, "class", "radio-button svelte-pzrwlo");
9043
+ attr(div, "class", "radio-buttons svelte-pzrwlo");
9050
9044
  attr(div, "style", /*_layoutStyle*/ ctx[0]);
9051
9045
  },
9052
9046
  m(target, anchor) {
@@ -9214,7 +9208,7 @@ class FormIdentifyChoices extends SvelteComponent {
9214
9208
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
9215
9209
 
9216
9210
  function add_css$b(target) {
9217
- append_styles(target, "svelte-ji1fh", ".root.svelte-ji1fh{width:100%;height:100%;position:relative}.container.svelte-ji1fh{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-ji1fh{height:100%;position:absolute;display:flex}.transition.svelte-ji1fh{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-ji1fh{height:100%;flex:none}.prev-button-container.svelte-ji1fh,.next-button-container.svelte-ji1fh{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-ji1fh{left:0}.next-button-container.svelte-ji1fh{right:0}.move-button.svelte-ji1fh{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-ji1fh{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-ji1fh{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-ji1fh{border-radius:51%}");
9211
+ append_styles(target, "svelte-1qfq79t", ".root.svelte-1qfq79t{width:100%;height:100%;position:relative}.container.svelte-1qfq79t{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-1qfq79t{height:100%;position:absolute;display:flex}.transition.svelte-1qfq79t{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-1qfq79t{height:100%;flex:none}.prev-button-container.svelte-1qfq79t,.next-button-container.svelte-1qfq79t{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-1qfq79t{left:0}.next-button-container.svelte-1qfq79t{right:0}.move-button.svelte-1qfq79t{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-1qfq79t{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-1qfq79t{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-1qfq79t{border-radius:51%}");
9218
9212
  }
9219
9213
 
9220
9214
  function get_each_context(ctx, list, i) {
@@ -9260,9 +9254,9 @@ function create_if_block_1(ctx) {
9260
9254
  attr(svg, "viewBox", "0 0 10 16");
9261
9255
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
9262
9256
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
9263
- attr(button, "class", "move-button svelte-ji1fh");
9257
+ attr(button, "class", "move-button svelte-1qfq79t");
9264
9258
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
9265
- attr(div, "class", "prev-button-container svelte-ji1fh");
9259
+ attr(div, "class", "prev-button-container svelte-1qfq79t");
9266
9260
  },
9267
9261
  m(target, anchor) {
9268
9262
  insert_hydration(target, div, anchor);
@@ -9328,9 +9322,9 @@ function create_if_block$5(ctx) {
9328
9322
  attr(svg, "viewBox", "0 0 10 16");
9329
9323
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
9330
9324
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
9331
- attr(button, "class", "move-button svelte-ji1fh");
9325
+ attr(button, "class", "move-button svelte-1qfq79t");
9332
9326
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
9333
- attr(div, "class", "next-button-container svelte-ji1fh");
9327
+ attr(div, "class", "next-button-container svelte-1qfq79t");
9334
9328
  },
9335
9329
  m(target, anchor) {
9336
9330
  insert_hydration(target, div, anchor);
@@ -9390,9 +9384,9 @@ function create_each_block(ctx) {
9390
9384
  this.h();
9391
9385
  },
9392
9386
  h() {
9393
- attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
9387
+ attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
9394
9388
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
9395
- attr(button, "class", "navigation-item svelte-ji1fh");
9389
+ attr(button, "class", "navigation-item svelte-1qfq79t");
9396
9390
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
9397
9391
  },
9398
9392
  m(target, anchor) {
@@ -9498,14 +9492,14 @@ function create_fragment$I(ctx) {
9498
9492
  this.h();
9499
9493
  },
9500
9494
  h() {
9501
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
9495
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
9502
9496
  attr(div0, "style", /*slideStyle*/ ctx[14]);
9503
- attr(div1, "class", "container svelte-ji1fh");
9497
+ attr(div1, "class", "container svelte-1qfq79t");
9504
9498
  attr(div1, "style", /*_style*/ ctx[0]);
9505
- attr(div2, "class", "navigation svelte-ji1fh");
9499
+ attr(div2, "class", "navigation svelte-1qfq79t");
9506
9500
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
9507
9501
  set_attributes(div3, div3_data);
9508
- toggle_class(div3, "svelte-ji1fh", true);
9502
+ toggle_class(div3, "svelte-1qfq79t", true);
9509
9503
  },
9510
9504
  m(target, anchor) {
9511
9505
  insert_hydration(target, div3, anchor);
@@ -9547,7 +9541,7 @@ function create_fragment$I(ctx) {
9547
9541
  }
9548
9542
  }
9549
9543
 
9550
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
9544
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
9551
9545
  attr(div0, "class", div0_class_value);
9552
9546
  }
9553
9547
 
@@ -9613,7 +9607,7 @@ function create_fragment$I(ctx) {
9613
9607
  }
9614
9608
 
9615
9609
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
9616
- toggle_class(div3, "svelte-ji1fh", true);
9610
+ toggle_class(div3, "svelte-1qfq79t", true);
9617
9611
  },
9618
9612
  i(local) {
9619
9613
  if (current) return;
@@ -10125,7 +10119,7 @@ class Slide extends SvelteComponent {
10125
10119
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
10126
10120
 
10127
10121
  function add_css$a(target) {
10128
- append_styles(target, "svelte-9ygf1w", ".item.svelte-9ygf1w{height:100%;flex:none;position:relative}.item.svelte-9ygf1w img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-9ygf1w{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
10122
+ append_styles(target, "svelte-1rv0qgo", ".item.svelte-1rv0qgo{height:100%;flex:none;position:relative}.item.svelte-1rv0qgo img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-1rv0qgo{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
10129
10123
  }
10130
10124
 
10131
10125
  function create_fragment$H(ctx) {
@@ -10153,9 +10147,9 @@ function create_fragment$H(ctx) {
10153
10147
  this.h();
10154
10148
  },
10155
10149
  h() {
10156
- attr(div0, "class", "item-inner svelte-9ygf1w");
10150
+ attr(div0, "class", "item-inner svelte-1rv0qgo");
10157
10151
  attr(div0, "style", /*_style*/ ctx[0]);
10158
- attr(div1, "class", "item svelte-9ygf1w");
10152
+ attr(div1, "class", "item svelte-1rv0qgo");
10159
10153
  attr(div1, "style", /*itemStyle*/ ctx[1]);
10160
10154
  },
10161
10155
  m(target, anchor) {
@@ -10281,7 +10275,7 @@ class SlideItem extends SvelteComponent {
10281
10275
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
10282
10276
 
10283
10277
  function add_css$9(target) {
10284
- append_styles(target, "svelte-rroxiz", ".countdown.svelte-rroxiz{position:relative;width:100%;height:100%}.countdown-inner.svelte-rroxiz{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10278
+ append_styles(target, "svelte-t87l6f", ".countdown.svelte-t87l6f{position:relative;width:100%;height:100%}.countdown-inner.svelte-t87l6f{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10285
10279
  }
10286
10280
 
10287
10281
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -10312,9 +10306,9 @@ function create_fragment$G(ctx) {
10312
10306
  this.h();
10313
10307
  },
10314
10308
  h() {
10315
- attr(div0, "class", "countdown-inner svelte-rroxiz");
10309
+ attr(div0, "class", "countdown-inner svelte-t87l6f");
10316
10310
  attr(div0, "style", /*_style*/ ctx[0]);
10317
- attr(div1, "class", "countdown svelte-rroxiz");
10311
+ attr(div1, "class", "countdown svelte-t87l6f");
10318
10312
  },
10319
10313
  m(target, anchor) {
10320
10314
  insert_hydration(target, div1, anchor);
@@ -10444,7 +10438,7 @@ class Countdown extends SvelteComponent {
10444
10438
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
10445
10439
 
10446
10440
  function add_css$8(target) {
10447
- append_styles(target, "svelte-1ccydfy", ".box.svelte-1ccydfy{position:relative;width:100%;height:100%}.box.svelte-1ccydfy > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10441
+ append_styles(target, "svelte-1c91vpe", ".box.svelte-1c91vpe{position:relative;width:100%;height:100%}.box.svelte-1c91vpe > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10448
10442
  }
10449
10443
 
10450
10444
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -10527,7 +10521,7 @@ function create_fragment$F(ctx) {
10527
10521
  this.h();
10528
10522
  },
10529
10523
  h() {
10530
- attr(div, "class", "box svelte-1ccydfy");
10524
+ attr(div, "class", "box svelte-1c91vpe");
10531
10525
  },
10532
10526
  m(target, anchor) {
10533
10527
  insert_hydration(target, div, anchor);
@@ -10588,7 +10582,7 @@ class Box extends SvelteComponent {
10588
10582
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
10589
10583
 
10590
10584
  function add_css$7(target) {
10591
- append_styles(target, "svelte-1mkvcuo", ".icon.svelte-1mkvcuo{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1mkvcuo > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.icon.svelte-1mkvcuo > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1mkvcuo svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
10585
+ append_styles(target, "svelte-1mk6wi4", ".icon.svelte-1mk6wi4{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1mk6wi4 > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.icon.svelte-1mk6wi4 > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1mk6wi4 svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
10592
10586
  }
10593
10587
 
10594
10588
  // (56:4) {#if svg}
@@ -10692,7 +10686,7 @@ function create_fragment$E(ctx) {
10692
10686
  this.h();
10693
10687
  },
10694
10688
  h() {
10695
- attr(div, "class", "icon svelte-1mkvcuo");
10689
+ attr(div, "class", "icon svelte-1mk6wi4");
10696
10690
  },
10697
10691
  m(target, anchor) {
10698
10692
  insert_hydration(target, div, anchor);
@@ -10801,7 +10795,7 @@ class IconElement extends SvelteComponent {
10801
10795
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
10802
10796
 
10803
10797
  function add_css$6(target) {
10804
- append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
10798
+ append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
10805
10799
  }
10806
10800
 
10807
10801
  function create_fragment$D(ctx) {
@@ -10837,7 +10831,7 @@ function create_fragment$D(ctx) {
10837
10831
  this.h();
10838
10832
  },
10839
10833
  h() {
10840
- attr(div, "class", "codeElement svelte-ymsb9l");
10834
+ attr(div, "class", "codeElement svelte-1ng2n51");
10841
10835
  attr(div, "style", /*style*/ ctx[3]);
10842
10836
  },
10843
10837
  m(target, anchor) {
@@ -10926,7 +10920,7 @@ class CodeElement extends SvelteComponent {
10926
10920
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
10927
10921
 
10928
10922
  function add_css$5(target) {
10929
- append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
10923
+ append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
10930
10924
  }
10931
10925
 
10932
10926
  function create_fragment$C(ctx) {
@@ -10950,7 +10944,7 @@ function create_fragment$C(ctx) {
10950
10944
  this.h();
10951
10945
  },
10952
10946
  h() {
10953
- attr(div, "class", "flex svelte-1e71ejc");
10947
+ attr(div, "class", "flex svelte-9v2qdg");
10954
10948
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
10955
10949
  },
10956
10950
  m(target, anchor) {
@@ -11047,7 +11041,7 @@ class Flex extends SvelteComponent {
11047
11041
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
11048
11042
 
11049
11043
  function add_css$4(target) {
11050
- append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
11044
+ append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
11051
11045
  }
11052
11046
 
11053
11047
  function create_fragment$B(ctx) {
@@ -11070,7 +11064,7 @@ function create_fragment$B(ctx) {
11070
11064
  this.h();
11071
11065
  },
11072
11066
  h() {
11073
- attr(div, "class", "flex-item svelte-1p0bk1x");
11067
+ attr(div, "class", "flex-item svelte-164ah5d");
11074
11068
  attr(div, "style", /*style*/ ctx[0]);
11075
11069
  },
11076
11070
  m(target, anchor) {
@@ -11490,7 +11484,7 @@ class GridModalState extends SvelteComponent {
11490
11484
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
11491
11485
 
11492
11486
  function add_css$3(target) {
11493
- append_styles(target, "svelte-15pej1m", ".text-block.svelte-15pej1m.svelte-15pej1m{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:hidden}.text-block-inner.svelte-15pej1m.svelte-15pej1m{width:100%;height:auto}.text-direction-vertical.svelte-15pej1m.svelte-15pej1m{writing-mode:vertical-rl}.text-direction-vertical.svelte-15pej1m .text-block-inner.svelte-15pej1m{width:auto;height:100%}");
11487
+ append_styles(target, "svelte-akic2e", ".text-block.svelte-akic2e.svelte-akic2e{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:hidden}.text-block-inner.svelte-akic2e.svelte-akic2e{width:100%;height:auto}.text-direction-vertical.svelte-akic2e.svelte-akic2e{writing-mode:vertical-rl}.text-direction-vertical.svelte-akic2e .text-block-inner.svelte-akic2e{width:auto;height:100%}");
11494
11488
  }
11495
11489
 
11496
11490
  function create_fragment$z(ctx) {
@@ -11519,8 +11513,8 @@ function create_fragment$z(ctx) {
11519
11513
  this.h();
11520
11514
  },
11521
11515
  h() {
11522
- attr(div0, "class", "text-block-inner svelte-15pej1m");
11523
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
11516
+ attr(div0, "class", "text-block-inner svelte-akic2e");
11517
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
11524
11518
  attr(div1, "style", /*style*/ ctx[2]);
11525
11519
  },
11526
11520
  m(target, anchor) {
@@ -11534,7 +11528,7 @@ function create_fragment$z(ctx) {
11534
11528
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
11535
11529
  rendertext.$set(rendertext_changes);
11536
11530
 
11537
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
11531
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
11538
11532
  attr(div1, "class", div1_class_value);
11539
11533
  }
11540
11534
 
@@ -11612,7 +11606,7 @@ class TextBlock extends SvelteComponent {
11612
11606
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
11613
11607
 
11614
11608
  function add_css$2(target) {
11615
- append_styles(target, "svelte-ff0k6r", ".text-button-block.svelte-ff0k6r{width:100%;height:100%;background-color:#000000;border-radius:4px}.text-button.svelte-ff0k6r{display:flex;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5}.text-button.svelte-ff0k6r:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-ff0k6r:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
11609
+ append_styles(target, "svelte-1c34p4n", ".text-button-block.svelte-1c34p4n{width:100%;height:100%;background-color:#000000;border-radius:4px}.text-button.svelte-1c34p4n{display:flex;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5}.text-button.svelte-1c34p4n:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-1c34p4n:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
11616
11610
  }
11617
11611
 
11618
11612
  function create_fragment$y(ctx) {
@@ -11642,9 +11636,9 @@ function create_fragment$y(ctx) {
11642
11636
  this.h();
11643
11637
  },
11644
11638
  h() {
11645
- attr(button, "class", "text-button svelte-ff0k6r");
11639
+ attr(button, "class", "text-button svelte-1c34p4n");
11646
11640
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
11647
- attr(div, "class", "text-button-block svelte-ff0k6r");
11641
+ attr(div, "class", "text-button-block svelte-1c34p4n");
11648
11642
  attr(div, "style", /*_style*/ ctx[2]);
11649
11643
  },
11650
11644
  m(target, anchor) {
@@ -11750,7 +11744,7 @@ class TextButtonBlock extends SvelteComponent {
11750
11744
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
11751
11745
 
11752
11746
  function add_css$1(target) {
11753
- append_styles(target, "svelte-1pdw891", ".image-block.svelte-1pdw891{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image.svelte-1pdw891{width:100%;height:100%}.transport.svelte-1pdw891:hover,.transport.svelte-1pdw891:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
11747
+ append_styles(target, "svelte-1jus6sx", ".image-block.svelte-1jus6sx{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image.svelte-1jus6sx{width:100%;height:100%}.transport.svelte-1jus6sx:hover,.transport.svelte-1jus6sx:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
11754
11748
  }
11755
11749
 
11756
11750
  function create_fragment$x(ctx) {
@@ -11786,14 +11780,14 @@ function create_fragment$x(ctx) {
11786
11780
  this.h();
11787
11781
  },
11788
11782
  h() {
11789
- attr(img, "class", "image svelte-1pdw891");
11783
+ attr(img, "class", "image svelte-1jus6sx");
11790
11784
  attr(img, "loading", "lazy");
11791
11785
  attr(img, "width", "auto");
11792
11786
  attr(img, "height", "auto");
11793
11787
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
11794
11788
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
11795
11789
  attr(img, "alt", /*alt*/ ctx[1]);
11796
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
11790
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
11797
11791
  attr(div, "style", /*_style*/ ctx[5]);
11798
11792
  },
11799
11793
  m(target, anchor) {
@@ -11818,7 +11812,7 @@ function create_fragment$x(ctx) {
11818
11812
  attr(img, "alt", /*alt*/ ctx[1]);
11819
11813
  }
11820
11814
 
11821
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
11815
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
11822
11816
  attr(div, "class", div_class_value);
11823
11817
  }
11824
11818
 
@@ -13823,7 +13817,7 @@ class Icon extends SvelteComponent {
13823
13817
  /* src/components-v2/button/Button.svelte generated by Svelte v3.53.1 */
13824
13818
 
13825
13819
  function add_css(target) {
13826
- append_styles(target, "svelte-i9kun1", ".v2-button.svelte-i9kun1{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-i9kun1{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
13820
+ append_styles(target, "svelte-1uf4vt5", ".v2-button.svelte-1uf4vt5{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-1uf4vt5{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
13827
13821
  }
13828
13822
 
13829
13823
  // (128:2) {#if (props.isIcon && props.iconVariant)}
@@ -13858,7 +13852,7 @@ function create_if_block$2(ctx) {
13858
13852
  this.h();
13859
13853
  },
13860
13854
  h() {
13861
- attr(div, "class", "v2-button-icon svelte-i9kun1");
13855
+ attr(div, "class", "v2-button-icon svelte-1uf4vt5");
13862
13856
  },
13863
13857
  m(target, anchor) {
13864
13858
  insert_hydration(target, div, anchor);
@@ -13933,7 +13927,7 @@ function create_fragment$5(ctx) {
13933
13927
  h() {
13934
13928
  attr(button, "data-layer-id", /*layerId*/ ctx[0]);
13935
13929
  attr(button, "style", button_style_value = [/*style*/ ctx[3], /*overrideStyle*/ ctx[2]].join(' '));
13936
- attr(button, "class", "v2-button svelte-i9kun1");
13930
+ attr(button, "class", "v2-button svelte-1uf4vt5");
13937
13931
  },
13938
13932
  m(target, anchor) {
13939
13933
  insert_hydration(target, button, anchor);