@websy/websy-designs 0.0.125 → 0.0.129

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.
@@ -76,12 +76,8 @@ var WebsyPopupDialog = /*#__PURE__*/function () {
76
76
  var buttonIndex = event.target.getAttribute('data-index');
77
77
  var buttonInfo = this.options.buttons[buttonIndex];
78
78
 
79
- if (buttonInfo && buttonInfo.preventClose !== true) {
80
- this.hide();
81
- }
82
-
83
79
  if (buttonInfo && buttonInfo.fn) {
84
- if (this.options.collectData === true) {
80
+ if (typeof this.options.collectData !== 'undefined') {
85
81
  var collectEl = document.getElementById("".concat(this.elementId, "_collect"));
86
82
 
87
83
  if (collectEl) {
@@ -89,7 +85,13 @@ var WebsyPopupDialog = /*#__PURE__*/function () {
89
85
  }
90
86
  }
91
87
 
88
+ if (buttonInfo.preventClose !== true) {
89
+ this.hide();
90
+ }
91
+
92
92
  buttonInfo.fn(buttonInfo);
93
+ } else if (buttonInfo && buttonInfo.preventClose !== true) {
94
+ this.hide();
93
95
  }
94
96
  } else if (this.closeOnOutsideClick === true) {
95
97
  this.hide();
@@ -120,8 +122,8 @@ var WebsyPopupDialog = /*#__PURE__*/function () {
120
122
  html += "<p>".concat(this.options.message, "</p>");
121
123
  }
122
124
 
123
- if (this.options.collectData === true) {
124
- html += "\n <div>\n <input id=\"".concat(this.elementId, "_collect\" class=\"websy-input\" placeholder=\"").concat(this.options.collectPlaceholder || '', "\">\n </div>\n ");
125
+ if (typeof this.options.collectData !== 'undefined') {
126
+ html += "\n <div>\n <input id=\"".concat(this.elementId, "_collect\" class=\"websy-input\" value=\"").concat(typeof this.options.collectData === 'boolean' ? '' : this.options.collectData, "\" placeholder=\"").concat(this.options.collectPlaceholder || '', "\">\n </div>\n ");
125
127
  }
126
128
 
127
129
  this.closeOnOutsideClick = true;
@@ -218,16 +220,19 @@ var WebsyLoadingDialog = /*#__PURE__*/function () {
218
220
 
219
221
  return WebsyLoadingDialog;
220
222
  }();
223
+ /* global */
224
+
221
225
 
222
226
  var WebsyNavigationMenu = /*#__PURE__*/function () {
223
227
  function WebsyNavigationMenu(elementId, options) {
224
228
  _classCallCheck(this, WebsyNavigationMenu);
225
229
 
226
230
  this.options = _extends({}, {
227
- collapsable: false,
231
+ collapsible: false,
228
232
  orientation: 'horizontal',
229
233
  parentMap: {},
230
- childIndentation: 10
234
+ childIndentation: 10,
235
+ activeSymbol: 'none'
231
236
  }, options);
232
237
 
233
238
  if (!elementId) {
@@ -239,11 +244,24 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
239
244
 
240
245
  if (el) {
241
246
  this.elementId = elementId;
247
+ this.lowestLevel = 0;
248
+ this.flatItems = [];
249
+ this.itemMap = {};
250
+ this.flattenItems(0, this.options.items);
251
+ console.log(this.flatItems);
242
252
  el.classList.add("websy-".concat(this.options.orientation, "-list-container"));
243
253
  el.classList.add('websy-menu');
244
254
 
255
+ if (this.options.align) {
256
+ el.classList.add("".concat(this.options.align, "-align"));
257
+ }
258
+
259
+ if (Array.isArray(this.options.classes)) {
260
+ this.options.classes = this.options.classes.join(' ');
261
+ }
262
+
245
263
  if (this.options.classes) {
246
- this.options.classes.forEach(function (c) {
264
+ this.options.classes.split(' ').forEach(function (c) {
247
265
  return el.classList.add(c);
248
266
  });
249
267
  }
@@ -254,14 +272,42 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
254
272
  }
255
273
 
256
274
  _createClass(WebsyNavigationMenu, [{
275
+ key: "flattenItems",
276
+ value: function flattenItems(index, items) {
277
+ var level = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
278
+
279
+ if (items[index]) {
280
+ this.lowestLevel = Math.max(level, this.lowestLevel);
281
+ items[index].id = items[index].id || "".concat(this.elementId, "_").concat(this.normaliseString(items[index].text));
282
+ this.itemMap[items[index].id] = items[index];
283
+ items[index].level = level;
284
+ this.flatItems.push(items[index]);
285
+
286
+ if (items[index].items) {
287
+ this.flattenItems(0, items[index].items, level + 1);
288
+ }
289
+
290
+ this.flattenItems(++index, items, level);
291
+ }
292
+ }
293
+ }, {
257
294
  key: "handleClick",
258
295
  value: function handleClick(event) {
259
296
  if (event.target.classList.contains('websy-menu-icon') || event.target.nodeName === 'svg' || event.target.nodeName === 'rect') {
260
297
  this.toggleMobileMenu();
261
298
  }
262
299
 
263
- if (event.target.classList.contains('trigger-item') && event.target.classList.contains('websy-menu-header')) {
264
- this.toggleMobileMenu('remove');
300
+ if (event.target.classList.contains('websy-menu-header')) {
301
+ var item = this.itemMap[event.target.id];
302
+
303
+ if (event.target.classList.contains('trigger-item') && item.level === this.lowestLevel) {
304
+ this.toggleMobileMenu('remove');
305
+ }
306
+
307
+ if (item.items) {
308
+ event.target.classList.toggle('menu-open');
309
+ this.toggleMenu(item.id);
310
+ }
265
311
  }
266
312
 
267
313
  if (event.target.classList.contains('websy-menu-mask')) {
@@ -281,15 +327,19 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
281
327
  if (el) {
282
328
  var html = "";
283
329
 
284
- if (this.options.collapsable === true) {
330
+ if (this.options.collapsible === true) {
285
331
  html += "\n <div id='".concat(this.elementId, "_menuIcon' class='websy-menu-icon'>\n <svg viewbox=\"0 0 40 40\" width=\"30\" height=\"40\"> \n <rect x=\"0\" y=\"0\" width=\"30\" height=\"4\" rx=\"2\"></rect>\n <rect x=\"0\" y=\"12\" width=\"30\" height=\"4\" rx=\"2\"></rect>\n <rect x=\"0\" y=\"24\" width=\"30\" height=\"4\" rx=\"2\"></rect>\n </svg>\n </div>\n ");
286
332
  }
287
333
 
288
334
  if (this.options.logo) {
289
- html += " \n <div \n class='logo ".concat(this.options.logo.classes && this.options.logo.classes.join(' ') || '', "'\n ").concat(this.options.logo.attributes && this.options.logo.attributes.join(' '), "\n >\n <img src='").concat(this.options.logo.url, "'></img>\n </div>\n <div id='").concat(this.elementId, "_mask' class='websy-menu-mask'></div>\n <div id=\"").concat(this.elementId, "_menuContainer\" class=\"websy-menu-block-container\">\n ");
335
+ if (Array.isArray(this.options.logo.classes)) {
336
+ this.options.logo.classes = this.options.logo.classes.join(' ');
337
+ }
338
+
339
+ html += " \n <div \n class='logo ".concat(this.options.logo.classes || '', "'\n ").concat(this.options.logo.attributes && this.options.logo.attributes.join(' '), "\n >\n <img src='").concat(this.options.logo.url, "'></img>\n </div>\n <div id='").concat(this.elementId, "_mask' class='websy-menu-mask'></div>\n <div id=\"").concat(this.elementId, "_menuContainer\" class=\"websy-menu-block-container\">\n ");
290
340
  }
291
341
 
292
- html += this.renderBlock(this.options.items, 'main', 1);
342
+ html += this.renderBlock(this.options.items, 'main', 0);
293
343
  html += "</div>";
294
344
  el.innerHTML = html;
295
345
 
@@ -300,8 +350,9 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
300
350
  }
301
351
  }, {
302
352
  key: "renderBlock",
303
- value: function renderBlock(items, block, level) {
304
- var html = "\n\t\t <ul class='websy-".concat(this.options.orientation, "-list ").concat(block !== 'main' ? 'websy-menu-collapsed' : '', "' id='").concat(this.elementId, "_").concat(block, "_list'\n\t ");
353
+ value: function renderBlock(items, block) {
354
+ var level = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
355
+ var html = "\n\t\t <ul class='websy-".concat(this.options.orientation, "-list ").concat(level > 0 ? 'websy-child-list' : '', " ").concat(block !== 'main' ? 'websy-menu-collapsed' : '', "' id='").concat(this.elementId, "_").concat(block, "_list'\n\t ");
305
356
 
306
357
  if (block !== 'main') {
307
358
  html += " data-collapsed='".concat(block !== 'main' ? 'true' : 'false', "'");
@@ -315,14 +366,27 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
315
366
 
316
367
  var active = items[i]["default"] === true ? 'active' : '';
317
368
  var currentBlock = this.normaliseString(items[i].text);
318
- var blockId = items[i].id || "".concat(this.elementId, "_").concat(currentBlock, "_label");
319
- html += "\n\t\t\t<li class='websy-".concat(this.options.orientation, "-list-item'>\n\t\t\t\t<div class='websy-menu-header ").concat(items[i].classes && items[i].classes.join(' '), " ").concat(selected, " ").concat(active, "' \n\t\t\t\t\t\t id='").concat(blockId, "' \n\t\t\t\t\t\t data-id='").concat(currentBlock, "'\n data-menu-id='").concat(this.elementId, "_").concat(currentBlock, "_list'\n\t\t\t\t\t\t data-popout-id='").concat(level > 1 ? block : currentBlock, "'\n\t\t\t\t\t\t data-text='").concat(items[i].text, "'\n\t\t\t\t\t\t style='padding-left: ").concat(level * this.options.childIndentation, "px'\n\t\t\t\t\t\t ").concat(items[i].attributes && items[i].attributes.join(' '), "\n >\n ");
369
+ var blockId = items[i].id; // || `${this.elementId}_${currentBlock}_label`
370
+
371
+ if (Array.isArray(items[i].classes)) {
372
+ items[i].classes = items[i].classes.join(' ');
373
+ }
374
+
375
+ html += "\n\t\t\t<li class='websy-".concat(this.options.orientation, "-list-item'>\n\t\t\t\t<div class='websy-menu-header ").concat(items[i].classes || '', " ").concat(selected, " ").concat(active, "' \n\t\t\t\t\t\t id='").concat(blockId, "' \n\t\t\t\t\t\t data-id='").concat(currentBlock, "'\n data-menu-id='").concat(this.elementId, "_").concat(currentBlock, "_list'\n\t\t\t\t\t\t data-popout-id='").concat(level > 1 ? block : currentBlock, "'\n\t\t\t\t\t\t data-text='").concat(items[i].text, "'\n\t\t\t\t\t\t style='padding-left: ").concat(level * this.options.childIndentation, "px'\n\t\t\t\t\t\t ").concat(items[i].attributes && items[i].attributes.join(' ') || '', "\n >\n ");
320
376
 
321
377
  if (this.options.orientation === 'horizontal') {
322
378
  html += items[i].text;
323
379
  }
324
380
 
325
- html += "\n <span class='selected-bar'></span>\n <span class='active-square'></span>\n <span class='".concat(items[i].items && items[i].items.length > 0 ? 'menu-carat' : '', "'></span>\n ");
381
+ if (this.options.activeSymbol === 'line') {
382
+ html += "\n <span class='selected-bar'></span>\n ";
383
+ }
384
+
385
+ if (this.options.activeSymbol === 'triangle') {
386
+ html += "\n <span class='active-square'></span>\n ";
387
+ }
388
+
389
+ html += " \n <span class='".concat(items[i].items && items[i].items.length > 0 ? 'menu-carat' : '', "'></span>\n ");
326
390
 
327
391
  if (this.options.orientation === 'vertical') {
328
392
  html += "\n &nbsp;\n ";
@@ -331,7 +395,7 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
331
395
  html += " \n\t\t\t\t</div>\n\t\t ";
332
396
 
333
397
  if (items[i].items) {
334
- html += this.renderBlock(items[i].items, currentBlock, level + 1);
398
+ html += this.renderBlock(items[i].items, currentBlock, items[i].level + 1);
335
399
  } // map the item to it's parent
336
400
 
337
401
 
@@ -348,8 +412,14 @@ var WebsyNavigationMenu = /*#__PURE__*/function () {
348
412
  return html;
349
413
  }
350
414
  }, {
351
- key: "toggleOpen",
352
- value: function toggleOpen() {}
415
+ key: "toggleMenu",
416
+ value: function toggleMenu(id) {
417
+ var el = document.getElementById("".concat(id, "_list"));
418
+
419
+ if (el) {
420
+ el.classList.toggle('websy-menu-collapsed');
421
+ }
422
+ }
353
423
  }, {
354
424
  key: "toggleMobileMenu",
355
425
  value: function toggleMobileMenu(method) {
@@ -1901,9 +1971,9 @@ var WebsyRouter = /*#__PURE__*/function () {
1901
1971
  _classCallCheck(this, WebsyRouter);
1902
1972
 
1903
1973
  var defaults = {
1904
- triggerClass: 'trigger-item',
1905
- triggerToggleClass: 'trigger-toggle',
1906
- viewClass: 'view',
1974
+ triggerClass: 'websy-trigger',
1975
+ triggerToggleClass: 'websy-trigger-toggle',
1976
+ viewClass: 'websy-view',
1907
1977
  activeClass: 'active',
1908
1978
  viewAttribute: 'data-view',
1909
1979
  groupAttribute: 'data-group',
@@ -1929,13 +1999,7 @@ var WebsyRouter = /*#__PURE__*/function () {
1929
1999
  window.addEventListener('keyup', this.handleKeyUp.bind(this));
1930
2000
  window.addEventListener('focus', this.handleFocus.bind(this));
1931
2001
  window.addEventListener('click', this.handleClick.bind(this));
1932
- this.options = _extends({}, defaults, options); // add any necessary CSS if the viewClass has been changed
1933
-
1934
- if (this.options.viewClass !== defaults.viewClass || this.options.activeClass !== defaults.activeClass) {
1935
- var style = "\n <style>\n .".concat(this.options.viewClass, "{ display: none; }\n .").concat(this.options.viewClass, ".").concat(this.options.activeClass, "{ display: initial; }\n .").concat(this.options.triggerClass, "{cursor: pointer;}\n </style>\n ");
1936
- document.querySelector('head').innerHTML += style;
1937
- } // this.navigate(this.currentPath, this.options.defaultGroup)
1938
-
2002
+ this.options = _extends({}, defaults, options);
1939
2003
  }
1940
2004
 
1941
2005
  _createClass(WebsyRouter, [{
@@ -2054,7 +2118,7 @@ var WebsyRouter = /*#__PURE__*/function () {
2054
2118
  }, {
2055
2119
  key: "init",
2056
2120
  value: function init() {
2057
- this.registerElements(document);
2121
+ // this.registerElements(document)
2058
2122
  var view = '';
2059
2123
  var params = this.formatParams(this.queryParams);
2060
2124
  var url;
@@ -2368,6 +2432,11 @@ var WebsyRouter = /*#__PURE__*/function () {
2368
2432
  }
2369
2433
  }
2370
2434
  }
2435
+ }, {
2436
+ key: "on",
2437
+ value: function on(event, fn) {
2438
+ this.options.subscribers[event].push(fn);
2439
+ }
2371
2440
  }, {
2372
2441
  key: "onPopState",
2373
2442
  value: function onPopState(event) {
@@ -2474,10 +2543,14 @@ var WebsyRouter = /*#__PURE__*/function () {
2474
2543
 
2475
2544
 
2476
2545
  var APIService = /*#__PURE__*/function () {
2477
- function APIService(baseUrl) {
2546
+ function APIService() {
2547
+ var baseUrl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
2548
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
2549
+
2478
2550
  _classCallCheck(this, APIService);
2479
2551
 
2480
2552
  this.baseUrl = baseUrl;
2553
+ this.options = _extends({}, options);
2481
2554
  }
2482
2555
 
2483
2556
  _createClass(APIService, [{
@@ -2639,7 +2712,8 @@ var WebsyPDFButton = /*#__PURE__*/function () {
2639
2712
  var DEFAULTS = {
2640
2713
  classes: [],
2641
2714
  wait: 0,
2642
- buttonText: 'Download'
2715
+ buttonText: 'Download',
2716
+ directDownload: false
2643
2717
  };
2644
2718
  this.elementId = elementId;
2645
2719
  this.options = _extends({}, DEFAULTS, options);
@@ -2737,9 +2811,16 @@ var WebsyPDFButton = /*#__PURE__*/function () {
2737
2811
  var blob = new Blob([response], {
2738
2812
  type: 'application/pdf'
2739
2813
  });
2814
+ var msg = "\n <div class='text-center websy-pdf-download'>\n <div>Your file is ready to download</div>\n <a href='".concat(URL.createObjectURL(blob), "' target='_blank'\n ");
2815
+
2816
+ if (_this16.options.directDownload === true) {
2817
+ msg += "download='".concat(_this16.options.fileName || 'Export', ".pdf'");
2818
+ }
2819
+
2820
+ msg += "\n >\n <button class='websy-btn download-pdf'>".concat(_this16.options.buttonText, "</button>\n </a>\n </div>\n ");
2740
2821
 
2741
2822
  _this16.popup.show({
2742
- message: "\n <div class='text-center websy-pdf-download'>\n <div>Your file is ready to download</div>\n <a href='".concat(URL.createObjectURL(blob), "' target='_blank'>\n <button class='websy-btn download-pdf'>").concat(_this16.options.buttonText, "</button>\n </a>\n </div>\n "),
2823
+ message: msg,
2743
2824
  mask: true
2744
2825
  });
2745
2826
  }, function (err) {
@@ -4243,24 +4324,40 @@ var WebsyUtils = {
4243
4324
  };
4244
4325
  var WebsyDesigns = {
4245
4326
  WebsyPopupDialog: WebsyPopupDialog,
4327
+ PopupDialog: WebsyPopupDialog,
4246
4328
  WebsyLoadingDialog: WebsyLoadingDialog,
4329
+ LoadingDialog: WebsyLoadingDialog,
4247
4330
  WebsyNavigationMenu: WebsyNavigationMenu,
4331
+ NavigationMenu: WebsyNavigationMenu,
4248
4332
  WebsyForm: WebsyForm,
4333
+ Form: WebsyForm,
4249
4334
  WebsyDatePicker: WebsyDatePicker,
4335
+ DatePicker: WebsyDatePicker,
4250
4336
  WebsyDropdown: WebsyDropdown,
4337
+ Dropdown: WebsyDropdown,
4251
4338
  WebsyResultList: WebsyResultList,
4339
+ ResultList: WebsyResultList,
4252
4340
  WebsyTemplate: WebsyTemplate,
4341
+ Template: WebsyTemplate,
4253
4342
  WebsyPubSub: WebsyPubSub,
4343
+ PubSub: WebsyPubSub,
4254
4344
  WebsyRouter: WebsyRouter,
4345
+ Router: WebsyRouter,
4255
4346
  WebsyTable: WebsyTable,
4347
+ Table: WebsyTable,
4256
4348
  WebsyChart: WebsyChart,
4349
+ Chart: WebsyChart,
4257
4350
  WebsyChartTooltip: WebsyChartTooltip,
4351
+ ChartTooltip: WebsyChartTooltip,
4258
4352
  WebsyMap: WebsyMap,
4353
+ Map: WebsyMap,
4259
4354
  WebsyKPI: WebsyKPI,
4355
+ KPI: WebsyKPI,
4260
4356
  WebsyPDFButton: WebsyPDFButton,
4261
4357
  PDFButton: WebsyPDFButton,
4262
4358
  APIService: APIService,
4263
- WebsyUtils: WebsyUtils
4359
+ WebsyUtils: WebsyUtils,
4360
+ Utils: WebsyUtils
4264
4361
  };
4265
4362
  var GlobalPubSub = new WebsyPubSub('empty', {});
4266
4363
 
@@ -1 +1 @@
1
- @charset "UTF-8";@font-face{font-family:'websy-designs';src:url('../fonts/websy-designs.woff2?83517479') format('woff2');font-weight:normal;font-style:normal}[class^='websy-icon-']:before,[class*=' websy-icon-']:before{font-family:'websy-designs',sans-serif;font-style:normal;font-weight:normal;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.websy-icon-cancel:before{content:'\e800'}.websy-icon-ok:before{content:'\e801'}.websy-icon-plus:before{content:'\e802'}.websy-icon-minus:before{content:'\e803'}.websy-icon-camera:before{content:'\e804'}.websy-icon-heart:before{content:'\e805'}.websy-icon-heart-empty:before{content:'\e806'}.websy-icon-th-large:before{content:'\e807'}.websy-icon-th-list:before{content:'\e808'}.websy-icon-truck:before{content:'\e809'}.websy-icon-search:before{content:'\e80a'}.websy-icon-basket:before{content:'\e80b'}.websy-icon-credit-card:before{content:'\e80c'}.websy-icon-gift:before{content:'\e80d'}.websy-icon-cog:before{content:'\e80e'}.websy-icon-calendar:before{content:'\e80f'}.websy-icon-down-dir:before{content:'\e810'}.websy-icon-up-dir:before{content:'\e811'}.websy-icon-left-dir:before{content:'\e812'}.websy-icon-right-dir:before{content:'\e813'}.websy-icon-arrows-cw:before{content:'\e814'}.websy-icon-check:before{content:'\e815'}.websy-icon-barcode:before{content:'\e816'}.websy-icon-trash:before{content:'\e817'}.websy-icon-ccw:before{content:'\e818'}.websy-icon-pencil:before{content:'\e819'}.websy-icon-box:before{content:'\e81a'}.websy-icon-check-empty:before{content:'\f096'}.websy-icon-filter:before{content:'\f0b0'}.websy-icon-mail-alt:before{content:'\f0e0'}.websy-icon-building:before{content:'\f0f7'}.websy-icon-folder-open-empty:before{content:'\f115'}.websy-icon-help:before{content:'\f128'}.websy-icon-info:before{content:'\f129'}.websy-icon-ellipsis-vert:before{content:'\f142'}.websy-icon-sliders:before{content:'\f1de'}.websy-icon-share:before{content:'\f1e0'}.websy-icon-trash-1:before{content:'\f1f8'}.websy-icon-toggle-off:before{content:'\f204'}.websy-icon-toggle-on:before{content:'\f205'}.websy-icon-shopping-basket:before{content:'\f291'}.websy-icon-user-circle-o:before{content:'\f2be'}.websy-icon-sort:before{content:'\f0dc'}.websy-icon-eye:before{content:'\e81b'}.websy-icon-sun:before{content:'\e81c'}.websy-icon-sun-filled:before{content:'\e81d'}.websy-icon-flag-filled:before{content:'\e81e'}.websy-icon-thumbs-up-alt:before{content:'\f164'}.websy-icon-thumbs-down-alt:before{content:'\f165'}.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}html,body{width:100%;height:100%;font-family:Arial,Helvetica,sans-serif;font-size:16px}body{line-height:23px;letter-spacing:.1em}h1,h2,h3,h4{line-height:1.5em}h1{font-size:44px}h2{font-size:33px}h3{font-size:22px}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.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-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:415px){.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-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-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(50vh - 32px)}.websy-loading-container p{position:relative;text-align:center;color:#404040;top:calc(50vh - 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:1px solid #cccccc;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{background-color:#404040;color:#ffffff;padding-top:20px}.websy-menu .websy-menu-icon svg{fill:#ffffff}.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%}@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{background-color:#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}.websy-date-picker-container .websy-dp-button-container{padding:5px 10px;text-align:right}.websy-date-picker-container .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-5px;left:0}.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 svg{transform:rotate(180deg);height:9px}.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}.websy-date-picker-content.active{display:block}.websy-date-picker-ranges,.websy-date-picker-custom{display:inline-block;vertical-align:top;box-sizing:border-box;font-size:12px}.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:5px 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}.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.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-dropdown-container{display:block}.websy-dropdown-container input.dropdown-input{display:none}.websy-dropdown-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-dropdown-mask.active{display:block}.websy-dropdown-header{height:40px;line-height:40px;cursor:pointer;position:relative}.websy-dropdown-header span,.websy-dropdown-header svg.arrow{pointer-events:none}.websy-dropdown-header svg,.websy-dropdown-header span{display:inline-block;vertical-align:middle}.websy-dropdown-header svg{stroke:#333333;fill:#333333}.websy-dropdown-header svg *{pointer-events:none}.websy-dropdown-header span{max-width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-dropdown-header svg.arrow{transform:rotate(180deg);height:9px}.websy-dropdown-header svg.clear{display:none}.websy-dropdown-header.allow-clear.one-selected span,.websy-dropdown-header.allow-clear.multi-selected span{max-width:calc(100% - 60px)}.websy-dropdown-header.allow-clear.one-selected svg.clear,.websy-dropdown-header.allow-clear.multi-selected svg.clear{display:inline-block}.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}.websy-dropdown-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:absolute;top:100%;right:0;width:220px;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-items{width:220px;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;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}.with-search .websy-dropdown-items{max-height:240px}.websy-dropdown-item{position:relative}.websy-dropdown-item.active:after{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background-color:#ba7af2}.disabled{color:#cccccc}.disabled svg{stroke:#cccccc;fill:#cccccc}.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:6px;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% - 107px);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;top:calc(50% - 7px);right:25px}.websy-info.websy-info-dock-left:after{bottom: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}.form-component{position:relative}.websy-validation-failure{background-color:#ce5252;border:2px solid #b12121;color:#ffffff;padding:5px 15px;font-size:.8em;margin-bottom:10px}.websy-validation-failure:empty{display:none}.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 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 th{color:#888888;background-color:transparent;font-size:12px;text-align:left;padding-left:2px;padding-right:10px;padding-top:10px;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-chart .x-axis text,.websy-chart .y-axis text{fill:#888888}.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-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-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-vertical-list-container{width:200px}.websy-vertical-list-container.fixed{position:fixed;top:0;bottom:0;left:0;z-index:100}.websy-vertical-list-container.fixed.open{left:-200px}.websy-vertical-list-container.fixed .websy-menu-icon{position:relative;text-align:right;height:40px;margin:10px 15px}.websy-vertical-list-container.fixed .logo{position:relative;width:100%;padding:0 15px;text-align:center;box-sizing:border-box}@media screen and (max-width:415px){.websy-vertical-list-container.fixed{left:-200px}.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;overflow:hidden}.websy-vertical-list .websy-menu-collapsed,.websy-horizontal-list .websy-menu-collapsed{height:0}.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}.websy-vertical-list .websy-menu-header.active .active-square,.websy-horizontal-list .websy-menu-header.active .active-square{position:absolute;width:15px;height:15px;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-vertical-list-item,.websy-horizontal-list .websy-vertical-list-item{padding:0}.websy-vertical-list .websy-vertical-list-item.active,.websy-horizontal-list .websy-vertical-list-item.active{background-color:#cccccc}.websy-vertical-list .websy-vertical-list-item:hover,.websy-horizontal-list .websy-vertical-list-item:hover,.websy-vertical-list .websy-vertical-list-item.menu-open,.websy-horizontal-list .websy-vertical-list-item.menu-open{background-color:#888888}.websy-vertical-list .websy-vertical-list-item.menu-open .menu-carat,.websy-horizontal-list .websy-vertical-list-item.menu-open .menu-carat{transform:rotate(-135deg)}.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);border-top:1px solid #ffffff;border-left:1px solid #ffffff;transform:rotate(-45deg)}.websy-horizontal-list .websy-horizontal-list-item{display:inline-block;height:100%;width:auto}.websy-vertical-list{width:100%;height:auto}.websy-vertical-list.fixed{position:fixed}.websy-vertical-list .websy-menu-header{padding:10px 0}.websy-vertical-list .websy-menu-header:after{content:attr(data-text)}.websy-vertical-list .websy-menu-header.active .active-square{right:-10px;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:10px;top:calc(50% - 3px);border-top:1px solid #ffffff;border-left:1px solid #ffffff;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-textarea{resize:none;height:100px;padding:10px 15px;font-family:inherit}@media screen and (max-width:1024px){}@media screen and (max-width:1024px){h1{font-size:36px}h2{font-size:24px}h3{font-size:20px}}
1
+ @charset "UTF-8";@font-face{font-family:'websy-designs';src:url('../fonts/websy-designs.woff2?83517479') format('woff2');font-weight:normal;font-style:normal}[class^='websy-icon-']:before,[class*=' websy-icon-']:before{font-family:'websy-designs',sans-serif;font-style:normal;font-weight:normal;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.websy-icon-cancel:before{content:'\e800'}.websy-icon-ok:before{content:'\e801'}.websy-icon-plus:before{content:'\e802'}.websy-icon-minus:before{content:'\e803'}.websy-icon-camera:before{content:'\e804'}.websy-icon-heart:before{content:'\e805'}.websy-icon-heart-empty:before{content:'\e806'}.websy-icon-th-large:before{content:'\e807'}.websy-icon-th-list:before{content:'\e808'}.websy-icon-truck:before{content:'\e809'}.websy-icon-search:before{content:'\e80a'}.websy-icon-basket:before{content:'\e80b'}.websy-icon-credit-card:before{content:'\e80c'}.websy-icon-gift:before{content:'\e80d'}.websy-icon-cog:before{content:'\e80e'}.websy-icon-calendar:before{content:'\e80f'}.websy-icon-down-dir:before{content:'\e810'}.websy-icon-up-dir:before{content:'\e811'}.websy-icon-left-dir:before{content:'\e812'}.websy-icon-right-dir:before{content:'\e813'}.websy-icon-arrows-cw:before{content:'\e814'}.websy-icon-check:before{content:'\e815'}.websy-icon-barcode:before{content:'\e816'}.websy-icon-trash:before{content:'\e817'}.websy-icon-ccw:before{content:'\e818'}.websy-icon-pencil:before{content:'\e819'}.websy-icon-box:before{content:'\e81a'}.websy-icon-check-empty:before{content:'\f096'}.websy-icon-filter:before{content:'\f0b0'}.websy-icon-mail-alt:before{content:'\f0e0'}.websy-icon-building:before{content:'\f0f7'}.websy-icon-folder-open-empty:before{content:'\f115'}.websy-icon-help:before{content:'\f128'}.websy-icon-info:before{content:'\f129'}.websy-icon-ellipsis-vert:before{content:'\f142'}.websy-icon-sliders:before{content:'\f1de'}.websy-icon-share:before{content:'\f1e0'}.websy-icon-trash-1:before{content:'\f1f8'}.websy-icon-toggle-off:before{content:'\f204'}.websy-icon-toggle-on:before{content:'\f205'}.websy-icon-shopping-basket:before{content:'\f291'}.websy-icon-user-circle-o:before{content:'\f2be'}.websy-icon-sort:before{content:'\f0dc'}.websy-icon-eye:before{content:'\e81b'}.websy-icon-sun:before{content:'\e81c'}.websy-icon-sun-filled:before{content:'\e81d'}.websy-icon-flag-filled:before{content:'\e81e'}.websy-icon-thumbs-up-alt:before{content:'\f164'}.websy-icon-thumbs-down-alt:before{content:'\f165'}.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}html,body{width:100%;height:100%;font-family:Arial,Helvetica,sans-serif;font-size:16px}body{line-height:23px;letter-spacing:.1em}h1,h2,h3,h4{line-height:1.5em}h1{font-size:44px}h2{font-size:33px}h3{font-size:22px}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.websy-responsive-container{margin:0 auto;width:100%;max-width:1540px}.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%}.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:415px){.websy-responsive-container{width:100%}.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-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-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(50vh - 32px)}.websy-loading-container p{position:relative;text-align:center;color:#404040;top:calc(50vh - 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:1px solid #cccccc;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 .menu-carat{right:unset;left:15px;transform:rotate(135deg)}.websy-menu.right-align .websy-menu-header.active{background-color:#cccccc}.websy-menu.right-align .websy-menu-header.active .menu-carat{border-top:1px solid #ffffff;border-left:1px solid #ffffff}.websy-menu.right-align .websy-menu-header.active .active-square{right:-39px}.websy-menu.right-align .websy-menu-header.menu-open .menu-carat{transform-origin:5px 2px}.websy-menu .websy-child-list{background-color:#ffffff;color:#404040;font-size:.8em;line-height:1.2em}.websy-menu .websy-menu-icon svg{fill:#888888}.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%}@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}.websy-date-picker-container .websy-dp-button-container{padding:5px 10px;text-align:right}.websy-date-picker-container .websy-dropdown-header-label{position:absolute;font-size:.5em;top:-5px;left:0}.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 svg{transform:rotate(180deg);height:9px}.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}.websy-date-picker-content.active{display:block}.websy-date-picker-ranges,.websy-date-picker-custom{display:inline-block;vertical-align:top;box-sizing:border-box;font-size:12px}.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:5px 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}.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.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-dropdown-container{display:block}.websy-dropdown-container input.dropdown-input{display:none}.websy-dropdown-mask{position:fixed;top:0;left:0;height:100vh;width:100vw;display:none}.websy-dropdown-mask.active{display:block}.websy-dropdown-header{height:40px;line-height:40px;cursor:pointer;position:relative}.websy-dropdown-header span,.websy-dropdown-header svg.arrow{pointer-events:none}.websy-dropdown-header svg,.websy-dropdown-header span{display:inline-block;vertical-align:middle}.websy-dropdown-header svg{stroke:#333333;fill:#333333}.websy-dropdown-header svg *{pointer-events:none}.websy-dropdown-header span{max-width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.websy-dropdown-header svg.arrow{transform:rotate(180deg);height:9px}.websy-dropdown-header svg.clear{display:none}.websy-dropdown-header.allow-clear.one-selected span,.websy-dropdown-header.allow-clear.multi-selected span{max-width:calc(100% - 60px)}.websy-dropdown-header.allow-clear.one-selected svg.clear,.websy-dropdown-header.allow-clear.multi-selected svg.clear{display:inline-block}.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}.websy-dropdown-content{padding:10px 0;background-color:#ffffff;box-shadow:0 0 3px #cccccc;position:absolute;top:100%;right:0;width:220px;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-items{width:220px;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;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}.with-search .websy-dropdown-items{max-height:240px}.websy-dropdown-item{position:relative}.websy-dropdown-item.active:after{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background-color:#ba7af2}.disabled{color:#cccccc}.disabled svg{stroke:#cccccc;fill:#cccccc}.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:6px;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% - 107px);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;top:calc(50% - 7px);right:25px}.websy-info.websy-info-dock-left:after{bottom: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}.form-component{position:relative}.websy-validation-failure{background-color:#ce5252;border:2px solid #b12121;color:#ffffff;padding:5px 15px;font-size:.8em;margin-bottom:10px}.websy-validation-failure:empty{display:none}.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 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 th{color:#888888;background-color:transparent;font-size:12px;text-align:left;padding-left:2px;padding-right:10px;padding-top:10px;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-chart .x-axis text,.websy-chart .y-axis text{fill:#888888}.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-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-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-vertical-list-container{width:250px;box-sizing:border-box}.websy-vertical-list-container.fixed{position:fixed;top:0;bottom:0;left:0;z-index:100;overflow-y:auto}.websy-vertical-list-container.fixed.open{left:-250px}.websy-vertical-list-container.fixed .websy-menu-icon{position:relative;text-align:right;height:40px;margin:10px 15px}.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:415px){.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-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:auto}.websy-vertical-list.fixed{position:fixed}.websy-vertical-list .websy-menu-header{padding:10px 0}.websy-vertical-list .websy-menu-header:after{content:attr(data-text)}.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-textarea{resize:none;height:100px;padding:10px 15px;font-family:inherit}@media screen and (max-width:1024px){}@media screen and (max-width:1024px){h1{font-size:36px}h2{font-size:24px}h3{font-size:20px}}