@websy/websy-designs 1.10.5 → 1.10.7

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.
@@ -2341,6 +2341,7 @@ class WebsyForm {
2341
2341
  const defaults = {
2342
2342
  submit: { text: 'Save', classes: [] },
2343
2343
  useRecaptcha: false,
2344
+ recaptchaAction: 'submit',
2344
2345
  clearAfterSave: false,
2345
2346
  fields: [],
2346
2347
  mode: 'add',
@@ -2403,6 +2404,23 @@ class WebsyForm {
2403
2404
  resolve(false)
2404
2405
  }
2405
2406
  }
2407
+ else if (this.options.useRecaptchaV3 === true) {
2408
+ grecaptcha.ready(() => {
2409
+ grecaptcha.execute(ENVIRONMENT.RECAPTCHA_KEY, { action: this.options.recaptchaAction }).then(token => {
2410
+ this.apiService.add('google/checkrecaptcha', {grecaptcharesponse: token}).then(response => {
2411
+ if (response.success && response.success === true) {
2412
+ resolve(true)
2413
+ grecaptcha.reset(`${this.elementId}_recaptcha`, {sitekey: ENVIRONMENT.RECAPTCHA_KEY})
2414
+ }
2415
+ else {
2416
+ resolve(false)
2417
+ }
2418
+ })
2419
+ }, err => {
2420
+ console.log(err)
2421
+ })
2422
+ })
2423
+ }
2406
2424
  else {
2407
2425
  resolve(true)
2408
2426
  }
@@ -2740,7 +2758,7 @@ class WebsyForm {
2740
2758
  `
2741
2759
  el.innerHTML = html
2742
2760
  this.processComponents(componentsToProcess, () => {
2743
- if (this.options.useRecaptcha === true && typeof grecaptcha !== 'undefined') {
2761
+ if ((this.options.useRecaptcha === true || this.options.useRecaptchaV3 === true) && typeof grecaptcha !== 'undefined') {
2744
2762
  this.recaptchaReady()
2745
2763
  }
2746
2764
  })
@@ -2830,6 +2848,9 @@ class WebsyForm {
2830
2848
  if (recaptchErrEl) {
2831
2849
  recaptchErrEl.classList.remove('websy-hidden')
2832
2850
  }
2851
+ if (this.options.submitErr) {
2852
+ this.options.submitErr()
2853
+ }
2833
2854
  }
2834
2855
  })
2835
2856
  }
@@ -5366,7 +5387,7 @@ class WebsySearch {
5366
5387
  }
5367
5388
  acceptSuggestion () {
5368
5389
  this.searchText = this.ghostQuery
5369
- this.suggestions = []
5390
+ this._suggestions = []
5370
5391
  this.hideSuggestions()
5371
5392
  const inputEl = document.getElementById(`${this.elementId}_search`)
5372
5393
  if (inputEl) {
@@ -5493,7 +5514,7 @@ class WebsySearch {
5493
5514
  }
5494
5515
  }
5495
5516
  }
5496
- // this.renderLozenges()
5517
+ this.renderLozenges()
5497
5518
  }
5498
5519
  handleMouseOver (event) {
5499
5520
  if (event.target.classList.contains('websy-search-suggestion-item')) {
@@ -5550,7 +5571,7 @@ class WebsySearch {
5550
5571
  }
5551
5572
  nextSuggestion () {
5552
5573
  this.startSuggestionTimeout()
5553
- if (this.activeSuggestion === this.suggestions.length - 1) {
5574
+ if (this.activeSuggestion === this._suggestions.length - 1) {
5554
5575
  this.activeSuggestion = 0
5555
5576
  }
5556
5577
  else {
@@ -5562,7 +5583,7 @@ class WebsySearch {
5562
5583
  prevSuggestion () {
5563
5584
  this.startSuggestionTimeout()
5564
5585
  if (this.activeSuggestion === 0) {
5565
- this.activeSuggestion = this.suggestions.length - 1
5586
+ this.activeSuggestion = this._suggestions.length - 1
5566
5587
  }
5567
5588
  else {
5568
5589
  this.activeSuggestion--
@@ -5571,7 +5592,7 @@ class WebsySearch {
5571
5592
  this.highlightActiveSuggestion()
5572
5593
  }
5573
5594
  renderGhost () {
5574
- this.ghostPart = getGhostString(this.searchText, this.suggestions[this.activeSuggestion].label)
5595
+ this.ghostPart = getGhostString(this.searchText, this._suggestions[this.activeSuggestion].label)
5575
5596
  this.ghostQuery = this.searchText + this.ghostPart
5576
5597
  const ghostDisplay = `<span style='color: transparent;'>${this.searchText}</span>${this.ghostPart}`
5577
5598
  const ghostEl = document.getElementById(`${this.elementId}_ghost`)
@@ -5591,16 +5612,33 @@ class WebsySearch {
5591
5612
  }
5592
5613
  }
5593
5614
  renderLozenges () {
5594
- let items = this.searchText.split('').map(d => (`<div>${d.replace(/ /g, '&nbsp;')}</div>`))
5615
+ let searchLetters = (this.searchText || '').split('').map(d => ({text: d}))
5616
+ this._terms.sort((a, b) => {
5617
+ return b.position - a.position
5618
+ }).forEach(term => {
5619
+ searchLetters.splice(term.position, term.length, {text: term.term, term: term})
5620
+ })
5621
+ let items = searchLetters.map(d => {
5622
+ let html = `<div`
5623
+ if (d.term && d.term.label) {
5624
+ html += `
5625
+ data-label="${d.term.label}"
5626
+ `
5627
+ }
5628
+ html += `>${d.text.replace(/ /g, '&nbsp;')}</div>`
5629
+ return html
5630
+ })
5595
5631
  const el = document.getElementById(`${this.elementId}_lozenges`)
5596
- el.innerHTML = items.join('')
5632
+ if (el) {
5633
+ el.innerHTML = items.join('')
5634
+ }
5597
5635
  }
5598
5636
  renderSuggestion () {
5599
5637
  let suggestionsHtml = ''
5600
- for (let i = 0; i < this.suggestions.length; i++) {
5638
+ for (let i = 0; i < this._suggestions.length; i++) {
5601
5639
  suggestionsHtml += `
5602
5640
  <li id='${this.elementId}_suggestion_${i}' class='websy-search-suggestion-item' data-index='${i}'>
5603
- ${this.suggestions[i].label}
5641
+ ${this._suggestions[i].label}
5604
5642
  </li>
5605
5643
  `
5606
5644
  }
@@ -5610,10 +5648,9 @@ class WebsySearch {
5610
5648
  }
5611
5649
  this.highlightActiveSuggestion()
5612
5650
  }
5613
- showSuggestions (items = []) {
5614
- this.suggestions = items.splice(0, this.options.suggestLimit)
5651
+ showSuggestions () {
5615
5652
  this.startSuggestionTimeout()
5616
- if (this.searchText && this.searchText.length > 1 && this.cursorPosition === this.searchText.length && this.suggestions.length > 0) {
5653
+ if (this.searchText && this.searchText.length > 1 && this.cursorPosition === this.searchText.length && this._suggestions.length > 0) {
5617
5654
  if (!this.suggesting) {
5618
5655
  this.activeSuggestion = 0
5619
5656
  this.suggesting = true
@@ -5642,6 +5679,10 @@ class WebsySearch {
5642
5679
  this.hideSuggestions(this)
5643
5680
  }, this.options.suggestingTimeout)
5644
5681
  }
5682
+ set suggestions (items = []) {
5683
+ this._suggestions = items.splice(0, this.options.suggestLimit)
5684
+ this.showSuggestions()
5685
+ }
5645
5686
  get text () {
5646
5687
  const el = document.getElementById(`${this.elementId}_search`)
5647
5688
  if (el) {
@@ -5655,6 +5696,11 @@ class WebsySearch {
5655
5696
  el.value = text
5656
5697
  }
5657
5698
  }
5699
+ set terms (terms = []) {
5700
+ this._terms = terms
5701
+ console.log('terms', terms)
5702
+ this.renderLozenges()
5703
+ }
5658
5704
  }
5659
5705
 
5660
5706
  /* global WebsyDesigns ENVIRONMENT */
@@ -2306,6 +2306,7 @@ var WebsyForm = /*#__PURE__*/function () {
2306
2306
  classes: []
2307
2307
  },
2308
2308
  useRecaptcha: false,
2309
+ recaptchaAction: 'submit',
2309
2310
  clearAfterSave: false,
2310
2311
  fields: [],
2311
2312
  mode: 'add',
@@ -2376,6 +2377,27 @@ var WebsyForm = /*#__PURE__*/function () {
2376
2377
  } else {
2377
2378
  resolve(false);
2378
2379
  }
2380
+ } else if (_this15.options.useRecaptchaV3 === true) {
2381
+ grecaptcha.ready(function () {
2382
+ grecaptcha.execute(ENVIRONMENT.RECAPTCHA_KEY, {
2383
+ action: _this15.options.recaptchaAction
2384
+ }).then(function (token) {
2385
+ _this15.apiService.add('google/checkrecaptcha', {
2386
+ grecaptcharesponse: token
2387
+ }).then(function (response) {
2388
+ if (response.success && response.success === true) {
2389
+ resolve(true);
2390
+ grecaptcha.reset("".concat(_this15.elementId, "_recaptcha"), {
2391
+ sitekey: ENVIRONMENT.RECAPTCHA_KEY
2392
+ });
2393
+ } else {
2394
+ resolve(false);
2395
+ }
2396
+ });
2397
+ }, function (err) {
2398
+ console.log(err);
2399
+ });
2400
+ });
2379
2401
  } else {
2380
2402
  resolve(true);
2381
2403
  }
@@ -2689,7 +2711,7 @@ var WebsyForm = /*#__PURE__*/function () {
2689
2711
  html += " \n </form>\n <div id=\"".concat(this.elementId, "_validationFail\" class=\"websy-validation-failure\"></div>\n ");
2690
2712
  el.innerHTML = html;
2691
2713
  this.processComponents(componentsToProcess, function () {
2692
- if (_this20.options.useRecaptcha === true && typeof grecaptcha !== 'undefined') {
2714
+ if ((_this20.options.useRecaptcha === true || _this20.options.useRecaptchaV3 === true) && typeof grecaptcha !== 'undefined') {
2693
2715
  _this20.recaptchaReady();
2694
2716
  }
2695
2717
  });
@@ -2778,6 +2800,9 @@ var WebsyForm = /*#__PURE__*/function () {
2778
2800
  if (recaptchErrEl) {
2779
2801
  recaptchErrEl.classList.remove('websy-hidden');
2780
2802
  }
2803
+ if (_this21.options.submitErr) {
2804
+ _this21.options.submitErr();
2805
+ }
2781
2806
  }
2782
2807
  });
2783
2808
  }
@@ -5170,7 +5195,7 @@ var WebsySearch = /*#__PURE__*/function () {
5170
5195
  key: "acceptSuggestion",
5171
5196
  value: function acceptSuggestion() {
5172
5197
  this.searchText = this.ghostQuery;
5173
- this.suggestions = [];
5198
+ this._suggestions = [];
5174
5199
  this.hideSuggestions();
5175
5200
  var inputEl = document.getElementById("".concat(this.elementId, "_search"));
5176
5201
  if (inputEl) {
@@ -5291,7 +5316,7 @@ var WebsySearch = /*#__PURE__*/function () {
5291
5316
  }
5292
5317
  }
5293
5318
  }
5294
- // this.renderLozenges()
5319
+ this.renderLozenges();
5295
5320
  }
5296
5321
  }, {
5297
5322
  key: "handleMouseOver",
@@ -5359,7 +5384,7 @@ var WebsySearch = /*#__PURE__*/function () {
5359
5384
  key: "nextSuggestion",
5360
5385
  value: function nextSuggestion() {
5361
5386
  this.startSuggestionTimeout();
5362
- if (this.activeSuggestion === this.suggestions.length - 1) {
5387
+ if (this.activeSuggestion === this._suggestions.length - 1) {
5363
5388
  this.activeSuggestion = 0;
5364
5389
  } else {
5365
5390
  this.activeSuggestion++;
@@ -5372,7 +5397,7 @@ var WebsySearch = /*#__PURE__*/function () {
5372
5397
  value: function prevSuggestion() {
5373
5398
  this.startSuggestionTimeout();
5374
5399
  if (this.activeSuggestion === 0) {
5375
- this.activeSuggestion = this.suggestions.length - 1;
5400
+ this.activeSuggestion = this._suggestions.length - 1;
5376
5401
  } else {
5377
5402
  this.activeSuggestion--;
5378
5403
  }
@@ -5382,7 +5407,7 @@ var WebsySearch = /*#__PURE__*/function () {
5382
5407
  }, {
5383
5408
  key: "renderGhost",
5384
5409
  value: function renderGhost() {
5385
- this.ghostPart = getGhostString(this.searchText, this.suggestions[this.activeSuggestion].label);
5410
+ this.ghostPart = getGhostString(this.searchText, this._suggestions[this.activeSuggestion].label);
5386
5411
  this.ghostQuery = this.searchText + this.ghostPart;
5387
5412
  var ghostDisplay = "<span style='color: transparent;'>".concat(this.searchText, "</span>").concat(this.ghostPart);
5388
5413
  var ghostEl = document.getElementById("".concat(this.elementId, "_ghost"));
@@ -5404,18 +5429,38 @@ var WebsySearch = /*#__PURE__*/function () {
5404
5429
  }, {
5405
5430
  key: "renderLozenges",
5406
5431
  value: function renderLozenges() {
5407
- var items = this.searchText.split('').map(function (d) {
5408
- return "<div>".concat(d.replace(/ /g, '&nbsp;'), "</div>");
5432
+ var searchLetters = (this.searchText || '').split('').map(function (d) {
5433
+ return {
5434
+ text: d
5435
+ };
5436
+ });
5437
+ this._terms.sort(function (a, b) {
5438
+ return b.position - a.position;
5439
+ }).forEach(function (term) {
5440
+ searchLetters.splice(term.position, term.length, {
5441
+ text: term.term,
5442
+ term: term
5443
+ });
5444
+ });
5445
+ var items = searchLetters.map(function (d) {
5446
+ var html = "<div";
5447
+ if (d.term && d.term.label) {
5448
+ html += "\n data-label=\"".concat(d.term.label, "\"\n ");
5449
+ }
5450
+ html += ">".concat(d.text.replace(/ /g, '&nbsp;'), "</div>");
5451
+ return html;
5409
5452
  });
5410
5453
  var el = document.getElementById("".concat(this.elementId, "_lozenges"));
5411
- el.innerHTML = items.join('');
5454
+ if (el) {
5455
+ el.innerHTML = items.join('');
5456
+ }
5412
5457
  }
5413
5458
  }, {
5414
5459
  key: "renderSuggestion",
5415
5460
  value: function renderSuggestion() {
5416
5461
  var suggestionsHtml = '';
5417
- for (var i = 0; i < this.suggestions.length; i++) {
5418
- suggestionsHtml += "\n <li id='".concat(this.elementId, "_suggestion_").concat(i, "' class='websy-search-suggestion-item' data-index='").concat(i, "'>\n ").concat(this.suggestions[i].label, "\n </li>\n ");
5462
+ for (var i = 0; i < this._suggestions.length; i++) {
5463
+ suggestionsHtml += "\n <li id='".concat(this.elementId, "_suggestion_").concat(i, "' class='websy-search-suggestion-item' data-index='").concat(i, "'>\n ").concat(this._suggestions[i].label, "\n </li>\n ");
5419
5464
  }
5420
5465
  var suggListEl = document.getElementById("".concat(this.elementId, "_suggestionList"));
5421
5466
  if (suggListEl) {
@@ -5426,10 +5471,8 @@ var WebsySearch = /*#__PURE__*/function () {
5426
5471
  }, {
5427
5472
  key: "showSuggestions",
5428
5473
  value: function showSuggestions() {
5429
- var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
5430
- this.suggestions = items.splice(0, this.options.suggestLimit);
5431
5474
  this.startSuggestionTimeout();
5432
- if (this.searchText && this.searchText.length > 1 && this.cursorPosition === this.searchText.length && this.suggestions.length > 0) {
5475
+ if (this.searchText && this.searchText.length > 1 && this.cursorPosition === this.searchText.length && this._suggestions.length > 0) {
5433
5476
  if (!this.suggesting) {
5434
5477
  this.activeSuggestion = 0;
5435
5478
  this.suggesting = true;
@@ -5460,6 +5503,13 @@ var WebsySearch = /*#__PURE__*/function () {
5460
5503
  _this37.hideSuggestions(_this37);
5461
5504
  }, this.options.suggestingTimeout);
5462
5505
  }
5506
+ }, {
5507
+ key: "suggestions",
5508
+ set: function set() {
5509
+ var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
5510
+ this._suggestions = items.splice(0, this.options.suggestLimit);
5511
+ this.showSuggestions();
5512
+ }
5463
5513
  }, {
5464
5514
  key: "text",
5465
5515
  get: function get() {
@@ -5475,6 +5525,14 @@ var WebsySearch = /*#__PURE__*/function () {
5475
5525
  el.value = text;
5476
5526
  }
5477
5527
  }
5528
+ }, {
5529
+ key: "terms",
5530
+ set: function set() {
5531
+ var terms = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
5532
+ this._terms = terms;
5533
+ console.log('terms', terms);
5534
+ this.renderLozenges();
5535
+ }
5478
5536
  }]);
5479
5537
  return WebsySearch;
5480
5538
  }();
@@ -1 +1 @@
1
- .primary{color:#4e43ed}.primary-bg{background-color:#4e43ed}.primary-light{color:#4e43ed}.primary-light-bg{background-color:#4e43ed}.primary-dark{color:#4e43ed}.primary-dark-bg{background-color:#4e43ed}.secondary{color:#827af2}.secondary-bg{background-color:#827af2}.secondary-light{color:#827af2}.secondary-light-bg{background-color:#827af2}.secondary-dark{color:#827af2}.secondary-dark-bg{background-color:#827af2}h1,h2,h3,h4{line-height:1.5em}h1{font-size:44px}h2{font-size:33px}h3{font-size:22px}.websy-hidden{display:none !important}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.websy-responsive-container{margin:0 auto;width:90%;max-width:1400px}.websy-row{padding:0;box-sizing:border-box;margin-left:-15px;margin-right:-15px}[class*='websy-ib-col-']{padding-left:15px;padding-right:15px;display:inline-block;box-sizing:border-box;vertical-align:top}[class*='websy-col-']{padding-left:15px;padding-right:15px;float:left;box-sizing:border-box}.websy-ib-col-l-100{width:100%}.websy-ib-col-l-90{width:90%}.websy-ib-col-l-80{width:80%}.websy-ib-col-l-75{width:75%}.websy-ib-col-l-70{width:70%}.websy-ib-col-l-60{width:60%}.websy-ib-col-l-50{width:50%}.websy-ib-col-l-40{width:40%}.websy-ib-col-l-33{width:33.33%}.websy-ib-col-l-30{width:30%}.websy-ib-col-l-25{width:25%}.websy-ib-col-l-20{width:20%}.websy-ib-col-l-10{width:10%}.websy-col-l-100{width:100%}.websy-col-l-90{width:90%}.websy-col-l-80{width:80%}.websy-col-l-75{width:75%}.websy-col-l-70{width:70%}.websy-col-l-60{width:60%}.websy-col-l-50{width:50%}.websy-col-l-40{width:40%}.websy-col-l-33{width:33.33%}.websy-col-l-30{width:30%}.websy-col-l-25{width:25%}.websy-col-l-20{width:20%}.websy-col-l-10{width:10%}@media screen and (max-width:1024px){.websy-responsive-container{width:100%;max-width:900px}.websy-ib-col-m-100{width:100%}.websy-ib-col-m-90{width:90%}.websy-ib-col-m-80{width:80%}.websy-ib-col-m-75{width:75%}.websy-ib-col-m-70{width:70%}.websy-ib-col-m-60{width:60%}.websy-ib-col-m-50{width:50%}.websy-ib-col-m-40{width:40%}.websy-ib-col-m-33{width:33%}.websy-ib-col-m-30{width:30%}.websy-ib-col-m-25{width:25%}.websy-ib-col-m-20{width:20%}.websy-ib-col-m-10{width:10%}.websy-col-m-100{width:100%}.websy-col-m-90{width:90%}.websy-col-m-80{width:80%}.websy-col-m-75{width:75%}.websy-col-m-70{width:70%}.websy-col-m-60{width:60%}.websy-col-m-50{width:50%}.websy-col-m-40{width:40%}.websy-col-m-33{width:33.33%}.websy-col-m-30{width:30%}.websy-col-m-25{width:25%}.websy-col-m-20{width:20%}.websy-col-m-10{width:10%}}@media screen and (max-width:576px){.websy-responsive-container{width:calc(100% - 25px)}.websy-ib-col-s-100{width:100%}.websy-ib-col-s-90{width:90%}.websy-ib-col-s-80{width:80%}.websy-ib-col-s-75{width:75%}.websy-ib-col-s-70{width:70%}.websy-ib-col-s-60{width:60%}.websy-ib-col-s-50{width:50%}.websy-ib-col-s-40{width:40%}.websy-ib-col-s-33{width:33%}.websy-ib-col-s-30{width:30%}.websy-ib-col-s-25{width:25%}.websy-ib-col-s-20{width:20%}.websy-ib-col-s-10{width:10%}.websy-col-s-100{width:100%}.websy-col-s-90{width:90%}.websy-col-s-80{width:80%}.websy-col-s-75{width:75%}.websy-col-s-70{width:70%}.websy-col-s-60{width:60%}.websy-col-s-50{width:50%}.websy-col-s-40{width:40%}.websy-col-s-33{width:33.33%}.websy-col-s-30{width:30%}.websy-col-s-25{width:25%}.websy-col-s-20{width:20%}.websy-col-s-10{width:10%}}.websy-alert{display:flex;align-items:center;border:1px solid #cccccc;color:#cccccc;border-radius:10px;padding:20px}.websy-alert.websy-alert-error{border:1px solid #b12121;color:#ffffff;background-color:#cc6677}.websy-popup-dialog-container{position:fixed;top:0;left:0;width:100vw;height:100vh}.websy-popup-dialog-container .websy-popup-dialog{width:500px;padding:10px 15px;max-width:90%;background-color:#ffffff;position:relative;margin:0 auto;top:calc(50vh - 150px);box-shadow:2px 6px 6px #cccccc,inset 1px 1px 1px #f2f2f2}.websy-popup-dialog-container .websy-popup-dialog h1{font-size:16px}.websy-popup-dialog-container .websy-popup-dialog .websy-popup-button-panel{text-align:right}.websy-popup-dialog-container .websy-popup-dialog .websy-popup-button-panel button{margin-left:5px}.websy-button-group-item{display:inline-block;position:relative;padding:10px 0;margin:0 15px;cursor:pointer}.websy-button-group-item:first-of-type{margin-left:0}.websy-button-group-item.tab-style.active{font-weight:bold;border-bottom:4px solid}.websy-button-group-item.radio-style{padding-left:20px}.websy-button-group-item.radio-style:before{content:'';width:14px;height:14px;border:1px solid #555555;border-radius:50%;position:absolute;left:0;top:13px}.websy-button-group-item.radio-style.active{border-bottom:none}.websy-button-group-item.radio-style.active:after{content:'';width:8px;height:8px;border-radius:50%;background-color:#555555;position:absolute;left:4px;top:17px}.websy-button-group-item.checkbox-style{padding-left:25px}.websy-button-group-item.checkbox-style:before{content:'';width:18px;height:18px;border:1px solid #555555;border-radius:2px;position:absolute;left:0;top:8px}.websy-button-group-item.checkbox-style.active{border-bottom:none}.websy-button-group-item.checkbox-style.active:after{content:'\2713';color:#555555;position:absolute;left:4px;top:9px}.websy-carousel{position:relative;width:100%;height:100%;overflow:hidden;transform:translate3d()}.websy-frame-container{position:absolute;top:0;left:0;height:100%;width:100%}.websy-frame-container>div{background-size:contain;background-repeat:no-repeat;background-position:center;height:100%;width:100%}.websy-frame-container.animate{transition:all .6s ease}.websy-prev-arrow{position:absolute;fill:#333333;top:calc(50% - 10px);left:10px;height:20px;cursor:pointer}.websy-prev-arrow *{pointer-events:none}.websy-next-arrow{position:absolute;fill:#333333;top:calc(50% - 10px);right:10px;height:20px;cursor:pointer}.websy-next-arrow *{pointer-events:none}.websy-btn-parent{display:flex;position:absolute;width:100%;bottom:0;justify-content:center}.websy-progress-btn{color:#fff;display:flex;margin:10px;fill:#fff;cursor:pointer}.websy-progress-btn *{pointer-events:none}.websy-progress-btn-active circle{fill:#fff}.websy-carousel-image{position:absolute}.websy-loading-container{display:none;top:0;left:0;position:absolute;width:100%;height:100%;background-color:rgba(255,255,255,0.7);z-index:999}.websy-loading-container.global-loader{position:fixed;width:100vw;height:100vh}.websy-loading-container .websy-ripple{display:block;position:relative;top:calc(50% - 32px);width:55px;height:64px;margin:0 auto}.websy-loading-container .websy-ripple div{position:absolute;border:4px solid #4e43ed;opacity:1;border-radius:50%;animation:websy-ripple 1s cubic-bezier(0, .2, .8, 1) infinite}.websy-loading-container .websy-ripple div:nth-child( 2 ){animation-delay:-0.5s}.websy-loading-container h4{text-align:center;position:relative;color:#4e43ed;top:calc(50% - 32px)}.websy-loading-container p{position:relative;text-align:center;color:#404040;top:calc(50% - 32px)}.websy-loading-container.dark-loader{background-color:rgba(50,50,50,0.7)}.websy-loading-container.dark-loader .websy-ripple div{border:4px solid #ffffff}.websy-loading-container.dark-loader h4{letter-spacing:.1em}.websy-loading-container.dark-loader h4,.websy-loading-container.dark-loader p{color:#ffffff}.loading .websy-loading-container{display:block}@keyframes websy-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.websy-btn{font-size:16px;letter-spacing:.05em;padding:10px 15px;outline:none;background-color:#ffffff;color:#404040;border:none;box-sizing:border-box;cursor:pointer}.websy-btn [disabled]{background-color:#cccccc;color:#ffffff;cursor:not-allowed;border:none}.websy-btn.btn-primary{background-color:#4e43ed;color:#ffffff;border:none}.websy-btn.btn-secondary{background-color:#827af2;color:#ffffff;border:none}.websy-btn.btn-accent{background-color:#ba7af2;color:#404040;border:none}.websy-menu{padding-top:20px;border-right:1px solid #cccccc}.websy-menu.right-align{padding-right:30px;text-align:right}.websy-menu.right-align .websy-menu-header{padding-right:15px}.websy-menu.right-align .websy-menu-header.active{background-color:#cccccc}.websy-menu.right-align .websy-menu-header.active .active-square{right:-39px}.websy-menu .websy-menu-header span{width:100%}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons{display:flex;align-items:center;margin-right:15px}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons svg{stroke:#333333}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons :last-child{display:none}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons :first-child{display:block}.websy-menu .websy-menu-header.menu-open>.websy-menu-expand-collapse-buttons :first-child{display:none}.websy-menu .websy-menu-header.menu-open>.websy-menu-expand-collapse-buttons :last-child{display:block}.websy-menu .websy-child-list{background-color:#ffffff;color:#404040}.websy-menu .websy-menu-icon *{pointer-events:none}.websy-menu .websy-menu-icon svg{fill:#888888}.websy-menu .websy-menu-search{margin:0 10px 20px}.websy-menu-mask{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:transparent;z-index:100;display:none}.websy-menu-mask.open{display:block}.websy-horizontal-list-container .logo *{pointer-events:none}.websy-horizontal-list-container .websy-menu-icon{position:absolute;top:25px;right:25px;display:none}.websy-horizontal-list-container .websy-menu-icon rect{stroke:none;fill:#ffffff}.websy-horizontal-list-container .websy-menu-block-container{display:inline-block;height:100%}.websy-horizontal-list-container .websy-menu-secondary{flex-grow:1;flex-shrink:0}@media screen and (max-width:1024px){.websy-horizontal-list-container .websy-menu-icon{display:block}.websy-horizontal-list-container .websy-menu-icon.open rect:first-of-type{display:none}.websy-horizontal-list-container .websy-menu-icon.open rect:nth-of-type( 2 ){transform:rotate(45deg) translate(3px, -3px);transform-origin:15px 10px}.websy-horizontal-list-container .websy-menu-icon.open rect:last-of-type{transform:rotate(-45deg) translate(3px, 3px);transform-origin:6px 27px}.websy-horizontal-list-container .websy-horizontal-list{position:absolute;height:initial;top:80px;right:0;background-color:#ffffff;width:80vw;box-shadow:0 1px 3px #888888;display:none;z-index:101}.websy-horizontal-list-container .websy-horizontal-list li{padding:0 15px;display:block;position:relative}.websy-horizontal-list-container .websy-horizontal-list li .active-square{display:none}.websy-horizontal-list-container .websy-horizontal-list li:hover{border-bottom:2px solid #888888}.websy-horizontal-list-container .websy-horizontal-list .websy-horizontal-list-item .active .selected-bar{width:6px;height:60%;position:absolute;left:-15px;top:20%;background-color:#888888}.websy-horizontal-list-container .open .websy-horizontal-list{display:block}}.websy-date-picker-container{display:block;position:relative}.websy-date-picker-container .websy-btn svg{pointer-events:none}.websy-date-picker-container .websy-dp-button-container{padding:5px 10px;text-align:right}.websy-date-picker-container .websy-dp-button-container .dp-footnote{position:absolute;left:15px;font-size:.6rem;bottom:15px;color:#888888;width:calc(100% - 150px);text-align:left}.websy-date-picker-container .websy-dp-button-container button *{pointer-events:none}.websy-date-picker-container .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-5px;left:0}.websy-date-picker-container *{user-select:none}.websy-date-picker-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-date-picker-mask.active{display:block}.websy-date-picker-header{height:40px;line-height:45px;cursor:pointer}.websy-date-picker-header *{pointer-events:none}.websy-date-picker-header .clear-selection{display:none;pointer-events:initial}.websy-date-picker-header .clear-selection svg{transform:unset;height:unset;display:block}.websy-date-picker-header .clear-selection *{pointer-events:none}.websy-date-picker-header span,.websy-date-picker-header svg,.websy-date-picker-header i{display:inline-block;vertical-align:middle}.websy-date-picker-header span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-date-picker-header svg{transform:rotate(180deg);height:9px}.websy-date-picker-header.allow-clear.range-selected span{max-width:calc(100% - 56px)}.websy-date-picker-header.allow-clear.range-selected .clear-selection{display:inline-block;vertical-align:middle;height:24px;stroke:#333333}.websy-date-picker-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:absolute;top:100%;left:0;width:470px;display:none;z-index:200;font-size:.8rem}.websy-date-picker-content.active{display:block}.monthyear .websy-date-picker-content{width:700px}.monthyear .websy-date-picker-content .websy-date-picker-custom{width:525px}.websy-date-picker-ranges,.websy-date-picker-custom{display:inline-block;vertical-align:top;box-sizing:border-box}.hide-ranges{width:305px}.hide-ranges .websy-date-picker-ranges{display:none}.websy-date-picker-ranges{width:170px}.websy-date-picker-ranges ul{list-style-type:none;padding:0;margin:0;text-align:left;width:100%}.websy-date-picker-ranges li{padding:10px 15px;cursor:pointer}.websy-date-picker-ranges li:hover{background-color:#ba7af2}.websy-date-picker-ranges li.websy-disabled-range{color:#cccccc}.websy-date-picker-range{position:relative}.websy-date-picker-range.active:after{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background-color:#ba7af2}.websy-dp-days-header,.websy-dp-date-list,.websy-date-picker-custom{width:300px}.websy-date-picker-custom{border-left:1px solid #888888;text-align:left}.websy-date-picker-custom .websy-dp-days-header{color:#888888}.websy-date-picker-custom .websy-dp-date-list{height:240px;overflow-y:auto;position:relative}.websy-date-picker-custom .websy-dp-month-container{padding-top:5px}.websy-date-picker-custom .websy-dp-month-container span{padding-left:13px;color:#888888}.websy-date-picker-custom ul{list-style-type:none;padding:0;margin:0}.websy-date-picker-custom ul li{display:inline-block;width:40px;height:40px;line-height:40px;text-align:center;cursor:pointer}.websy-date-picker-custom ul li.websy-dp-year,.websy-date-picker-custom ul li.websy-dp-hour{width:50px;height:50px;line-height:50px}.websy-date-picker-custom ul li.selected{background-color:#ba7af2}.websy-date-picker-custom ul li.first{border-bottom-left-radius:50%;border-top-left-radius:50%}.websy-date-picker-custom ul li.last{border-bottom-right-radius:50%;border-top-right-radius:50%}.websy-date-picker-custom ul li.websy-disabled-date{color:#cccccc}.websy-drag-drop-container{display:flex;position:relative;width:100%;height:100%}.websy-drag-drop-container.vertical{flex-direction:column}.websy-drop-zone{min-width:5px;height:100%;min-height:40px;vertical-align:bottom;opacity:.5}.websy-drop-zone.drag-over{border:1px dashed #cccccc;width:50px}.websy-dragdrop-item{position:relative;display:flex}.websy-dragdrop-item *{user-select:none}.websy-dragdrop-item .droppable{pointer-events:all}.websy-dragdrop-item.dragging{opacity:.5}.websy-dragdrop-item.dragging .websy-drop-zone{visibility:hidden}.websy-dragdrop-item:last-of-type{flex-grow:1}.websy-dragdrop-item:last-of-type .websy-drop-zone{flex-grow:1;width:auto;margin-left:5px;border:1px dashed #cccccc;display:flex;justify-content:center;align-items:center}.websy-dragdrop-item:last-of-type .websy-drop-zone:before{content:attr(data-placeholder)}.websy-dragdrop-item .websy-dragdrop-item-inner{display:flex;justify-content:center;align-items:center;min-height:40px}.websy-dragdrop-item .websy-dragdrop-item-inner:hover{box-shadow:0 0 3px #cccccc}.websy-dragdrop-item.empty{width:100%;height:100%}.websy-dragdrop-item.empty .websy-drop-zone{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border:1px dashed #cccccc}.websy-dragdrop-item.empty .websy-drop-zone:before{content:attr(data-placeholder)}.vertical .websy-dragdrop-item{flex-direction:column}.vertical .websy-dragdrop-item .websy-drop-zone{width:100%;min-height:5px}.vertical .websy-dragdrop-item .websy-drop-zone.drag-over{height:50px;width:100%;flex-grow:1}.vertical .websy-dragdrop-item:last-of-type .websy-drop-zone{min-height:40px;margin-top:5px;margin-left:unset;border:1px dashed #cccccc}.vertical .websy-dragdrop-item:last-of-type .websy-drop-zone:before{content:attr(data-placeholder)}.websy-drop-zone-placeholder{bottom:unset;top:0}.dragging .websy-drop-zone:hover{border:1px solid #cc6677;width:60px}.websy-dropdown-container{display:block;position:relative}.websy-dropdown-container input.dropdown-input{display:none}.websy-dropdown-container.list{height:100%}.websy-dropdown-container.list svg.search{pointer-events:all}.websy-dropdown-container.list .websy-dropdown-action-container{display:none}.websy-dropdown-container.list .websy-dropdown-header{padding:0 15px}.websy-dropdown-container.list .websy-dropdown-header .arrow{display:none}.websy-dropdown-container.list .websy-dropdown-header.allow-clear span{max-width:calc(100% - 55px)}.websy-dropdown-container.list .websy-dropdown-header.allow-clear span.websy-dropdown-header-value{display:none}.websy-dropdown-container.list .websy-dropdown-header .websy-dropdown-header-label{position:unset;font-size:unset;top:unset;left:unset}.websy-dropdown-container.list .websy-dropdown-content{display:block;width:100%;border:none;box-shadow:none;height:calc(100% - 45px);max-height:unset;top:unset;position:relative;box-sizing:border-box}.websy-dropdown-container.list .websy-dropdown-content.on-top{bottom:unset}.websy-dropdown-container.list .websy-dropdown-items{width:100%;height:100%;max-height:unset;overflow-y:auto}.websy-dropdown-container.list .websy-dropdown-items .websy-dropdown-item{padding:0 15px 0 30px}.websy-dropdown-container.list .websy-dropdown-search{display:none}.websy-dropdown-container.list.search-open .websy-dropdown-items{height:calc(100% - 40px)}.websy-dropdown-container.list.search-open .websy-dropdown-search{display:block}.websy-dropdown-container.list.search-open .websy-dropdown-action-container{display:block;border-top:1px solid #cccccc}.websy-dropdown-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-dropdown-mask.active{display:block}.websy-dropdown-header{display:flex;align-items:center;height:40px;line-height:40px;cursor:pointer;position:relative}.websy-dropdown-header *{pointer-events:none}.websy-dropdown-header .clear,.websy-dropdown-header .search{pointer-events:initial}.websy-dropdown-header .header-label{width:100%;position:relative}.websy-dropdown-header svg,.websy-dropdown-header span{display:inline-block;vertical-align:middle}.websy-dropdown-header svg{width:20px;stroke:#333333;fill:#333333;flex-shrink:0;pointer-events:none}.websy-dropdown-header svg *{pointer-events:none}.websy-dropdown-header span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-dropdown-header .arrow,.websy-dropdown-header .search{display:flex}.websy-dropdown-header .arrow{transform:rotate(180deg)}.websy-dropdown-header .arrow svg{height:9px}.websy-dropdown-header .clear{display:none}.websy-dropdown-header.allow-clear.one-selected .clear,.websy-dropdown-header.allow-clear.multi-selected .clear{display:flex}.websy-dropdown-header.one-selected .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-15px;left:0}.websy-dropdown-header.multi-selected .websy-dropdown-header-value{position:absolute;font-size:.5em;bottom:15px;left:0}.websy-dropdown-search{margin:0 15px;height:40px;line-height:40px;text-indent:10px;letter-spacing:.1em;border:1px solid #cccccc;width:calc(100% - 35px);font-size:inherit;background-color:#ffffff}.websy-dropdown-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:fixed;width:100%;max-height:300px;display:none;z-index:1}.websy-dropdown-content.active{display:block}.websy-dropdown-content.on-top{top:unset;bottom:100%}.websy-dropdown-content .websy-dropdown-action-container{position:relative;text-align:right;border-bottom:1px solid #cccccc;padding:0 10px;height:40px;display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:7px;box-sizing:border-box}.websy-dropdown-content .websy-dropdown-action-container button{background-color:transparent;border:none;cursor:pointer}.websy-dropdown-content .websy-dropdown-action-container button svg{pointer-events:none;position:relative}.websy-dropdown-content .websy-dropdown-action-container ul{text-align:left;list-style-type:none;margin:0;padding:0;position:absolute;top:100%;display:none;background-color:#ffffff;width:90%;right:0;box-shadow:0 0 3px #cccccc;z-index:1}.websy-dropdown-content .websy-dropdown-action-container ul.active{display:block}.websy-dropdown-content .websy-dropdown-action-container ul li{padding:10px 15px;cursor:pointer}.websy-dropdown-content .websy-dropdown-action-container ul li:hover{background-color:#cccccc}.websy-dropdown-items{width:100%;max-height:300px;overflow-y:auto}.websy-dropdown-items ul{list-style-type:none;padding:0;margin:0;text-align:left;width:100%;height:100%;overflow-y:auto}.websy-dropdown-items li{padding:0 15px 0 35px;height:40px;line-height:40px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}.websy-dropdown-items li:hover{background-color:#f2f2f2}.websy-dropdown-items li.websy-delayed{height:auto;white-space:normal}.websy-dropdown-items li.state-X{background-color:#cccccc}.with-search .websy-dropdown-items{max-height:240px}.with-actions .websy-dropdown-items{max-height:240px}.with-actions.with-search .websy-dropdown-items{max-height:200px}.websy-dropdown-item{position:relative}.websy-dropdown-item.active:before{content:'\2713';position:absolute;top:0;right:unset;width:15px;height:100%;color:#4e43ed;background-color:unset;left:15px;font-family:system-ui}.disabled{color:#cccccc}.disabled svg{stroke:#cccccc;fill:#cccccc}.websy-form-input-has-error .form-component .websy-dropdown-container{border-color:#cc6677}.websy-switch-label,.websy-switch{display:inline-block;vertical-align:middle}.websy-switch{height:20px;width:42px;background-color:#cccccc;position:relative;border-radius:10px;cursor:pointer}.websy-switch:before{content:'';position:absolute;left:0;top:0;height:20px;width:20px;border-radius:50%;background-color:#ffffff;box-shadow:0 0 3px #333333}.websy-switch.enabled{background-color:#44aa99}.websy-switch.enabled:before{left:unset;right:0}.websy-search-input-container{position:relative;background-color:#ffffff;border:1px solid #cccccc;height:50px}.websy-search-input-container .search,.websy-search-input-container .clear{position:absolute;top:15px;left:18px;stroke:#000000;z-index:1}.websy-search-input-container .search *,.websy-search-input-container .clear *{pointer-events:none}.websy-search-input-container .clear{top:14px;left:unset;right:18px;cursor:pointer}.websy-search-input,.websy-search-input-ghost,.websy-search-lozenge-container{height:50px;line-height:50px;text-indent:50px;letter-spacing:.1em;border:none;width:100%;font-size:inherit;box-sizing:border-box;position:absolute;top:0;left:0;bottom:0;right:0;font-family:inherit;padding:0;background-color:transparent}.websy-search-input-ghost{text-align:left;color:#cccccc}.websy-search-suggestion-container{display:none;position:absolute;background-color:rgba(50,50,50,0.7);color:rgba(255,255,255,0.7);top:100%;left:0}.websy-search-suggestion-container ul{list-style-type:none;padding:0;margin:0;display:flex;justify-content:start}.websy-search-suggestion-container ul li{padding:10px 15px;cursor:pointer}.websy-search-suggestion-container ul li.active{background-color:#827af2;color:#ffffff}.websy-search-suggestion-container.active{display:block}.websy-search-lozenge-container{display:flex;justify-content:start;left:50px}.websy-search-lozenge-container>div{background-color:rgba(255,0,0,0.5);color:#ffffff;text-indent:0}.websy-info{display:inline-block;vertical-align:middle;height:24px;position:relative;z-index:100}.websy-info svg{fill:#333333}.websy-info:before{position:absolute;top:auto;bottom:calc(100% + 8px);right:calc(50% - 5px);transform:rotate(45deg);background-color:transparent;color:transparent;width:10px;height:10px;z-index:12}.websy-info:after{position:absolute;background-color:transparent;color:transparent;padding:10px 15px;left:calc(50% - 115px);top:auto;width:200px;bottom:calc(100% + 12px);border-radius:2px;z-index:11;font-size:12px;line-height:16px;font-weight:normal;box-shadow:0 0 3px #ffffff}.websy-info.websy-info-dock-left:before{bottom:unset;left:unset;top:calc(50% - 7px);right:25px}.websy-info.websy-info-dock-left:after{bottom:unset;left:unset;right:30px;top:calc(50% - 20px)}.websy-info.websy-info-dock-right:before{bottom:unset;right:unset;top:calc(50% - 7px);left:25px}.websy-info.websy-info-dock-right:after{bottom:unset;right:unset;left:30px;top:calc(50% - 20px)}.websy-info.websy-info-dock-bottom:before{bottom:unset;top:calc(100% + 8px)}.websy-info.websy-info-dock-bottom:after{bottom:unset;top:calc(100% + 12px)}.websy-info:hover:after{background-color:#333333;color:#ffffff;content:attr(data-info)}.websy-info:hover:before{background-color:#333333;color:#ffffff;content:''}.websy-delayed-info{overflow:visible !important;position:relative}.websy-delayed-info:after{background-color:#ffffff;color:#404040;content:attr(data-info);left:0;top:0;width:auto;position:absolute;padding:inherit;z-index:1;box-shadow:0 0 3px #cccccc}.websy-form>div{margin:5px 0 15px}.websy-form>button{margin-top:10px}.websy-form .websy-form-input-has-error .websy-input{border-color:#cc6677;background-color:#eee0e3}.form-component{position:relative}.websy-input-container{position:relative}.websy-input-container label+input{margin-right:10px}.websy-input-container input+label{margin-right:10px}.websy-validation-failure{background-color:#cc6677;border:2px solid #b12121;color:#ffffff;padding:5px 15px;font-size:.8em;margin-bottom:10px}.websy-validation-failure:empty{display:none}.websy-form-validation-error{font-size:.8em;color:#cc6677;position:absolute;top:100%}.websy-form-validation-error:empty{display:none}.websy-form-required-value{color:#cc6677;font-size:.8rem;vertical-align:text-top}.websy-multi-form-container>div:nth-of-type( n + 2 ) label,.websy-multi-form-container>div:nth-of-type( n + 2 ) .websy-form-required-value{display:none}.websy-multi-form-container .websy-multi-form-form-container{display:flex;align-items:end}.websy-multi-form-container .websy-multi-form-form-container .websy-multi-form-form{width:100%}.websy-multi-form-container .websy-multi-form-form-container button{width:40px;height:40px;margin-bottom:20px;background-color:transparent;border:none;cursor:pointer}.websy-multi-form-container .websy-multi-form-form-container button svg,.websy-multi-form-container .websy-multi-form-form-container button path,.websy-multi-form-container .websy-multi-form-form-container button line{stroke:#404040;pointer-events:none}.websy-view{display:none}.websy-view.active{display:initial}.websy-trigger{cursor:pointer}.websy-trigger *{pointer-events:none}.websy-trigger input,.websy-trigger .clickable{pointer-events:initial}.websy-flippable{transform-style:preserve-3d;transition:transform 1s;backface-visibility:hidden;transform:rotateY(180deg);position:absolute;top:0;left:0;width:100%;height:100%}.websy-flippable.active{transform:rotateY(0deg)}.websy-responsive-text{display:flex;flex-direction:column;height:100%;width:100%}.websy-responsive-text span{display:flex}.websy-pager-container{height:50%;position:relative}.websy-pager-container span{display:inline-block;vertical-align:middle}.websy-pager-container .websy-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-pager-container .websy-page-selector .websy-dropdown-header-value,.websy-pager-container .websy-page-selector svg{position:relative;top:-2px}.websy-pager-container .websy-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-pager-container .websy-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-pager-container .websy-page-list li.websy-page-num:hover{text-decoration:underline}.websy-pager-container .websy-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-pager-container .websy-page-list li:first-of-type{margin-right:10px}.websy-pdf-button *{pointer-events:none}.websy-pdf-button svg{width:20px;vertical-align:bottom}.websy-vis-table{height:100%;overflow-y:auto}.websy-vis-table.with-paging{height:calc(100% - 50px)}.websy-vis-table table{border-spacing:0;border-collapse:collapse;display:table;table-layout:fixed;width:100%}.websy-vis-table table td{border:none;font-size:12px;padding:5px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.websy-vis-table table td *{pointer-events:none}.websy-vis-table table td a{pointer-events:initial}.websy-vis-table table th{color:#888888;background-color:transparent;font-size:12px;text-align:left;position:relative}.websy-vis-table table tbody{width:100%;overflow-y:auto;overflow-x:hidden}.websy-vis-table table thead tr:nth-child( 1 ){width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table table thead tr:nth-child( 2 ){width:100%;background-color:#ffffff}.websy-vis-table table tbody tr{width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table .sortOrder{content:url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><path d="M414,321.94,274.22,158.82a24,24,0,0,0-36.44,0L98,321.94c-13.34,15.57-2.28,39.62,18.22,39.62H395.82C416.32,361.56,427.38,337.51,414,321.94Z"/></svg>');height:12px;width:12px;margin:auto;position:absolute;left:calc(50% - 6px);top:calc(100% - 8px)}.websy-vis-table .sortOrderHidden{height:8px;width:10px;margin:auto;visibility:hidden}.websy-vis-table .sortOrder.desc{margin:auto;transform:rotate(180deg);position:absolute;top:calc(100% - 3px)}.websy-vis-table .tableSearchIcon{float:right;fill:#cccccc;display:block;margin:auto}.websy-vis-table .tableSearchIcon.active{fill:#555555}.websy-vis-table .tableSearchIcon.selected{float:right;fill:#ffffff;display:block;margin:auto}.websy-vis-table .leftSection{position:relative;cursor:pointer}.websy-vis-table .leftSection .tableHeaderField{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-table-paging-container{height:50%;position:relative}.websy-table-paging-container span{display:inline-block;vertical-align:middle}.websy-table-paging-container .websy-vis-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-table-paging-container .websy-vis-page-selector .websy-dropdown-header-value,.websy-table-paging-container .websy-vis-page-selector svg{position:relative;top:-2px}.websy-table-paging-container .websy-vis-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-table-paging-container .websy-vis-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-table-paging-container .websy-vis-page-list li.websy-page-num:hover{text-decoration:underline}.websy-table-paging-container .websy-vis-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-table-paging-container .websy-vis-page-list li:first-of-type{margin-right:10px}.websy-vis-table{height:100%;position:relative;overflow-y:auto}.websy-vis-table.with-paging{height:calc(100% - 50px)}.websy-vis-table.with-virtual-scroll{overflow:hidden}.websy-vis-table.with-virtual-scroll:hover .websy-v-scroll-containerx,.websy-vis-table.with-virtual-scroll:hover .websy-h-scroll-container{display:block}.websy-vis-table.has-error.with-virtual-scroll:hover .websy-v-scroll-containerx,.websy-vis-table.has-error.with-virtual-scroll:hover .websy-h-scroll-container{display:none}.websy-vis-table table{border-spacing:0;border-collapse:collapse;display:table;table-layout:fixed;width:100%}.websy-vis-table table th,.websy-vis-table table td{box-sizing:border-box}.websy-vis-table table.hidden{display:none}.websy-vis-table table td{border:none;font-size:12px;padding:5px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.websy-vis-table table th{color:#888888;background-color:transparent;font-size:12px;text-align:left;padding:10px 5px;position:relative}.websy-vis-table table tbody{width:100%;overflow-y:auto;overflow-x:hidden}.websy-vis-table table thead tr:nth-child( 1 ){width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table table thead tr:nth-child( 2 ){width:100%;background-color:#ffffff}.websy-vis-table table tbody tr{width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table .sortOrder{content:url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><path d="M414,321.94,274.22,158.82a24,24,0,0,0-36.44,0L98,321.94c-13.34,15.57-2.28,39.62,18.22,39.62H395.82C416.32,361.56,427.38,337.51,414,321.94Z"/></svg>');height:12px;width:12px;margin:auto;position:absolute;left:calc(50% - 6px);top:calc(100% - 8px)}.websy-vis-table .sortOrderHidden{height:8px;width:10px;margin:auto;visibility:hidden}.websy-vis-table .sortOrder.desc{margin:auto;transform:rotate(180deg);position:absolute;top:calc(100% - 3px)}.websy-vis-table .websy-table-search-icon{display:block;margin:auto;position:absolute;right:0;top:0;height:100%;width:30px;text-align:center;cursor:pointer;z-index:2}.websy-vis-table .websy-table-search-icon svg{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px);pointer-events:none}.websy-vis-table .leftSection{position:relative;cursor:pointer}.websy-vis-table .leftSection .tableHeaderField{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-vis-table .websy-v-scroll-container{position:absolute;top:0;right:0;width:12px;bottom:0;background-color:#827af2;display:none}.websy-vis-table .websy-v-scroll-container .websy-scroll-handle{width:12px;border-radius:6px}.websy-vis-table .websy-h-scroll-container{position:absolute;left:0;right:0;height:12px;bottom:0;background-color:rgba(255,255,255,0.7);display:none}.websy-vis-table .websy-h-scroll-container .websy-scroll-handle{height:12px;border-radius:6px}.websy-vis-table .websy-scroll-handle{position:absolute;background-color:#cccccc}.websy-table-paging-container{height:50%;position:relative}.websy-table-paging-container span{display:inline-block;vertical-align:middle}.websy-table-paging-container .websy-vis-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-table-paging-container .websy-vis-page-selector .websy-dropdown-header-value,.websy-table-paging-container .websy-vis-page-selector svg{position:relative;top:-2px}.websy-table-paging-container .websy-vis-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-table-paging-container .websy-vis-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-table-paging-container .websy-vis-page-list li.websy-page-num:hover{text-decoration:underline}.websy-table-paging-container .websy-vis-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-table-paging-container .websy-vis-page-list li:first-of-type{margin-right:10px}.scrolling .websy-vis-table *{user-select:none}.websy-modal-dropdown{display:none;position:fixed}.websy-modal-dropdown.active{display:block}.websy-vis-table-3{height:100%;width:100%;position:relative;overflow:hidden;overflow-x:auto}.websy-vis-table-3 table{table-layout:fixed;border-collapse:collapse;display:block;width:100%}.websy-vis-table-3 table tbody{font-size:inherit}.websy-vis-table-3.has-error .websy-table-inner-container{display:none}.websy-vis-table-3.scrolling *{user-select:none}.websy-vis-table-3+.websy-v-scroll-container{position:absolute;right:0}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container{position:absolute;bottom:0;width:calc(100% - 10px);height:10px}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container .websy-scroll-handle-x{height:100%}.websy-vis-table-3+.websy-v-scroll-container .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3+.websy-v-scroll-container .websy-scroll-handle-y{width:100%}.websy-vis-table-3.touch-device .websy-v-scroll-container{width:30px;background-color:#ffffff;opacity:.4;border:1px solid #cccccc}.websy-vis-table-3.touch-device .websy-h-scroll-container{height:30px;background-color:#ffffff;opacity:.4;border:1px solid #cccccc;width:calc(100% - 30px)}.websy-vis-table-3.touch-device .websy-scroll-handle{opacity:.7}.websy-vis-table-3 .websy-table-inner-container{height:100%;width:100%}.websy-vis-table-3 .websy-table-header{font-weight:bold}.websy-vis-table-3 .websy-table-header tr:last-of-type{border-bottom:1px solid #cccccc}.websy-vis-table-3 .websy-table-header td>div{display:flex;max-width:100%;width:100%;flex-grow:0}.websy-vis-table-3 .websy-table-header td>div *{pointer-events:none}.websy-vis-table-3 .websy-table-header td>div .websy-table-search-icon{display:flex;cursor:pointer;margin-left:5px;pointer-events:initial}.websy-vis-table-3 .websy-table-header td>div .websy-table-search-icon *{pointer-events:none}.websy-vis-table-3 .websy-table-header td>div .websy-table-sort-icon{display:flex;margin-left:5px;align-items:center}.websy-vis-table-3 .websy-table-header td>div .websy-table-sort-icon.asc{transform:rotate(180deg)}.websy-vis-table-3 .websy-table-body{background-color:#ffffff;overflow-y:auto;overflow-x:hidden}.websy-vis-table-3.with-virtual-scroll{overflow:hidden;overflow-x:hidden}.websy-vis-table-3.with-virtual-scroll .websy-table-body{overflow:hidden}.websy-vis-table-3 .websy-table-row{border-bottom:1px solid #eeeeee}.websy-vis-table-3 .websy-table-row:last-of-type{border-bottom:none}.websy-vis-table-3 .websy-table-row .websy-table-cell{padding:5px;box-sizing:border-box;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #eeeeee}.websy-vis-table-3 .websy-table-row .websy-table-cell>div{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:5px;margin:-5px;box-sizing:border-box}.websy-vis-table-3 .websy-table-row .websy-table-cell:last-of-type{border-right:none}.websy-vis-table-3 .websy-table-row .websy-table-cell:not( [ rowspan = '1' ] ){vertical-align:top}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse{pointer-events:initial}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand *,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse *{pointer-events:none}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand svg,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse svg{height:12px;width:12px}.websy-table-invisible{visibility:hidden}.websy-table-touch-scroller{position:absolute;width:calc(100% - 30px);height:calc(100% - 30px);top:0;left:0}.websy-table-touch-scroller.hidden{display:none}.table-dropdown-container{position:absolute;top:0}.table-dropdown-container .websy-modal-dropdown{position:absolute}.table-dropdown-container .websy-modal-dropdown .websy-dropdown-header{display:none}.websy-chart .x-axis text,.websy-chart .y-axis text{fill:#333333}.websy-chart .x-axis path,.websy-chart .y-axis path,.websy-chart .x-axis line,.websy-chart .y-axis line{stroke:#888888}.websy-chart .y-axis path,.websy-chart .y-axis line{display:none}.websy-chart-legend{position:absolute;overflow-y:auto}.brush .handle--e,.brush .handle--w{display:none}.websy-legend .websy-legend-item{position:relative;padding-left:22px;display:flex}.websy-legend .websy-legend-item .symbol{position:absolute;left:0;top:3px}.websy-legend .websy-legend-item .symbol.circle{border-radius:50%}.websy-legend .websy-legend-item.horizontal{display:inline-block}.websy-chart-tooltip{overflow:visible}.websy-chart-tooltip .websy-chart-tooltip-content{padding:10px 15px;background-color:#333333;font-size:12px;position:absolute;display:none}.websy-chart-tooltip .websy-chart-tooltip-content.active{display:block}.websy-chart-tooltip .websy-chart-tooltip-content:before{content:'';height:12px;width:12px;background-color:#333333;position:absolute;left:-4px;top:8px;transform:rotate(45deg)}.websy-chart-tooltip .websy-chart-tooltip-content ul{top:0;list-style-type:none;margin:0;padding:0}.websy-chart-tooltip .websy-chart-tooltip-content ul li{position:relative;padding:3px 0;padding-left:15px;color:#ffffff}.websy-chart-tooltip .websy-chart-tooltip-content ul li i{position:absolute;height:10px;width:10px;border-radius:5px;display:inline-block;left:0;top:calc(50% - 5px);margin-right:6px}.websy-chart-tooltip .websy-chart-tooltip-content .title{font-weight:bold;color:#ffffff}.websy-chart-tooltip.left .websy-chart-tooltip-content:before{left:unset;right:-4px;top:8px;transform:rotate(-45deg)}.websy-chart-tooltip.vertical .websy-chart-tooltip-content:before{left:8px;right:unset;top:-4px;bottom:unset;transform:rotate(-45deg)}.websy-chart-tooltip.vertical.top .websy-chart-tooltip-content:before{left:8px;right:unset;top:unset;bottom:-4px;transform:rotate(-45deg)}.websy-kpi-info,.websy-kpi-icon{display:inline-block;height:70px;vertical-align:middle}.websy-kpi-icon{width:40px}.websy-kpi-icon img{width:30px;margin-top:14px}.websy-kpi-value{font-size:2em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.websy-kpi-sub-value{font-size:.5em;color:#888888;margin-top:-5px}.websy-container{width:80vw;margin:0 auto}.websy-container .websy-horizontal-list-container{box-sizing:border-box}.websy-container .websy-horizontal-list-container.fixed{padding:0 10vw;z-index:100}.websy-mask{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(255,255,255,0.7)}.websy-vis-article{height:100%;position:relative}.websy-card{position:relative;background-color:#ffffff;box-shadow:0 0 5px #cccccc;padding:10px 15px;margin-top:7px;margin-bottom:8px}.websy-vertical-list-container{width:300px;box-sizing:border-box;transition:all .2s linear;display:flex;flex-direction:column}.websy-vertical-list-container.fixed{position:fixed;height:100vh;left:0;z-index:100;overflow-y:auto}.websy-vertical-list-container.fixed.open{width:50px}.websy-vertical-list-container.fixed.open .websy-menu-search{display:none}.websy-vertical-list-container.fixed.open .websy-menu-header span{visibility:hidden;white-space:nowrap}.websy-vertical-list-container.fixed.open .websy-menu-icon,.websy-vertical-list-container.fixed.open .websy-menu-icon *{visibility:visible}.websy-vertical-list-container.fixed .websy-menu-icon{position:relative;text-align:right;height:40px;margin:10px 6px}.websy-vertical-list-container.fixed .logo{position:relative;width:100%;padding:0 15px;margin-bottom:20px;box-sizing:border-box}@media screen and (max-width:1024px){.websy-vertical-list-container.fixed{left:-250px}.websy-vertical-list-container.fixed.open{left:0;width:80vw}.websy-vertical-list-container.fixed.open .websy-menu-header{padding:20px 10px}}.websy-vertical-list-container .logo *{pointer-events:none}.websy-vertical-list-container .logo img{height:60px;width:auto}.websy-horizontal-list-container{width:100vw;height:80px;background-color:#cccccc}.websy-horizontal-list-container.fixed{position:fixed;top:0;bottom:0;left:0}.websy-horizontal-list-container .logo{display:inline-block;vertical-align:top;width:auto;margin-right:20px}.websy-horizontal-list-container .logo img{height:60px;width:auto;margin:10px 0}.websy-vertical-list,.websy-horizontal-list{padding:0;margin:0;list-style-type:none;transition:.2s linear all}.websy-vertical-list .websy-menu-collapsed,.websy-horizontal-list .websy-menu-collapsed{height:0;overflow:hidden}.websy-vertical-list .popout-menu,.websy-horizontal-list .popout-menu{display:none}.websy-vertical-list .websy-menu-header,.websy-horizontal-list .websy-menu-header{position:relative;box-sizing:border-box}.websy-vertical-list .websy-menu-header:hover,.websy-horizontal-list .websy-menu-header:hover{border-bottom:2px solid #888888}.websy-vertical-list .websy-menu-header.menu-open .menu-carat,.websy-horizontal-list .websy-menu-header.menu-open .menu-carat{transform:rotate(-135deg);transform-origin:0}.websy-vertical-list .websy-menu-header.active .active-square,.websy-horizontal-list .websy-menu-header.active .active-square{position:absolute;width:15px;height:15px;border-bottom:1px solid #cccccc;border-left:1px solid #cccccc;background-color:#ffffff;transform:rotate(45deg)}.websy-vertical-list .websy-menu-header.selected .selected-bar,.websy-horizontal-list .websy-menu-header.selected .selected-bar{position:absolute;box-sizing:border-box}.websy-vertical-list .websy-menu-header .menu-carat,.websy-horizontal-list .websy-menu-header .menu-carat{position:absolute;width:6px;height:6px}.websy-vertical-list .websy-menu-header a,.websy-horizontal-list .websy-menu-header a,.websy-vertical-list .websy-menu-header a:hover,.websy-horizontal-list .websy-menu-header a:hover,.websy-vertical-list .websy-menu-header a:active,.websy-horizontal-list .websy-menu-header a:active,.websy-vertical-list .websy-menu-header a:visited,.websy-horizontal-list .websy-menu-header a:visited{color:initial;text-decoration:none}.websy-vertical-list .websy-menu-header span,.websy-horizontal-list .websy-menu-header span{pointer-events:none}.websy-vertical-list .always-open .websy-menu-header .menu-carat,.websy-horizontal-list .always-open .websy-menu-header .menu-carat{transform:rotate(-135deg);transform-origin:0}.websy-vertical-list .always-open .websy-menu-collapsed,.websy-horizontal-list .always-open .websy-menu-collapsed{height:unset;overflow:unset}.websy-vertical-list .websy-vertical-list-item,.websy-horizontal-list .websy-vertical-list-item{padding:0}.websy-horizontal-list{width:auto;display:inline-block;vertical-align:top;height:100%}.websy-horizontal-list.fixed{position:fixed}.websy-horizontal-list .websy-menu-header{padding:26px 0;margin-right:20px}.websy-horizontal-list .websy-menu-header.active .active-square{bottom:-10px;left:calc(50% - 8px)}.websy-horizontal-list .websy-menu-header.selected .selected-bar{border-bottom:3px solid;left:0;width:100%;top:0}.websy-horizontal-list .websy-menu-header .menu-carat{bottom:10px;left:calc(50% - 3px);background-color:#ffffff;border-bottom:1px solid #cccccc;border-left:1px solid #cccccc;z-index:999;box-sizing:border-box;transform:rotate(-45deg)}.websy-horizontal-list .websy-horizontal-list-item{display:inline-block;height:100%;width:auto}.websy-vertical-list{width:100%;height:100%;overflow-y:auto;flex-grow:1;flex-shrink:1}.websy-vertical-list.fixed{position:fixed}.websy-vertical-list .websy-menu-header{padding:15px 0;text-indent:15px;display:flex;align-items:center}.websy-vertical-list .websy-menu-header a{display:flex;align-items:center}.websy-vertical-list .websy-menu-header.active .active-square{right:-9px;top:calc(50% - 8px)}.websy-vertical-list .websy-menu-header.selected .selected-bar{border-left:3px solid;left:0;height:100%;top:0}.websy-vertical-list .websy-menu-header .menu-carat{right:15px;top:calc(50% - 3px);border-top:1px solid #cccccc;border-left:1px solid #cccccc;transform:rotate(-45deg)}[data-retracted='true'] .websy-menu-header:after{display:none}[data-retracted='true'] .websy-menu-header .menu-carat{display:none}[data-retracted='true'] .popout{position:absolute;top:0;height:auto;z-index:9999;background-color:#4e43ed}[data-retracted='true'] .popout .websy-menu-header:after{display:initial}.websy-input{border:1px solid #333333;padding:0 15px;height:40px;font-size:1em;letter-spacing:.1em;margin:5px 0;display:block;width:100%;box-sizing:border-box}.websy-input[type='checkbox']{height:20px;width:20px}.websy-textarea{resize:none;height:100px;padding:10px 15px;font-family:inherit}.websy-vis-error-container{display:none;top:0;left:0;width:100%;height:100%;position:absolute;background-color:#ffffff;z-index:1}.websy-vis-error-container.active{display:block}.websy-vis-error-container>div{display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%}.websy-vis-help-listener{position:absolute;top:0;right:0;width:30px;height:30px;text-align:center;color:#333333;font-size:20px;padding:3px 0;font-style:normal;font-weight:bold;z-index:101}.websy-vis-help-listener:before{content:'?'}.websy-vis-help{display:none;width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(50,50,50,0.7);text-align:center;color:#ffffff;z-index:100;font-size:1.2em}.websy-vis-help.active{display:table}.websy-vis-help span{display:table-cell;vertical-align:middle}@media screen and (max-width:1024px){}@media screen and (max-width:1024px){h1{font-size:36px}h2{font-size:24px}h3{font-size:20px}}@media screen and (max-width:1024px){.websy-vertical-list-container.fixed *{visibility:hidden}.websy-vertical-list-container.fixed .websy-menu-icon,.websy-vertical-list-container.fixed .websy-menu-icon *{visibility:visible}.websy-vertical-list-container.fixed.open *{visibility:visible}}@media screen and (max-width:576px){.websy-container{width:95vw}}
1
+ .primary{color:#4e43ed}.primary-bg{background-color:#4e43ed}.primary-light{color:#4e43ed}.primary-light-bg{background-color:#4e43ed}.primary-dark{color:#4e43ed}.primary-dark-bg{background-color:#4e43ed}.secondary{color:#827af2}.secondary-bg{background-color:#827af2}.secondary-light{color:#827af2}.secondary-light-bg{background-color:#827af2}.secondary-dark{color:#827af2}.secondary-dark-bg{background-color:#827af2}h1,h2,h3,h4{line-height:1.5em}h1{font-size:44px}h2{font-size:33px}h3{font-size:22px}.websy-hidden{display:none !important}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.websy-responsive-container{margin:0 auto;width:90%;max-width:1400px}.websy-row{padding:0;box-sizing:border-box;margin-left:-15px;margin-right:-15px}[class*='websy-ib-col-']{padding-left:15px;padding-right:15px;display:inline-block;box-sizing:border-box;vertical-align:top}[class*='websy-col-']{padding-left:15px;padding-right:15px;float:left;box-sizing:border-box}.websy-ib-col-l-100{width:100%}.websy-ib-col-l-90{width:90%}.websy-ib-col-l-80{width:80%}.websy-ib-col-l-75{width:75%}.websy-ib-col-l-70{width:70%}.websy-ib-col-l-60{width:60%}.websy-ib-col-l-50{width:50%}.websy-ib-col-l-40{width:40%}.websy-ib-col-l-33{width:33.33%}.websy-ib-col-l-30{width:30%}.websy-ib-col-l-25{width:25%}.websy-ib-col-l-20{width:20%}.websy-ib-col-l-10{width:10%}.websy-col-l-100{width:100%}.websy-col-l-90{width:90%}.websy-col-l-80{width:80%}.websy-col-l-75{width:75%}.websy-col-l-70{width:70%}.websy-col-l-60{width:60%}.websy-col-l-50{width:50%}.websy-col-l-40{width:40%}.websy-col-l-33{width:33.33%}.websy-col-l-30{width:30%}.websy-col-l-25{width:25%}.websy-col-l-20{width:20%}.websy-col-l-10{width:10%}@media screen and (max-width:1024px){.websy-responsive-container{width:100%;max-width:900px}.websy-ib-col-m-100{width:100%}.websy-ib-col-m-90{width:90%}.websy-ib-col-m-80{width:80%}.websy-ib-col-m-75{width:75%}.websy-ib-col-m-70{width:70%}.websy-ib-col-m-60{width:60%}.websy-ib-col-m-50{width:50%}.websy-ib-col-m-40{width:40%}.websy-ib-col-m-33{width:33%}.websy-ib-col-m-30{width:30%}.websy-ib-col-m-25{width:25%}.websy-ib-col-m-20{width:20%}.websy-ib-col-m-10{width:10%}.websy-col-m-100{width:100%}.websy-col-m-90{width:90%}.websy-col-m-80{width:80%}.websy-col-m-75{width:75%}.websy-col-m-70{width:70%}.websy-col-m-60{width:60%}.websy-col-m-50{width:50%}.websy-col-m-40{width:40%}.websy-col-m-33{width:33.33%}.websy-col-m-30{width:30%}.websy-col-m-25{width:25%}.websy-col-m-20{width:20%}.websy-col-m-10{width:10%}}@media screen and (max-width:576px){.websy-responsive-container{width:calc(100% - 25px)}.websy-ib-col-s-100{width:100%}.websy-ib-col-s-90{width:90%}.websy-ib-col-s-80{width:80%}.websy-ib-col-s-75{width:75%}.websy-ib-col-s-70{width:70%}.websy-ib-col-s-60{width:60%}.websy-ib-col-s-50{width:50%}.websy-ib-col-s-40{width:40%}.websy-ib-col-s-33{width:33%}.websy-ib-col-s-30{width:30%}.websy-ib-col-s-25{width:25%}.websy-ib-col-s-20{width:20%}.websy-ib-col-s-10{width:10%}.websy-col-s-100{width:100%}.websy-col-s-90{width:90%}.websy-col-s-80{width:80%}.websy-col-s-75{width:75%}.websy-col-s-70{width:70%}.websy-col-s-60{width:60%}.websy-col-s-50{width:50%}.websy-col-s-40{width:40%}.websy-col-s-33{width:33.33%}.websy-col-s-30{width:30%}.websy-col-s-25{width:25%}.websy-col-s-20{width:20%}.websy-col-s-10{width:10%}}.websy-alert{display:flex;align-items:center;border:1px solid #cccccc;color:#cccccc;border-radius:10px;padding:20px}.websy-alert.websy-alert-error{border:1px solid #b12121;color:#ffffff;background-color:#cc6677}.websy-popup-dialog-container{position:fixed;top:0;left:0;width:100vw;height:100vh}.websy-popup-dialog-container .websy-popup-dialog{width:500px;padding:10px 15px;max-width:90%;background-color:#ffffff;position:relative;margin:0 auto;top:calc(50vh - 150px);box-shadow:2px 6px 6px #cccccc,inset 1px 1px 1px #f2f2f2}.websy-popup-dialog-container .websy-popup-dialog h1{font-size:16px}.websy-popup-dialog-container .websy-popup-dialog .websy-popup-button-panel{text-align:right}.websy-popup-dialog-container .websy-popup-dialog .websy-popup-button-panel button{margin-left:5px}.websy-button-group-item{display:inline-block;position:relative;padding:10px 0;margin:0 15px;cursor:pointer}.websy-button-group-item:first-of-type{margin-left:0}.websy-button-group-item.tab-style.active{font-weight:bold;border-bottom:4px solid}.websy-button-group-item.radio-style{padding-left:20px}.websy-button-group-item.radio-style:before{content:'';width:14px;height:14px;border:1px solid #555555;border-radius:50%;position:absolute;left:0;top:13px}.websy-button-group-item.radio-style.active{border-bottom:none}.websy-button-group-item.radio-style.active:after{content:'';width:8px;height:8px;border-radius:50%;background-color:#555555;position:absolute;left:4px;top:17px}.websy-button-group-item.checkbox-style{padding-left:25px}.websy-button-group-item.checkbox-style:before{content:'';width:18px;height:18px;border:1px solid #555555;border-radius:2px;position:absolute;left:0;top:8px}.websy-button-group-item.checkbox-style.active{border-bottom:none}.websy-button-group-item.checkbox-style.active:after{content:'\2713';color:#555555;position:absolute;left:4px;top:9px}.websy-carousel{position:relative;width:100%;height:100%;overflow:hidden;transform:translate3d()}.websy-frame-container{position:absolute;top:0;left:0;height:100%;width:100%}.websy-frame-container>div{background-size:contain;background-repeat:no-repeat;background-position:center;height:100%;width:100%}.websy-frame-container.animate{transition:all .6s ease}.websy-prev-arrow{position:absolute;fill:#333333;top:calc(50% - 10px);left:10px;height:20px;cursor:pointer}.websy-prev-arrow *{pointer-events:none}.websy-next-arrow{position:absolute;fill:#333333;top:calc(50% - 10px);right:10px;height:20px;cursor:pointer}.websy-next-arrow *{pointer-events:none}.websy-btn-parent{display:flex;position:absolute;width:100%;bottom:0;justify-content:center}.websy-progress-btn{color:#fff;display:flex;margin:10px;fill:#fff;cursor:pointer}.websy-progress-btn *{pointer-events:none}.websy-progress-btn-active circle{fill:#fff}.websy-carousel-image{position:absolute}.websy-loading-container{display:none;top:0;left:0;position:absolute;width:100%;height:100%;background-color:rgba(255,255,255,0.7);z-index:999}.websy-loading-container.global-loader{position:fixed;width:100vw;height:100vh}.websy-loading-container .websy-ripple{display:block;position:relative;top:calc(50% - 32px);width:55px;height:64px;margin:0 auto}.websy-loading-container .websy-ripple div{position:absolute;border:4px solid #4e43ed;opacity:1;border-radius:50%;animation:websy-ripple 1s cubic-bezier(0, .2, .8, 1) infinite}.websy-loading-container .websy-ripple div:nth-child( 2 ){animation-delay:-0.5s}.websy-loading-container h4{text-align:center;position:relative;color:#4e43ed;top:calc(50% - 32px)}.websy-loading-container p{position:relative;text-align:center;color:#404040;top:calc(50% - 32px)}.websy-loading-container.dark-loader{background-color:rgba(50,50,50,0.7)}.websy-loading-container.dark-loader .websy-ripple div{border:4px solid #ffffff}.websy-loading-container.dark-loader h4{letter-spacing:.1em}.websy-loading-container.dark-loader h4,.websy-loading-container.dark-loader p{color:#ffffff}.loading .websy-loading-container{display:block}@keyframes websy-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.websy-btn{font-size:16px;letter-spacing:.05em;padding:10px 15px;outline:none;background-color:#ffffff;color:#404040;border:none;box-sizing:border-box;cursor:pointer}.websy-btn [disabled]{background-color:#cccccc;color:#ffffff;cursor:not-allowed;border:none}.websy-btn.btn-primary{background-color:#4e43ed;color:#ffffff;border:none}.websy-btn.btn-secondary{background-color:#827af2;color:#ffffff;border:none}.websy-btn.btn-accent{background-color:#ba7af2;color:#404040;border:none}.websy-menu{padding-top:20px;border-right:1px solid #cccccc}.websy-menu.right-align{padding-right:30px;text-align:right}.websy-menu.right-align .websy-menu-header{padding-right:15px}.websy-menu.right-align .websy-menu-header.active{background-color:#cccccc}.websy-menu.right-align .websy-menu-header.active .active-square{right:-39px}.websy-menu .websy-menu-header span{width:100%}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons{display:flex;align-items:center;margin-right:15px}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons svg{stroke:#333333}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons :last-child{display:none}.websy-menu .websy-menu-header>.websy-menu-expand-collapse-buttons :first-child{display:block}.websy-menu .websy-menu-header.menu-open>.websy-menu-expand-collapse-buttons :first-child{display:none}.websy-menu .websy-menu-header.menu-open>.websy-menu-expand-collapse-buttons :last-child{display:block}.websy-menu .websy-child-list{background-color:#ffffff;color:#404040}.websy-menu .websy-menu-icon *{pointer-events:none}.websy-menu .websy-menu-icon svg{fill:#888888}.websy-menu .websy-menu-search{margin:0 10px 20px}.websy-menu-mask{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:transparent;z-index:100;display:none}.websy-menu-mask.open{display:block}.websy-horizontal-list-container .logo *{pointer-events:none}.websy-horizontal-list-container .websy-menu-icon{position:absolute;top:25px;right:25px;display:none}.websy-horizontal-list-container .websy-menu-icon rect{stroke:none;fill:#ffffff}.websy-horizontal-list-container .websy-menu-block-container{display:inline-block;height:100%}.websy-horizontal-list-container .websy-menu-secondary{flex-grow:1;flex-shrink:0}@media screen and (max-width:1024px){.websy-horizontal-list-container .websy-menu-icon{display:block}.websy-horizontal-list-container .websy-menu-icon.open rect:first-of-type{display:none}.websy-horizontal-list-container .websy-menu-icon.open rect:nth-of-type( 2 ){transform:rotate(45deg) translate(3px, -3px);transform-origin:15px 10px}.websy-horizontal-list-container .websy-menu-icon.open rect:last-of-type{transform:rotate(-45deg) translate(3px, 3px);transform-origin:6px 27px}.websy-horizontal-list-container .websy-horizontal-list{position:absolute;height:initial;top:80px;right:0;background-color:#ffffff;width:80vw;box-shadow:0 1px 3px #888888;display:none;z-index:101}.websy-horizontal-list-container .websy-horizontal-list li{padding:0 15px;display:block;position:relative}.websy-horizontal-list-container .websy-horizontal-list li .active-square{display:none}.websy-horizontal-list-container .websy-horizontal-list li:hover{border-bottom:2px solid #888888}.websy-horizontal-list-container .websy-horizontal-list .websy-horizontal-list-item .active .selected-bar{width:6px;height:60%;position:absolute;left:-15px;top:20%;background-color:#888888}.websy-horizontal-list-container .open .websy-horizontal-list{display:block}}.websy-date-picker-container{display:block;position:relative}.websy-date-picker-container .websy-btn svg{pointer-events:none}.websy-date-picker-container .websy-dp-button-container{padding:5px 10px;text-align:right}.websy-date-picker-container .websy-dp-button-container .dp-footnote{position:absolute;left:15px;font-size:.6rem;bottom:15px;color:#888888;width:calc(100% - 150px);text-align:left}.websy-date-picker-container .websy-dp-button-container button *{pointer-events:none}.websy-date-picker-container .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-5px;left:0}.websy-date-picker-container *{user-select:none}.websy-date-picker-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-date-picker-mask.active{display:block}.websy-date-picker-header{height:40px;line-height:45px;cursor:pointer}.websy-date-picker-header *{pointer-events:none}.websy-date-picker-header .clear-selection{display:none;pointer-events:initial}.websy-date-picker-header .clear-selection svg{transform:unset;height:unset;display:block}.websy-date-picker-header .clear-selection *{pointer-events:none}.websy-date-picker-header span,.websy-date-picker-header svg,.websy-date-picker-header i{display:inline-block;vertical-align:middle}.websy-date-picker-header span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-date-picker-header svg{transform:rotate(180deg);height:9px}.websy-date-picker-header.allow-clear.range-selected span{max-width:calc(100% - 56px)}.websy-date-picker-header.allow-clear.range-selected .clear-selection{display:inline-block;vertical-align:middle;height:24px;stroke:#333333}.websy-date-picker-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:absolute;top:100%;left:0;width:470px;display:none;z-index:200;font-size:.8rem}.websy-date-picker-content.active{display:block}.monthyear .websy-date-picker-content{width:700px}.monthyear .websy-date-picker-content .websy-date-picker-custom{width:525px}.websy-date-picker-ranges,.websy-date-picker-custom{display:inline-block;vertical-align:top;box-sizing:border-box}.hide-ranges{width:305px}.hide-ranges .websy-date-picker-ranges{display:none}.websy-date-picker-ranges{width:170px}.websy-date-picker-ranges ul{list-style-type:none;padding:0;margin:0;text-align:left;width:100%}.websy-date-picker-ranges li{padding:10px 15px;cursor:pointer}.websy-date-picker-ranges li:hover{background-color:#ba7af2}.websy-date-picker-ranges li.websy-disabled-range{color:#cccccc}.websy-date-picker-range{position:relative}.websy-date-picker-range.active:after{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background-color:#ba7af2}.websy-dp-days-header,.websy-dp-date-list,.websy-date-picker-custom{width:300px}.websy-date-picker-custom{border-left:1px solid #888888;text-align:left}.websy-date-picker-custom .websy-dp-days-header{color:#888888}.websy-date-picker-custom .websy-dp-date-list{height:240px;overflow-y:auto;position:relative}.websy-date-picker-custom .websy-dp-month-container{padding-top:5px}.websy-date-picker-custom .websy-dp-month-container span{padding-left:13px;color:#888888}.websy-date-picker-custom ul{list-style-type:none;padding:0;margin:0}.websy-date-picker-custom ul li{display:inline-block;width:40px;height:40px;line-height:40px;text-align:center;cursor:pointer}.websy-date-picker-custom ul li.websy-dp-year,.websy-date-picker-custom ul li.websy-dp-hour{width:50px;height:50px;line-height:50px}.websy-date-picker-custom ul li.selected{background-color:#ba7af2}.websy-date-picker-custom ul li.first{border-bottom-left-radius:50%;border-top-left-radius:50%}.websy-date-picker-custom ul li.last{border-bottom-right-radius:50%;border-top-right-radius:50%}.websy-date-picker-custom ul li.websy-disabled-date{color:#cccccc}.websy-drag-drop-container{display:flex;position:relative;width:100%;height:100%}.websy-drag-drop-container.vertical{flex-direction:column}.websy-drop-zone{min-width:5px;height:100%;min-height:40px;vertical-align:bottom;opacity:.5}.websy-drop-zone.drag-over{border:1px dashed #cccccc;width:50px}.websy-dragdrop-item{position:relative;display:flex}.websy-dragdrop-item *{user-select:none}.websy-dragdrop-item .droppable{pointer-events:all}.websy-dragdrop-item.dragging{opacity:.5}.websy-dragdrop-item.dragging .websy-drop-zone{visibility:hidden}.websy-dragdrop-item:last-of-type{flex-grow:1}.websy-dragdrop-item:last-of-type .websy-drop-zone{flex-grow:1;width:auto;margin-left:5px;border:1px dashed #cccccc;display:flex;justify-content:center;align-items:center}.websy-dragdrop-item:last-of-type .websy-drop-zone:before{content:attr(data-placeholder)}.websy-dragdrop-item .websy-dragdrop-item-inner{display:flex;justify-content:center;align-items:center;min-height:40px}.websy-dragdrop-item .websy-dragdrop-item-inner:hover{box-shadow:0 0 3px #cccccc}.websy-dragdrop-item.empty{width:100%;height:100%}.websy-dragdrop-item.empty .websy-drop-zone{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border:1px dashed #cccccc}.websy-dragdrop-item.empty .websy-drop-zone:before{content:attr(data-placeholder)}.vertical .websy-dragdrop-item{flex-direction:column}.vertical .websy-dragdrop-item .websy-drop-zone{width:100%;min-height:5px}.vertical .websy-dragdrop-item .websy-drop-zone.drag-over{height:50px;width:100%;flex-grow:1}.vertical .websy-dragdrop-item:last-of-type .websy-drop-zone{min-height:40px;margin-top:5px;margin-left:unset;border:1px dashed #cccccc}.vertical .websy-dragdrop-item:last-of-type .websy-drop-zone:before{content:attr(data-placeholder)}.websy-drop-zone-placeholder{bottom:unset;top:0}.dragging .websy-drop-zone:hover{border:1px solid #cc6677;width:60px}.websy-dropdown-container{display:block;position:relative}.websy-dropdown-container input.dropdown-input{display:none}.websy-dropdown-container.list{height:100%}.websy-dropdown-container.list svg.search{pointer-events:all}.websy-dropdown-container.list .websy-dropdown-action-container{display:none}.websy-dropdown-container.list .websy-dropdown-header{padding:0 15px}.websy-dropdown-container.list .websy-dropdown-header .arrow{display:none}.websy-dropdown-container.list .websy-dropdown-header.allow-clear span{max-width:calc(100% - 55px)}.websy-dropdown-container.list .websy-dropdown-header.allow-clear span.websy-dropdown-header-value{display:none}.websy-dropdown-container.list .websy-dropdown-header .websy-dropdown-header-label{position:unset;font-size:unset;top:unset;left:unset}.websy-dropdown-container.list .websy-dropdown-content{display:block;width:100%;border:none;box-shadow:none;height:calc(100% - 45px);max-height:unset;top:unset;position:relative;box-sizing:border-box}.websy-dropdown-container.list .websy-dropdown-content.on-top{bottom:unset}.websy-dropdown-container.list .websy-dropdown-items{width:100%;height:100%;max-height:unset;overflow-y:auto}.websy-dropdown-container.list .websy-dropdown-items .websy-dropdown-item{padding:0 15px 0 30px}.websy-dropdown-container.list .websy-dropdown-search{display:none}.websy-dropdown-container.list.search-open .websy-dropdown-items{height:calc(100% - 40px)}.websy-dropdown-container.list.search-open .websy-dropdown-search{display:block}.websy-dropdown-container.list.search-open .websy-dropdown-action-container{display:block;border-top:1px solid #cccccc}.websy-dropdown-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-dropdown-mask.active{display:block}.websy-dropdown-header{display:flex;align-items:center;height:40px;line-height:40px;cursor:pointer;position:relative}.websy-dropdown-header *{pointer-events:none}.websy-dropdown-header .clear,.websy-dropdown-header .search{pointer-events:initial}.websy-dropdown-header .header-label{width:100%;position:relative}.websy-dropdown-header svg,.websy-dropdown-header span{display:inline-block;vertical-align:middle}.websy-dropdown-header svg{width:20px;stroke:#333333;fill:#333333;flex-shrink:0;pointer-events:none}.websy-dropdown-header svg *{pointer-events:none}.websy-dropdown-header span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-dropdown-header .arrow,.websy-dropdown-header .search{display:flex}.websy-dropdown-header .arrow{transform:rotate(180deg)}.websy-dropdown-header .arrow svg{height:9px}.websy-dropdown-header .clear{display:none}.websy-dropdown-header.allow-clear.one-selected .clear,.websy-dropdown-header.allow-clear.multi-selected .clear{display:flex}.websy-dropdown-header.one-selected .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-15px;left:0}.websy-dropdown-header.multi-selected .websy-dropdown-header-value{position:absolute;font-size:.5em;bottom:15px;left:0}.websy-dropdown-search{margin:0 15px;height:40px;line-height:40px;text-indent:10px;letter-spacing:.1em;border:1px solid #cccccc;width:calc(100% - 35px);font-size:inherit;background-color:#ffffff}.websy-dropdown-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:fixed;width:100%;max-height:300px;display:none;z-index:1}.websy-dropdown-content.active{display:block}.websy-dropdown-content.on-top{top:unset;bottom:100%}.websy-dropdown-content .websy-dropdown-action-container{position:relative;text-align:right;border-bottom:1px solid #cccccc;padding:0 10px;height:40px;display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:7px;box-sizing:border-box}.websy-dropdown-content .websy-dropdown-action-container button{background-color:transparent;border:none;cursor:pointer}.websy-dropdown-content .websy-dropdown-action-container button svg{pointer-events:none;position:relative}.websy-dropdown-content .websy-dropdown-action-container ul{text-align:left;list-style-type:none;margin:0;padding:0;position:absolute;top:100%;display:none;background-color:#ffffff;width:90%;right:0;box-shadow:0 0 3px #cccccc;z-index:1}.websy-dropdown-content .websy-dropdown-action-container ul.active{display:block}.websy-dropdown-content .websy-dropdown-action-container ul li{padding:10px 15px;cursor:pointer}.websy-dropdown-content .websy-dropdown-action-container ul li:hover{background-color:#cccccc}.websy-dropdown-items{width:100%;max-height:300px;overflow-y:auto}.websy-dropdown-items ul{list-style-type:none;padding:0;margin:0;text-align:left;width:100%;height:100%;overflow-y:auto}.websy-dropdown-items li{padding:0 15px 0 35px;height:40px;line-height:40px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}.websy-dropdown-items li:hover{background-color:#f2f2f2}.websy-dropdown-items li.websy-delayed{height:auto;white-space:normal}.websy-dropdown-items li.state-X{background-color:#cccccc}.with-search .websy-dropdown-items{max-height:240px}.with-actions .websy-dropdown-items{max-height:240px}.with-actions.with-search .websy-dropdown-items{max-height:200px}.websy-dropdown-item{position:relative}.websy-dropdown-item.active:before{content:'\2713';position:absolute;top:0;right:unset;width:15px;height:100%;color:#4e43ed;background-color:unset;left:15px;font-family:system-ui}.disabled{color:#cccccc}.disabled svg{stroke:#cccccc;fill:#cccccc}.websy-form-input-has-error .form-component .websy-dropdown-container{border-color:#cc6677}.websy-switch-label,.websy-switch{display:inline-block;vertical-align:middle}.websy-switch{height:20px;width:42px;background-color:#cccccc;position:relative;border-radius:10px;cursor:pointer}.websy-switch:before{content:'';position:absolute;left:0;top:0;height:20px;width:20px;border-radius:50%;background-color:#ffffff;box-shadow:0 0 3px #333333}.websy-switch.enabled{background-color:#44aa99}.websy-switch.enabled:before{left:unset;right:0}.websy-search-input-container{position:relative;background-color:#ffffff;border:1px solid #cccccc;height:50px}.websy-search-input-container .search,.websy-search-input-container .clear{position:absolute;top:15px;left:18px;stroke:#000000;z-index:1}.websy-search-input-container .search *,.websy-search-input-container .clear *{pointer-events:none}.websy-search-input-container .clear{top:14px;left:unset;right:18px;cursor:pointer}.websy-search-input,.websy-search-input-ghost,.websy-search-lozenge-container{height:50px;line-height:50px;text-indent:50px;letter-spacing:.1em;border:none;width:100%;font-size:inherit;box-sizing:border-box;position:absolute;top:0;left:0;bottom:0;right:0;font-family:inherit;padding:0;background-color:transparent}.websy-search-input-ghost{text-align:left;color:#cccccc}.websy-search-suggestion-container{display:none;position:absolute;background-color:rgba(50,50,50,0.7);color:rgba(255,255,255,0.7);top:100%;left:0}.websy-search-suggestion-container ul{list-style-type:none;padding:0;margin:0;display:flex;justify-content:start}.websy-search-suggestion-container ul li{padding:10px 15px;cursor:pointer}.websy-search-suggestion-container ul li.active{background-color:#827af2;color:#ffffff}.websy-search-suggestion-container.active{display:block}.websy-search-lozenge-container{display:flex;justify-content:start;left:50px}.websy-search-lozenge-container>div{color:#ffffff;text-indent:0}.websy-search-lozenge-container [data-label]{position:relative}.websy-search-lozenge-container [data-label]:before{content:attr(data-label);position:absolute;top:0;left:0;color:#b12121;line-height:1rem;font-size:.6rem}.websy-info{display:inline-block;vertical-align:middle;height:24px;position:relative;z-index:100}.websy-info svg{fill:#333333}.websy-info:before{position:absolute;top:auto;bottom:calc(100% + 8px);right:calc(50% - 5px);transform:rotate(45deg);background-color:transparent;color:transparent;width:10px;height:10px;z-index:12}.websy-info:after{position:absolute;background-color:transparent;color:transparent;padding:10px 15px;left:calc(50% - 115px);top:auto;width:200px;bottom:calc(100% + 12px);border-radius:2px;z-index:11;font-size:12px;line-height:16px;font-weight:normal;box-shadow:0 0 3px #ffffff}.websy-info.websy-info-dock-left:before{bottom:unset;left:unset;top:calc(50% - 7px);right:25px}.websy-info.websy-info-dock-left:after{bottom:unset;left:unset;right:30px;top:calc(50% - 20px)}.websy-info.websy-info-dock-right:before{bottom:unset;right:unset;top:calc(50% - 7px);left:25px}.websy-info.websy-info-dock-right:after{bottom:unset;right:unset;left:30px;top:calc(50% - 20px)}.websy-info.websy-info-dock-bottom:before{bottom:unset;top:calc(100% + 8px)}.websy-info.websy-info-dock-bottom:after{bottom:unset;top:calc(100% + 12px)}.websy-info:hover:after{background-color:#333333;color:#ffffff;content:attr(data-info)}.websy-info:hover:before{background-color:#333333;color:#ffffff;content:''}.websy-delayed-info{overflow:visible !important;position:relative}.websy-delayed-info:after{background-color:#ffffff;color:#404040;content:attr(data-info);left:0;top:0;width:auto;position:absolute;padding:inherit;z-index:1;box-shadow:0 0 3px #cccccc}.websy-form>div{margin:5px 0 15px}.websy-form>button{margin-top:10px}.websy-form .websy-form-input-has-error .websy-input{border-color:#cc6677;background-color:#eee0e3}.form-component{position:relative}.websy-input-container{position:relative}.websy-input-container label+input{margin-right:10px}.websy-input-container input+label{margin-right:10px}.websy-validation-failure{background-color:#cc6677;border:2px solid #b12121;color:#ffffff;padding:5px 15px;font-size:.8em;margin-bottom:10px}.websy-validation-failure:empty{display:none}.websy-form-validation-error{font-size:.8em;color:#cc6677;position:absolute;top:100%}.websy-form-validation-error:empty{display:none}.websy-form-required-value{color:#cc6677;font-size:.8rem;vertical-align:text-top}.websy-multi-form-container>div:nth-of-type( n + 2 ) label,.websy-multi-form-container>div:nth-of-type( n + 2 ) .websy-form-required-value{display:none}.websy-multi-form-container .websy-multi-form-form-container{display:flex;align-items:end}.websy-multi-form-container .websy-multi-form-form-container .websy-multi-form-form{width:100%}.websy-multi-form-container .websy-multi-form-form-container button{width:40px;height:40px;margin-bottom:20px;background-color:transparent;border:none;cursor:pointer}.websy-multi-form-container .websy-multi-form-form-container button svg,.websy-multi-form-container .websy-multi-form-form-container button path,.websy-multi-form-container .websy-multi-form-form-container button line{stroke:#404040;pointer-events:none}.websy-view{display:none}.websy-view.active{display:initial}.websy-trigger{cursor:pointer}.websy-trigger *{pointer-events:none}.websy-trigger input,.websy-trigger .clickable{pointer-events:initial}.websy-flippable{transform-style:preserve-3d;transition:transform 1s;backface-visibility:hidden;transform:rotateY(180deg);position:absolute;top:0;left:0;width:100%;height:100%}.websy-flippable.active{transform:rotateY(0deg)}.websy-responsive-text{display:flex;flex-direction:column;height:100%;width:100%}.websy-responsive-text span{display:flex}.websy-pager-container{height:50%;position:relative}.websy-pager-container span{display:inline-block;vertical-align:middle}.websy-pager-container .websy-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-pager-container .websy-page-selector .websy-dropdown-header-value,.websy-pager-container .websy-page-selector svg{position:relative;top:-2px}.websy-pager-container .websy-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-pager-container .websy-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-pager-container .websy-page-list li.websy-page-num:hover{text-decoration:underline}.websy-pager-container .websy-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-pager-container .websy-page-list li:first-of-type{margin-right:10px}.websy-pdf-button *{pointer-events:none}.websy-pdf-button svg{width:20px;vertical-align:bottom}.websy-vis-table{height:100%;overflow-y:auto}.websy-vis-table.with-paging{height:calc(100% - 50px)}.websy-vis-table table{border-spacing:0;border-collapse:collapse;display:table;table-layout:fixed;width:100%}.websy-vis-table table td{border:none;font-size:12px;padding:5px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.websy-vis-table table td *{pointer-events:none}.websy-vis-table table td a{pointer-events:initial}.websy-vis-table table th{color:#888888;background-color:transparent;font-size:12px;text-align:left;position:relative}.websy-vis-table table tbody{width:100%;overflow-y:auto;overflow-x:hidden}.websy-vis-table table thead tr:nth-child( 1 ){width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table table thead tr:nth-child( 2 ){width:100%;background-color:#ffffff}.websy-vis-table table tbody tr{width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table .sortOrder{content:url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><path d="M414,321.94,274.22,158.82a24,24,0,0,0-36.44,0L98,321.94c-13.34,15.57-2.28,39.62,18.22,39.62H395.82C416.32,361.56,427.38,337.51,414,321.94Z"/></svg>');height:12px;width:12px;margin:auto;position:absolute;left:calc(50% - 6px);top:calc(100% - 8px)}.websy-vis-table .sortOrderHidden{height:8px;width:10px;margin:auto;visibility:hidden}.websy-vis-table .sortOrder.desc{margin:auto;transform:rotate(180deg);position:absolute;top:calc(100% - 3px)}.websy-vis-table .tableSearchIcon{float:right;fill:#cccccc;display:block;margin:auto}.websy-vis-table .tableSearchIcon.active{fill:#555555}.websy-vis-table .tableSearchIcon.selected{float:right;fill:#ffffff;display:block;margin:auto}.websy-vis-table .leftSection{position:relative;cursor:pointer}.websy-vis-table .leftSection .tableHeaderField{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-table-paging-container{height:50%;position:relative}.websy-table-paging-container span{display:inline-block;vertical-align:middle}.websy-table-paging-container .websy-vis-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-table-paging-container .websy-vis-page-selector .websy-dropdown-header-value,.websy-table-paging-container .websy-vis-page-selector svg{position:relative;top:-2px}.websy-table-paging-container .websy-vis-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-table-paging-container .websy-vis-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-table-paging-container .websy-vis-page-list li.websy-page-num:hover{text-decoration:underline}.websy-table-paging-container .websy-vis-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-table-paging-container .websy-vis-page-list li:first-of-type{margin-right:10px}.websy-vis-table{height:100%;position:relative;overflow-y:auto}.websy-vis-table.with-paging{height:calc(100% - 50px)}.websy-vis-table.with-virtual-scroll{overflow:hidden}.websy-vis-table.with-virtual-scroll:hover .websy-v-scroll-containerx,.websy-vis-table.with-virtual-scroll:hover .websy-h-scroll-container{display:block}.websy-vis-table.has-error.with-virtual-scroll:hover .websy-v-scroll-containerx,.websy-vis-table.has-error.with-virtual-scroll:hover .websy-h-scroll-container{display:none}.websy-vis-table table{border-spacing:0;border-collapse:collapse;display:table;table-layout:fixed;width:100%}.websy-vis-table table th,.websy-vis-table table td{box-sizing:border-box}.websy-vis-table table.hidden{display:none}.websy-vis-table table td{border:none;font-size:12px;padding:5px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.websy-vis-table table th{color:#888888;background-color:transparent;font-size:12px;text-align:left;padding:10px 5px;position:relative}.websy-vis-table table tbody{width:100%;overflow-y:auto;overflow-x:hidden}.websy-vis-table table thead tr:nth-child( 1 ){width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table table thead tr:nth-child( 2 ){width:100%;background-color:#ffffff}.websy-vis-table table tbody tr{width:100%;background-color:#ffffff;border-bottom:1px solid #cccccc}.websy-vis-table .sortOrder{content:url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><path d="M414,321.94,274.22,158.82a24,24,0,0,0-36.44,0L98,321.94c-13.34,15.57-2.28,39.62,18.22,39.62H395.82C416.32,361.56,427.38,337.51,414,321.94Z"/></svg>');height:12px;width:12px;margin:auto;position:absolute;left:calc(50% - 6px);top:calc(100% - 8px)}.websy-vis-table .sortOrderHidden{height:8px;width:10px;margin:auto;visibility:hidden}.websy-vis-table .sortOrder.desc{margin:auto;transform:rotate(180deg);position:absolute;top:calc(100% - 3px)}.websy-vis-table .websy-table-search-icon{display:block;margin:auto;position:absolute;right:0;top:0;height:100%;width:30px;text-align:center;cursor:pointer;z-index:2}.websy-vis-table .websy-table-search-icon svg{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px);pointer-events:none}.websy-vis-table .leftSection{position:relative;cursor:pointer}.websy-vis-table .leftSection .tableHeaderField{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-vis-table .websy-v-scroll-container{position:absolute;top:0;right:0;width:12px;bottom:0;background-color:#827af2;display:none}.websy-vis-table .websy-v-scroll-container .websy-scroll-handle{width:12px;border-radius:6px}.websy-vis-table .websy-h-scroll-container{position:absolute;left:0;right:0;height:12px;bottom:0;background-color:rgba(255,255,255,0.7);display:none}.websy-vis-table .websy-h-scroll-container .websy-scroll-handle{height:12px;border-radius:6px}.websy-vis-table .websy-scroll-handle{position:absolute;background-color:#cccccc}.websy-table-paging-container{height:50%;position:relative}.websy-table-paging-container span{display:inline-block;vertical-align:middle}.websy-table-paging-container .websy-vis-page-selector{display:inline-block;vertical-align:middle;width:70px;border:1px solid #cccccc;border-radius:3px;margin:10px 0;padding:0 15px}.websy-table-paging-container .websy-vis-page-selector .websy-dropdown-header-value,.websy-table-paging-container .websy-vis-page-selector svg{position:relative;top:-2px}.websy-table-paging-container .websy-vis-page-list{position:absolute;right:0;display:inline-block;vertical-align:middle;list-style-type:none}.websy-table-paging-container .websy-vis-page-list li{display:inline-block;margin:0 2px;border:1px solid transparent;cursor:pointer;width:30px;height:30px;line-height:30px;text-align:center}.websy-table-paging-container .websy-vis-page-list li.websy-page-num:hover{text-decoration:underline}.websy-table-paging-container .websy-vis-page-list li.active{font-weight:700;border:1px solid;border-radius:50%}.websy-table-paging-container .websy-vis-page-list li:first-of-type{margin-right:10px}.scrolling .websy-vis-table *{user-select:none}.websy-modal-dropdown{display:none;position:fixed}.websy-modal-dropdown.active{display:block}.websy-vis-table-3{height:100%;width:100%;position:relative;overflow:hidden;overflow-x:auto}.websy-vis-table-3 table{table-layout:fixed;border-collapse:collapse;display:block;width:100%}.websy-vis-table-3 table tbody{font-size:inherit}.websy-vis-table-3.has-error .websy-table-inner-container{display:none}.websy-vis-table-3.scrolling *{user-select:none}.websy-vis-table-3+.websy-v-scroll-container{position:absolute;right:0}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container{position:absolute;bottom:0;width:calc(100% - 10px);height:10px}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3+.websy-v-scroll-container+.websy-h-scroll-container .websy-scroll-handle-x{height:100%}.websy-vis-table-3+.websy-v-scroll-container .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3+.websy-v-scroll-container .websy-scroll-handle-y{width:100%}.websy-vis-table-3.touch-device .websy-v-scroll-container{width:30px;background-color:#ffffff;opacity:.4;border:1px solid #cccccc}.websy-vis-table-3.touch-device .websy-h-scroll-container{height:30px;background-color:#ffffff;opacity:.4;border:1px solid #cccccc;width:calc(100% - 30px)}.websy-vis-table-3.touch-device .websy-scroll-handle{opacity:.7}.websy-vis-table-3 .websy-table-inner-container{height:100%;width:100%}.websy-vis-table-3 .websy-table-header{font-weight:bold}.websy-vis-table-3 .websy-table-header tr:last-of-type{border-bottom:1px solid #cccccc}.websy-vis-table-3 .websy-table-header td>div{display:flex;max-width:100%;width:100%;flex-grow:0}.websy-vis-table-3 .websy-table-header td>div *{pointer-events:none}.websy-vis-table-3 .websy-table-header td>div .websy-table-search-icon{display:flex;cursor:pointer;margin-left:5px;pointer-events:initial}.websy-vis-table-3 .websy-table-header td>div .websy-table-search-icon *{pointer-events:none}.websy-vis-table-3 .websy-table-header td>div .websy-table-sort-icon{display:flex;margin-left:5px;align-items:center}.websy-vis-table-3 .websy-table-header td>div .websy-table-sort-icon.asc{transform:rotate(180deg)}.websy-vis-table-3 .websy-table-body{background-color:#ffffff;overflow-y:auto;overflow-x:hidden}.websy-vis-table-3.with-virtual-scroll{overflow:hidden;overflow-x:hidden}.websy-vis-table-3.with-virtual-scroll .websy-table-body{overflow:hidden}.websy-vis-table-3 .websy-table-row{border-bottom:1px solid #eeeeee}.websy-vis-table-3 .websy-table-row:last-of-type{border-bottom:none}.websy-vis-table-3 .websy-table-row .websy-table-cell{padding:5px;box-sizing:border-box;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #eeeeee}.websy-vis-table-3 .websy-table-row .websy-table-cell>div{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:5px;margin:-5px;box-sizing:border-box}.websy-vis-table-3 .websy-table-row .websy-table-cell:last-of-type{border-right:none}.websy-vis-table-3 .websy-table-row .websy-table-cell:not( [ rowspan = '1' ] ){vertical-align:top}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse{pointer-events:initial}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand *,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse *{pointer-events:none}.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-expand svg,.websy-vis-table-3 .websy-table-row .websy-table-cell .websy-table-cell-collapse svg{height:12px;width:12px}.websy-table-invisible{visibility:hidden}.websy-table-touch-scroller{position:absolute;width:calc(100% - 30px);height:calc(100% - 30px);top:0;left:0}.websy-table-touch-scroller.hidden{display:none}.table-dropdown-container{position:absolute;top:0}.table-dropdown-container .websy-modal-dropdown{position:absolute}.table-dropdown-container .websy-modal-dropdown .websy-dropdown-header{display:none}.websy-chart .x-axis text,.websy-chart .y-axis text{fill:#333333}.websy-chart .x-axis path,.websy-chart .y-axis path,.websy-chart .x-axis line,.websy-chart .y-axis line{stroke:#888888}.websy-chart .y-axis path,.websy-chart .y-axis line{display:none}.websy-chart-legend{position:absolute;overflow-y:auto}.brush .handle--e,.brush .handle--w{display:none}.websy-legend .websy-legend-item{position:relative;padding-left:22px;display:flex}.websy-legend .websy-legend-item .symbol{position:absolute;left:0;top:3px}.websy-legend .websy-legend-item .symbol.circle{border-radius:50%}.websy-legend .websy-legend-item.horizontal{display:inline-block}.websy-chart-tooltip{overflow:visible}.websy-chart-tooltip .websy-chart-tooltip-content{padding:10px 15px;background-color:#333333;font-size:12px;position:absolute;display:none}.websy-chart-tooltip .websy-chart-tooltip-content.active{display:block}.websy-chart-tooltip .websy-chart-tooltip-content:before{content:'';height:12px;width:12px;background-color:#333333;position:absolute;left:-4px;top:8px;transform:rotate(45deg)}.websy-chart-tooltip .websy-chart-tooltip-content ul{top:0;list-style-type:none;margin:0;padding:0}.websy-chart-tooltip .websy-chart-tooltip-content ul li{position:relative;padding:3px 0;padding-left:15px;color:#ffffff}.websy-chart-tooltip .websy-chart-tooltip-content ul li i{position:absolute;height:10px;width:10px;border-radius:5px;display:inline-block;left:0;top:calc(50% - 5px);margin-right:6px}.websy-chart-tooltip .websy-chart-tooltip-content .title{font-weight:bold;color:#ffffff}.websy-chart-tooltip.left .websy-chart-tooltip-content:before{left:unset;right:-4px;top:8px;transform:rotate(-45deg)}.websy-chart-tooltip.vertical .websy-chart-tooltip-content:before{left:8px;right:unset;top:-4px;bottom:unset;transform:rotate(-45deg)}.websy-chart-tooltip.vertical.top .websy-chart-tooltip-content:before{left:8px;right:unset;top:unset;bottom:-4px;transform:rotate(-45deg)}.websy-kpi-info,.websy-kpi-icon{display:inline-block;height:70px;vertical-align:middle}.websy-kpi-icon{width:40px}.websy-kpi-icon img{width:30px;margin-top:14px}.websy-kpi-value{font-size:2em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.websy-kpi-sub-value{font-size:.5em;color:#888888;margin-top:-5px}.websy-container{width:80vw;margin:0 auto}.websy-container .websy-horizontal-list-container{box-sizing:border-box}.websy-container .websy-horizontal-list-container.fixed{padding:0 10vw;z-index:100}.websy-mask{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(255,255,255,0.7)}.websy-vis-article{height:100%;position:relative}.websy-card{position:relative;background-color:#ffffff;box-shadow:0 0 5px #cccccc;padding:10px 15px;margin-top:7px;margin-bottom:8px}.websy-vertical-list-container{width:300px;box-sizing:border-box;transition:all .2s linear;display:flex;flex-direction:column}.websy-vertical-list-container.fixed{position:fixed;height:100vh;left:0;z-index:100;overflow-y:auto}.websy-vertical-list-container.fixed.open{width:50px}.websy-vertical-list-container.fixed.open .websy-menu-search{display:none}.websy-vertical-list-container.fixed.open .websy-menu-header span{visibility:hidden;white-space:nowrap}.websy-vertical-list-container.fixed.open .websy-menu-icon,.websy-vertical-list-container.fixed.open .websy-menu-icon *{visibility:visible}.websy-vertical-list-container.fixed .websy-menu-icon{position:relative;text-align:right;height:40px;margin:10px 6px}.websy-vertical-list-container.fixed .logo{position:relative;width:100%;padding:0 15px;margin-bottom:20px;box-sizing:border-box}@media screen and (max-width:1024px){.websy-vertical-list-container.fixed{left:-250px}.websy-vertical-list-container.fixed.open{left:0;width:80vw}.websy-vertical-list-container.fixed.open .websy-menu-header{padding:20px 10px}}.websy-vertical-list-container .logo *{pointer-events:none}.websy-vertical-list-container .logo img{height:60px;width:auto}.websy-horizontal-list-container{width:100vw;height:80px;background-color:#cccccc}.websy-horizontal-list-container.fixed{position:fixed;top:0;bottom:0;left:0}.websy-horizontal-list-container .logo{display:inline-block;vertical-align:top;width:auto;margin-right:20px}.websy-horizontal-list-container .logo img{height:60px;width:auto;margin:10px 0}.websy-vertical-list,.websy-horizontal-list{padding:0;margin:0;list-style-type:none;transition:.2s linear all}.websy-vertical-list .websy-menu-collapsed,.websy-horizontal-list .websy-menu-collapsed{height:0;overflow:hidden}.websy-vertical-list .popout-menu,.websy-horizontal-list .popout-menu{display:none}.websy-vertical-list .websy-menu-header,.websy-horizontal-list .websy-menu-header{position:relative;box-sizing:border-box}.websy-vertical-list .websy-menu-header:hover,.websy-horizontal-list .websy-menu-header:hover{border-bottom:2px solid #888888}.websy-vertical-list .websy-menu-header.menu-open .menu-carat,.websy-horizontal-list .websy-menu-header.menu-open .menu-carat{transform:rotate(-135deg);transform-origin:0}.websy-vertical-list .websy-menu-header.active .active-square,.websy-horizontal-list .websy-menu-header.active .active-square{position:absolute;width:15px;height:15px;border-bottom:1px solid #cccccc;border-left:1px solid #cccccc;background-color:#ffffff;transform:rotate(45deg)}.websy-vertical-list .websy-menu-header.selected .selected-bar,.websy-horizontal-list .websy-menu-header.selected .selected-bar{position:absolute;box-sizing:border-box}.websy-vertical-list .websy-menu-header .menu-carat,.websy-horizontal-list .websy-menu-header .menu-carat{position:absolute;width:6px;height:6px}.websy-vertical-list .websy-menu-header a,.websy-horizontal-list .websy-menu-header a,.websy-vertical-list .websy-menu-header a:hover,.websy-horizontal-list .websy-menu-header a:hover,.websy-vertical-list .websy-menu-header a:active,.websy-horizontal-list .websy-menu-header a:active,.websy-vertical-list .websy-menu-header a:visited,.websy-horizontal-list .websy-menu-header a:visited{color:initial;text-decoration:none}.websy-vertical-list .websy-menu-header span,.websy-horizontal-list .websy-menu-header span{pointer-events:none}.websy-vertical-list .always-open .websy-menu-header .menu-carat,.websy-horizontal-list .always-open .websy-menu-header .menu-carat{transform:rotate(-135deg);transform-origin:0}.websy-vertical-list .always-open .websy-menu-collapsed,.websy-horizontal-list .always-open .websy-menu-collapsed{height:unset;overflow:unset}.websy-vertical-list .websy-vertical-list-item,.websy-horizontal-list .websy-vertical-list-item{padding:0}.websy-horizontal-list{width:auto;display:inline-block;vertical-align:top;height:100%}.websy-horizontal-list.fixed{position:fixed}.websy-horizontal-list .websy-menu-header{padding:26px 0;margin-right:20px}.websy-horizontal-list .websy-menu-header.active .active-square{bottom:-10px;left:calc(50% - 8px)}.websy-horizontal-list .websy-menu-header.selected .selected-bar{border-bottom:3px solid;left:0;width:100%;top:0}.websy-horizontal-list .websy-menu-header .menu-carat{bottom:10px;left:calc(50% - 3px);background-color:#ffffff;border-bottom:1px solid #cccccc;border-left:1px solid #cccccc;z-index:999;box-sizing:border-box;transform:rotate(-45deg)}.websy-horizontal-list .websy-horizontal-list-item{display:inline-block;height:100%;width:auto}.websy-vertical-list{width:100%;height:100%;overflow-y:auto;flex-grow:1;flex-shrink:1}.websy-vertical-list.fixed{position:fixed}.websy-vertical-list .websy-menu-header{padding:15px 0;text-indent:15px;display:flex;align-items:center}.websy-vertical-list .websy-menu-header a{display:flex;align-items:center}.websy-vertical-list .websy-menu-header.active .active-square{right:-9px;top:calc(50% - 8px)}.websy-vertical-list .websy-menu-header.selected .selected-bar{border-left:3px solid;left:0;height:100%;top:0}.websy-vertical-list .websy-menu-header .menu-carat{right:15px;top:calc(50% - 3px);border-top:1px solid #cccccc;border-left:1px solid #cccccc;transform:rotate(-45deg)}[data-retracted='true'] .websy-menu-header:after{display:none}[data-retracted='true'] .websy-menu-header .menu-carat{display:none}[data-retracted='true'] .popout{position:absolute;top:0;height:auto;z-index:9999;background-color:#4e43ed}[data-retracted='true'] .popout .websy-menu-header:after{display:initial}.websy-input{border:1px solid #333333;padding:0 15px;height:40px;font-size:1em;letter-spacing:.1em;margin:5px 0;display:block;width:100%;box-sizing:border-box}.websy-input[type='checkbox']{height:20px;width:20px}.websy-textarea{resize:none;height:100px;padding:10px 15px;font-family:inherit}.websy-vis-error-container{display:none;top:0;left:0;width:100%;height:100%;position:absolute;background-color:#ffffff;z-index:1}.websy-vis-error-container.active{display:block}.websy-vis-error-container>div{display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%}.websy-vis-help-listener{position:absolute;top:0;right:0;width:30px;height:30px;text-align:center;color:#333333;font-size:20px;padding:3px 0;font-style:normal;font-weight:bold;z-index:101}.websy-vis-help-listener:before{content:'?'}.websy-vis-help{display:none;width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(50,50,50,0.7);text-align:center;color:#ffffff;z-index:100;font-size:1.2em}.websy-vis-help.active{display:table}.websy-vis-help span{display:table-cell;vertical-align:middle}@media screen and (max-width:1024px){}@media screen and (max-width:1024px){h1{font-size:36px}h2{font-size:24px}h3{font-size:20px}}@media screen and (max-width:1024px){.websy-vertical-list-container.fixed *{visibility:hidden}.websy-vertical-list-container.fixed .websy-menu-icon,.websy-vertical-list-container.fixed .websy-menu-icon *{visibility:visible}.websy-vertical-list-container.fixed.open *{visibility:visible}}@media screen and (max-width:576px){.websy-container{width:95vw}}